Branch data Line data Source code
1 : : /* Intrinsic translation
2 : : Copyright (C) 2002-2024 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.cc-- 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 "internal-fn.h"
35 : : #include "tree-nested.h"
36 : : #include "stor-layout.h"
37 : : #include "toplev.h" /* For rest_of_decl_compilation. */
38 : : #include "arith.h"
39 : : #include "trans-const.h"
40 : : #include "trans-types.h"
41 : : #include "trans-array.h"
42 : : #include "dependency.h" /* For CAF array alias analysis. */
43 : : #include "attribs.h"
44 : : #include "realmpfr.h"
45 : : #include "constructor.h"
46 : :
47 : : /* Only for gfc_trans_assign and gfc_trans_pointer_assign. */
48 : :
49 : : /* This maps Fortran intrinsic math functions to external library or GCC
50 : : builtin functions. */
51 : : typedef struct GTY(()) gfc_intrinsic_map_t {
52 : : /* The explicit enum is required to work around inadequacies in the
53 : : garbage collection/gengtype parsing mechanism. */
54 : : enum gfc_isym_id id;
55 : :
56 : : /* Enum value from the "language-independent", aka C-centric, part
57 : : of gcc, or END_BUILTINS of no such value set. */
58 : : enum built_in_function float_built_in;
59 : : enum built_in_function double_built_in;
60 : : enum built_in_function long_double_built_in;
61 : : enum built_in_function complex_float_built_in;
62 : : enum built_in_function complex_double_built_in;
63 : : enum built_in_function complex_long_double_built_in;
64 : :
65 : : /* True if the naming pattern is to prepend "c" for complex and
66 : : append "f" for kind=4. False if the naming pattern is to
67 : : prepend "_gfortran_" and append "[rc](4|8|10|16)". */
68 : : bool libm_name;
69 : :
70 : : /* True if a complex version of the function exists. */
71 : : bool complex_available;
72 : :
73 : : /* True if the function should be marked const. */
74 : : bool is_constant;
75 : :
76 : : /* The base library name of this function. */
77 : : const char *name;
78 : :
79 : : /* Cache decls created for the various operand types. */
80 : : tree real4_decl;
81 : : tree real8_decl;
82 : : tree real10_decl;
83 : : tree real16_decl;
84 : : tree complex4_decl;
85 : : tree complex8_decl;
86 : : tree complex10_decl;
87 : : tree complex16_decl;
88 : : }
89 : : gfc_intrinsic_map_t;
90 : :
91 : : /* ??? The NARGS==1 hack here is based on the fact that (c99 at least)
92 : : defines complex variants of all of the entries in mathbuiltins.def
93 : : except for atan2. */
94 : : #define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE) \
95 : : { GFC_ISYM_ ## ID, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
96 : : BUILT_IN_ ## ID ## L, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
97 : : true, false, true, NAME, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, \
98 : : NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
99 : :
100 : : #define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE) \
101 : : { GFC_ISYM_ ## ID, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
102 : : BUILT_IN_ ## ID ## L, BUILT_IN_C ## ID ## F, BUILT_IN_C ## ID, \
103 : : BUILT_IN_C ## ID ## L, true, true, true, NAME, NULL_TREE, NULL_TREE, \
104 : : NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
105 : :
106 : : #define LIB_FUNCTION(ID, NAME, HAVE_COMPLEX) \
107 : : { GFC_ISYM_ ## ID, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
108 : : END_BUILTINS, END_BUILTINS, END_BUILTINS, \
109 : : false, HAVE_COMPLEX, true, NAME, NULL_TREE, NULL_TREE, NULL_TREE, \
110 : : NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE }
111 : :
112 : : #define OTHER_BUILTIN(ID, NAME, TYPE, CONST) \
113 : : { GFC_ISYM_NONE, BUILT_IN_ ## ID ## F, BUILT_IN_ ## ID, \
114 : : BUILT_IN_ ## ID ## L, END_BUILTINS, END_BUILTINS, END_BUILTINS, \
115 : : true, false, CONST, NAME, NULL_TREE, NULL_TREE, \
116 : : NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE},
117 : :
118 : : static GTY(()) gfc_intrinsic_map_t gfc_intrinsic_map[] =
119 : : {
120 : : /* Functions built into gcc itself (DEFINE_MATH_BUILTIN and
121 : : DEFINE_MATH_BUILTIN_C), then the built-ins that don't correspond
122 : : to any GFC_ISYM id directly, which use the OTHER_BUILTIN macro. */
123 : : #include "mathbuiltins.def"
124 : :
125 : : /* Functions in libgfortran. */
126 : : LIB_FUNCTION (ERFC_SCALED, "erfc_scaled", false),
127 : : LIB_FUNCTION (SIND, "sind", false),
128 : : LIB_FUNCTION (COSD, "cosd", false),
129 : : LIB_FUNCTION (TAND, "tand", false),
130 : :
131 : : /* End the list. */
132 : : LIB_FUNCTION (NONE, NULL, false)
133 : :
134 : : };
135 : : #undef OTHER_BUILTIN
136 : : #undef LIB_FUNCTION
137 : : #undef DEFINE_MATH_BUILTIN
138 : : #undef DEFINE_MATH_BUILTIN_C
139 : :
140 : :
141 : : enum rounding_mode { RND_ROUND, RND_TRUNC, RND_CEIL, RND_FLOOR };
142 : :
143 : :
144 : : /* Find the correct variant of a given builtin from its argument. */
145 : : static tree
146 : 10745 : builtin_decl_for_precision (enum built_in_function base_built_in,
147 : : int precision)
148 : : {
149 : 10745 : enum built_in_function i = END_BUILTINS;
150 : :
151 : 10745 : gfc_intrinsic_map_t *m;
152 : 378706 : for (m = gfc_intrinsic_map; m->double_built_in != base_built_in ; m++)
153 : : ;
154 : :
155 : 10745 : if (precision == TYPE_PRECISION (float_type_node))
156 : 5165 : i = m->float_built_in;
157 : 5580 : else if (precision == TYPE_PRECISION (double_type_node))
158 : : i = m->double_built_in;
159 : 1695 : else if (precision == TYPE_PRECISION (long_double_type_node)
160 : 1695 : && (!gfc_real16_is_float128
161 : 1571 : || long_double_type_node != gfc_float128_type_node))
162 : 1571 : i = m->long_double_built_in;
163 : 124 : else if (precision == TYPE_PRECISION (gfc_float128_type_node))
164 : : {
165 : : /* Special treatment, because it is not exactly a built-in, but
166 : : a library function. */
167 : 124 : return m->real16_decl;
168 : : }
169 : :
170 : 10621 : return (i == END_BUILTINS ? NULL_TREE : builtin_decl_explicit (i));
171 : : }
172 : :
173 : :
174 : : tree
175 : 10055 : gfc_builtin_decl_for_float_kind (enum built_in_function double_built_in,
176 : : int kind)
177 : : {
178 : 10055 : int i = gfc_validate_kind (BT_REAL, kind, false);
179 : :
180 : 10055 : if (gfc_real_kinds[i].c_float128)
181 : : {
182 : : /* For _Float128, the story is a bit different, because we return
183 : : a decl to a library function rather than a built-in. */
184 : : gfc_intrinsic_map_t *m;
185 : 29987 : for (m = gfc_intrinsic_map; m->double_built_in != double_built_in ; m++)
186 : : ;
187 : :
188 : 905 : return m->real16_decl;
189 : : }
190 : :
191 : 9150 : return builtin_decl_for_precision (double_built_in,
192 : 9150 : gfc_real_kinds[i].mode_precision);
193 : : }
194 : :
195 : :
196 : : /* Evaluate the arguments to an intrinsic function. The value
197 : : of NARGS may be less than the actual number of arguments in EXPR
198 : : to allow optional "KIND" arguments that are not included in the
199 : : generated code to be ignored. */
200 : :
201 : : static void
202 : 74293 : gfc_conv_intrinsic_function_args (gfc_se *se, gfc_expr *expr,
203 : : tree *argarray, int nargs)
204 : : {
205 : 74293 : gfc_actual_arglist *actual;
206 : 74293 : gfc_expr *e;
207 : 74293 : gfc_intrinsic_arg *formal;
208 : 74293 : gfc_se argse;
209 : 74293 : int curr_arg;
210 : :
211 : 74293 : formal = expr->value.function.isym->formal;
212 : 74293 : actual = expr->value.function.actual;
213 : :
214 : 167524 : for (curr_arg = 0; curr_arg < nargs; curr_arg++,
215 : 93231 : actual = actual->next,
216 : 93231 : formal = formal ? formal->next : NULL)
217 : : {
218 : 93231 : gcc_assert (actual);
219 : 93231 : e = actual->expr;
220 : : /* Skip omitted optional arguments. */
221 : 93231 : if (!e)
222 : : {
223 : 31 : --curr_arg;
224 : 31 : continue;
225 : : }
226 : :
227 : : /* Evaluate the parameter. This will substitute scalarized
228 : : references automatically. */
229 : 93200 : gfc_init_se (&argse, se);
230 : :
231 : 93200 : if (e->ts.type == BT_CHARACTER)
232 : : {
233 : 9470 : gfc_conv_expr (&argse, e);
234 : 9470 : gfc_conv_string_parameter (&argse);
235 : 9470 : argarray[curr_arg++] = argse.string_length;
236 : 9470 : gcc_assert (curr_arg < nargs);
237 : : }
238 : : else
239 : 83730 : gfc_conv_expr_val (&argse, e);
240 : :
241 : : /* If an optional argument is itself an optional dummy argument,
242 : : check its presence and substitute a null if absent. */
243 : 93200 : if (e->expr_type == EXPR_VARIABLE
244 : 49666 : && e->symtree->n.sym->attr.optional
245 : 173 : && formal
246 : 123 : && formal->optional)
247 : 50 : gfc_conv_missing_dummy (&argse, e, formal->ts, 0);
248 : :
249 : 93200 : gfc_add_block_to_block (&se->pre, &argse.pre);
250 : 93200 : gfc_add_block_to_block (&se->post, &argse.post);
251 : 93200 : argarray[curr_arg] = argse.expr;
252 : : }
253 : 74293 : }
254 : :
255 : : /* Count the number of actual arguments to the intrinsic function EXPR
256 : : including any "hidden" string length arguments. */
257 : :
258 : : static unsigned int
259 : 50358 : gfc_intrinsic_argument_list_length (gfc_expr *expr)
260 : : {
261 : 50358 : int n = 0;
262 : 50358 : gfc_actual_arglist *actual;
263 : :
264 : 114780 : for (actual = expr->value.function.actual; actual; actual = actual->next)
265 : : {
266 : 64422 : if (!actual->expr)
267 : 6169 : continue;
268 : :
269 : 58253 : if (actual->expr->ts.type == BT_CHARACTER)
270 : 4494 : n += 2;
271 : : else
272 : 53759 : n++;
273 : : }
274 : :
275 : 50358 : return n;
276 : : }
277 : :
278 : :
279 : : /* Conversions between different types are output by the frontend as
280 : : intrinsic functions. We implement these directly with inline code. */
281 : :
282 : : static void
283 : 34997 : gfc_conv_intrinsic_conversion (gfc_se * se, gfc_expr * expr)
284 : : {
285 : 34997 : tree type;
286 : 34997 : tree *args;
287 : 34997 : int nargs;
288 : :
289 : 34997 : nargs = gfc_intrinsic_argument_list_length (expr);
290 : 34997 : args = XALLOCAVEC (tree, nargs);
291 : :
292 : : /* Evaluate all the arguments passed. Whilst we're only interested in the
293 : : first one here, there are other parts of the front-end that assume this
294 : : and will trigger an ICE if it's not the case. */
295 : 34997 : type = gfc_typenode_for_spec (&expr->ts);
296 : 34997 : gcc_assert (expr->value.function.actual->expr);
297 : 34997 : gfc_conv_intrinsic_function_args (se, expr, args, nargs);
298 : :
299 : : /* Conversion between character kinds involves a call to a library
300 : : function. */
301 : 34997 : if (expr->ts.type == BT_CHARACTER)
302 : : {
303 : 180 : tree fndecl, var, addr, tmp;
304 : :
305 : 180 : if (expr->ts.kind == 1
306 : 63 : && expr->value.function.actual->expr->ts.kind == 4)
307 : 63 : fndecl = gfor_fndecl_convert_char4_to_char1;
308 : 117 : else if (expr->ts.kind == 4
309 : 117 : && expr->value.function.actual->expr->ts.kind == 1)
310 : 117 : fndecl = gfor_fndecl_convert_char1_to_char4;
311 : : else
312 : 0 : gcc_unreachable ();
313 : :
314 : : /* Create the variable storing the converted value. */
315 : 180 : type = gfc_get_pchar_type (expr->ts.kind);
316 : 180 : var = gfc_create_var (type, "str");
317 : 180 : addr = gfc_build_addr_expr (build_pointer_type (type), var);
318 : :
319 : : /* Call the library function that will perform the conversion. */
320 : 180 : gcc_assert (nargs >= 2);
321 : 180 : tmp = build_call_expr_loc (input_location,
322 : : fndecl, 3, addr, args[0], args[1]);
323 : 180 : gfc_add_expr_to_block (&se->pre, tmp);
324 : :
325 : : /* Free the temporary afterwards. */
326 : 180 : tmp = gfc_call_free (var);
327 : 180 : gfc_add_expr_to_block (&se->post, tmp);
328 : :
329 : 180 : se->expr = var;
330 : 180 : se->string_length = args[0];
331 : :
332 : 180 : return;
333 : : }
334 : :
335 : : /* Conversion from complex to non-complex involves taking the real
336 : : component of the value. */
337 : 34817 : if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE
338 : 34817 : && expr->ts.type != BT_COMPLEX)
339 : : {
340 : 587 : tree artype;
341 : :
342 : 587 : artype = TREE_TYPE (TREE_TYPE (args[0]));
343 : 587 : args[0] = fold_build1_loc (input_location, REALPART_EXPR, artype,
344 : : args[0]);
345 : : }
346 : :
347 : 34817 : se->expr = convert (type, args[0]);
348 : : }
349 : :
350 : : /* This is needed because the gcc backend only implements
351 : : FIX_TRUNC_EXPR, which is the same as INT() in Fortran.
352 : : FLOOR(x) = INT(x) <= x ? INT(x) : INT(x) - 1
353 : : Similarly for CEILING. */
354 : :
355 : : static tree
356 : 132 : build_fixbound_expr (stmtblock_t * pblock, tree arg, tree type, int up)
357 : : {
358 : 132 : tree tmp;
359 : 132 : tree cond;
360 : 132 : tree argtype;
361 : 132 : tree intval;
362 : :
363 : 132 : argtype = TREE_TYPE (arg);
364 : 132 : arg = gfc_evaluate_now (arg, pblock);
365 : :
366 : 132 : intval = convert (type, arg);
367 : 132 : intval = gfc_evaluate_now (intval, pblock);
368 : :
369 : 132 : tmp = convert (argtype, intval);
370 : 248 : cond = fold_build2_loc (input_location, up ? GE_EXPR : LE_EXPR,
371 : : logical_type_node, tmp, arg);
372 : :
373 : 248 : tmp = fold_build2_loc (input_location, up ? PLUS_EXPR : MINUS_EXPR, type,
374 : 132 : intval, build_int_cst (type, 1));
375 : 132 : tmp = fold_build3_loc (input_location, COND_EXPR, type, cond, intval, tmp);
376 : 132 : return tmp;
377 : : }
378 : :
379 : :
380 : : /* Round to nearest integer, away from zero. */
381 : :
382 : : static tree
383 : 167 : build_round_expr (tree arg, tree restype)
384 : : {
385 : 167 : tree argtype;
386 : 167 : tree fn;
387 : 167 : int argprec, resprec;
388 : :
389 : 167 : argtype = TREE_TYPE (arg);
390 : 167 : argprec = TYPE_PRECISION (argtype);
391 : 167 : resprec = TYPE_PRECISION (restype);
392 : :
393 : : /* Depending on the type of the result, choose the int intrinsic (iround,
394 : : available only as a builtin, therefore cannot use it for _Float128), long
395 : : int intrinsic (lround family) or long long intrinsic (llround). If we
396 : : don't have an appropriate function that converts directly to the integer
397 : : type (such as kind == 16), just use ROUND, and then convert the result to
398 : : an integer. We might also need to convert the result afterwards. */
399 : 167 : if (resprec <= INT_TYPE_SIZE
400 : 167 : && argprec <= TYPE_PRECISION (long_double_type_node))
401 : 133 : fn = builtin_decl_for_precision (BUILT_IN_IROUND, argprec);
402 : 38 : else if (resprec <= LONG_TYPE_SIZE)
403 : 22 : fn = builtin_decl_for_precision (BUILT_IN_LROUND, argprec);
404 : 12 : else if (resprec <= LONG_LONG_TYPE_SIZE)
405 : 0 : fn = builtin_decl_for_precision (BUILT_IN_LLROUND, argprec);
406 : 12 : else if (resprec >= argprec)
407 : 12 : fn = builtin_decl_for_precision (BUILT_IN_ROUND, argprec);
408 : : else
409 : 0 : gcc_unreachable ();
410 : :
411 : 167 : return convert (restype, build_call_expr_loc (input_location,
412 : 167 : fn, 1, arg));
413 : : }
414 : :
415 : :
416 : : /* Convert a real to an integer using a specific rounding mode.
417 : : Ideally we would just build the corresponding GENERIC node,
418 : : however the RTL expander only actually supports FIX_TRUNC_EXPR. */
419 : :
420 : : static tree
421 : 1462 : build_fix_expr (stmtblock_t * pblock, tree arg, tree type,
422 : : enum rounding_mode op)
423 : : {
424 : 1462 : switch (op)
425 : : {
426 : 116 : case RND_FLOOR:
427 : 116 : return build_fixbound_expr (pblock, arg, type, 0);
428 : :
429 : 16 : case RND_CEIL:
430 : 16 : return build_fixbound_expr (pblock, arg, type, 1);
431 : :
432 : 167 : case RND_ROUND:
433 : 167 : return build_round_expr (arg, type);
434 : :
435 : 1163 : case RND_TRUNC:
436 : 1163 : return fold_build1_loc (input_location, FIX_TRUNC_EXPR, type, arg);
437 : :
438 : 0 : default:
439 : 0 : gcc_unreachable ();
440 : : }
441 : : }
442 : :
443 : :
444 : : /* Round a real value using the specified rounding mode.
445 : : We use a temporary integer of that same kind size as the result.
446 : : Values larger than those that can be represented by this kind are
447 : : unchanged, as they will not be accurate enough to represent the
448 : : rounding.
449 : : huge = HUGE (KIND (a))
450 : : aint (a) = ((a > huge) || (a < -huge)) ? a : (real)(int)a
451 : : */
452 : :
453 : : static void
454 : 220 : gfc_conv_intrinsic_aint (gfc_se * se, gfc_expr * expr, enum rounding_mode op)
455 : : {
456 : 220 : tree type;
457 : 220 : tree itype;
458 : 220 : tree arg[2];
459 : 220 : tree tmp;
460 : 220 : tree cond;
461 : 220 : tree decl;
462 : 220 : mpfr_t huge;
463 : 220 : int n, nargs;
464 : 220 : int kind;
465 : :
466 : 220 : kind = expr->ts.kind;
467 : 220 : nargs = gfc_intrinsic_argument_list_length (expr);
468 : :
469 : 220 : decl = NULL_TREE;
470 : : /* We have builtin functions for some cases. */
471 : 220 : switch (op)
472 : : {
473 : 74 : case RND_ROUND:
474 : 74 : decl = gfc_builtin_decl_for_float_kind (BUILT_IN_ROUND, kind);
475 : 74 : break;
476 : :
477 : 146 : case RND_TRUNC:
478 : 146 : decl = gfc_builtin_decl_for_float_kind (BUILT_IN_TRUNC, kind);
479 : 146 : break;
480 : :
481 : 0 : default:
482 : 0 : gcc_unreachable ();
483 : : }
484 : :
485 : : /* Evaluate the argument. */
486 : 220 : gcc_assert (expr->value.function.actual->expr);
487 : 220 : gfc_conv_intrinsic_function_args (se, expr, arg, nargs);
488 : :
489 : : /* Use a builtin function if one exists. */
490 : 220 : if (decl != NULL_TREE)
491 : : {
492 : 220 : se->expr = build_call_expr_loc (input_location, decl, 1, arg[0]);
493 : 220 : return;
494 : : }
495 : :
496 : : /* This code is probably redundant, but we'll keep it lying around just
497 : : in case. */
498 : 0 : type = gfc_typenode_for_spec (&expr->ts);
499 : 0 : arg[0] = gfc_evaluate_now (arg[0], &se->pre);
500 : :
501 : : /* Test if the value is too large to handle sensibly. */
502 : 0 : gfc_set_model_kind (kind);
503 : 0 : mpfr_init (huge);
504 : 0 : n = gfc_validate_kind (BT_INTEGER, kind, false);
505 : 0 : mpfr_set_z (huge, gfc_integer_kinds[n].huge, GFC_RND_MODE);
506 : 0 : tmp = gfc_conv_mpfr_to_tree (huge, kind, 0);
507 : 0 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node, arg[0],
508 : : tmp);
509 : :
510 : 0 : mpfr_neg (huge, huge, GFC_RND_MODE);
511 : 0 : tmp = gfc_conv_mpfr_to_tree (huge, kind, 0);
512 : 0 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node, arg[0],
513 : : tmp);
514 : 0 : cond = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
515 : : cond, tmp);
516 : 0 : itype = gfc_get_int_type (kind);
517 : :
518 : 0 : tmp = build_fix_expr (&se->pre, arg[0], itype, op);
519 : 0 : tmp = convert (type, tmp);
520 : 0 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond, tmp,
521 : : arg[0]);
522 : 0 : mpfr_clear (huge);
523 : : }
524 : :
525 : :
526 : : /* Convert to an integer using the specified rounding mode. */
527 : :
528 : : static void
529 : 2892 : gfc_conv_intrinsic_int (gfc_se * se, gfc_expr * expr, enum rounding_mode op)
530 : : {
531 : 2892 : tree type;
532 : 2892 : tree *args;
533 : 2892 : int nargs;
534 : :
535 : 2892 : nargs = gfc_intrinsic_argument_list_length (expr);
536 : 2892 : args = XALLOCAVEC (tree, nargs);
537 : :
538 : : /* Evaluate the argument, we process all arguments even though we only
539 : : use the first one for code generation purposes. */
540 : 2892 : type = gfc_typenode_for_spec (&expr->ts);
541 : 2892 : gcc_assert (expr->value.function.actual->expr);
542 : 2892 : gfc_conv_intrinsic_function_args (se, expr, args, nargs);
543 : :
544 : 2892 : if (TREE_CODE (TREE_TYPE (args[0])) == INTEGER_TYPE)
545 : : {
546 : : /* Conversion to a different integer kind. */
547 : 1430 : se->expr = convert (type, args[0]);
548 : : }
549 : : else
550 : : {
551 : : /* Conversion from complex to non-complex involves taking the real
552 : : component of the value. */
553 : 1462 : if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE
554 : 1462 : && expr->ts.type != BT_COMPLEX)
555 : : {
556 : 192 : tree artype;
557 : :
558 : 192 : artype = TREE_TYPE (TREE_TYPE (args[0]));
559 : 192 : args[0] = fold_build1_loc (input_location, REALPART_EXPR, artype,
560 : : args[0]);
561 : : }
562 : :
563 : 1462 : se->expr = build_fix_expr (&se->pre, args[0], type, op);
564 : : }
565 : 2892 : }
566 : :
567 : :
568 : : /* Get the imaginary component of a value. */
569 : :
570 : : static void
571 : 438 : gfc_conv_intrinsic_imagpart (gfc_se * se, gfc_expr * expr)
572 : : {
573 : 438 : tree arg;
574 : :
575 : 438 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
576 : 438 : se->expr = fold_build1_loc (input_location, IMAGPART_EXPR,
577 : 438 : TREE_TYPE (TREE_TYPE (arg)), arg);
578 : 438 : }
579 : :
580 : :
581 : : /* Get the complex conjugate of a value. */
582 : :
583 : : static void
584 : 255 : gfc_conv_intrinsic_conjg (gfc_se * se, gfc_expr * expr)
585 : : {
586 : 255 : tree arg;
587 : :
588 : 255 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
589 : 255 : se->expr = fold_build1_loc (input_location, CONJ_EXPR, TREE_TYPE (arg), arg);
590 : 255 : }
591 : :
592 : :
593 : :
594 : : static tree
595 : 639366 : define_quad_builtin (const char *name, tree type, bool is_const)
596 : : {
597 : 639366 : tree fndecl;
598 : 639366 : fndecl = build_decl (input_location, FUNCTION_DECL, get_identifier (name),
599 : : type);
600 : :
601 : : /* Mark the decl as external. */
602 : 639366 : DECL_EXTERNAL (fndecl) = 1;
603 : 639366 : TREE_PUBLIC (fndecl) = 1;
604 : :
605 : : /* Mark it __attribute__((const)). */
606 : 639366 : TREE_READONLY (fndecl) = is_const;
607 : :
608 : 639366 : rest_of_decl_compilation (fndecl, 1, 0);
609 : :
610 : 639366 : return fndecl;
611 : : }
612 : :
613 : : /* Add SIMD attribute for FNDECL built-in if the built-in
614 : : name is in VECTORIZED_BUILTINS. */
615 : :
616 : : static void
617 : 38124840 : add_simd_flag_for_built_in (tree fndecl)
618 : : {
619 : 38124840 : if (gfc_vectorized_builtins == NULL
620 : 15472600 : || fndecl == NULL_TREE)
621 : 31162170 : return;
622 : :
623 : 6962670 : const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
624 : 6962670 : int *clauses = gfc_vectorized_builtins->get (name);
625 : 6962670 : if (clauses)
626 : : {
627 : 4760188 : for (unsigned i = 0; i < 3; i++)
628 : 3570141 : if (*clauses & (1 << i))
629 : : {
630 : 1190052 : gfc_simd_clause simd_type = (gfc_simd_clause)*clauses;
631 : 1190052 : tree omp_clause = NULL_TREE;
632 : 1190052 : if (simd_type == SIMD_NONE)
633 : : ; /* No SIMD clause. */
634 : : else
635 : : {
636 : 2380104 : omp_clause_code code
637 : : = (simd_type == SIMD_INBRANCH
638 : 1190052 : ? OMP_CLAUSE_INBRANCH : OMP_CLAUSE_NOTINBRANCH);
639 : 1190052 : omp_clause = build_omp_clause (UNKNOWN_LOCATION, code);
640 : 1190052 : omp_clause = build_tree_list (NULL_TREE, omp_clause);
641 : : }
642 : :
643 : 1190052 : DECL_ATTRIBUTES (fndecl)
644 : 2380104 : = tree_cons (get_identifier ("omp declare simd"), omp_clause,
645 : 1190052 : DECL_ATTRIBUTES (fndecl));
646 : : }
647 : : }
648 : : }
649 : :
650 : : /* Set SIMD attribute to all built-in functions that are mentioned
651 : : in gfc_vectorized_builtins vector. */
652 : :
653 : : void
654 : 73317 : gfc_adjust_builtins (void)
655 : : {
656 : 73317 : gfc_intrinsic_map_t *m;
657 : 3885801 : for (m = gfc_intrinsic_map;
658 : 3885801 : m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
659 : : {
660 : 3812484 : add_simd_flag_for_built_in (m->real4_decl);
661 : 3812484 : add_simd_flag_for_built_in (m->complex4_decl);
662 : 3812484 : add_simd_flag_for_built_in (m->real8_decl);
663 : 3812484 : add_simd_flag_for_built_in (m->complex8_decl);
664 : 3812484 : add_simd_flag_for_built_in (m->real10_decl);
665 : 3812484 : add_simd_flag_for_built_in (m->complex10_decl);
666 : 3812484 : add_simd_flag_for_built_in (m->real16_decl);
667 : 3812484 : add_simd_flag_for_built_in (m->complex16_decl);
668 : 3812484 : add_simd_flag_for_built_in (m->real16_decl);
669 : 3812484 : add_simd_flag_for_built_in (m->complex16_decl);
670 : : }
671 : :
672 : : /* Release all strings. */
673 : 73317 : if (gfc_vectorized_builtins != NULL)
674 : : {
675 : 1636316 : for (hash_map<nofree_string_hash, int>::iterator it
676 : 29755 : = gfc_vectorized_builtins->begin ();
677 : 1636316 : it != gfc_vectorized_builtins->end (); ++it)
678 : 1606561 : free (CONST_CAST (char *, (*it).first));
679 : :
680 : 59510 : delete gfc_vectorized_builtins;
681 : 29755 : gfc_vectorized_builtins = NULL;
682 : : }
683 : 73317 : }
684 : :
685 : : /* Initialize function decls for library functions. The external functions
686 : : are created as required. Builtin functions are added here. */
687 : :
688 : : void
689 : 30446 : gfc_build_intrinsic_lib_fndecls (void)
690 : : {
691 : 30446 : gfc_intrinsic_map_t *m;
692 : 30446 : tree quad_decls[END_BUILTINS + 1];
693 : :
694 : 30446 : if (gfc_real16_is_float128)
695 : : {
696 : : /* If we have soft-float types, we create the decls for their
697 : : C99-like library functions. For now, we only handle _Float128
698 : : q-suffixed or IEC 60559 f128-suffixed functions. */
699 : :
700 : 30446 : tree type, complex_type, func_1, func_2, func_3, func_cabs, func_frexp;
701 : 30446 : tree func_iround, func_lround, func_llround, func_scalbn, func_cpow;
702 : :
703 : 30446 : memset (quad_decls, 0, sizeof(tree) * (END_BUILTINS + 1));
704 : :
705 : 30446 : type = gfc_float128_type_node;
706 : 30446 : complex_type = gfc_complex_float128_type_node;
707 : : /* type (*) (type) */
708 : 30446 : func_1 = build_function_type_list (type, type, NULL_TREE);
709 : : /* int (*) (type) */
710 : 30446 : func_iround = build_function_type_list (integer_type_node,
711 : : type, NULL_TREE);
712 : : /* long (*) (type) */
713 : 30446 : func_lround = build_function_type_list (long_integer_type_node,
714 : : type, NULL_TREE);
715 : : /* long long (*) (type) */
716 : 30446 : func_llround = build_function_type_list (long_long_integer_type_node,
717 : : type, NULL_TREE);
718 : : /* type (*) (type, type) */
719 : 30446 : func_2 = build_function_type_list (type, type, type, NULL_TREE);
720 : : /* type (*) (type, type, type) */
721 : 30446 : func_3 = build_function_type_list (type, type, type, type, NULL_TREE);
722 : : /* type (*) (type, &int) */
723 : 30446 : func_frexp
724 : 30446 : = build_function_type_list (type,
725 : : type,
726 : : build_pointer_type (integer_type_node),
727 : : NULL_TREE);
728 : : /* type (*) (type, int) */
729 : 30446 : func_scalbn = build_function_type_list (type,
730 : : type, integer_type_node, NULL_TREE);
731 : : /* type (*) (complex type) */
732 : 30446 : func_cabs = build_function_type_list (type, complex_type, NULL_TREE);
733 : : /* complex type (*) (complex type, complex type) */
734 : 30446 : func_cpow
735 : 30446 : = build_function_type_list (complex_type,
736 : : complex_type, complex_type, NULL_TREE);
737 : :
738 : : #define DEFINE_MATH_BUILTIN(ID, NAME, ARGTYPE)
739 : : #define DEFINE_MATH_BUILTIN_C(ID, NAME, ARGTYPE)
740 : : #define LIB_FUNCTION(ID, NAME, HAVE_COMPLEX)
741 : :
742 : : /* Only these built-ins are actually needed here. These are used directly
743 : : from the code, when calling builtin_decl_for_precision() or
744 : : builtin_decl_for_float_type(). The others are all constructed by
745 : : gfc_get_intrinsic_lib_fndecl(). */
746 : : #define OTHER_BUILTIN(ID, NAME, TYPE, CONST) \
747 : : quad_decls[BUILT_IN_ ## ID] \
748 : : = define_quad_builtin (gfc_real16_use_iec_60559 \
749 : : ? NAME "f128" : NAME "q", func_ ## TYPE, \
750 : : CONST);
751 : :
752 : : #include "mathbuiltins.def"
753 : :
754 : : #undef OTHER_BUILTIN
755 : : #undef LIB_FUNCTION
756 : : #undef DEFINE_MATH_BUILTIN
757 : : #undef DEFINE_MATH_BUILTIN_C
758 : :
759 : : /* There is one built-in we defined manually, because it gets called
760 : : with builtin_decl_for_precision() or builtin_decl_for_float_type()
761 : : even though it is not an OTHER_BUILTIN: it is SQRT. */
762 : 30446 : quad_decls[BUILT_IN_SQRT]
763 : 30446 : = define_quad_builtin (gfc_real16_use_iec_60559
764 : : ? "sqrtf128" : "sqrtq", func_1, true);
765 : : }
766 : :
767 : : /* Add GCC builtin functions. */
768 : 1583192 : for (m = gfc_intrinsic_map;
769 : 1613638 : m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
770 : : {
771 : 1583192 : if (m->float_built_in != END_BUILTINS)
772 : 1461408 : m->real4_decl = builtin_decl_explicit (m->float_built_in);
773 : 1583192 : if (m->complex_float_built_in != END_BUILTINS)
774 : 487136 : m->complex4_decl = builtin_decl_explicit (m->complex_float_built_in);
775 : 1583192 : if (m->double_built_in != END_BUILTINS)
776 : 1461408 : m->real8_decl = builtin_decl_explicit (m->double_built_in);
777 : 1583192 : if (m->complex_double_built_in != END_BUILTINS)
778 : 487136 : m->complex8_decl = builtin_decl_explicit (m->complex_double_built_in);
779 : :
780 : : /* If real(kind=10) exists, it is always long double. */
781 : 1583192 : if (m->long_double_built_in != END_BUILTINS)
782 : 1461408 : m->real10_decl = builtin_decl_explicit (m->long_double_built_in);
783 : 1583192 : if (m->complex_long_double_built_in != END_BUILTINS)
784 : 487136 : m->complex10_decl
785 : 487136 : = builtin_decl_explicit (m->complex_long_double_built_in);
786 : :
787 : 1583192 : if (!gfc_real16_is_float128)
788 : : {
789 : 0 : if (m->long_double_built_in != END_BUILTINS)
790 : 0 : m->real16_decl = builtin_decl_explicit (m->long_double_built_in);
791 : 0 : if (m->complex_long_double_built_in != END_BUILTINS)
792 : 0 : m->complex16_decl
793 : 0 : = builtin_decl_explicit (m->complex_long_double_built_in);
794 : : }
795 : 1583192 : else if (quad_decls[m->double_built_in] != NULL_TREE)
796 : : {
797 : : /* Quad-precision function calls are constructed when first
798 : : needed by builtin_decl_for_precision(), except for those
799 : : that will be used directly (define by OTHER_BUILTIN). */
800 : 639366 : m->real16_decl = quad_decls[m->double_built_in];
801 : : }
802 : 943826 : else if (quad_decls[m->complex_double_built_in] != NULL_TREE)
803 : : {
804 : : /* Same thing for the complex ones. */
805 : 0 : m->complex16_decl = quad_decls[m->double_built_in];
806 : : }
807 : : }
808 : 30446 : }
809 : :
810 : :
811 : : /* Create a fndecl for a simple intrinsic library function. */
812 : :
813 : : static tree
814 : 4355 : gfc_get_intrinsic_lib_fndecl (gfc_intrinsic_map_t * m, gfc_expr * expr)
815 : : {
816 : 4355 : tree type;
817 : 4355 : vec<tree, va_gc> *argtypes;
818 : 4355 : tree fndecl;
819 : 4355 : gfc_actual_arglist *actual;
820 : 4355 : tree *pdecl;
821 : 4355 : gfc_typespec *ts;
822 : 4355 : char name[GFC_MAX_SYMBOL_LEN + 3];
823 : :
824 : 4355 : ts = &expr->ts;
825 : 4355 : if (ts->type == BT_REAL)
826 : : {
827 : 3511 : switch (ts->kind)
828 : : {
829 : 1250 : case 4:
830 : 1250 : pdecl = &m->real4_decl;
831 : 1250 : break;
832 : 1293 : case 8:
833 : 1293 : pdecl = &m->real8_decl;
834 : 1293 : break;
835 : 549 : case 10:
836 : 549 : pdecl = &m->real10_decl;
837 : 549 : break;
838 : 419 : case 16:
839 : 419 : pdecl = &m->real16_decl;
840 : 419 : break;
841 : 0 : default:
842 : 0 : gcc_unreachable ();
843 : : }
844 : : }
845 : 844 : else if (ts->type == BT_COMPLEX)
846 : : {
847 : 844 : gcc_assert (m->complex_available);
848 : :
849 : 844 : switch (ts->kind)
850 : : {
851 : 386 : case 4:
852 : 386 : pdecl = &m->complex4_decl;
853 : 386 : break;
854 : 387 : case 8:
855 : 387 : pdecl = &m->complex8_decl;
856 : 387 : break;
857 : 51 : case 10:
858 : 51 : pdecl = &m->complex10_decl;
859 : 51 : break;
860 : 20 : case 16:
861 : 20 : pdecl = &m->complex16_decl;
862 : 20 : break;
863 : 0 : default:
864 : 0 : gcc_unreachable ();
865 : : }
866 : : }
867 : : else
868 : 0 : gcc_unreachable ();
869 : :
870 : 4355 : if (*pdecl)
871 : 4015 : return *pdecl;
872 : :
873 : 340 : if (m->libm_name)
874 : : {
875 : 163 : int n = gfc_validate_kind (BT_REAL, ts->kind, false);
876 : 163 : if (gfc_real_kinds[n].c_float)
877 : 0 : snprintf (name, sizeof (name), "%s%s%s",
878 : 0 : ts->type == BT_COMPLEX ? "c" : "", m->name, "f");
879 : 163 : else if (gfc_real_kinds[n].c_double)
880 : 0 : snprintf (name, sizeof (name), "%s%s",
881 : 0 : ts->type == BT_COMPLEX ? "c" : "", m->name);
882 : 163 : else if (gfc_real_kinds[n].c_long_double)
883 : 0 : snprintf (name, sizeof (name), "%s%s%s",
884 : 0 : ts->type == BT_COMPLEX ? "c" : "", m->name, "l");
885 : 163 : else if (gfc_real_kinds[n].c_float128)
886 : 163 : snprintf (name, sizeof (name), "%s%s%s",
887 : 163 : ts->type == BT_COMPLEX ? "c" : "", m->name,
888 : 163 : gfc_real_kinds[n].use_iec_60559 ? "f128" : "q");
889 : : else
890 : 0 : gcc_unreachable ();
891 : : }
892 : : else
893 : : {
894 : 354 : snprintf (name, sizeof (name), PREFIX ("%s_%c%d"), m->name,
895 : 177 : ts->type == BT_COMPLEX ? 'c' : 'r',
896 : : gfc_type_abi_kind (ts));
897 : : }
898 : :
899 : 340 : argtypes = NULL;
900 : 696 : for (actual = expr->value.function.actual; actual; actual = actual->next)
901 : : {
902 : 356 : type = gfc_typenode_for_spec (&actual->expr->ts);
903 : 356 : vec_safe_push (argtypes, type);
904 : : }
905 : 1020 : type = build_function_type_vec (gfc_typenode_for_spec (ts), argtypes);
906 : 340 : fndecl = build_decl (input_location,
907 : : FUNCTION_DECL, get_identifier (name), type);
908 : :
909 : : /* Mark the decl as external. */
910 : 340 : DECL_EXTERNAL (fndecl) = 1;
911 : 340 : TREE_PUBLIC (fndecl) = 1;
912 : :
913 : : /* Mark it __attribute__((const)), if possible. */
914 : 340 : TREE_READONLY (fndecl) = m->is_constant;
915 : :
916 : 340 : rest_of_decl_compilation (fndecl, 1, 0);
917 : :
918 : 340 : (*pdecl) = fndecl;
919 : 340 : return fndecl;
920 : : }
921 : :
922 : :
923 : : /* Convert an intrinsic function into an external or builtin call. */
924 : :
925 : : static void
926 : 3857 : gfc_conv_intrinsic_lib_function (gfc_se * se, gfc_expr * expr)
927 : : {
928 : 3857 : gfc_intrinsic_map_t *m;
929 : 3857 : tree fndecl;
930 : 3857 : tree rettype;
931 : 3857 : tree *args;
932 : 3857 : unsigned int num_args;
933 : 3857 : gfc_isym_id id;
934 : :
935 : 3857 : id = expr->value.function.isym->id;
936 : : /* Find the entry for this function. */
937 : 55877 : for (m = gfc_intrinsic_map;
938 : 55877 : m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
939 : : {
940 : 55877 : if (id == m->id)
941 : : break;
942 : : }
943 : :
944 : 3857 : if (m->id == GFC_ISYM_NONE)
945 : : {
946 : 0 : gfc_internal_error ("Intrinsic function %qs (%d) not recognized",
947 : : expr->value.function.name, id);
948 : : }
949 : :
950 : : /* Get the decl and generate the call. */
951 : 3857 : num_args = gfc_intrinsic_argument_list_length (expr);
952 : 3857 : args = XALLOCAVEC (tree, num_args);
953 : :
954 : 3857 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
955 : 3857 : fndecl = gfc_get_intrinsic_lib_fndecl (m, expr);
956 : 3857 : rettype = TREE_TYPE (TREE_TYPE (fndecl));
957 : :
958 : 3857 : fndecl = build_addr (fndecl);
959 : 3857 : se->expr = build_call_array_loc (input_location, rettype, fndecl, num_args, args);
960 : 3857 : }
961 : :
962 : :
963 : : /* If bounds-checking is enabled, create code to verify at runtime that the
964 : : string lengths for both expressions are the same (needed for e.g. MERGE).
965 : : If bounds-checking is not enabled, does nothing. */
966 : :
967 : : void
968 : 1442 : gfc_trans_same_strlen_check (const char* intr_name, locus* where,
969 : : tree a, tree b, stmtblock_t* target)
970 : : {
971 : 1442 : tree cond;
972 : 1442 : tree name;
973 : :
974 : : /* If bounds-checking is disabled, do nothing. */
975 : 1442 : if (!(gfc_option.rtcheck & GFC_RTCHECK_BOUNDS))
976 : : return;
977 : :
978 : : /* Compare the two string lengths. */
979 : 94 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node, a, b);
980 : :
981 : : /* Output the runtime-check. */
982 : 94 : name = gfc_build_cstring_const (intr_name);
983 : 94 : name = gfc_build_addr_expr (pchar_type_node, name);
984 : 94 : gfc_trans_runtime_check (true, false, cond, target, where,
985 : : "Unequal character lengths (%ld/%ld) in %s",
986 : : fold_convert (long_integer_type_node, a),
987 : : fold_convert (long_integer_type_node, b), name);
988 : : }
989 : :
990 : :
991 : : /* The EXPONENT(X) intrinsic function is translated into
992 : : int ret;
993 : : return isfinite(X) ? (frexp (X, &ret) , ret) : huge
994 : : so that if X is a NaN or infinity, the result is HUGE(0).
995 : : */
996 : :
997 : : static void
998 : 228 : gfc_conv_intrinsic_exponent (gfc_se *se, gfc_expr *expr)
999 : : {
1000 : 228 : tree arg, type, res, tmp, frexp, cond, huge;
1001 : 228 : int i;
1002 : :
1003 : 456 : frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP,
1004 : 228 : expr->value.function.actual->expr->ts.kind);
1005 : :
1006 : 228 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
1007 : 228 : arg = gfc_evaluate_now (arg, &se->pre);
1008 : :
1009 : 228 : i = gfc_validate_kind (BT_INTEGER, gfc_c_int_kind, false);
1010 : 228 : huge = gfc_conv_mpz_to_tree (gfc_integer_kinds[i].huge, gfc_c_int_kind);
1011 : 228 : cond = build_call_expr_loc (input_location,
1012 : : builtin_decl_explicit (BUILT_IN_ISFINITE),
1013 : : 1, arg);
1014 : :
1015 : 228 : res = gfc_create_var (integer_type_node, NULL);
1016 : 228 : tmp = build_call_expr_loc (input_location, frexp, 2, arg,
1017 : : gfc_build_addr_expr (NULL_TREE, res));
1018 : 228 : tmp = fold_build2_loc (input_location, COMPOUND_EXPR, integer_type_node,
1019 : : tmp, res);
1020 : 228 : se->expr = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
1021 : : cond, tmp, huge);
1022 : :
1023 : 228 : type = gfc_typenode_for_spec (&expr->ts);
1024 : 228 : se->expr = fold_convert (type, se->expr);
1025 : 228 : }
1026 : :
1027 : :
1028 : : /* Fill in the following structure
1029 : : struct caf_vector_t {
1030 : : size_t nvec; // size of the vector
1031 : : union {
1032 : : struct {
1033 : : void *vector;
1034 : : int kind;
1035 : : } v;
1036 : : struct {
1037 : : ptrdiff_t lower_bound;
1038 : : ptrdiff_t upper_bound;
1039 : : ptrdiff_t stride;
1040 : : } triplet;
1041 : : } u;
1042 : : } */
1043 : :
1044 : : static void
1045 : 0 : conv_caf_vector_subscript_elem (stmtblock_t *block, int i, tree desc,
1046 : : tree lower, tree upper, tree stride,
1047 : : tree vector, int kind, tree nvec)
1048 : : {
1049 : 0 : tree field, type, tmp;
1050 : :
1051 : 0 : desc = gfc_build_array_ref (desc, gfc_rank_cst[i], NULL_TREE);
1052 : 0 : type = TREE_TYPE (desc);
1053 : :
1054 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 0);
1055 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1056 : : desc, field, NULL_TREE);
1057 : 0 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), nvec));
1058 : :
1059 : : /* Access union. */
1060 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 1);
1061 : 0 : desc = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1062 : : desc, field, NULL_TREE);
1063 : 0 : type = TREE_TYPE (desc);
1064 : :
1065 : : /* Access the inner struct. */
1066 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), vector != NULL_TREE ? 0 : 1);
1067 : 0 : desc = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1068 : : desc, field, NULL_TREE);
1069 : 0 : type = TREE_TYPE (desc);
1070 : :
1071 : 0 : if (vector != NULL_TREE)
1072 : : {
1073 : : /* Set vector and kind. */
1074 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 0);
1075 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1076 : : desc, field, NULL_TREE);
1077 : 0 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), vector));
1078 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 1);
1079 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1080 : : desc, field, NULL_TREE);
1081 : 0 : gfc_add_modify (block, tmp, build_int_cst (integer_type_node, kind));
1082 : : }
1083 : : else
1084 : : {
1085 : : /* Set dim.lower/upper/stride. */
1086 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 0);
1087 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1088 : : desc, field, NULL_TREE);
1089 : 0 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), lower));
1090 : :
1091 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 1);
1092 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1093 : : desc, field, NULL_TREE);
1094 : 0 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), upper));
1095 : :
1096 : 0 : field = gfc_advance_chain (TYPE_FIELDS (type), 2);
1097 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1098 : : desc, field, NULL_TREE);
1099 : 0 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field), stride));
1100 : : }
1101 : 0 : }
1102 : :
1103 : :
1104 : : static tree
1105 : 0 : conv_caf_vector_subscript (stmtblock_t *block, tree desc, gfc_array_ref *ar)
1106 : : {
1107 : 0 : gfc_se argse;
1108 : 0 : tree var, lower, upper = NULL_TREE, stride = NULL_TREE, vector, nvec;
1109 : 0 : tree lbound, ubound, tmp;
1110 : 0 : int i;
1111 : :
1112 : 0 : var = gfc_create_var (gfc_get_caf_vector_type (ar->dimen), "vector");
1113 : :
1114 : 0 : for (i = 0; i < ar->dimen; i++)
1115 : 0 : switch (ar->dimen_type[i])
1116 : : {
1117 : 0 : case DIMEN_RANGE:
1118 : 0 : if (ar->end[i])
1119 : : {
1120 : 0 : gfc_init_se (&argse, NULL);
1121 : 0 : gfc_conv_expr (&argse, ar->end[i]);
1122 : 0 : gfc_add_block_to_block (block, &argse.pre);
1123 : 0 : upper = gfc_evaluate_now (argse.expr, block);
1124 : : }
1125 : : else
1126 : 0 : upper = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
1127 : 0 : if (ar->stride[i])
1128 : : {
1129 : 0 : gfc_init_se (&argse, NULL);
1130 : 0 : gfc_conv_expr (&argse, ar->stride[i]);
1131 : 0 : gfc_add_block_to_block (block, &argse.pre);
1132 : 0 : stride = gfc_evaluate_now (argse.expr, block);
1133 : : }
1134 : : else
1135 : 0 : stride = gfc_index_one_node;
1136 : :
1137 : : /* Fall through. */
1138 : 0 : case DIMEN_ELEMENT:
1139 : 0 : if (ar->start[i])
1140 : : {
1141 : 0 : gfc_init_se (&argse, NULL);
1142 : 0 : gfc_conv_expr (&argse, ar->start[i]);
1143 : 0 : gfc_add_block_to_block (block, &argse.pre);
1144 : 0 : lower = gfc_evaluate_now (argse.expr, block);
1145 : : }
1146 : : else
1147 : 0 : lower = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
1148 : 0 : if (ar->dimen_type[i] == DIMEN_ELEMENT)
1149 : : {
1150 : 0 : upper = lower;
1151 : 0 : stride = gfc_index_one_node;
1152 : : }
1153 : 0 : vector = NULL_TREE;
1154 : 0 : nvec = size_zero_node;
1155 : 0 : conv_caf_vector_subscript_elem (block, i, var, lower, upper, stride,
1156 : : vector, 0, nvec);
1157 : 0 : break;
1158 : :
1159 : 0 : case DIMEN_VECTOR:
1160 : 0 : gfc_init_se (&argse, NULL);
1161 : 0 : argse.descriptor_only = 1;
1162 : 0 : gfc_conv_expr_descriptor (&argse, ar->start[i]);
1163 : 0 : gfc_add_block_to_block (block, &argse.pre);
1164 : 0 : vector = argse.expr;
1165 : 0 : lbound = gfc_conv_descriptor_lbound_get (vector, gfc_rank_cst[0]);
1166 : 0 : ubound = gfc_conv_descriptor_ubound_get (vector, gfc_rank_cst[0]);
1167 : 0 : nvec = gfc_conv_array_extent_dim (lbound, ubound, NULL);
1168 : 0 : tmp = gfc_conv_descriptor_stride_get (vector, gfc_rank_cst[0]);
1169 : 0 : nvec = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1170 : 0 : TREE_TYPE (nvec), nvec, tmp);
1171 : 0 : lower = gfc_index_zero_node;
1172 : 0 : upper = gfc_index_zero_node;
1173 : 0 : stride = gfc_index_zero_node;
1174 : 0 : vector = gfc_conv_descriptor_data_get (vector);
1175 : 0 : conv_caf_vector_subscript_elem (block, i, var, lower, upper, stride,
1176 : 0 : vector, ar->start[i]->ts.kind, nvec);
1177 : 0 : break;
1178 : 0 : default:
1179 : 0 : gcc_unreachable();
1180 : : }
1181 : 0 : return gfc_build_addr_expr (NULL_TREE, var);
1182 : : }
1183 : :
1184 : :
1185 : : static tree
1186 : 1106 : compute_component_offset (tree field, tree type)
1187 : : {
1188 : 1106 : tree tmp;
1189 : 1106 : if (DECL_FIELD_BIT_OFFSET (field) != NULL_TREE
1190 : 1106 : && !integer_zerop (DECL_FIELD_BIT_OFFSET (field)))
1191 : : {
1192 : 549 : tmp = fold_build2 (TRUNC_DIV_EXPR, type,
1193 : : DECL_FIELD_BIT_OFFSET (field),
1194 : : bitsize_unit_node);
1195 : 549 : return fold_build2 (PLUS_EXPR, type, DECL_FIELD_OFFSET (field), tmp);
1196 : : }
1197 : : else
1198 : 557 : return DECL_FIELD_OFFSET (field);
1199 : : }
1200 : :
1201 : :
1202 : : static tree
1203 : 437 : conv_expr_ref_to_caf_ref (stmtblock_t *block, gfc_expr *expr)
1204 : : {
1205 : 437 : gfc_ref *ref = expr->ref, *last_comp_ref;
1206 : 437 : tree caf_ref = NULL_TREE, prev_caf_ref = NULL_TREE, reference_type, tmp, tmp2,
1207 : : field, last_type, inner_struct, mode, mode_rhs, dim_array, dim, dim_type,
1208 : : start, end, stride, vector, nvec;
1209 : 437 : gfc_se se;
1210 : 437 : bool ref_static_array = false;
1211 : 437 : tree last_component_ref_tree = NULL_TREE;
1212 : 437 : int i, last_type_n;
1213 : :
1214 : 437 : if (expr->symtree)
1215 : : {
1216 : 437 : last_component_ref_tree = expr->symtree->n.sym->backend_decl;
1217 : 437 : ref_static_array = !expr->symtree->n.sym->attr.allocatable
1218 : 437 : && !expr->symtree->n.sym->attr.pointer;
1219 : : }
1220 : :
1221 : : /* Prevent uninit-warning. */
1222 : 437 : reference_type = NULL_TREE;
1223 : :
1224 : : /* Skip refs upto the first coarray-ref. */
1225 : 437 : last_comp_ref = NULL;
1226 : 444 : while (ref && (ref->type != REF_ARRAY || ref->u.ar.codimen == 0))
1227 : : {
1228 : : /* Remember the type of components skipped. */
1229 : 7 : if (ref->type == REF_COMPONENT)
1230 : 7 : last_comp_ref = ref;
1231 : 7 : ref = ref->next;
1232 : : }
1233 : : /* When a component was skipped, get the type information of the last
1234 : : component ref, else get the type from the symbol. */
1235 : 437 : if (last_comp_ref)
1236 : : {
1237 : 7 : last_type = gfc_typenode_for_spec (&last_comp_ref->u.c.component->ts);
1238 : 7 : last_type_n = last_comp_ref->u.c.component->ts.type;
1239 : : }
1240 : : else
1241 : : {
1242 : 430 : last_type = gfc_typenode_for_spec (&expr->symtree->n.sym->ts);
1243 : 430 : last_type_n = expr->symtree->n.sym->ts.type;
1244 : : }
1245 : :
1246 : 1872 : while (ref)
1247 : : {
1248 : 1435 : if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0
1249 : 437 : && ref->u.ar.dimen == 0)
1250 : : {
1251 : : /* Skip pure coindexes. */
1252 : 431 : ref = ref->next;
1253 : 431 : continue;
1254 : : }
1255 : 1004 : tmp = gfc_create_var (gfc_get_caf_reference_type (), "caf_ref");
1256 : 1004 : reference_type = TREE_TYPE (tmp);
1257 : :
1258 : 1004 : if (caf_ref == NULL_TREE)
1259 : 437 : caf_ref = tmp;
1260 : :
1261 : : /* Construct the chain of refs. */
1262 : 1004 : if (prev_caf_ref != NULL_TREE)
1263 : : {
1264 : 567 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 0);
1265 : 567 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1266 : 567 : TREE_TYPE (field), prev_caf_ref, field,
1267 : : NULL_TREE);
1268 : 567 : gfc_add_modify (block, tmp2, gfc_build_addr_expr (TREE_TYPE (field),
1269 : : tmp));
1270 : : }
1271 : 1004 : prev_caf_ref = tmp;
1272 : :
1273 : 1004 : switch (ref->type)
1274 : : {
1275 : 653 : case REF_COMPONENT:
1276 : 653 : last_type = gfc_typenode_for_spec (&ref->u.c.component->ts);
1277 : 653 : last_type_n = ref->u.c.component->ts.type;
1278 : : /* Set the type of the ref. */
1279 : 653 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 1);
1280 : 653 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1281 : 653 : TREE_TYPE (field), prev_caf_ref, field,
1282 : : NULL_TREE);
1283 : 653 : gfc_add_modify (block, tmp, build_int_cst (integer_type_node,
1284 : 653 : GFC_CAF_REF_COMPONENT));
1285 : :
1286 : : /* Ref the c in union u. */
1287 : 653 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 3);
1288 : 653 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1289 : 653 : TREE_TYPE (field), prev_caf_ref, field,
1290 : : NULL_TREE);
1291 : 653 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (field)), 0);
1292 : 653 : inner_struct = fold_build3_loc (input_location, COMPONENT_REF,
1293 : 653 : TREE_TYPE (field), tmp, field,
1294 : : NULL_TREE);
1295 : :
1296 : : /* Set the offset. */
1297 : 653 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 0);
1298 : 653 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1299 : 653 : TREE_TYPE (field), inner_struct, field,
1300 : : NULL_TREE);
1301 : : /* Computing the offset is somewhat harder. The bit_offset has to be
1302 : : taken into account. When the bit_offset in the field_decl is non-
1303 : : null, divide it by the bitsize_unit and add it to the regular
1304 : : offset. */
1305 : 653 : tmp2 = compute_component_offset (ref->u.c.component->backend_decl,
1306 : 653 : TREE_TYPE (tmp));
1307 : 653 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
1308 : :
1309 : : /* Set caf_token_offset. */
1310 : 653 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 1);
1311 : 653 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1312 : 653 : TREE_TYPE (field), inner_struct, field,
1313 : : NULL_TREE);
1314 : 653 : if ((ref->u.c.component->attr.allocatable
1315 : 653 : || ref->u.c.component->attr.pointer)
1316 : 453 : && ref->u.c.component->attr.dimension)
1317 : : {
1318 : 237 : tree arr_desc_token_offset;
1319 : : /* Get the token field from the descriptor. */
1320 : 237 : arr_desc_token_offset = TREE_OPERAND (
1321 : : gfc_conv_descriptor_token (ref->u.c.component->backend_decl), 1);
1322 : 237 : arr_desc_token_offset
1323 : 237 : = compute_component_offset (arr_desc_token_offset,
1324 : 237 : TREE_TYPE (tmp));
1325 : 237 : tmp2 = fold_build2_loc (input_location, PLUS_EXPR,
1326 : 237 : TREE_TYPE (tmp2), tmp2,
1327 : : arr_desc_token_offset);
1328 : 237 : }
1329 : 416 : else if (ref->u.c.component->caf_token)
1330 : 216 : tmp2 = compute_component_offset (gfc_comp_caf_token (
1331 : : ref->u.c.component),
1332 : 216 : TREE_TYPE (tmp));
1333 : : else
1334 : 200 : tmp2 = integer_zero_node;
1335 : 653 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
1336 : :
1337 : : /* Remember whether this ref was to a non-allocatable/non-pointer
1338 : : component so the next array ref can be tailored correctly. */
1339 : 653 : ref_static_array = !ref->u.c.component->attr.allocatable
1340 : 653 : && !ref->u.c.component->attr.pointer;
1341 : 653 : last_component_ref_tree = ref_static_array
1342 : 653 : ? ref->u.c.component->backend_decl : NULL_TREE;
1343 : : break;
1344 : 351 : case REF_ARRAY:
1345 : 351 : if (ref_static_array && ref->u.ar.as->type == AS_DEFERRED)
1346 : 243 : ref_static_array = false;
1347 : : /* Set the type of the ref. */
1348 : 351 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 1);
1349 : 351 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1350 : 351 : TREE_TYPE (field), prev_caf_ref, field,
1351 : : NULL_TREE);
1352 : 351 : gfc_add_modify (block, tmp, build_int_cst (integer_type_node,
1353 : : ref_static_array
1354 : 594 : ? GFC_CAF_REF_STATIC_ARRAY
1355 : : : GFC_CAF_REF_ARRAY));
1356 : :
1357 : : /* Ref the a in union u. */
1358 : 351 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 3);
1359 : 351 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1360 : 351 : TREE_TYPE (field), prev_caf_ref, field,
1361 : : NULL_TREE);
1362 : 351 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (field)), 1);
1363 : 351 : inner_struct = fold_build3_loc (input_location, COMPONENT_REF,
1364 : 351 : TREE_TYPE (field), tmp, field,
1365 : : NULL_TREE);
1366 : :
1367 : : /* Set the static_array_type in a for static arrays. */
1368 : 351 : if (ref_static_array)
1369 : : {
1370 : 108 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)),
1371 : : 1);
1372 : 108 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1373 : 108 : TREE_TYPE (field), inner_struct, field,
1374 : : NULL_TREE);
1375 : 108 : gfc_add_modify (block, tmp, build_int_cst (TREE_TYPE (tmp),
1376 : : last_type_n));
1377 : : }
1378 : : /* Ref the mode in the inner_struct. */
1379 : 351 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 0);
1380 : 351 : mode = fold_build3_loc (input_location, COMPONENT_REF,
1381 : 351 : TREE_TYPE (field), inner_struct, field,
1382 : : NULL_TREE);
1383 : : /* Ref the dim in the inner_struct. */
1384 : 351 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (inner_struct)), 2);
1385 : 702 : dim_array = fold_build3_loc (input_location, COMPONENT_REF,
1386 : 351 : TREE_TYPE (field), inner_struct, field,
1387 : : NULL_TREE);
1388 : 1203 : for (i = 0; i < ref->u.ar.dimen; ++i)
1389 : : {
1390 : : /* Ref dim i. */
1391 : 501 : dim = gfc_build_array_ref (dim_array, gfc_rank_cst[i], NULL_TREE);
1392 : 501 : dim_type = TREE_TYPE (dim);
1393 : 501 : mode_rhs = start = end = stride = NULL_TREE;
1394 : 501 : switch (ref->u.ar.dimen_type[i])
1395 : : {
1396 : 429 : case DIMEN_RANGE:
1397 : 429 : if (ref->u.ar.end[i])
1398 : : {
1399 : 12 : gfc_init_se (&se, NULL);
1400 : 12 : gfc_conv_expr (&se, ref->u.ar.end[i]);
1401 : 12 : gfc_add_block_to_block (block, &se.pre);
1402 : 12 : if (ref_static_array)
1403 : : {
1404 : : /* Make the index zero-based, when reffing a static
1405 : : array. */
1406 : 12 : end = se.expr;
1407 : 12 : gfc_init_se (&se, NULL);
1408 : 12 : gfc_conv_expr (&se, ref->u.ar.as->lower[i]);
1409 : 12 : gfc_add_block_to_block (block, &se.pre);
1410 : 12 : se.expr = fold_build2 (MINUS_EXPR,
1411 : : gfc_array_index_type,
1412 : : end, fold_convert (
1413 : : gfc_array_index_type,
1414 : : se.expr));
1415 : : }
1416 : 12 : end = gfc_evaluate_now (fold_convert (
1417 : : gfc_array_index_type,
1418 : : se.expr),
1419 : : block);
1420 : : }
1421 : 417 : else if (ref_static_array)
1422 : 168 : end = fold_build2 (MINUS_EXPR,
1423 : : gfc_array_index_type,
1424 : : gfc_conv_array_ubound (
1425 : : last_component_ref_tree, i),
1426 : : gfc_conv_array_lbound (
1427 : : last_component_ref_tree, i));
1428 : : else
1429 : : {
1430 : 249 : end = NULL_TREE;
1431 : 249 : mode_rhs = build_int_cst (unsigned_char_type_node,
1432 : 249 : GFC_CAF_ARR_REF_OPEN_END);
1433 : : }
1434 : 429 : if (ref->u.ar.stride[i])
1435 : : {
1436 : 24 : gfc_init_se (&se, NULL);
1437 : 24 : gfc_conv_expr (&se, ref->u.ar.stride[i]);
1438 : 24 : gfc_add_block_to_block (block, &se.pre);
1439 : 24 : stride = gfc_evaluate_now (fold_convert (
1440 : : gfc_array_index_type,
1441 : : se.expr),
1442 : : block);
1443 : 24 : if (ref_static_array)
1444 : : {
1445 : : /* Make the index zero-based, when reffing a static
1446 : : array. */
1447 : 12 : stride = fold_build2 (MULT_EXPR,
1448 : : gfc_array_index_type,
1449 : : gfc_conv_array_stride (
1450 : : last_component_ref_tree,
1451 : : i),
1452 : : stride);
1453 : 12 : gcc_assert (end != NULL_TREE);
1454 : : /* Multiply with the product of array's stride and
1455 : : the step of the ref to a virtual upper bound.
1456 : : We cannot compute the actual upper bound here or
1457 : : the caflib would compute the extend
1458 : : incorrectly. */
1459 : 12 : end = fold_build2 (MULT_EXPR, gfc_array_index_type,
1460 : : end, gfc_conv_array_stride (
1461 : : last_component_ref_tree,
1462 : : i));
1463 : 12 : end = gfc_evaluate_now (end, block);
1464 : 12 : stride = gfc_evaluate_now (stride, block);
1465 : : }
1466 : : }
1467 : 405 : else if (ref_static_array)
1468 : : {
1469 : 168 : stride = gfc_conv_array_stride (last_component_ref_tree,
1470 : : i);
1471 : 168 : end = fold_build2 (MULT_EXPR, gfc_array_index_type,
1472 : : end, stride);
1473 : 168 : end = gfc_evaluate_now (end, block);
1474 : : }
1475 : : else
1476 : : /* Always set a ref stride of one to make caflib's
1477 : : handling easier. */
1478 : 237 : stride = gfc_index_one_node;
1479 : :
1480 : : /* Fall through. */
1481 : 501 : case DIMEN_ELEMENT:
1482 : 501 : if (ref->u.ar.start[i])
1483 : : {
1484 : 72 : gfc_init_se (&se, NULL);
1485 : 72 : gfc_conv_expr (&se, ref->u.ar.start[i]);
1486 : 72 : gfc_add_block_to_block (block, &se.pre);
1487 : 72 : if (ref_static_array)
1488 : : {
1489 : : /* Make the index zero-based, when reffing a static
1490 : : array. */
1491 : 0 : start = fold_convert (gfc_array_index_type, se.expr);
1492 : 0 : gfc_init_se (&se, NULL);
1493 : 0 : gfc_conv_expr (&se, ref->u.ar.as->lower[i]);
1494 : 0 : gfc_add_block_to_block (block, &se.pre);
1495 : 0 : se.expr = fold_build2 (MINUS_EXPR,
1496 : : gfc_array_index_type,
1497 : : start, fold_convert (
1498 : : gfc_array_index_type,
1499 : : se.expr));
1500 : : /* Multiply with the stride. */
1501 : 0 : se.expr = fold_build2 (MULT_EXPR,
1502 : : gfc_array_index_type,
1503 : : se.expr,
1504 : : gfc_conv_array_stride (
1505 : : last_component_ref_tree,
1506 : : i));
1507 : : }
1508 : 72 : start = gfc_evaluate_now (fold_convert (
1509 : : gfc_array_index_type,
1510 : : se.expr),
1511 : : block);
1512 : 72 : if (mode_rhs == NULL_TREE)
1513 : 72 : mode_rhs = build_int_cst (unsigned_char_type_node,
1514 : 72 : ref->u.ar.dimen_type[i]
1515 : : == DIMEN_ELEMENT
1516 : 72 : ? GFC_CAF_ARR_REF_SINGLE
1517 : : : GFC_CAF_ARR_REF_RANGE);
1518 : : }
1519 : 429 : else if (ref_static_array)
1520 : : {
1521 : 180 : start = integer_zero_node;
1522 : 180 : mode_rhs = build_int_cst (unsigned_char_type_node,
1523 : : ref->u.ar.start[i] == NULL
1524 : 180 : ? GFC_CAF_ARR_REF_FULL
1525 : : : GFC_CAF_ARR_REF_RANGE);
1526 : : }
1527 : 249 : else if (end == NULL_TREE)
1528 : 249 : mode_rhs = build_int_cst (unsigned_char_type_node,
1529 : 249 : GFC_CAF_ARR_REF_FULL);
1530 : : else
1531 : 0 : mode_rhs = build_int_cst (unsigned_char_type_node,
1532 : 0 : GFC_CAF_ARR_REF_OPEN_START);
1533 : :
1534 : : /* Ref the s in dim. */
1535 : 501 : field = gfc_advance_chain (TYPE_FIELDS (dim_type), 0);
1536 : 501 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1537 : 501 : TREE_TYPE (field), dim, field,
1538 : : NULL_TREE);
1539 : :
1540 : : /* Set start in s. */
1541 : 501 : if (start != NULL_TREE)
1542 : : {
1543 : 252 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1544 : : 0);
1545 : 252 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1546 : 252 : TREE_TYPE (field), tmp, field,
1547 : : NULL_TREE);
1548 : 252 : gfc_add_modify (block, tmp2,
1549 : 252 : fold_convert (TREE_TYPE (tmp2), start));
1550 : : }
1551 : :
1552 : : /* Set end in s. */
1553 : 501 : if (end != NULL_TREE)
1554 : : {
1555 : 180 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1556 : : 1);
1557 : 180 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1558 : 180 : TREE_TYPE (field), tmp, field,
1559 : : NULL_TREE);
1560 : 180 : gfc_add_modify (block, tmp2,
1561 : 180 : fold_convert (TREE_TYPE (tmp2), end));
1562 : : }
1563 : :
1564 : : /* Set end in s. */
1565 : 501 : if (stride != NULL_TREE)
1566 : : {
1567 : 429 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)),
1568 : : 2);
1569 : 429 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1570 : 429 : TREE_TYPE (field), tmp, field,
1571 : : NULL_TREE);
1572 : 429 : gfc_add_modify (block, tmp2,
1573 : 429 : fold_convert (TREE_TYPE (tmp2), stride));
1574 : : }
1575 : : break;
1576 : 0 : case DIMEN_VECTOR:
1577 : : /* TODO: In case of static array. */
1578 : 0 : gcc_assert (!ref_static_array);
1579 : 0 : mode_rhs = build_int_cst (unsigned_char_type_node,
1580 : 0 : GFC_CAF_ARR_REF_VECTOR);
1581 : 0 : gfc_init_se (&se, NULL);
1582 : 0 : se.descriptor_only = 1;
1583 : 0 : gfc_conv_expr_descriptor (&se, ref->u.ar.start[i]);
1584 : 0 : gfc_add_block_to_block (block, &se.pre);
1585 : 0 : vector = se.expr;
1586 : 0 : tmp = gfc_conv_descriptor_lbound_get (vector,
1587 : : gfc_rank_cst[0]);
1588 : 0 : tmp2 = gfc_conv_descriptor_ubound_get (vector,
1589 : : gfc_rank_cst[0]);
1590 : 0 : nvec = gfc_conv_array_extent_dim (tmp, tmp2, NULL);
1591 : 0 : tmp = gfc_conv_descriptor_stride_get (vector,
1592 : : gfc_rank_cst[0]);
1593 : 0 : nvec = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1594 : 0 : TREE_TYPE (nvec), nvec, tmp);
1595 : 0 : vector = gfc_conv_descriptor_data_get (vector);
1596 : :
1597 : : /* Ref the v in dim. */
1598 : 0 : field = gfc_advance_chain (TYPE_FIELDS (dim_type), 1);
1599 : 0 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
1600 : 0 : TREE_TYPE (field), dim, field,
1601 : : NULL_TREE);
1602 : :
1603 : : /* Set vector in v. */
1604 : 0 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 0);
1605 : 0 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1606 : 0 : TREE_TYPE (field), tmp, field,
1607 : : NULL_TREE);
1608 : 0 : gfc_add_modify (block, tmp2, fold_convert (TREE_TYPE (tmp2),
1609 : : vector));
1610 : :
1611 : : /* Set nvec in v. */
1612 : 0 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 1);
1613 : 0 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1614 : 0 : TREE_TYPE (field), tmp, field,
1615 : : NULL_TREE);
1616 : 0 : gfc_add_modify (block, tmp2, fold_convert (TREE_TYPE (tmp2),
1617 : : nvec));
1618 : :
1619 : : /* Set kind in v. */
1620 : 0 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), 2);
1621 : 0 : tmp2 = fold_build3_loc (input_location, COMPONENT_REF,
1622 : 0 : TREE_TYPE (field), tmp, field,
1623 : : NULL_TREE);
1624 : 0 : gfc_add_modify (block, tmp2, build_int_cst (integer_type_node,
1625 : 0 : ref->u.ar.start[i]->ts.kind));
1626 : 0 : break;
1627 : 0 : default:
1628 : 0 : gcc_unreachable ();
1629 : : }
1630 : : /* Set the mode for dim i. */
1631 : 501 : tmp = gfc_build_array_ref (mode, gfc_rank_cst[i], NULL_TREE);
1632 : 501 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (tmp),
1633 : : mode_rhs));
1634 : : }
1635 : :
1636 : : /* Set the mode for dim i+1 to GFC_ARR_REF_NONE. */
1637 : 351 : if (i < GFC_MAX_DIMENSIONS)
1638 : : {
1639 : 351 : tmp = gfc_build_array_ref (mode, gfc_rank_cst[i], NULL_TREE);
1640 : 351 : gfc_add_modify (block, tmp,
1641 : 351 : build_int_cst (unsigned_char_type_node,
1642 : 351 : GFC_CAF_ARR_REF_NONE));
1643 : : }
1644 : : break;
1645 : 0 : default:
1646 : 0 : gcc_unreachable ();
1647 : : }
1648 : :
1649 : : /* Set the size of the current type. */
1650 : 1004 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 2);
1651 : 1004 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1652 : : prev_caf_ref, field, NULL_TREE);
1653 : 1004 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field),
1654 : : TYPE_SIZE_UNIT (last_type)));
1655 : :
1656 : 1004 : ref = ref->next;
1657 : : }
1658 : :
1659 : 437 : if (prev_caf_ref != NULL_TREE)
1660 : : {
1661 : 437 : field = gfc_advance_chain (TYPE_FIELDS (reference_type), 0);
1662 : 437 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
1663 : : prev_caf_ref, field, NULL_TREE);
1664 : 437 : gfc_add_modify (block, tmp, fold_convert (TREE_TYPE (field),
1665 : : null_pointer_node));
1666 : : }
1667 : 437 : return caf_ref != NULL_TREE ? gfc_build_addr_expr (NULL_TREE, caf_ref)
1668 : 437 : : NULL_TREE;
1669 : : }
1670 : :
1671 : : static tree
1672 : 178 : conv_shape_to_cst (gfc_expr *e)
1673 : : {
1674 : 178 : tree tmp = NULL;
1675 : 466 : for (int d = 0; d < e->rank; ++d)
1676 : : {
1677 : 288 : if (!tmp)
1678 : 178 : tmp = gfc_conv_mpz_to_tree (e->shape[d], gfc_size_kind);
1679 : : else
1680 : 110 : tmp = fold_build2 (MULT_EXPR, TREE_TYPE (tmp), tmp,
1681 : : gfc_conv_mpz_to_tree (e->shape[d], gfc_size_kind));
1682 : : }
1683 : 178 : return fold_convert (size_type_node, tmp);
1684 : : }
1685 : :
1686 : : /* Get data from a remote coarray. */
1687 : :
1688 : : static void
1689 : 869 : gfc_conv_intrinsic_caf_get (gfc_se *se, gfc_expr *expr, tree lhs,
1690 : : bool may_realloc, symbol_attribute *caf_attr)
1691 : : {
1692 : 869 : static int call_cnt = 0;
1693 : 869 : gfc_expr *array_expr, *tmp_stat;
1694 : 869 : gfc_se argse;
1695 : 869 : tree caf_decl, token, image_index, tmp, res_var, type, stat, dest_size,
1696 : : dest_data, opt_dest_desc, rget_index_tree, rget_data_tree, rget_data_size,
1697 : : opt_src_desc, opt_src_charlen, opt_dest_charlen;
1698 : 869 : symbol_attribute caf_attr_store;
1699 : 869 : gfc_namespace *ns;
1700 : 869 : gfc_expr *rget_hash = expr->value.function.actual->next->expr,
1701 : 869 : *rget_fn_expr = expr->value.function.actual->next->next->expr;
1702 : 869 : gfc_symbol *gdata_sym
1703 : 869 : = rget_fn_expr->symtree->n.sym->formal->next->next->next->sym;
1704 : 869 : gfc_expr rget_data, rget_data_init, rget_index;
1705 : 869 : char *name;
1706 : 869 : gfc_symtree *data_st, *index_st;
1707 : 869 : gfc_constructor *con;
1708 : 869 : stmtblock_t blk;
1709 : :
1710 : 869 : gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
1711 : :
1712 : 869 : if (se->ss && se->ss->info->useflags)
1713 : : {
1714 : : /* Access the previously obtained result. */
1715 : 344 : gfc_conv_tmp_array_ref (se);
1716 : 344 : return;
1717 : : }
1718 : :
1719 : 525 : array_expr = expr->value.function.actual->expr;
1720 : 1050 : ns = array_expr->expr_type == EXPR_VARIABLE
1721 : 525 : && !array_expr->symtree->n.sym->attr.associate_var
1722 : 1050 : ? array_expr->symtree->n.sym->ns
1723 : : : gfc_current_ns;
1724 : 525 : type = gfc_typenode_for_spec (&array_expr->ts);
1725 : :
1726 : 525 : if (caf_attr == NULL)
1727 : : {
1728 : 525 : caf_attr_store = gfc_caf_attr (array_expr);
1729 : 525 : caf_attr = &caf_attr_store;
1730 : : }
1731 : :
1732 : 525 : res_var = lhs;
1733 : :
1734 : 525 : tmp_stat = gfc_find_stat_co (expr);
1735 : :
1736 : 525 : if (tmp_stat)
1737 : : {
1738 : 11 : gfc_se stat_se;
1739 : 11 : gfc_init_se (&stat_se, NULL);
1740 : 11 : gfc_conv_expr_reference (&stat_se, tmp_stat);
1741 : 11 : stat = stat_se.expr;
1742 : 11 : gfc_add_block_to_block (&se->pre, &stat_se.pre);
1743 : 11 : gfc_add_block_to_block (&se->post, &stat_se.post);
1744 : : }
1745 : : else
1746 : 514 : stat = null_pointer_node;
1747 : :
1748 : 525 : memset (&rget_data, 0, sizeof (gfc_expr));
1749 : 525 : gfc_clear_ts (&rget_data.ts);
1750 : 525 : rget_data.expr_type = EXPR_VARIABLE;
1751 : 525 : name = xasprintf ("__caf_rget_data_%d", call_cnt);
1752 : 525 : gcc_assert (!gfc_get_sym_tree (name, ns, &data_st, false));
1753 : 525 : name = xasprintf ("__caf_rget_index_%d", call_cnt);
1754 : 525 : ++call_cnt;
1755 : 525 : gcc_assert (!gfc_get_sym_tree (name, ns, &index_st, false));
1756 : 525 : free (name);
1757 : 525 : data_st->n.sym->attr.flavor = FL_VARIABLE;
1758 : 525 : data_st->n.sym->ts = gdata_sym->ts;
1759 : 525 : rget_data.symtree = data_st;
1760 : 525 : gfc_set_sym_referenced (rget_data.symtree->n.sym);
1761 : 525 : rget_data.ts = data_st->n.sym->ts;
1762 : 525 : gfc_commit_symbol (data_st->n.sym);
1763 : :
1764 : 525 : memset (&rget_data_init, 0, sizeof (gfc_expr));
1765 : 525 : gfc_clear_ts (&rget_data_init.ts);
1766 : 525 : rget_data_init.expr_type = EXPR_STRUCTURE;
1767 : 525 : rget_data_init.ts = rget_data.ts;
1768 : 589 : for (gfc_component *comp = rget_data.ts.u.derived->components; comp;
1769 : 64 : comp = comp->next)
1770 : : {
1771 : 64 : con = gfc_constructor_get ();
1772 : 64 : con->expr = comp->initializer;
1773 : 64 : comp->initializer = NULL;
1774 : 64 : gfc_constructor_append (&rget_data_init.value.constructor, con);
1775 : : }
1776 : :
1777 : 525 : index_st->n.sym->attr.flavor = FL_VARIABLE;
1778 : 525 : index_st->n.sym->attr.save = SAVE_EXPLICIT;
1779 : 525 : index_st->n.sym->value
1780 : 525 : = gfc_get_constant_expr (BT_INTEGER, gfc_default_integer_kind,
1781 : : &gfc_current_locus);
1782 : 525 : mpz_init_set_si (index_st->n.sym->value->value.integer, -1);
1783 : 525 : index_st->n.sym->ts.type = BT_INTEGER;
1784 : 525 : index_st->n.sym->ts.kind = gfc_default_integer_kind;
1785 : 525 : gfc_set_sym_referenced (index_st->n.sym);
1786 : 525 : memset (&rget_index, 0, sizeof (gfc_expr));
1787 : 525 : gfc_clear_ts (&rget_index.ts);
1788 : 525 : rget_index.expr_type = EXPR_VARIABLE;
1789 : 525 : rget_index.symtree = index_st;
1790 : 525 : rget_index.ts = index_st->n.sym->ts;
1791 : 525 : gfc_commit_symbol (index_st->n.sym);
1792 : :
1793 : 525 : gfc_init_se (&argse, NULL);
1794 : 525 : gfc_conv_expr (&argse, &rget_index);
1795 : 525 : gfc_add_block_to_block (&se->pre, &argse.pre);
1796 : 525 : rget_index_tree = argse.expr;
1797 : :
1798 : 525 : gfc_init_se (&argse, NULL);
1799 : 525 : gfc_conv_expr (&argse, rget_hash);
1800 : :
1801 : 525 : gfc_init_block (&blk);
1802 : 525 : tmp = build_call_expr (gfor_fndecl_caf_get_remote_function_index, 1,
1803 : : argse.expr);
1804 : :
1805 : 525 : gfc_add_modify (&blk, rget_index_tree, tmp);
1806 : 525 : gfc_add_expr_to_block (
1807 : : &se->pre,
1808 : : build3 (COND_EXPR, void_type_node,
1809 : : gfc_likely (build2 (EQ_EXPR, logical_type_node, rget_index_tree,
1810 : 525 : build_int_cst (integer_type_node, -1)),
1811 : : PRED_FIRST_MATCH),
1812 : : gfc_finish_block (&blk), NULL_TREE));
1813 : :
1814 : 525 : if (rget_data.ts.u.derived->components)
1815 : : {
1816 : 35 : gfc_init_se (&argse, NULL);
1817 : 35 : gfc_conv_expr (&argse, &rget_data);
1818 : 35 : rget_data_tree = argse.expr;
1819 : 35 : gfc_add_expr_to_block (&se->pre,
1820 : : gfc_trans_structure_assign (rget_data_tree,
1821 : : &rget_data_init, true,
1822 : : false));
1823 : 35 : gfc_constructor_free (rget_data_init.value.constructor);
1824 : 35 : rget_data_size = TREE_TYPE (rget_data_tree)->type_common.size_unit;
1825 : 35 : rget_data_tree = gfc_build_addr_expr (pvoid_type_node, rget_data_tree);
1826 : : }
1827 : : else
1828 : : {
1829 : 490 : rget_data_tree = build_zero_cst (pvoid_type_node);
1830 : 490 : rget_data_size = build_zero_cst (size_type_node);
1831 : : }
1832 : :
1833 : 525 : if (array_expr->rank == 0)
1834 : : {
1835 : 180 : res_var = gfc_create_var (type, "caf_res");
1836 : 180 : if (array_expr->ts.type == BT_CHARACTER)
1837 : : {
1838 : 17 : gfc_conv_string_length (array_expr->ts.u.cl, array_expr, &se->pre);
1839 : 17 : argse.string_length = array_expr->ts.u.cl->backend_decl;
1840 : 17 : opt_src_charlen = gfc_build_addr_expr (
1841 : : NULL_TREE, gfc_trans_force_lval (&se->pre, argse.string_length));
1842 : 17 : dest_size = build_int_cstu (size_type_node, array_expr->ts.kind);
1843 : : }
1844 : : else
1845 : : {
1846 : 163 : dest_size = res_var->typed.type->type_common.size_unit;
1847 : 163 : opt_src_charlen
1848 : 163 : = build_zero_cst (build_pointer_type (size_type_node));
1849 : : }
1850 : 180 : dest_data
1851 : 180 : = gfc_evaluate_now (gfc_build_addr_expr (NULL_TREE, res_var), &se->pre);
1852 : 180 : res_var = build_fold_indirect_ref (dest_data);
1853 : 180 : dest_data = gfc_build_addr_expr (pvoid_type_node, dest_data);
1854 : 180 : opt_dest_desc = build_zero_cst (pvoid_type_node);
1855 : : }
1856 : : else
1857 : : {
1858 : : /* Create temporary. */
1859 : 345 : may_realloc = gfc_trans_create_temp_array (&se->pre, &se->post, se->ss,
1860 : : type, NULL_TREE, false, false,
1861 : : false, &array_expr->where)
1862 : : == NULL_TREE;
1863 : 345 : res_var = se->ss->info->data.array.descriptor;
1864 : 345 : if (array_expr->ts.type == BT_CHARACTER)
1865 : : {
1866 : 8 : argse.string_length = array_expr->ts.u.cl->backend_decl;
1867 : 8 : opt_src_charlen = gfc_build_addr_expr (
1868 : : NULL_TREE, gfc_trans_force_lval (&se->pre, argse.string_length));
1869 : 8 : dest_size = build_int_cstu (size_type_node, array_expr->ts.kind);
1870 : : }
1871 : : else
1872 : : {
1873 : 337 : opt_src_charlen
1874 : 337 : = build_zero_cst (build_pointer_type (size_type_node));
1875 : 337 : dest_size = fold_build2 (
1876 : : MULT_EXPR, size_type_node,
1877 : : fold_convert (size_type_node,
1878 : : array_expr->shape
1879 : : ? conv_shape_to_cst (array_expr)
1880 : : : gfc_conv_descriptor_size (res_var,
1881 : : array_expr->rank)),
1882 : : fold_convert (size_type_node,
1883 : : gfc_conv_descriptor_span_get (res_var)));
1884 : : }
1885 : 345 : opt_dest_desc = res_var;
1886 : 345 : dest_data = gfc_conv_descriptor_data_get (res_var);
1887 : 345 : opt_dest_desc = gfc_build_addr_expr (NULL_TREE, opt_dest_desc);
1888 : 345 : if (may_realloc)
1889 : : {
1890 : 44 : tmp = gfc_conv_descriptor_data_get (res_var);
1891 : 44 : tmp = gfc_deallocate_with_status (tmp, NULL_TREE, NULL_TREE,
1892 : : NULL_TREE, NULL_TREE, true, NULL,
1893 : : GFC_CAF_COARRAY_NOCOARRAY);
1894 : 44 : gfc_add_expr_to_block (&se->post, tmp);
1895 : : }
1896 : 345 : dest_data
1897 : 345 : = gfc_build_addr_expr (NULL_TREE,
1898 : : gfc_trans_force_lval (&se->pre, dest_data));
1899 : : }
1900 : :
1901 : 525 : opt_dest_charlen = opt_src_charlen;
1902 : 525 : caf_decl = gfc_get_tree_for_caf_expr (array_expr);
1903 : 525 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
1904 : 1 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
1905 : :
1906 : 525 : if (!TYPE_LANG_SPECIFIC (TREE_TYPE (caf_decl))->rank
1907 : 525 : || GFC_ARRAY_TYPE_P (TREE_TYPE (caf_decl)))
1908 : 464 : opt_src_desc = build_zero_cst (pvoid_type_node);
1909 : : else
1910 : 61 : opt_src_desc = gfc_build_addr_expr (pvoid_type_node, caf_decl);
1911 : :
1912 : 525 : image_index = gfc_caf_get_image_index (&se->pre, array_expr, caf_decl);
1913 : 525 : gfc_get_caf_token_offset (se, &token, NULL, caf_decl, NULL, array_expr);
1914 : :
1915 : : /* It guarantees memory consistency within the same segment. */
1916 : 525 : tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
1917 : 525 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1918 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
1919 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
1920 : 525 : ASM_VOLATILE_P (tmp) = 1;
1921 : 525 : gfc_add_expr_to_block (&se->pre, tmp);
1922 : :
1923 : 525 : tmp = build_call_expr_loc (
1924 : : input_location, gfor_fndecl_caf_get_by_ct, 15, token, opt_src_desc,
1925 : : opt_src_charlen, image_index, dest_size, dest_data, opt_dest_charlen,
1926 : : opt_dest_desc, constant_boolean_node (may_realloc, boolean_type_node),
1927 : : rget_index_tree, rget_data_tree, rget_data_size, stat, null_pointer_node,
1928 : : null_pointer_node);
1929 : :
1930 : 525 : gfc_add_expr_to_block (&se->pre, tmp);
1931 : :
1932 : 525 : if (se->ss)
1933 : 345 : gfc_advance_se_ss_chain (se);
1934 : :
1935 : 525 : se->expr = res_var;
1936 : 525 : if (array_expr->ts.type == BT_CHARACTER)
1937 : 25 : se->string_length = argse.string_length;
1938 : :
1939 : : return;
1940 : : }
1941 : :
1942 : : static bool
1943 : 138 : has_ref_after_cafref (gfc_expr *expr)
1944 : : {
1945 : 139 : for (gfc_ref *ref = expr->ref; ref; ref = ref->next)
1946 : 139 : if (ref->type == REF_ARRAY && ref->u.ar.codimen)
1947 : 138 : return ref->next;
1948 : : return false;
1949 : : }
1950 : :
1951 : : /* Send data to a remote coarray. */
1952 : :
1953 : : static tree
1954 : 459 : conv_caf_send (gfc_code *code) {
1955 : 459 : gfc_expr *lhs_expr, *rhs_expr, *tmp_stat, *tmp_team;
1956 : 459 : gfc_se lhs_se, rhs_se;
1957 : 459 : stmtblock_t block;
1958 : 459 : tree caf_decl, token, offset, image_index, tmp, lhs_kind, rhs_kind;
1959 : 459 : tree may_require_tmp, src_stat, dst_stat, dst_team;
1960 : 459 : tree lhs_type = NULL_TREE;
1961 : 459 : tree vec = null_pointer_node, rhs_vec = null_pointer_node;
1962 : 459 : symbol_attribute lhs_caf_attr, rhs_caf_attr;
1963 : 459 : bool lhs_is_coindexed, rhs_is_coindexed;
1964 : :
1965 : 459 : gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
1966 : :
1967 : 459 : lhs_expr
1968 : 918 : = code->ext.actual->expr->expr_type == EXPR_FUNCTION
1969 : 0 : && code->ext.actual->expr->value.function.isym->id == GFC_ISYM_CAF_GET
1970 : 459 : ? code->ext.actual->expr->value.function.actual->expr
1971 : : : code->ext.actual->expr;
1972 : 918 : rhs_expr = code->ext.actual->next->expr->expr_type == EXPR_FUNCTION
1973 : 90 : && code->ext.actual->next->expr->value.function.isym->id
1974 : : == GFC_ISYM_CAF_GET
1975 : 549 : ? code->ext.actual->next->expr->value.function.actual->expr
1976 : : : code->ext.actual->next->expr;
1977 : 459 : lhs_is_coindexed = gfc_is_coindexed (lhs_expr);
1978 : 459 : rhs_is_coindexed = gfc_is_coindexed (rhs_expr);
1979 : 459 : may_require_tmp = gfc_check_dependency (lhs_expr, rhs_expr, true) == 0
1980 : 459 : ? boolean_false_node : boolean_true_node;
1981 : 459 : gfc_init_block (&block);
1982 : :
1983 : 459 : lhs_caf_attr = gfc_caf_attr (lhs_expr);
1984 : 459 : rhs_caf_attr = gfc_caf_attr (rhs_expr);
1985 : 459 : src_stat = dst_stat = null_pointer_node;
1986 : 459 : dst_team = null_pointer_node;
1987 : :
1988 : : /* LHS. */
1989 : 459 : gfc_init_se (&lhs_se, NULL);
1990 : 459 : if (lhs_expr->rank == 0)
1991 : : {
1992 : 142 : if (lhs_expr->ts.type == BT_CHARACTER && lhs_expr->ts.deferred)
1993 : : {
1994 : 4 : lhs_se.expr = gfc_get_tree_for_caf_expr (lhs_expr);
1995 : 4 : if (!POINTER_TYPE_P (TREE_TYPE (lhs_se.expr)))
1996 : 4 : lhs_se.expr = gfc_build_addr_expr (NULL_TREE, lhs_se.expr);
1997 : : }
1998 : : else
1999 : : {
2000 : 138 : symbol_attribute attr;
2001 : 138 : gfc_clear_attr (&attr);
2002 : 138 : gfc_conv_expr (&lhs_se, lhs_expr);
2003 : 138 : lhs_type = TREE_TYPE (lhs_se.expr);
2004 : 138 : if (lhs_is_coindexed)
2005 : 138 : lhs_se.expr = gfc_conv_scalar_to_descriptor (&lhs_se, lhs_se.expr,
2006 : : attr);
2007 : 138 : lhs_se.expr = gfc_build_addr_expr (NULL_TREE, lhs_se.expr);
2008 : : }
2009 : : }
2010 : 317 : else if ((lhs_caf_attr.alloc_comp || lhs_caf_attr.pointer_comp)
2011 : 219 : && lhs_caf_attr.codimension)
2012 : : {
2013 : 219 : lhs_se.want_pointer = 1;
2014 : 219 : gfc_conv_expr_descriptor (&lhs_se, lhs_expr);
2015 : : /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
2016 : : has the wrong type if component references are done. */
2017 : 219 : lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
2018 : 219 : tmp = build_fold_indirect_ref_loc (input_location, lhs_se.expr);
2019 : 219 : gfc_add_modify (&lhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2020 : : gfc_get_dtype_rank_type (
2021 : 219 : gfc_has_vector_subscript (lhs_expr)
2022 : 0 : ? gfc_find_array_ref (lhs_expr)->dimen
2023 : : : lhs_expr->rank,
2024 : : lhs_type));
2025 : : }
2026 : : else
2027 : : {
2028 : 98 : bool has_vector = gfc_has_vector_subscript (lhs_expr);
2029 : :
2030 : 98 : if (lhs_is_coindexed || !has_vector)
2031 : : {
2032 : : /* If has_vector, pass descriptor for whole array and the
2033 : : vector bounds separately. */
2034 : 98 : gfc_array_ref *ar, ar2;
2035 : 98 : bool has_tmp_lhs_array = false;
2036 : 98 : if (has_vector)
2037 : : {
2038 : 0 : has_tmp_lhs_array = true;
2039 : 0 : ar = gfc_find_array_ref (lhs_expr);
2040 : 0 : ar2 = *ar;
2041 : 0 : memset (ar, '\0', sizeof (*ar));
2042 : 0 : ar->as = ar2.as;
2043 : 0 : ar->type = AR_FULL;
2044 : : }
2045 : 98 : lhs_se.want_pointer = 1;
2046 : 98 : gfc_conv_expr_descriptor (&lhs_se, lhs_expr);
2047 : : /* Using gfc_conv_expr_descriptor, we only get the descriptor, but
2048 : : that has the wrong type if component references are done. */
2049 : 98 : lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
2050 : 98 : tmp = build_fold_indirect_ref_loc (input_location, lhs_se.expr);
2051 : 98 : gfc_add_modify (&lhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2052 : : gfc_get_dtype_rank_type (has_vector ? ar2.dimen
2053 : : : lhs_expr->rank,
2054 : : lhs_type));
2055 : 98 : if (has_tmp_lhs_array)
2056 : : {
2057 : 0 : vec = conv_caf_vector_subscript (&block, lhs_se.expr, &ar2);
2058 : 0 : *ar = ar2;
2059 : : }
2060 : : }
2061 : 0 : else if (rhs_is_coindexed)
2062 : : {
2063 : : /* Special casing for arr1 ([...]) = arr2[...], i.e. caf_get to
2064 : : indexed array expression. This is rewritten to:
2065 : :
2066 : : tmp_array = arr2[...]
2067 : : arr1 ([...]) = tmp_array
2068 : :
2069 : : because using the standard gfc_conv_expr (lhs_expr) did the
2070 : : assignment with lhs and rhs exchanged. */
2071 : :
2072 : 0 : gfc_ss *lss_for_tmparray, *lss_real;
2073 : 0 : gfc_loopinfo loop;
2074 : 0 : gfc_se se;
2075 : 0 : stmtblock_t body;
2076 : 0 : tree tmparr_desc, src;
2077 : 0 : tree index = gfc_index_zero_node;
2078 : 0 : tree stride = gfc_index_zero_node;
2079 : 0 : int n;
2080 : :
2081 : : /* Walk both sides of the assignment, once to get the shape of the
2082 : : temporary array to create right. */
2083 : 0 : lss_for_tmparray = gfc_walk_expr (lhs_expr);
2084 : : /* And a second time to be able to create an assignment of the
2085 : : temporary to the lhs_expr. gfc_trans_create_temp_array replaces
2086 : : the tree in the descriptor with the one for the temporary
2087 : : array. */
2088 : 0 : lss_real = gfc_walk_expr (lhs_expr);
2089 : 0 : gfc_init_loopinfo (&loop);
2090 : 0 : gfc_add_ss_to_loop (&loop, lss_for_tmparray);
2091 : 0 : gfc_add_ss_to_loop (&loop, lss_real);
2092 : 0 : gfc_conv_ss_startstride (&loop);
2093 : 0 : gfc_conv_loop_setup (&loop, &lhs_expr->where);
2094 : 0 : lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
2095 : 0 : gfc_trans_create_temp_array (&lhs_se.pre, &lhs_se.post,
2096 : : lss_for_tmparray, lhs_type, NULL_TREE,
2097 : : false, true, false,
2098 : : &lhs_expr->where);
2099 : 0 : tmparr_desc = lss_for_tmparray->info->data.array.descriptor;
2100 : 0 : gfc_start_scalarized_body (&loop, &body);
2101 : 0 : gfc_init_se (&se, NULL);
2102 : 0 : gfc_copy_loopinfo_to_se (&se, &loop);
2103 : 0 : se.ss = lss_real;
2104 : 0 : gfc_conv_expr (&se, lhs_expr);
2105 : 0 : gfc_add_block_to_block (&body, &se.pre);
2106 : :
2107 : : /* Walk over all indexes of the loop. */
2108 : 0 : for (n = loop.dimen - 1; n > 0; --n)
2109 : : {
2110 : 0 : tmp = loop.loopvar[n];
2111 : 0 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
2112 : : gfc_array_index_type, tmp, loop.from[n]);
2113 : 0 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
2114 : : gfc_array_index_type, tmp, index);
2115 : :
2116 : 0 : stride = fold_build2_loc (input_location, MINUS_EXPR,
2117 : : gfc_array_index_type,
2118 : 0 : loop.to[n - 1], loop.from[n - 1]);
2119 : 0 : stride = fold_build2_loc (input_location, PLUS_EXPR,
2120 : : gfc_array_index_type,
2121 : : stride, gfc_index_one_node);
2122 : :
2123 : 0 : index = fold_build2_loc (input_location, MULT_EXPR,
2124 : : gfc_array_index_type, tmp, stride);
2125 : : }
2126 : :
2127 : 0 : index = fold_build2_loc (input_location, MINUS_EXPR,
2128 : : gfc_array_index_type,
2129 : : index, loop.from[0]);
2130 : :
2131 : 0 : index = fold_build2_loc (input_location, PLUS_EXPR,
2132 : : gfc_array_index_type,
2133 : : loop.loopvar[0], index);
2134 : :
2135 : 0 : src = build_fold_indirect_ref (gfc_conv_array_data (tmparr_desc));
2136 : 0 : src = gfc_build_array_ref (src, index, NULL);
2137 : : /* Now create the assignment of lhs_expr = tmp_array. */
2138 : 0 : gfc_add_modify (&body, se.expr, src);
2139 : 0 : gfc_add_block_to_block (&body, &se.post);
2140 : 0 : lhs_se.expr = gfc_build_addr_expr (NULL_TREE, tmparr_desc);
2141 : 0 : gfc_trans_scalarizing_loops (&loop, &body);
2142 : 0 : gfc_add_block_to_block (&loop.pre, &loop.post);
2143 : 0 : gfc_add_expr_to_block (&lhs_se.post, gfc_finish_block (&loop.pre));
2144 : 0 : gfc_free_ss (lss_for_tmparray);
2145 : 0 : gfc_free_ss (lss_real);
2146 : : }
2147 : : }
2148 : :
2149 : 459 : lhs_kind = build_int_cst (integer_type_node, lhs_expr->ts.kind);
2150 : :
2151 : : /* Special case: RHS is a coarray but LHS is not; this code path avoids a
2152 : : temporary and a loop. */
2153 : 459 : if (!lhs_is_coindexed && rhs_is_coindexed
2154 : 0 : && (!lhs_caf_attr.codimension
2155 : 0 : || !(lhs_expr->rank > 0
2156 : 0 : && (lhs_caf_attr.allocatable || lhs_caf_attr.pointer))))
2157 : : {
2158 : 0 : bool lhs_may_realloc = lhs_expr->rank > 0 && lhs_caf_attr.allocatable;
2159 : 0 : gfc_init_se (&rhs_se, NULL);
2160 : 0 : if (lhs_expr->rank == 0 && lhs_caf_attr.allocatable)
2161 : : {
2162 : 0 : gfc_se scal_se;
2163 : 0 : gfc_init_se (&scal_se, NULL);
2164 : 0 : scal_se.want_pointer = 1;
2165 : 0 : gfc_conv_expr (&scal_se, lhs_expr);
2166 : : /* Ensure scalar on lhs is allocated. */
2167 : 0 : gfc_add_block_to_block (&block, &scal_se.pre);
2168 : :
2169 : 0 : gfc_allocate_using_malloc (&scal_se.pre, scal_se.expr,
2170 : 0 : TYPE_SIZE_UNIT (
2171 : : gfc_typenode_for_spec (&lhs_expr->ts)),
2172 : : NULL_TREE);
2173 : 0 : tmp = fold_build2 (EQ_EXPR, logical_type_node, scal_se.expr,
2174 : : null_pointer_node);
2175 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
2176 : : tmp, gfc_finish_block (&scal_se.pre),
2177 : : build_empty_stmt (input_location));
2178 : 0 : gfc_add_expr_to_block (&block, tmp);
2179 : 0 : }
2180 : : else
2181 : 0 : lhs_may_realloc = lhs_may_realloc
2182 : 0 : && gfc_full_array_ref_p (lhs_expr->ref, NULL);
2183 : 0 : gfc_add_block_to_block (&block, &lhs_se.pre);
2184 : 0 : gfc_conv_intrinsic_caf_get (&rhs_se, code->ext.actual->next->expr,
2185 : : lhs_se.expr, lhs_may_realloc, &rhs_caf_attr);
2186 : 0 : gfc_add_block_to_block (&block, &rhs_se.pre);
2187 : 0 : gfc_add_block_to_block (&block, &rhs_se.post);
2188 : 0 : gfc_add_block_to_block (&block, &lhs_se.post);
2189 : 0 : return gfc_finish_block (&block);
2190 : : }
2191 : :
2192 : 459 : gfc_add_block_to_block (&block, &lhs_se.pre);
2193 : :
2194 : : /* Obtain token, offset and image index for the LHS. */
2195 : 459 : caf_decl = gfc_get_tree_for_caf_expr (lhs_expr);
2196 : 459 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
2197 : 6 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
2198 : 459 : image_index = gfc_caf_get_image_index (&block, lhs_expr, caf_decl);
2199 : 459 : tmp = lhs_se.expr;
2200 : 459 : if (lhs_caf_attr.alloc_comp)
2201 : 243 : gfc_get_caf_token_offset (&lhs_se, &token, NULL, caf_decl, NULL_TREE,
2202 : : NULL);
2203 : : else
2204 : 216 : gfc_get_caf_token_offset (&lhs_se, &token, &offset, caf_decl, tmp,
2205 : : lhs_expr);
2206 : 459 : lhs_se.expr = tmp;
2207 : :
2208 : : /* RHS. */
2209 : 459 : gfc_init_se (&rhs_se, NULL);
2210 : 459 : if (rhs_expr->expr_type == EXPR_FUNCTION && rhs_expr->value.function.isym
2211 : 0 : && rhs_expr->value.function.isym->id == GFC_ISYM_CONVERSION)
2212 : 0 : rhs_expr = rhs_expr->value.function.actual->expr;
2213 : 459 : if (rhs_expr->rank == 0)
2214 : : {
2215 : 257 : symbol_attribute attr;
2216 : 257 : gfc_clear_attr (&attr);
2217 : 257 : gfc_conv_expr (&rhs_se, rhs_expr);
2218 : 257 : rhs_se.expr = gfc_conv_scalar_to_descriptor (&rhs_se, rhs_se.expr, attr);
2219 : 257 : rhs_se.expr = gfc_build_addr_expr (NULL_TREE, rhs_se.expr);
2220 : : }
2221 : 202 : else if ((rhs_caf_attr.alloc_comp || rhs_caf_attr.pointer_comp)
2222 : 24 : && rhs_caf_attr.codimension)
2223 : : {
2224 : 24 : tree tmp2;
2225 : 24 : rhs_se.want_pointer = 1;
2226 : 24 : gfc_conv_expr_descriptor (&rhs_se, rhs_expr);
2227 : : /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
2228 : : has the wrong type if component references are done. */
2229 : 24 : tmp2 = gfc_typenode_for_spec (&rhs_expr->ts);
2230 : 24 : tmp = build_fold_indirect_ref_loc (input_location, rhs_se.expr);
2231 : 24 : gfc_add_modify (&rhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2232 : : gfc_get_dtype_rank_type (
2233 : 24 : gfc_has_vector_subscript (rhs_expr)
2234 : 0 : ? gfc_find_array_ref (rhs_expr)->dimen
2235 : : : rhs_expr->rank,
2236 : : tmp2));
2237 : 24 : }
2238 : : else
2239 : : {
2240 : : /* If has_vector, pass descriptor for whole array and the
2241 : : vector bounds separately. */
2242 : 178 : gfc_array_ref *ar, ar2;
2243 : 178 : bool has_vector = false;
2244 : 178 : tree tmp2;
2245 : :
2246 : 178 : if (rhs_is_coindexed && gfc_has_vector_subscript (rhs_expr))
2247 : : {
2248 : 0 : has_vector = true;
2249 : 0 : ar = gfc_find_array_ref (rhs_expr);
2250 : 0 : ar2 = *ar;
2251 : 0 : memset (ar, '\0', sizeof (*ar));
2252 : 0 : ar->as = ar2.as;
2253 : 0 : ar->type = AR_FULL;
2254 : : }
2255 : 178 : rhs_se.want_pointer = 1;
2256 : 178 : gfc_conv_expr_descriptor (&rhs_se, rhs_expr);
2257 : : /* Using gfc_conv_expr_descriptor, we only get the descriptor, but that
2258 : : has the wrong type if component references are done. */
2259 : 178 : tmp = build_fold_indirect_ref_loc (input_location, rhs_se.expr);
2260 : 178 : tmp2 = gfc_typenode_for_spec (&rhs_expr->ts);
2261 : 178 : gfc_add_modify (&rhs_se.pre, gfc_conv_descriptor_dtype (tmp),
2262 : : gfc_get_dtype_rank_type (has_vector ? ar2.dimen
2263 : : : rhs_expr->rank,
2264 : : tmp2));
2265 : 178 : if (has_vector)
2266 : : {
2267 : 0 : rhs_vec = conv_caf_vector_subscript (&block, rhs_se.expr, &ar2);
2268 : 0 : *ar = ar2;
2269 : : }
2270 : : }
2271 : :
2272 : 459 : gfc_add_block_to_block (&block, &rhs_se.pre);
2273 : :
2274 : 459 : rhs_kind = build_int_cst (integer_type_node, rhs_expr->ts.kind);
2275 : :
2276 : 459 : tmp_stat = gfc_find_stat_co (lhs_expr);
2277 : :
2278 : 459 : if (tmp_stat)
2279 : : {
2280 : 0 : gfc_se stat_se;
2281 : 0 : gfc_init_se (&stat_se, NULL);
2282 : 0 : gfc_conv_expr_reference (&stat_se, tmp_stat);
2283 : 0 : dst_stat = stat_se.expr;
2284 : 0 : gfc_add_block_to_block (&block, &stat_se.pre);
2285 : 0 : gfc_add_block_to_block (&block, &stat_se.post);
2286 : : }
2287 : :
2288 : 459 : tmp_team = gfc_find_team_co (lhs_expr);
2289 : :
2290 : 459 : if (tmp_team)
2291 : : {
2292 : 0 : gfc_se team_se;
2293 : 0 : gfc_init_se (&team_se, NULL);
2294 : 0 : gfc_conv_expr_reference (&team_se, tmp_team);
2295 : 0 : dst_team = team_se.expr;
2296 : 0 : gfc_add_block_to_block (&block, &team_se.pre);
2297 : 0 : gfc_add_block_to_block (&block, &team_se.post);
2298 : : }
2299 : :
2300 : 459 : if (!rhs_is_coindexed)
2301 : : {
2302 : 369 : if (lhs_caf_attr.alloc_comp || lhs_caf_attr.pointer_comp
2303 : 369 : || has_ref_after_cafref (lhs_expr))
2304 : : {
2305 : 281 : tree reference, dst_realloc;
2306 : 281 : reference = conv_expr_ref_to_caf_ref (&block, lhs_expr);
2307 : 281 : dst_realloc
2308 : 281 : = lhs_caf_attr.allocatable ? boolean_true_node : boolean_false_node;
2309 : 281 : tmp = build_call_expr_loc (input_location,
2310 : : gfor_fndecl_caf_send_by_ref,
2311 : : 10, token, image_index, rhs_se.expr,
2312 : : reference, lhs_kind, rhs_kind,
2313 : : may_require_tmp, dst_realloc, src_stat,
2314 : 281 : build_int_cst (integer_type_node,
2315 : 281 : lhs_expr->ts.type));
2316 : : }
2317 : : else
2318 : 88 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_send, 11,
2319 : : token, offset, image_index, lhs_se.expr, vec,
2320 : : rhs_se.expr, lhs_kind, rhs_kind,
2321 : : may_require_tmp, src_stat, dst_team);
2322 : : }
2323 : : else
2324 : : {
2325 : 90 : tree rhs_token, rhs_offset, rhs_image_index;
2326 : :
2327 : : /* It guarantees memory consistency within the same segment. */
2328 : 90 : tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
2329 : 90 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
2330 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
2331 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
2332 : 90 : ASM_VOLATILE_P (tmp) = 1;
2333 : 90 : gfc_add_expr_to_block (&block, tmp);
2334 : :
2335 : 90 : caf_decl = gfc_get_tree_for_caf_expr (rhs_expr);
2336 : 90 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
2337 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
2338 : 90 : rhs_image_index = gfc_caf_get_image_index (&block, rhs_expr, caf_decl);
2339 : 90 : tmp = rhs_se.expr;
2340 : 90 : if (rhs_caf_attr.alloc_comp || rhs_caf_attr.pointer_comp
2341 : 90 : || has_ref_after_cafref (lhs_expr))
2342 : : {
2343 : 48 : tmp_stat = gfc_find_stat_co (lhs_expr);
2344 : :
2345 : 48 : if (tmp_stat)
2346 : : {
2347 : 0 : gfc_se stat_se;
2348 : 0 : gfc_init_se (&stat_se, NULL);
2349 : 0 : gfc_conv_expr_reference (&stat_se, tmp_stat);
2350 : 0 : src_stat = stat_se.expr;
2351 : 0 : gfc_add_block_to_block (&block, &stat_se.pre);
2352 : 0 : gfc_add_block_to_block (&block, &stat_se.post);
2353 : : }
2354 : :
2355 : 48 : gfc_get_caf_token_offset (&rhs_se, &rhs_token, NULL, caf_decl,
2356 : : NULL_TREE, NULL);
2357 : 48 : tree lhs_reference, rhs_reference;
2358 : 48 : lhs_reference = conv_expr_ref_to_caf_ref (&block, lhs_expr);
2359 : 48 : rhs_reference = conv_expr_ref_to_caf_ref (&block, rhs_expr);
2360 : 48 : tmp = build_call_expr_loc (input_location,
2361 : : gfor_fndecl_caf_sendget_by_ref, 13,
2362 : : token, image_index, lhs_reference,
2363 : : rhs_token, rhs_image_index, rhs_reference,
2364 : : lhs_kind, rhs_kind, may_require_tmp,
2365 : : dst_stat, src_stat,
2366 : 48 : build_int_cst (integer_type_node,
2367 : 48 : lhs_expr->ts.type),
2368 : 48 : build_int_cst (integer_type_node,
2369 : 48 : rhs_expr->ts.type));
2370 : : }
2371 : : else
2372 : : {
2373 : 42 : gfc_get_caf_token_offset (&rhs_se, &rhs_token, &rhs_offset, caf_decl,
2374 : : tmp, rhs_expr);
2375 : 42 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sendget,
2376 : : 14, token, offset, image_index,
2377 : : lhs_se.expr, vec, rhs_token, rhs_offset,
2378 : : rhs_image_index, tmp, rhs_vec, lhs_kind,
2379 : : rhs_kind, may_require_tmp, src_stat);
2380 : : }
2381 : : }
2382 : 459 : gfc_add_expr_to_block (&block, tmp);
2383 : 459 : gfc_add_block_to_block (&block, &lhs_se.post);
2384 : 459 : gfc_add_block_to_block (&block, &rhs_se.post);
2385 : :
2386 : : /* It guarantees memory consistency within the same segment. */
2387 : 459 : tmp = gfc_build_string_const (strlen ("memory") + 1, "memory");
2388 : 459 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
2389 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
2390 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
2391 : 459 : ASM_VOLATILE_P (tmp) = 1;
2392 : 459 : gfc_add_expr_to_block (&block, tmp);
2393 : :
2394 : 459 : return gfc_finish_block (&block);
2395 : : }
2396 : :
2397 : :
2398 : : static void
2399 : 647 : trans_this_image (gfc_se * se, gfc_expr *expr)
2400 : : {
2401 : 647 : stmtblock_t loop;
2402 : 647 : tree type, desc, dim_arg, cond, tmp, m, loop_var, exit_label, min_var,
2403 : : lbound, ubound, extent, ml;
2404 : 647 : gfc_se argse;
2405 : 647 : int rank, corank;
2406 : 647 : gfc_expr *distance = expr->value.function.actual->next->next->expr;
2407 : :
2408 : 647 : if (expr->value.function.actual->expr
2409 : 647 : && !gfc_is_coarray (expr->value.function.actual->expr))
2410 : 1 : distance = expr->value.function.actual->expr;
2411 : :
2412 : : /* The case -fcoarray=single is handled elsewhere. */
2413 : 647 : gcc_assert (flag_coarray != GFC_FCOARRAY_SINGLE);
2414 : :
2415 : : /* Argument-free version: THIS_IMAGE(). */
2416 : 647 : if (distance || expr->value.function.actual->expr == NULL)
2417 : : {
2418 : 498 : if (distance)
2419 : : {
2420 : 2 : gfc_init_se (&argse, NULL);
2421 : 2 : gfc_conv_expr_val (&argse, distance);
2422 : 2 : gfc_add_block_to_block (&se->pre, &argse.pre);
2423 : 2 : gfc_add_block_to_block (&se->post, &argse.post);
2424 : 2 : tmp = fold_convert (integer_type_node, argse.expr);
2425 : : }
2426 : : else
2427 : 498 : tmp = integer_zero_node;
2428 : 500 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_this_image, 1,
2429 : : tmp);
2430 : 500 : se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind),
2431 : : tmp);
2432 : 504 : return;
2433 : : }
2434 : :
2435 : : /* Coarray-argument version: THIS_IMAGE(coarray [, dim]). */
2436 : :
2437 : 147 : type = gfc_get_int_type (gfc_default_integer_kind);
2438 : 147 : corank = expr->value.function.actual->expr->corank;
2439 : 147 : rank = expr->value.function.actual->expr->rank;
2440 : :
2441 : : /* Obtain the descriptor of the COARRAY. */
2442 : 147 : gfc_init_se (&argse, NULL);
2443 : 147 : argse.want_coarray = 1;
2444 : 147 : gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2445 : 147 : gfc_add_block_to_block (&se->pre, &argse.pre);
2446 : 147 : gfc_add_block_to_block (&se->post, &argse.post);
2447 : 147 : desc = argse.expr;
2448 : :
2449 : 147 : if (se->ss)
2450 : : {
2451 : : /* Create an implicit second parameter from the loop variable. */
2452 : 29 : gcc_assert (!expr->value.function.actual->next->expr);
2453 : 29 : gcc_assert (corank > 0);
2454 : 29 : gcc_assert (se->loop->dimen == 1);
2455 : 29 : gcc_assert (se->ss->info->expr == expr);
2456 : :
2457 : 29 : dim_arg = se->loop->loopvar[0];
2458 : 29 : dim_arg = fold_build2_loc (input_location, PLUS_EXPR,
2459 : : gfc_array_index_type, dim_arg,
2460 : 29 : build_int_cst (TREE_TYPE (dim_arg), 1));
2461 : 29 : gfc_advance_se_ss_chain (se);
2462 : : }
2463 : : else
2464 : : {
2465 : : /* Use the passed DIM= argument. */
2466 : 118 : gcc_assert (expr->value.function.actual->next->expr);
2467 : 118 : gfc_init_se (&argse, NULL);
2468 : 118 : gfc_conv_expr_type (&argse, expr->value.function.actual->next->expr,
2469 : : gfc_array_index_type);
2470 : 118 : gfc_add_block_to_block (&se->pre, &argse.pre);
2471 : 118 : dim_arg = argse.expr;
2472 : :
2473 : 118 : if (INTEGER_CST_P (dim_arg))
2474 : : {
2475 : 60 : if (wi::ltu_p (wi::to_wide (dim_arg), 1)
2476 : 120 : || wi::gtu_p (wi::to_wide (dim_arg),
2477 : 60 : GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))))
2478 : 0 : gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
2479 : 0 : "dimension index", expr->value.function.isym->name,
2480 : : &expr->where);
2481 : : }
2482 : 58 : else if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2483 : : {
2484 : 0 : dim_arg = gfc_evaluate_now (dim_arg, &se->pre);
2485 : 0 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
2486 : : dim_arg,
2487 : 0 : build_int_cst (TREE_TYPE (dim_arg), 1));
2488 : 0 : tmp = gfc_rank_cst[GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))];
2489 : 0 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
2490 : : dim_arg, tmp);
2491 : 0 : cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
2492 : : logical_type_node, cond, tmp);
2493 : 0 : gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
2494 : : gfc_msg_fault);
2495 : : }
2496 : : }
2497 : :
2498 : : /* Used algorithm; cf. Fortran 2008, C.10. Note, due to the scalarizer,
2499 : : one always has a dim_arg argument.
2500 : :
2501 : : m = this_image() - 1
2502 : : if (corank == 1)
2503 : : {
2504 : : sub(1) = m + lcobound(corank)
2505 : : return;
2506 : : }
2507 : : i = rank
2508 : : min_var = min (rank + corank - 2, rank + dim_arg - 1)
2509 : : for (;;)
2510 : : {
2511 : : extent = gfc_extent(i)
2512 : : ml = m
2513 : : m = m/extent
2514 : : if (i >= min_var)
2515 : : goto exit_label
2516 : : i++
2517 : : }
2518 : : exit_label:
2519 : : sub(dim_arg) = (dim_arg < corank) ? ml - m*extent + lcobound(dim_arg)
2520 : : : m + lcobound(corank)
2521 : : */
2522 : :
2523 : : /* this_image () - 1. */
2524 : 147 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_this_image, 1,
2525 : : integer_zero_node);
2526 : 147 : tmp = fold_build2_loc (input_location, MINUS_EXPR, type,
2527 : 147 : fold_convert (type, tmp), build_int_cst (type, 1));
2528 : 147 : if (corank == 1)
2529 : : {
2530 : : /* sub(1) = m + lcobound(corank). */
2531 : 4 : lbound = gfc_conv_descriptor_lbound_get (desc,
2532 : 4 : build_int_cst (TREE_TYPE (gfc_array_index_type),
2533 : 4 : corank+rank-1));
2534 : 4 : lbound = fold_convert (type, lbound);
2535 : 4 : tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2536 : :
2537 : 4 : se->expr = tmp;
2538 : 4 : return;
2539 : : }
2540 : :
2541 : 143 : m = gfc_create_var (type, NULL);
2542 : 143 : ml = gfc_create_var (type, NULL);
2543 : 143 : loop_var = gfc_create_var (integer_type_node, NULL);
2544 : 143 : min_var = gfc_create_var (integer_type_node, NULL);
2545 : :
2546 : : /* m = this_image () - 1. */
2547 : 143 : gfc_add_modify (&se->pre, m, tmp);
2548 : :
2549 : : /* min_var = min (rank + corank-2, rank + dim_arg - 1). */
2550 : 143 : tmp = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
2551 : : fold_convert (integer_type_node, dim_arg),
2552 : 143 : build_int_cst (integer_type_node, rank - 1));
2553 : 143 : tmp = fold_build2_loc (input_location, MIN_EXPR, integer_type_node,
2554 : 143 : build_int_cst (integer_type_node, rank + corank - 2),
2555 : : tmp);
2556 : 143 : gfc_add_modify (&se->pre, min_var, tmp);
2557 : :
2558 : : /* i = rank. */
2559 : 143 : tmp = build_int_cst (integer_type_node, rank);
2560 : 143 : gfc_add_modify (&se->pre, loop_var, tmp);
2561 : :
2562 : 143 : exit_label = gfc_build_label_decl (NULL_TREE);
2563 : 143 : TREE_USED (exit_label) = 1;
2564 : :
2565 : : /* Loop body. */
2566 : 143 : gfc_init_block (&loop);
2567 : :
2568 : : /* ml = m. */
2569 : 143 : gfc_add_modify (&loop, ml, m);
2570 : :
2571 : : /* extent = ... */
2572 : 143 : lbound = gfc_conv_descriptor_lbound_get (desc, loop_var);
2573 : 143 : ubound = gfc_conv_descriptor_ubound_get (desc, loop_var);
2574 : 143 : extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2575 : 143 : extent = fold_convert (type, extent);
2576 : :
2577 : : /* m = m/extent. */
2578 : 143 : gfc_add_modify (&loop, m,
2579 : : fold_build2_loc (input_location, TRUNC_DIV_EXPR, type,
2580 : : m, extent));
2581 : :
2582 : : /* Exit condition: if (i >= min_var) goto exit_label. */
2583 : 143 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node, loop_var,
2584 : : min_var);
2585 : 143 : tmp = build1_v (GOTO_EXPR, exit_label);
2586 : 143 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
2587 : : build_empty_stmt (input_location));
2588 : 143 : gfc_add_expr_to_block (&loop, tmp);
2589 : :
2590 : : /* Increment loop variable: i++. */
2591 : 143 : gfc_add_modify (&loop, loop_var,
2592 : : fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
2593 : : loop_var,
2594 : : integer_one_node));
2595 : :
2596 : : /* Making the loop... actually loop! */
2597 : 143 : tmp = gfc_finish_block (&loop);
2598 : 143 : tmp = build1_v (LOOP_EXPR, tmp);
2599 : 143 : gfc_add_expr_to_block (&se->pre, tmp);
2600 : :
2601 : : /* The exit label. */
2602 : 143 : tmp = build1_v (LABEL_EXPR, exit_label);
2603 : 143 : gfc_add_expr_to_block (&se->pre, tmp);
2604 : :
2605 : : /* sub(co_dim) = (co_dim < corank) ? ml - m*extent + lcobound(dim_arg)
2606 : : : m + lcobound(corank) */
2607 : :
2608 : 143 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node, dim_arg,
2609 : 143 : build_int_cst (TREE_TYPE (dim_arg), corank));
2610 : :
2611 : 143 : lbound = gfc_conv_descriptor_lbound_get (desc,
2612 : : fold_build2_loc (input_location, PLUS_EXPR,
2613 : : gfc_array_index_type, dim_arg,
2614 : 143 : build_int_cst (TREE_TYPE (dim_arg), rank-1)));
2615 : 143 : lbound = fold_convert (type, lbound);
2616 : :
2617 : 143 : tmp = fold_build2_loc (input_location, MINUS_EXPR, type, ml,
2618 : : fold_build2_loc (input_location, MULT_EXPR, type,
2619 : : m, extent));
2620 : 143 : tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp, lbound);
2621 : :
2622 : 143 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond, tmp,
2623 : : fold_build2_loc (input_location, PLUS_EXPR, type,
2624 : : m, lbound));
2625 : : }
2626 : :
2627 : :
2628 : : /* Convert a call to image_status. */
2629 : :
2630 : : static void
2631 : 16 : conv_intrinsic_image_status (gfc_se *se, gfc_expr *expr)
2632 : : {
2633 : 16 : unsigned int num_args;
2634 : 16 : tree *args, tmp;
2635 : :
2636 : 16 : num_args = gfc_intrinsic_argument_list_length (expr);
2637 : 16 : args = XALLOCAVEC (tree, num_args);
2638 : 16 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
2639 : : /* In args[0] the number of the image the status is desired for has to be
2640 : : given. */
2641 : :
2642 : 16 : if (flag_coarray == GFC_FCOARRAY_SINGLE)
2643 : : {
2644 : 0 : tree arg;
2645 : 0 : arg = gfc_evaluate_now (args[0], &se->pre);
2646 : 0 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
2647 : : fold_convert (integer_type_node, arg),
2648 : : integer_one_node);
2649 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
2650 : : tmp, integer_zero_node,
2651 : 0 : build_int_cst (integer_type_node,
2652 : 0 : GFC_STAT_STOPPED_IMAGE));
2653 : : }
2654 : 16 : else if (flag_coarray == GFC_FCOARRAY_LIB)
2655 : 16 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_image_status, 2,
2656 : 16 : args[0], build_int_cst (integer_type_node, -1));
2657 : : else
2658 : 0 : gcc_unreachable ();
2659 : :
2660 : 16 : se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind), tmp);
2661 : 16 : }
2662 : :
2663 : : static void
2664 : 31 : conv_intrinsic_team_number (gfc_se *se, gfc_expr *expr)
2665 : : {
2666 : 31 : unsigned int num_args;
2667 : :
2668 : 31 : tree *args, tmp;
2669 : :
2670 : 31 : num_args = gfc_intrinsic_argument_list_length (expr);
2671 : 31 : args = XALLOCAVEC (tree, num_args);
2672 : 31 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
2673 : :
2674 : 31 : if (flag_coarray ==
2675 : 30 : GFC_FCOARRAY_SINGLE && expr->value.function.actual->expr)
2676 : : {
2677 : 0 : tree arg;
2678 : :
2679 : 0 : arg = gfc_evaluate_now (args[0], &se->pre);
2680 : 0 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
2681 : : fold_convert (integer_type_node, arg),
2682 : : integer_one_node);
2683 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
2684 : : tmp, integer_zero_node,
2685 : 0 : build_int_cst (integer_type_node,
2686 : 0 : GFC_STAT_STOPPED_IMAGE));
2687 : 0 : }
2688 : 31 : else if (flag_coarray == GFC_FCOARRAY_SINGLE)
2689 : : {
2690 : : // the value -1 represents that no team has been created yet
2691 : 30 : tmp = build_int_cst (integer_type_node, -1);
2692 : : }
2693 : 1 : else if (flag_coarray == GFC_FCOARRAY_LIB && expr->value.function.actual->expr)
2694 : 0 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_team_number, 1,
2695 : 0 : args[0], build_int_cst (integer_type_node, -1));
2696 : 1 : else if (flag_coarray == GFC_FCOARRAY_LIB)
2697 : 1 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_team_number, 1,
2698 : 1 : integer_zero_node, build_int_cst (integer_type_node, -1));
2699 : : else
2700 : 0 : gcc_unreachable ();
2701 : :
2702 : 31 : se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind), tmp);
2703 : 31 : }
2704 : :
2705 : :
2706 : : static void
2707 : 152 : trans_image_index (gfc_se * se, gfc_expr *expr)
2708 : : {
2709 : 152 : tree num_images, cond, coindex, type, lbound, ubound, desc, subdesc,
2710 : : tmp, invalid_bound;
2711 : 152 : gfc_se argse, subse;
2712 : 152 : int rank, corank, codim;
2713 : :
2714 : 152 : type = gfc_get_int_type (gfc_default_integer_kind);
2715 : 152 : corank = expr->value.function.actual->expr->corank;
2716 : 152 : rank = expr->value.function.actual->expr->rank;
2717 : :
2718 : : /* Obtain the descriptor of the COARRAY. */
2719 : 152 : gfc_init_se (&argse, NULL);
2720 : 152 : argse.want_coarray = 1;
2721 : 152 : gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2722 : 152 : gfc_add_block_to_block (&se->pre, &argse.pre);
2723 : 152 : gfc_add_block_to_block (&se->post, &argse.post);
2724 : 152 : desc = argse.expr;
2725 : :
2726 : : /* Obtain a handle to the SUB argument. */
2727 : 152 : gfc_init_se (&subse, NULL);
2728 : 152 : gfc_conv_expr_descriptor (&subse, expr->value.function.actual->next->expr);
2729 : 152 : gfc_add_block_to_block (&se->pre, &subse.pre);
2730 : 152 : gfc_add_block_to_block (&se->post, &subse.post);
2731 : 152 : subdesc = build_fold_indirect_ref_loc (input_location,
2732 : : gfc_conv_descriptor_data_get (subse.expr));
2733 : :
2734 : : /* Fortran 2008 does not require that the values remain in the cobounds,
2735 : : thus we need explicitly check this - and return 0 if they are exceeded. */
2736 : :
2737 : 152 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2738 : 152 : tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[corank-1], NULL);
2739 : 152 : invalid_bound = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
2740 : : fold_convert (gfc_array_index_type, tmp),
2741 : : lbound);
2742 : :
2743 : 352 : for (codim = corank + rank - 2; codim >= rank; codim--)
2744 : : {
2745 : 200 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2746 : 200 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[codim]);
2747 : 200 : tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[codim-rank], NULL);
2748 : 200 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
2749 : : fold_convert (gfc_array_index_type, tmp),
2750 : : lbound);
2751 : 200 : invalid_bound = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2752 : : logical_type_node, invalid_bound, cond);
2753 : 200 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
2754 : : fold_convert (gfc_array_index_type, tmp),
2755 : : ubound);
2756 : 200 : invalid_bound = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2757 : : logical_type_node, invalid_bound, cond);
2758 : : }
2759 : :
2760 : 152 : invalid_bound = gfc_unlikely (invalid_bound, PRED_FORTRAN_INVALID_BOUND);
2761 : :
2762 : : /* See Fortran 2008, C.10 for the following algorithm. */
2763 : :
2764 : : /* coindex = sub(corank) - lcobound(n). */
2765 : 152 : coindex = fold_convert (gfc_array_index_type,
2766 : : gfc_build_array_ref (subdesc, gfc_rank_cst[corank-1],
2767 : : NULL));
2768 : 152 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[rank+corank-1]);
2769 : 152 : coindex = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
2770 : : fold_convert (gfc_array_index_type, coindex),
2771 : : lbound);
2772 : :
2773 : 352 : for (codim = corank + rank - 2; codim >= rank; codim--)
2774 : : {
2775 : 200 : tree extent, ubound;
2776 : :
2777 : : /* coindex = coindex*extent(codim) + sub(codim) - lcobound(codim). */
2778 : 200 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2779 : 200 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[codim]);
2780 : 200 : extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2781 : :
2782 : : /* coindex *= extent. */
2783 : 200 : coindex = fold_build2_loc (input_location, MULT_EXPR,
2784 : : gfc_array_index_type, coindex, extent);
2785 : :
2786 : : /* coindex += sub(codim). */
2787 : 200 : tmp = gfc_build_array_ref (subdesc, gfc_rank_cst[codim-rank], NULL);
2788 : 200 : coindex = fold_build2_loc (input_location, PLUS_EXPR,
2789 : : gfc_array_index_type, coindex,
2790 : : fold_convert (gfc_array_index_type, tmp));
2791 : :
2792 : : /* coindex -= lbound(codim). */
2793 : 200 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[codim]);
2794 : 200 : coindex = fold_build2_loc (input_location, MINUS_EXPR,
2795 : : gfc_array_index_type, coindex, lbound);
2796 : : }
2797 : :
2798 : 152 : coindex = fold_build2_loc (input_location, PLUS_EXPR, type,
2799 : : fold_convert(type, coindex),
2800 : 152 : build_int_cst (type, 1));
2801 : :
2802 : : /* Return 0 if "coindex" exceeds num_images(). */
2803 : :
2804 : 152 : if (flag_coarray == GFC_FCOARRAY_SINGLE)
2805 : 108 : num_images = build_int_cst (type, 1);
2806 : : else
2807 : : {
2808 : 44 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images, 2,
2809 : : integer_zero_node,
2810 : 44 : build_int_cst (integer_type_node, -1));
2811 : 44 : num_images = fold_convert (type, tmp);
2812 : : }
2813 : :
2814 : 152 : tmp = gfc_create_var (type, NULL);
2815 : 152 : gfc_add_modify (&se->pre, tmp, coindex);
2816 : :
2817 : 152 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node, tmp,
2818 : : num_images);
2819 : 152 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR, logical_type_node,
2820 : : cond,
2821 : : fold_convert (logical_type_node, invalid_bound));
2822 : 152 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
2823 : 152 : build_int_cst (type, 0), tmp);
2824 : 152 : }
2825 : :
2826 : : static void
2827 : 397 : trans_num_images (gfc_se * se, gfc_expr *expr)
2828 : : {
2829 : 397 : tree tmp, distance, failed;
2830 : 397 : gfc_se argse;
2831 : :
2832 : 397 : if (expr->value.function.actual->expr)
2833 : : {
2834 : 3 : gfc_init_se (&argse, NULL);
2835 : 3 : gfc_conv_expr_val (&argse, expr->value.function.actual->expr);
2836 : 3 : gfc_add_block_to_block (&se->pre, &argse.pre);
2837 : 3 : gfc_add_block_to_block (&se->post, &argse.post);
2838 : 3 : distance = fold_convert (integer_type_node, argse.expr);
2839 : : }
2840 : : else
2841 : 394 : distance = integer_zero_node;
2842 : :
2843 : 397 : if (expr->value.function.actual->next->expr)
2844 : : {
2845 : 2 : gfc_init_se (&argse, NULL);
2846 : 2 : gfc_conv_expr_val (&argse, expr->value.function.actual->next->expr);
2847 : 2 : gfc_add_block_to_block (&se->pre, &argse.pre);
2848 : 2 : gfc_add_block_to_block (&se->post, &argse.post);
2849 : 2 : failed = fold_convert (integer_type_node, argse.expr);
2850 : : }
2851 : : else
2852 : 395 : failed = build_int_cst (integer_type_node, -1);
2853 : 397 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images, 2,
2854 : : distance, failed);
2855 : 397 : se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind), tmp);
2856 : 397 : }
2857 : :
2858 : :
2859 : : static void
2860 : 10137 : gfc_conv_intrinsic_rank (gfc_se *se, gfc_expr *expr)
2861 : : {
2862 : 10137 : gfc_se argse;
2863 : :
2864 : 10137 : gfc_init_se (&argse, NULL);
2865 : 10137 : argse.data_not_needed = 1;
2866 : 10137 : argse.descriptor_only = 1;
2867 : :
2868 : 10137 : gfc_conv_expr_descriptor (&argse, expr->value.function.actual->expr);
2869 : 10137 : gfc_add_block_to_block (&se->pre, &argse.pre);
2870 : 10137 : gfc_add_block_to_block (&se->post, &argse.post);
2871 : :
2872 : 10137 : se->expr = gfc_conv_descriptor_rank (argse.expr);
2873 : 10137 : se->expr = fold_convert (gfc_get_int_type (gfc_default_integer_kind),
2874 : : se->expr);
2875 : 10137 : }
2876 : :
2877 : :
2878 : : static void
2879 : 621 : gfc_conv_intrinsic_is_contiguous (gfc_se * se, gfc_expr * expr)
2880 : : {
2881 : 621 : gfc_expr *arg;
2882 : 621 : arg = expr->value.function.actual->expr;
2883 : 621 : gfc_conv_is_contiguous_expr (se, arg);
2884 : 621 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
2885 : 621 : }
2886 : :
2887 : : /* This function does the work for gfc_conv_intrinsic_is_contiguous,
2888 : : plus it can be called directly. */
2889 : :
2890 : : void
2891 : 1938 : gfc_conv_is_contiguous_expr (gfc_se *se, gfc_expr *arg)
2892 : : {
2893 : 1938 : gfc_ss *ss;
2894 : 1938 : gfc_se argse;
2895 : 1938 : tree desc, tmp, stride, extent, cond;
2896 : 1938 : int i;
2897 : 1938 : tree fncall0;
2898 : 1938 : gfc_array_spec *as;
2899 : :
2900 : 1938 : if (arg->ts.type == BT_CLASS)
2901 : 36 : gfc_add_class_array_ref (arg);
2902 : :
2903 : 1938 : ss = gfc_walk_expr (arg);
2904 : 1938 : gcc_assert (ss != gfc_ss_terminator);
2905 : 1938 : gfc_init_se (&argse, NULL);
2906 : 1938 : argse.data_not_needed = 1;
2907 : 1938 : gfc_conv_expr_descriptor (&argse, arg);
2908 : :
2909 : 1938 : as = gfc_get_full_arrayspec_from_expr (arg);
2910 : :
2911 : : /* Create: stride[0] == 1 && stride[1] == extend[0]*stride[0] && ...
2912 : : Note in addition that zero-sized arrays don't count as contiguous. */
2913 : :
2914 : 1938 : if (as && as->type == AS_ASSUMED_RANK)
2915 : : {
2916 : : /* Build the call to is_contiguous0. */
2917 : 243 : argse.want_pointer = 1;
2918 : 243 : gfc_conv_expr_descriptor (&argse, arg);
2919 : 243 : gfc_add_block_to_block (&se->pre, &argse.pre);
2920 : 243 : gfc_add_block_to_block (&se->post, &argse.post);
2921 : 243 : desc = gfc_evaluate_now (argse.expr, &se->pre);
2922 : 243 : fncall0 = build_call_expr_loc (input_location,
2923 : : gfor_fndecl_is_contiguous0, 1, desc);
2924 : 243 : se->expr = fncall0;
2925 : 243 : se->expr = convert (logical_type_node, se->expr);
2926 : : }
2927 : : else
2928 : : {
2929 : 1695 : gfc_add_block_to_block (&se->pre, &argse.pre);
2930 : 1695 : gfc_add_block_to_block (&se->post, &argse.post);
2931 : 1695 : desc = gfc_evaluate_now (argse.expr, &se->pre);
2932 : :
2933 : 1695 : stride = gfc_conv_descriptor_stride_get (desc, gfc_rank_cst[0]);
2934 : 1695 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2935 : 1695 : stride, build_int_cst (TREE_TYPE (stride), 1));
2936 : :
2937 : 2017 : for (i = 0; i < arg->rank - 1; i++)
2938 : : {
2939 : 322 : tmp = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
2940 : 322 : extent = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
2941 : 322 : extent = fold_build2_loc (input_location, MINUS_EXPR,
2942 : : gfc_array_index_type, extent, tmp);
2943 : 322 : extent = fold_build2_loc (input_location, PLUS_EXPR,
2944 : : gfc_array_index_type, extent,
2945 : : gfc_index_one_node);
2946 : 322 : tmp = gfc_conv_descriptor_stride_get (desc, gfc_rank_cst[i]);
2947 : 322 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (tmp),
2948 : : tmp, extent);
2949 : 322 : stride = gfc_conv_descriptor_stride_get (desc, gfc_rank_cst[i+1]);
2950 : 322 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2951 : : stride, tmp);
2952 : 322 : cond = fold_build2_loc (input_location, TRUTH_AND_EXPR,
2953 : : boolean_type_node, cond, tmp);
2954 : : }
2955 : 1695 : se->expr = cond;
2956 : : }
2957 : 1938 : }
2958 : :
2959 : :
2960 : : /* Evaluate a single upper or lower bound. */
2961 : : /* TODO: bound intrinsic generates way too much unnecessary code. */
2962 : :
2963 : : static void
2964 : 15941 : gfc_conv_intrinsic_bound (gfc_se * se, gfc_expr * expr, enum gfc_isym_id op)
2965 : : {
2966 : 15941 : gfc_actual_arglist *arg;
2967 : 15941 : gfc_actual_arglist *arg2;
2968 : 15941 : tree desc;
2969 : 15941 : tree type;
2970 : 15941 : tree bound;
2971 : 15941 : tree tmp;
2972 : 15941 : tree cond, cond1;
2973 : 15941 : tree ubound;
2974 : 15941 : tree lbound;
2975 : 15941 : tree size;
2976 : 15941 : gfc_se argse;
2977 : 15941 : gfc_array_spec * as;
2978 : 15941 : bool assumed_rank_lb_one;
2979 : :
2980 : 15941 : arg = expr->value.function.actual;
2981 : 15941 : arg2 = arg->next;
2982 : :
2983 : 15941 : if (se->ss)
2984 : : {
2985 : : /* Create an implicit second parameter from the loop variable. */
2986 : 7715 : gcc_assert (!arg2->expr || op == GFC_ISYM_SHAPE);
2987 : 7715 : gcc_assert (se->loop->dimen == 1);
2988 : 7715 : gcc_assert (se->ss->info->expr == expr);
2989 : 7715 : gfc_advance_se_ss_chain (se);
2990 : 7715 : bound = se->loop->loopvar[0];
2991 : 7715 : bound = fold_build2_loc (input_location, MINUS_EXPR,
2992 : : gfc_array_index_type, bound,
2993 : : se->loop->from[0]);
2994 : : }
2995 : : else
2996 : : {
2997 : : /* use the passed argument. */
2998 : 8226 : gcc_assert (arg2->expr);
2999 : 8226 : gfc_init_se (&argse, NULL);
3000 : 8226 : gfc_conv_expr_type (&argse, arg2->expr, gfc_array_index_type);
3001 : 8226 : gfc_add_block_to_block (&se->pre, &argse.pre);
3002 : 8226 : bound = argse.expr;
3003 : : /* Convert from one based to zero based. */
3004 : 8226 : bound = fold_build2_loc (input_location, MINUS_EXPR,
3005 : : gfc_array_index_type, bound,
3006 : : gfc_index_one_node);
3007 : : }
3008 : :
3009 : : /* TODO: don't re-evaluate the descriptor on each iteration. */
3010 : : /* Get a descriptor for the first parameter. */
3011 : 15941 : gfc_init_se (&argse, NULL);
3012 : 15941 : gfc_conv_expr_descriptor (&argse, arg->expr);
3013 : 15941 : gfc_add_block_to_block (&se->pre, &argse.pre);
3014 : 15941 : gfc_add_block_to_block (&se->post, &argse.post);
3015 : :
3016 : 15941 : desc = argse.expr;
3017 : :
3018 : 15941 : as = gfc_get_full_arrayspec_from_expr (arg->expr);
3019 : :
3020 : 15941 : if (INTEGER_CST_P (bound))
3021 : : {
3022 : 8106 : gcc_assert (op != GFC_ISYM_SHAPE);
3023 : 7869 : if (((!as || as->type != AS_ASSUMED_RANK)
3024 : 7246 : && wi::geu_p (wi::to_wide (bound),
3025 : 7246 : GFC_TYPE_ARRAY_RANK (TREE_TYPE (desc))))
3026 : 16212 : || wi::gtu_p (wi::to_wide (bound), GFC_MAX_DIMENSIONS))
3027 : 0 : gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
3028 : : "dimension index",
3029 : : (op == GFC_ISYM_UBOUND) ? "UBOUND" : "LBOUND",
3030 : : &expr->where);
3031 : : }
3032 : :
3033 : 15941 : if (!INTEGER_CST_P (bound) || (as && as->type == AS_ASSUMED_RANK))
3034 : : {
3035 : 8695 : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3036 : : {
3037 : 651 : bound = gfc_evaluate_now (bound, &se->pre);
3038 : 651 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3039 : 651 : bound, build_int_cst (TREE_TYPE (bound), 0));
3040 : 651 : if (as && as->type == AS_ASSUMED_RANK)
3041 : 546 : tmp = gfc_conv_descriptor_rank (desc);
3042 : : else
3043 : 105 : tmp = gfc_rank_cst[GFC_TYPE_ARRAY_RANK (TREE_TYPE (desc))];
3044 : 651 : tmp = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
3045 : 651 : bound, fold_convert(TREE_TYPE (bound), tmp));
3046 : 651 : cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
3047 : : logical_type_node, cond, tmp);
3048 : 651 : gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
3049 : : gfc_msg_fault);
3050 : : }
3051 : : }
3052 : :
3053 : : /* Take care of the lbound shift for assumed-rank arrays that are
3054 : : nonallocatable and nonpointers. Those have a lbound of 1. */
3055 : 15465 : assumed_rank_lb_one = as && as->type == AS_ASSUMED_RANK
3056 : 10814 : && ((arg->expr->ts.type != BT_CLASS
3057 : 1945 : && !arg->expr->symtree->n.sym->attr.allocatable
3058 : 1945 : && !arg->expr->symtree->n.sym->attr.pointer)
3059 : 896 : || (arg->expr->ts.type == BT_CLASS
3060 : 174 : && !CLASS_DATA (arg->expr)->attr.allocatable
3061 : 174 : && !CLASS_DATA (arg->expr)->attr.class_pointer));
3062 : :
3063 : 15941 : ubound = gfc_conv_descriptor_ubound_get (desc, bound);
3064 : 15941 : lbound = gfc_conv_descriptor_lbound_get (desc, bound);
3065 : 15941 : size = fold_build2_loc (input_location, MINUS_EXPR,
3066 : : gfc_array_index_type, ubound, lbound);
3067 : 15941 : size = fold_build2_loc (input_location, PLUS_EXPR,
3068 : : gfc_array_index_type, size, gfc_index_one_node);
3069 : :
3070 : : /* 13.14.53: Result value for LBOUND
3071 : :
3072 : : Case (i): For an array section or for an array expression other than a
3073 : : whole array or array structure component, LBOUND(ARRAY, DIM)
3074 : : has the value 1. For a whole array or array structure
3075 : : component, LBOUND(ARRAY, DIM) has the value:
3076 : : (a) equal to the lower bound for subscript DIM of ARRAY if
3077 : : dimension DIM of ARRAY does not have extent zero
3078 : : or if ARRAY is an assumed-size array of rank DIM,
3079 : : or (b) 1 otherwise.
3080 : :
3081 : : 13.14.113: Result value for UBOUND
3082 : :
3083 : : Case (i): For an array section or for an array expression other than a
3084 : : whole array or array structure component, UBOUND(ARRAY, DIM)
3085 : : has the value equal to the number of elements in the given
3086 : : dimension; otherwise, it has a value equal to the upper bound
3087 : : for subscript DIM of ARRAY if dimension DIM of ARRAY does
3088 : : not have size zero and has value zero if dimension DIM has
3089 : : size zero. */
3090 : :
3091 : 15941 : if (op == GFC_ISYM_LBOUND && assumed_rank_lb_one)
3092 : 532 : se->expr = gfc_index_one_node;
3093 : 15409 : else if (as)
3094 : : {
3095 : 14933 : if (op == GFC_ISYM_UBOUND)
3096 : : {
3097 : 5279 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3098 : : size, gfc_index_zero_node);
3099 : 9954 : se->expr = fold_build3_loc (input_location, COND_EXPR,
3100 : : gfc_array_index_type, cond,
3101 : : (assumed_rank_lb_one ? size : ubound),
3102 : : gfc_index_zero_node);
3103 : : }
3104 : 9654 : else if (op == GFC_ISYM_LBOUND)
3105 : : {
3106 : 4962 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3107 : : size, gfc_index_zero_node);
3108 : 4962 : if (as->type == AS_ASSUMED_SIZE)
3109 : : {
3110 : 98 : cond1 = fold_build2_loc (input_location, EQ_EXPR,
3111 : : logical_type_node, bound,
3112 : 98 : build_int_cst (TREE_TYPE (bound),
3113 : 98 : arg->expr->rank - 1));
3114 : 98 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
3115 : : logical_type_node, cond, cond1);
3116 : : }
3117 : 4962 : se->expr = fold_build3_loc (input_location, COND_EXPR,
3118 : : gfc_array_index_type, cond,
3119 : : lbound, gfc_index_one_node);
3120 : : }
3121 : 4692 : else if (op == GFC_ISYM_SHAPE)
3122 : 4692 : se->expr = fold_build2_loc (input_location, MAX_EXPR,
3123 : : gfc_array_index_type, size,
3124 : : gfc_index_zero_node);
3125 : : else
3126 : 0 : gcc_unreachable ();
3127 : :
3128 : : /* According to F2018 16.9.172, para 5, an assumed rank object,
3129 : : argument associated with and assumed size array, has the ubound
3130 : : of the final dimension set to -1 and UBOUND must return this.
3131 : : Similarly for the SHAPE intrinsic. */
3132 : 14933 : if (op != GFC_ISYM_LBOUND && assumed_rank_lb_one)
3133 : : {
3134 : 793 : tree minus_one = build_int_cst (gfc_array_index_type, -1);
3135 : 793 : tree rank = fold_convert (gfc_array_index_type,
3136 : : gfc_conv_descriptor_rank (desc));
3137 : 793 : rank = fold_build2_loc (input_location, PLUS_EXPR,
3138 : : gfc_array_index_type, rank, minus_one);
3139 : :
3140 : : /* Fix the expression to stop it from becoming even more
3141 : : complicated. */
3142 : 793 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
3143 : :
3144 : : /* Descriptors for assumed-size arrays have ubound = -1
3145 : : in the last dimension. */
3146 : 793 : cond1 = fold_build2_loc (input_location, EQ_EXPR,
3147 : : logical_type_node, ubound, minus_one);
3148 : 793 : cond = fold_build2_loc (input_location, EQ_EXPR,
3149 : : logical_type_node, bound, rank);
3150 : 793 : cond = fold_build2_loc (input_location, TRUTH_AND_EXPR,
3151 : : logical_type_node, cond, cond1);
3152 : 793 : se->expr = fold_build3_loc (input_location, COND_EXPR,
3153 : : gfc_array_index_type, cond,
3154 : : minus_one, se->expr);
3155 : : }
3156 : : }
3157 : : else /* as is null; this is an old-fashioned 1-based array. */
3158 : : {
3159 : 476 : if (op != GFC_ISYM_LBOUND)
3160 : : {
3161 : 374 : se->expr = fold_build2_loc (input_location, MAX_EXPR,
3162 : : gfc_array_index_type, size,
3163 : : gfc_index_zero_node);
3164 : : }
3165 : : else
3166 : 102 : se->expr = gfc_index_one_node;
3167 : : }
3168 : :
3169 : :
3170 : 15941 : type = gfc_typenode_for_spec (&expr->ts);
3171 : 15941 : se->expr = convert (type, se->expr);
3172 : 15941 : }
3173 : :
3174 : :
3175 : : static void
3176 : 577 : conv_intrinsic_cobound (gfc_se * se, gfc_expr * expr)
3177 : : {
3178 : 577 : gfc_actual_arglist *arg;
3179 : 577 : gfc_actual_arglist *arg2;
3180 : 577 : gfc_se argse;
3181 : 577 : tree bound, resbound, resbound2, desc, cond, tmp;
3182 : 577 : tree type;
3183 : 577 : int corank;
3184 : :
3185 : 577 : gcc_assert (expr->value.function.isym->id == GFC_ISYM_LCOBOUND
3186 : : || expr->value.function.isym->id == GFC_ISYM_UCOBOUND
3187 : : || expr->value.function.isym->id == GFC_ISYM_THIS_IMAGE);
3188 : :
3189 : 577 : arg = expr->value.function.actual;
3190 : 577 : arg2 = arg->next;
3191 : :
3192 : 577 : gcc_assert (arg->expr->expr_type == EXPR_VARIABLE);
3193 : 577 : corank = arg->expr->corank;
3194 : :
3195 : 577 : gfc_init_se (&argse, NULL);
3196 : 577 : argse.want_coarray = 1;
3197 : :
3198 : 577 : gfc_conv_expr_descriptor (&argse, arg->expr);
3199 : 577 : gfc_add_block_to_block (&se->pre, &argse.pre);
3200 : 577 : gfc_add_block_to_block (&se->post, &argse.post);
3201 : 577 : desc = argse.expr;
3202 : :
3203 : 577 : if (se->ss)
3204 : : {
3205 : : /* Create an implicit second parameter from the loop variable. */
3206 : 184 : gcc_assert (!arg2->expr);
3207 : 184 : gcc_assert (corank > 0);
3208 : 184 : gcc_assert (se->loop->dimen == 1);
3209 : 184 : gcc_assert (se->ss->info->expr == expr);
3210 : :
3211 : 184 : bound = se->loop->loopvar[0];
3212 : 368 : bound = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
3213 : 184 : bound, gfc_rank_cst[arg->expr->rank]);
3214 : 184 : gfc_advance_se_ss_chain (se);
3215 : : }
3216 : : else
3217 : : {
3218 : : /* use the passed argument. */
3219 : 393 : gcc_assert (arg2->expr);
3220 : 393 : gfc_init_se (&argse, NULL);
3221 : 393 : gfc_conv_expr_type (&argse, arg2->expr, gfc_array_index_type);
3222 : 393 : gfc_add_block_to_block (&se->pre, &argse.pre);
3223 : 393 : bound = argse.expr;
3224 : :
3225 : 393 : if (INTEGER_CST_P (bound))
3226 : : {
3227 : 299 : if (wi::ltu_p (wi::to_wide (bound), 1)
3228 : 598 : || wi::gtu_p (wi::to_wide (bound),
3229 : 299 : GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))))
3230 : 0 : gfc_error ("%<dim%> argument of %s intrinsic at %L is not a valid "
3231 : 0 : "dimension index", expr->value.function.isym->name,
3232 : : &expr->where);
3233 : : }
3234 : 94 : else if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3235 : : {
3236 : 36 : bound = gfc_evaluate_now (bound, &se->pre);
3237 : 36 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3238 : 36 : bound, build_int_cst (TREE_TYPE (bound), 1));
3239 : 36 : tmp = gfc_rank_cst[GFC_TYPE_ARRAY_CORANK (TREE_TYPE (desc))];
3240 : 36 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3241 : : bound, tmp);
3242 : 36 : cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
3243 : : logical_type_node, cond, tmp);
3244 : 36 : gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
3245 : : gfc_msg_fault);
3246 : : }
3247 : :
3248 : :
3249 : : /* Subtract 1 to get to zero based and add dimensions. */
3250 : 393 : switch (arg->expr->rank)
3251 : : {
3252 : 51 : case 0:
3253 : 51 : bound = fold_build2_loc (input_location, MINUS_EXPR,
3254 : : gfc_array_index_type, bound,
3255 : : gfc_index_one_node);
3256 : : case 1:
3257 : : break;
3258 : 36 : default:
3259 : 36 : bound = fold_build2_loc (input_location, PLUS_EXPR,
3260 : : gfc_array_index_type, bound,
3261 : 36 : gfc_rank_cst[arg->expr->rank - 1]);
3262 : : }
3263 : : }
3264 : :
3265 : 577 : resbound = gfc_conv_descriptor_lbound_get (desc, bound);
3266 : :
3267 : : /* Handle UCOBOUND with special handling of the last codimension. */
3268 : 577 : if (expr->value.function.isym->id == GFC_ISYM_UCOBOUND)
3269 : : {
3270 : : /* Last codimension: For -fcoarray=single just return
3271 : : the lcobound - otherwise add
3272 : : ceiling (real (num_images ()) / real (size)) - 1
3273 : : = (num_images () + size - 1) / size - 1
3274 : : = (num_images - 1) / size(),
3275 : : where size is the product of the extent of all but the last
3276 : : codimension. */
3277 : :
3278 : 191 : if (flag_coarray != GFC_FCOARRAY_SINGLE && corank > 1)
3279 : : {
3280 : 30 : tree cosize;
3281 : :
3282 : 30 : cosize = gfc_conv_descriptor_cosize (desc, arg->expr->rank, corank);
3283 : 30 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images,
3284 : : 2, integer_zero_node,
3285 : 30 : build_int_cst (integer_type_node, -1));
3286 : 30 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
3287 : : gfc_array_index_type,
3288 : : fold_convert (gfc_array_index_type, tmp),
3289 : 30 : build_int_cst (gfc_array_index_type, 1));
3290 : 30 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
3291 : : gfc_array_index_type, tmp,
3292 : : fold_convert (gfc_array_index_type, cosize));
3293 : 30 : resbound = fold_build2_loc (input_location, PLUS_EXPR,
3294 : : gfc_array_index_type, resbound, tmp);
3295 : 30 : }
3296 : 161 : else if (flag_coarray != GFC_FCOARRAY_SINGLE)
3297 : : {
3298 : : /* ubound = lbound + num_images() - 1. */
3299 : 21 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images,
3300 : : 2, integer_zero_node,
3301 : 21 : build_int_cst (integer_type_node, -1));
3302 : 21 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
3303 : : gfc_array_index_type,
3304 : : fold_convert (gfc_array_index_type, tmp),
3305 : 21 : build_int_cst (gfc_array_index_type, 1));
3306 : 21 : resbound = fold_build2_loc (input_location, PLUS_EXPR,
3307 : : gfc_array_index_type, resbound, tmp);
3308 : : }
3309 : :
3310 : 191 : if (corank > 1)
3311 : : {
3312 : 137 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
3313 : : bound,
3314 : 137 : build_int_cst (TREE_TYPE (bound),
3315 : 137 : arg->expr->rank + corank - 1));
3316 : :
3317 : 137 : resbound2 = gfc_conv_descriptor_ubound_get (desc, bound);
3318 : 137 : se->expr = fold_build3_loc (input_location, COND_EXPR,
3319 : : gfc_array_index_type, cond,
3320 : : resbound, resbound2);
3321 : : }
3322 : : else
3323 : 54 : se->expr = resbound;
3324 : : }
3325 : : else
3326 : 386 : se->expr = resbound;
3327 : :
3328 : 577 : type = gfc_typenode_for_spec (&expr->ts);
3329 : 577 : se->expr = convert (type, se->expr);
3330 : 577 : }
3331 : :
3332 : :
3333 : : static void
3334 : 1802 : conv_intrinsic_stride (gfc_se * se, gfc_expr * expr)
3335 : : {
3336 : 1802 : gfc_actual_arglist *array_arg;
3337 : 1802 : gfc_actual_arglist *dim_arg;
3338 : 1802 : gfc_se argse;
3339 : 1802 : tree desc, tmp;
3340 : :
3341 : 1802 : array_arg = expr->value.function.actual;
3342 : 1802 : dim_arg = array_arg->next;
3343 : :
3344 : 1802 : gcc_assert (array_arg->expr->expr_type == EXPR_VARIABLE);
3345 : :
3346 : 1802 : gfc_init_se (&argse, NULL);
3347 : 1802 : gfc_conv_expr_descriptor (&argse, array_arg->expr);
3348 : 1802 : gfc_add_block_to_block (&se->pre, &argse.pre);
3349 : 1802 : gfc_add_block_to_block (&se->post, &argse.post);
3350 : 1802 : desc = argse.expr;
3351 : :
3352 : 1802 : gcc_assert (dim_arg->expr);
3353 : 1802 : gfc_init_se (&argse, NULL);
3354 : 1802 : gfc_conv_expr_type (&argse, dim_arg->expr, gfc_array_index_type);
3355 : 1802 : gfc_add_block_to_block (&se->pre, &argse.pre);
3356 : 1802 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
3357 : : argse.expr, gfc_index_one_node);
3358 : 1802 : se->expr = gfc_conv_descriptor_stride_get (desc, tmp);
3359 : 1802 : }
3360 : :
3361 : : static void
3362 : 7629 : gfc_conv_intrinsic_abs (gfc_se * se, gfc_expr * expr)
3363 : : {
3364 : 7629 : tree arg, cabs;
3365 : :
3366 : 7629 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
3367 : :
3368 : 7629 : switch (expr->value.function.actual->expr->ts.type)
3369 : : {
3370 : 6659 : case BT_INTEGER:
3371 : 6659 : case BT_REAL:
3372 : 6659 : se->expr = fold_build1_loc (input_location, ABS_EXPR, TREE_TYPE (arg),
3373 : : arg);
3374 : 6659 : break;
3375 : :
3376 : 970 : case BT_COMPLEX:
3377 : 970 : cabs = gfc_builtin_decl_for_float_kind (BUILT_IN_CABS, expr->ts.kind);
3378 : 970 : se->expr = build_call_expr_loc (input_location, cabs, 1, arg);
3379 : 970 : break;
3380 : :
3381 : 0 : default:
3382 : 0 : gcc_unreachable ();
3383 : : }
3384 : 7629 : }
3385 : :
3386 : :
3387 : : /* Create a complex value from one or two real components. */
3388 : :
3389 : : static void
3390 : 488 : gfc_conv_intrinsic_cmplx (gfc_se * se, gfc_expr * expr, int both)
3391 : : {
3392 : 488 : tree real;
3393 : 488 : tree imag;
3394 : 488 : tree type;
3395 : 488 : tree *args;
3396 : 488 : unsigned int num_args;
3397 : :
3398 : 488 : num_args = gfc_intrinsic_argument_list_length (expr);
3399 : 488 : args = XALLOCAVEC (tree, num_args);
3400 : :
3401 : 488 : type = gfc_typenode_for_spec (&expr->ts);
3402 : 488 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
3403 : 488 : real = convert (TREE_TYPE (type), args[0]);
3404 : 488 : if (both)
3405 : 444 : imag = convert (TREE_TYPE (type), args[1]);
3406 : 44 : else if (TREE_CODE (TREE_TYPE (args[0])) == COMPLEX_TYPE)
3407 : : {
3408 : 30 : imag = fold_build1_loc (input_location, IMAGPART_EXPR,
3409 : 30 : TREE_TYPE (TREE_TYPE (args[0])), args[0]);
3410 : 30 : imag = convert (TREE_TYPE (type), imag);
3411 : : }
3412 : : else
3413 : 14 : imag = build_real_from_int_cst (TREE_TYPE (type), integer_zero_node);
3414 : :
3415 : 488 : se->expr = fold_build2_loc (input_location, COMPLEX_EXPR, type, real, imag);
3416 : 488 : }
3417 : :
3418 : :
3419 : : /* Remainder function MOD(A, P) = A - INT(A / P) * P
3420 : : MODULO(A, P) = A - FLOOR (A / P) * P
3421 : :
3422 : : The obvious algorithms above are numerically instable for large
3423 : : arguments, hence these intrinsics are instead implemented via calls
3424 : : to the fmod family of functions. It is the responsibility of the
3425 : : user to ensure that the second argument is non-zero. */
3426 : :
3427 : : static void
3428 : 3092 : gfc_conv_intrinsic_mod (gfc_se * se, gfc_expr * expr, int modulo)
3429 : : {
3430 : 3092 : tree type;
3431 : 3092 : tree tmp;
3432 : 3092 : tree test;
3433 : 3092 : tree test2;
3434 : 3092 : tree fmod;
3435 : 3092 : tree zero;
3436 : 3092 : tree args[2];
3437 : :
3438 : 3092 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
3439 : :
3440 : 3092 : switch (expr->ts.type)
3441 : : {
3442 : 2939 : case BT_INTEGER:
3443 : : /* Integer case is easy, we've got a builtin op. */
3444 : 2939 : type = TREE_TYPE (args[0]);
3445 : :
3446 : 2939 : if (modulo)
3447 : 428 : se->expr = fold_build2_loc (input_location, FLOOR_MOD_EXPR, type,
3448 : : args[0], args[1]);
3449 : : else
3450 : 2511 : se->expr = fold_build2_loc (input_location, TRUNC_MOD_EXPR, type,
3451 : : args[0], args[1]);
3452 : : break;
3453 : :
3454 : 30 : case BT_UNSIGNED:
3455 : : /* Even easier, we only need one. */
3456 : 30 : type = TREE_TYPE (args[0]);
3457 : 30 : se->expr = fold_build2_loc (input_location, TRUNC_MOD_EXPR, type,
3458 : : args[0], args[1]);
3459 : 30 : break;
3460 : :
3461 : 123 : case BT_REAL:
3462 : 123 : fmod = NULL_TREE;
3463 : : /* Check if we have a builtin fmod. */
3464 : 123 : fmod = gfc_builtin_decl_for_float_kind (BUILT_IN_FMOD, expr->ts.kind);
3465 : :
3466 : : /* The builtin should always be available. */
3467 : 123 : gcc_assert (fmod != NULL_TREE);
3468 : :
3469 : 123 : tmp = build_addr (fmod);
3470 : 123 : se->expr = build_call_array_loc (input_location,
3471 : 123 : TREE_TYPE (TREE_TYPE (fmod)),
3472 : : tmp, 2, args);
3473 : 123 : if (modulo == 0)
3474 : 123 : return;
3475 : :
3476 : 25 : type = TREE_TYPE (args[0]);
3477 : :
3478 : 25 : args[0] = gfc_evaluate_now (args[0], &se->pre);
3479 : 25 : args[1] = gfc_evaluate_now (args[1], &se->pre);
3480 : :
3481 : : /* Definition:
3482 : : modulo = arg - floor (arg/arg2) * arg2
3483 : :
3484 : : In order to calculate the result accurately, we use the fmod
3485 : : function as follows.
3486 : :
3487 : : res = fmod (arg, arg2);
3488 : : if (res)
3489 : : {
3490 : : if ((arg < 0) xor (arg2 < 0))
3491 : : res += arg2;
3492 : : }
3493 : : else
3494 : : res = copysign (0., arg2);
3495 : :
3496 : : => As two nested ternary exprs:
3497 : :
3498 : : res = res ? (((arg < 0) xor (arg2 < 0)) ? res + arg2 : res)
3499 : : : copysign (0., arg2);
3500 : :
3501 : : */
3502 : :
3503 : 25 : zero = gfc_build_const (type, integer_zero_node);
3504 : 25 : tmp = gfc_evaluate_now (se->expr, &se->pre);
3505 : 25 : if (!flag_signed_zeros)
3506 : : {
3507 : 1 : test = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3508 : : args[0], zero);
3509 : 1 : test2 = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3510 : : args[1], zero);
3511 : 1 : test2 = fold_build2_loc (input_location, TRUTH_XOR_EXPR,
3512 : : logical_type_node, test, test2);
3513 : 1 : test = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
3514 : : tmp, zero);
3515 : 1 : test = fold_build2_loc (input_location, TRUTH_AND_EXPR,
3516 : : logical_type_node, test, test2);
3517 : 1 : test = gfc_evaluate_now (test, &se->pre);
3518 : 1 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, test,
3519 : : fold_build2_loc (input_location,
3520 : : PLUS_EXPR,
3521 : : type, tmp, args[1]),
3522 : : tmp);
3523 : : }
3524 : : else
3525 : : {
3526 : 24 : tree expr1, copysign, cscall;
3527 : 24 : copysign = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN,
3528 : : expr->ts.kind);
3529 : 24 : test = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3530 : : args[0], zero);
3531 : 24 : test2 = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3532 : : args[1], zero);
3533 : 24 : test2 = fold_build2_loc (input_location, TRUTH_XOR_EXPR,
3534 : : logical_type_node, test, test2);
3535 : 24 : expr1 = fold_build3_loc (input_location, COND_EXPR, type, test2,
3536 : : fold_build2_loc (input_location,
3537 : : PLUS_EXPR,
3538 : : type, tmp, args[1]),
3539 : : tmp);
3540 : 24 : test = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
3541 : : tmp, zero);
3542 : 24 : cscall = build_call_expr_loc (input_location, copysign, 2, zero,
3543 : : args[1]);
3544 : 24 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, test,
3545 : : expr1, cscall);
3546 : : }
3547 : : return;
3548 : :
3549 : 0 : default:
3550 : 0 : gcc_unreachable ();
3551 : : }
3552 : : }
3553 : :
3554 : : /* DSHIFTL(I,J,S) = (I << S) | (J >> (BITSIZE(J) - S))
3555 : : DSHIFTR(I,J,S) = (I << (BITSIZE(I) - S)) | (J >> S)
3556 : : where the right shifts are logical (i.e. 0's are shifted in).
3557 : : Because SHIFT_EXPR's want shifts strictly smaller than the integral
3558 : : type width, we have to special-case both S == 0 and S == BITSIZE(J):
3559 : : DSHIFTL(I,J,0) = I
3560 : : DSHIFTL(I,J,BITSIZE) = J
3561 : : DSHIFTR(I,J,0) = J
3562 : : DSHIFTR(I,J,BITSIZE) = I. */
3563 : :
3564 : : static void
3565 : 132 : gfc_conv_intrinsic_dshift (gfc_se * se, gfc_expr * expr, bool dshiftl)
3566 : : {
3567 : 132 : tree type, utype, stype, arg1, arg2, shift, res, left, right;
3568 : 132 : tree args[3], cond, tmp;
3569 : 132 : int bitsize;
3570 : :
3571 : 132 : gfc_conv_intrinsic_function_args (se, expr, args, 3);
3572 : :
3573 : 132 : gcc_assert (TREE_TYPE (args[0]) == TREE_TYPE (args[1]));
3574 : 132 : type = TREE_TYPE (args[0]);
3575 : 132 : bitsize = TYPE_PRECISION (type);
3576 : 132 : utype = unsigned_type_for (type);
3577 : 132 : stype = TREE_TYPE (args[2]);
3578 : :
3579 : 132 : arg1 = gfc_evaluate_now (args[0], &se->pre);
3580 : 132 : arg2 = gfc_evaluate_now (args[1], &se->pre);
3581 : 132 : shift = gfc_evaluate_now (args[2], &se->pre);
3582 : :
3583 : : /* The generic case. */
3584 : 132 : tmp = fold_build2_loc (input_location, MINUS_EXPR, stype,
3585 : 132 : build_int_cst (stype, bitsize), shift);
3586 : 198 : left = fold_build2_loc (input_location, LSHIFT_EXPR, type,
3587 : : arg1, dshiftl ? shift : tmp);
3588 : :
3589 : 198 : right = fold_build2_loc (input_location, RSHIFT_EXPR, utype,
3590 : : fold_convert (utype, arg2), dshiftl ? tmp : shift);
3591 : 132 : right = fold_convert (type, right);
3592 : :
3593 : 132 : res = fold_build2_loc (input_location, BIT_IOR_EXPR, type, left, right);
3594 : :
3595 : : /* Special cases. */
3596 : 132 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, shift,
3597 : 132 : build_int_cst (stype, 0));
3598 : 198 : res = fold_build3_loc (input_location, COND_EXPR, type, cond,
3599 : : dshiftl ? arg1 : arg2, res);
3600 : :
3601 : 132 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, shift,
3602 : 132 : build_int_cst (stype, bitsize));
3603 : 198 : res = fold_build3_loc (input_location, COND_EXPR, type, cond,
3604 : : dshiftl ? arg2 : arg1, res);
3605 : :
3606 : 132 : se->expr = res;
3607 : 132 : }
3608 : :
3609 : :
3610 : : /* Positive difference DIM (x, y) = ((x - y) < 0) ? 0 : x - y. */
3611 : :
3612 : : static void
3613 : 96 : gfc_conv_intrinsic_dim (gfc_se * se, gfc_expr * expr)
3614 : : {
3615 : 96 : tree val;
3616 : 96 : tree tmp;
3617 : 96 : tree type;
3618 : 96 : tree zero;
3619 : 96 : tree args[2];
3620 : :
3621 : 96 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
3622 : 96 : type = TREE_TYPE (args[0]);
3623 : :
3624 : 96 : val = fold_build2_loc (input_location, MINUS_EXPR, type, args[0], args[1]);
3625 : 96 : val = gfc_evaluate_now (val, &se->pre);
3626 : :
3627 : 96 : zero = gfc_build_const (type, integer_zero_node);
3628 : 96 : tmp = fold_build2_loc (input_location, LE_EXPR, logical_type_node, val, zero);
3629 : 96 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, tmp, zero, val);
3630 : 96 : }
3631 : :
3632 : :
3633 : : /* SIGN(A, B) is absolute value of A times sign of B.
3634 : : The real value versions use library functions to ensure the correct
3635 : : handling of negative zero. Integer case implemented as:
3636 : : SIGN(A, B) = { tmp = (A ^ B) >> C; (A + tmp) ^ tmp }
3637 : : */
3638 : :
3639 : : static void
3640 : 424 : gfc_conv_intrinsic_sign (gfc_se * se, gfc_expr * expr)
3641 : : {
3642 : 424 : tree tmp;
3643 : 424 : tree type;
3644 : 424 : tree args[2];
3645 : :
3646 : 424 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
3647 : 424 : if (expr->ts.type == BT_REAL)
3648 : : {
3649 : 162 : tree abs;
3650 : :
3651 : 162 : tmp = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN, expr->ts.kind);
3652 : 162 : abs = gfc_builtin_decl_for_float_kind (BUILT_IN_FABS, expr->ts.kind);
3653 : :
3654 : : /* We explicitly have to ignore the minus sign. We do so by using
3655 : : result = (arg1 == 0) ? abs(arg0) : copysign(arg0, arg1). */
3656 : 162 : if (!flag_sign_zero
3657 : 198 : && MODE_HAS_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (args[1]))))
3658 : : {
3659 : 12 : tree cond, zero;
3660 : 12 : zero = build_real_from_int_cst (TREE_TYPE (args[1]), integer_zero_node);
3661 : 12 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
3662 : : args[1], zero);
3663 : 24 : se->expr = fold_build3_loc (input_location, COND_EXPR,
3664 : 12 : TREE_TYPE (args[0]), cond,
3665 : : build_call_expr_loc (input_location, abs, 1,
3666 : : args[0]),
3667 : : build_call_expr_loc (input_location, tmp, 2,
3668 : : args[0], args[1]));
3669 : : }
3670 : : else
3671 : 150 : se->expr = build_call_expr_loc (input_location, tmp, 2,
3672 : : args[0], args[1]);
3673 : 162 : return;
3674 : : }
3675 : :
3676 : : /* Having excluded floating point types, we know we are now dealing
3677 : : with signed integer types. */
3678 : 262 : type = TREE_TYPE (args[0]);
3679 : :
3680 : : /* Args[0] is used multiple times below. */
3681 : 262 : args[0] = gfc_evaluate_now (args[0], &se->pre);
3682 : :
3683 : : /* Construct (A ^ B) >> 31, which generates a bit mask of all zeros if
3684 : : the signs of A and B are the same, and of all ones if they differ. */
3685 : 262 : tmp = fold_build2_loc (input_location, BIT_XOR_EXPR, type, args[0], args[1]);
3686 : 262 : tmp = fold_build2_loc (input_location, RSHIFT_EXPR, type, tmp,
3687 : 262 : build_int_cst (type, TYPE_PRECISION (type) - 1));
3688 : 262 : tmp = gfc_evaluate_now (tmp, &se->pre);
3689 : :
3690 : : /* Construct (A + tmp) ^ tmp, which is A if tmp is zero, and -A if tmp]
3691 : : is all ones (i.e. -1). */
3692 : 262 : se->expr = fold_build2_loc (input_location, BIT_XOR_EXPR, type,
3693 : : fold_build2_loc (input_location, PLUS_EXPR,
3694 : : type, args[0], tmp), tmp);
3695 : : }
3696 : :
3697 : :
3698 : : /* Test for the presence of an optional argument. */
3699 : :
3700 : : static void
3701 : 4834 : gfc_conv_intrinsic_present (gfc_se * se, gfc_expr * expr)
3702 : : {
3703 : 4834 : gfc_expr *arg;
3704 : :
3705 : 4834 : arg = expr->value.function.actual->expr;
3706 : 4834 : gcc_assert (arg->expr_type == EXPR_VARIABLE);
3707 : 4834 : se->expr = gfc_conv_expr_present (arg->symtree->n.sym);
3708 : 4834 : se->expr = convert (gfc_typenode_for_spec (&expr->ts), se->expr);
3709 : 4834 : }
3710 : :
3711 : :
3712 : : /* Calculate the double precision product of two single precision values. */
3713 : :
3714 : : static void
3715 : 13 : gfc_conv_intrinsic_dprod (gfc_se * se, gfc_expr * expr)
3716 : : {
3717 : 13 : tree type;
3718 : 13 : tree args[2];
3719 : :
3720 : 13 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
3721 : :
3722 : : /* Convert the args to double precision before multiplying. */
3723 : 13 : type = gfc_typenode_for_spec (&expr->ts);
3724 : 13 : args[0] = convert (type, args[0]);
3725 : 13 : args[1] = convert (type, args[1]);
3726 : 13 : se->expr = fold_build2_loc (input_location, MULT_EXPR, type, args[0],
3727 : : args[1]);
3728 : 13 : }
3729 : :
3730 : :
3731 : : /* Return a length one character string containing an ascii character. */
3732 : :
3733 : : static void
3734 : 2020 : gfc_conv_intrinsic_char (gfc_se * se, gfc_expr * expr)
3735 : : {
3736 : 2020 : tree arg[2];
3737 : 2020 : tree var;
3738 : 2020 : tree type;
3739 : 2020 : unsigned int num_args;
3740 : :
3741 : 2020 : num_args = gfc_intrinsic_argument_list_length (expr);
3742 : 2020 : gfc_conv_intrinsic_function_args (se, expr, arg, num_args);
3743 : :
3744 : 2020 : type = gfc_get_char_type (expr->ts.kind);
3745 : 2020 : var = gfc_create_var (type, "char");
3746 : :
3747 : 2020 : arg[0] = fold_build1_loc (input_location, NOP_EXPR, type, arg[0]);
3748 : 2020 : gfc_add_modify (&se->pre, var, arg[0]);
3749 : 2020 : se->expr = gfc_build_addr_expr (build_pointer_type (type), var);
3750 : 2020 : se->string_length = build_int_cst (gfc_charlen_type_node, 1);
3751 : 2020 : }
3752 : :
3753 : :
3754 : : static void
3755 : 0 : gfc_conv_intrinsic_ctime (gfc_se * se, gfc_expr * expr)
3756 : : {
3757 : 0 : tree var;
3758 : 0 : tree len;
3759 : 0 : tree tmp;
3760 : 0 : tree cond;
3761 : 0 : tree fndecl;
3762 : 0 : tree *args;
3763 : 0 : unsigned int num_args;
3764 : :
3765 : 0 : num_args = gfc_intrinsic_argument_list_length (expr) + 2;
3766 : 0 : args = XALLOCAVEC (tree, num_args);
3767 : :
3768 : 0 : var = gfc_create_var (pchar_type_node, "pstr");
3769 : 0 : len = gfc_create_var (gfc_charlen_type_node, "len");
3770 : :
3771 : 0 : gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
3772 : 0 : args[0] = gfc_build_addr_expr (NULL_TREE, var);
3773 : 0 : args[1] = gfc_build_addr_expr (NULL_TREE, len);
3774 : :
3775 : 0 : fndecl = build_addr (gfor_fndecl_ctime);
3776 : 0 : tmp = build_call_array_loc (input_location,
3777 : 0 : TREE_TYPE (TREE_TYPE (gfor_fndecl_ctime)),
3778 : : fndecl, num_args, args);
3779 : 0 : gfc_add_expr_to_block (&se->pre, tmp);
3780 : :
3781 : : /* Free the temporary afterwards, if necessary. */
3782 : 0 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3783 : 0 : len, build_int_cst (TREE_TYPE (len), 0));
3784 : 0 : tmp = gfc_call_free (var);
3785 : 0 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3786 : 0 : gfc_add_expr_to_block (&se->post, tmp);
3787 : :
3788 : 0 : se->expr = var;
3789 : 0 : se->string_length = len;
3790 : 0 : }
3791 : :
3792 : :
3793 : : static void
3794 : 0 : gfc_conv_intrinsic_fdate (gfc_se * se, gfc_expr * expr)
3795 : : {
3796 : 0 : tree var;
3797 : 0 : tree len;
3798 : 0 : tree tmp;
3799 : 0 : tree cond;
3800 : 0 : tree fndecl;
3801 : 0 : tree *args;
3802 : 0 : unsigned int num_args;
3803 : :
3804 : 0 : num_args = gfc_intrinsic_argument_list_length (expr) + 2;
3805 : 0 : args = XALLOCAVEC (tree, num_args);
3806 : :
3807 : 0 : var = gfc_create_var (pchar_type_node, "pstr");
3808 : 0 : len = gfc_create_var (gfc_charlen_type_node, "len");
3809 : :
3810 : 0 : gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
3811 : 0 : args[0] = gfc_build_addr_expr (NULL_TREE, var);
3812 : 0 : args[1] = gfc_build_addr_expr (NULL_TREE, len);
3813 : :
3814 : 0 : fndecl = build_addr (gfor_fndecl_fdate);
3815 : 0 : tmp = build_call_array_loc (input_location,
3816 : 0 : TREE_TYPE (TREE_TYPE (gfor_fndecl_fdate)),
3817 : : fndecl, num_args, args);
3818 : 0 : gfc_add_expr_to_block (&se->pre, tmp);
3819 : :
3820 : : /* Free the temporary afterwards, if necessary. */
3821 : 0 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3822 : 0 : len, build_int_cst (TREE_TYPE (len), 0));
3823 : 0 : tmp = gfc_call_free (var);
3824 : 0 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3825 : 0 : gfc_add_expr_to_block (&se->post, tmp);
3826 : :
3827 : 0 : se->expr = var;
3828 : 0 : se->string_length = len;
3829 : 0 : }
3830 : :
3831 : :
3832 : : /* Generate a direct call to free() for the FREE subroutine. */
3833 : :
3834 : : static tree
3835 : 10 : conv_intrinsic_free (gfc_code *code)
3836 : : {
3837 : 10 : stmtblock_t block;
3838 : 10 : gfc_se argse;
3839 : 10 : tree arg, call;
3840 : :
3841 : 10 : gfc_init_se (&argse, NULL);
3842 : 10 : gfc_conv_expr (&argse, code->ext.actual->expr);
3843 : 10 : arg = fold_convert (ptr_type_node, argse.expr);
3844 : :
3845 : 10 : gfc_init_block (&block);
3846 : 10 : call = build_call_expr_loc (input_location,
3847 : : builtin_decl_explicit (BUILT_IN_FREE), 1, arg);
3848 : 10 : gfc_add_expr_to_block (&block, call);
3849 : 10 : return gfc_finish_block (&block);
3850 : : }
3851 : :
3852 : :
3853 : : /* Call the RANDOM_INIT library subroutine with a hidden argument for
3854 : : handling seeding on coarray images. */
3855 : :
3856 : : static tree
3857 : 90 : conv_intrinsic_random_init (gfc_code *code)
3858 : : {
3859 : 90 : stmtblock_t block;
3860 : 90 : gfc_se se;
3861 : 90 : tree arg1, arg2, tmp;
3862 : : /* On none coarray == lib compiles use LOGICAL(4) else regular LOGICAL. */
3863 : 90 : tree used_bool_type_node = flag_coarray == GFC_FCOARRAY_LIB
3864 : 90 : ? logical_type_node
3865 : 90 : : gfc_get_logical_type (4);
3866 : :
3867 : : /* Make the function call. */
3868 : 90 : gfc_init_block (&block);
3869 : 90 : gfc_init_se (&se, NULL);
3870 : :
3871 : : /* Convert REPEATABLE to the desired LOGICAL entity. */
3872 : 90 : gfc_conv_expr (&se, code->ext.actual->expr);
3873 : 90 : gfc_add_block_to_block (&block, &se.pre);
3874 : 90 : arg1 = fold_convert (used_bool_type_node, gfc_evaluate_now (se.expr, &block));
3875 : 90 : gfc_add_block_to_block (&block, &se.post);
3876 : :
3877 : : /* Convert IMAGE_DISTINCT to the desired LOGICAL entity. */
3878 : 90 : gfc_conv_expr (&se, code->ext.actual->next->expr);
3879 : 90 : gfc_add_block_to_block (&block, &se.pre);
3880 : 90 : arg2 = fold_convert (used_bool_type_node, gfc_evaluate_now (se.expr, &block));
3881 : 90 : gfc_add_block_to_block (&block, &se.post);
3882 : :
3883 : 90 : if (flag_coarray == GFC_FCOARRAY_LIB)
3884 : : {
3885 : 0 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_random_init,
3886 : : 2, arg1, arg2);
3887 : : }
3888 : : else
3889 : : {
3890 : : /* The ABI for libgfortran needs to be maintained, so a hidden
3891 : : argument must be include if code is compiled with -fcoarray=single
3892 : : or without the option. Set to 0. */
3893 : 90 : tree arg3 = build_int_cst (gfc_get_int_type (4), 0);
3894 : 90 : tmp = build_call_expr_loc (input_location, gfor_fndecl_random_init,
3895 : : 3, arg1, arg2, arg3);
3896 : : }
3897 : :
3898 : 90 : gfc_add_expr_to_block (&block, tmp);
3899 : :
3900 : 90 : return gfc_finish_block (&block);
3901 : : }
3902 : :
3903 : :
3904 : : /* Call the SYSTEM_CLOCK library functions, handling the type and kind
3905 : : conversions. */
3906 : :
3907 : : static tree
3908 : 194 : conv_intrinsic_system_clock (gfc_code *code)
3909 : : {
3910 : 194 : stmtblock_t block;
3911 : 194 : gfc_se count_se, count_rate_se, count_max_se;
3912 : 194 : tree arg1 = NULL_TREE, arg2 = NULL_TREE, arg3 = NULL_TREE;
3913 : 194 : tree tmp;
3914 : 194 : int least;
3915 : :
3916 : 194 : gfc_expr *count = code->ext.actual->expr;
3917 : 194 : gfc_expr *count_rate = code->ext.actual->next->expr;
3918 : 194 : gfc_expr *count_max = code->ext.actual->next->next->expr;
3919 : :
3920 : : /* Evaluate our arguments. */
3921 : 194 : if (count)
3922 : : {
3923 : 194 : gfc_init_se (&count_se, NULL);
3924 : 194 : gfc_conv_expr (&count_se, count);
3925 : : }
3926 : :
3927 : 194 : if (count_rate)
3928 : : {
3929 : 181 : gfc_init_se (&count_rate_se, NULL);
3930 : 181 : gfc_conv_expr (&count_rate_se, count_rate);
3931 : : }
3932 : :
3933 : 194 : if (count_max)
3934 : : {
3935 : 180 : gfc_init_se (&count_max_se, NULL);
3936 : 180 : gfc_conv_expr (&count_max_se, count_max);
3937 : : }
3938 : :
3939 : : /* Find the smallest kind found of the arguments. */
3940 : 194 : least = 16;
3941 : 194 : least = (count && count->ts.kind < least) ? count->ts.kind : least;
3942 : 194 : least = (count_rate && count_rate->ts.kind < least) ? count_rate->ts.kind
3943 : : : least;
3944 : 194 : least = (count_max && count_max->ts.kind < least) ? count_max->ts.kind
3945 : : : least;
3946 : :
3947 : : /* Prepare temporary variables. */
3948 : :
3949 : 194 : if (count)
3950 : : {
3951 : 194 : if (least >= 8)
3952 : 18 : arg1 = gfc_create_var (gfc_get_int_type (8), "count");
3953 : 176 : else if (least == 4)
3954 : 152 : arg1 = gfc_create_var (gfc_get_int_type (4), "count");
3955 : 24 : else if (count->ts.kind == 1)
3956 : 12 : arg1 = gfc_conv_mpz_to_tree (gfc_integer_kinds[0].pedantic_min_int,
3957 : : count->ts.kind);
3958 : : else
3959 : 12 : arg1 = gfc_conv_mpz_to_tree (gfc_integer_kinds[1].pedantic_min_int,
3960 : : count->ts.kind);
3961 : : }
3962 : :
3963 : 194 : if (count_rate)
3964 : : {
3965 : 181 : if (least >= 8)
3966 : 18 : arg2 = gfc_create_var (gfc_get_int_type (8), "count_rate");
3967 : 163 : else if (least == 4)
3968 : 139 : arg2 = gfc_create_var (gfc_get_int_type (4), "count_rate");
3969 : : else
3970 : 24 : arg2 = integer_zero_node;
3971 : : }
3972 : :
3973 : 194 : if (count_max)
3974 : : {
3975 : 180 : if (least >= 8)
3976 : 18 : arg3 = gfc_create_var (gfc_get_int_type (8), "count_max");
3977 : 162 : else if (least == 4)
3978 : 138 : arg3 = gfc_create_var (gfc_get_int_type (4), "count_max");
3979 : : else
3980 : 24 : arg3 = integer_zero_node;
3981 : : }
3982 : :
3983 : : /* Make the function call. */
3984 : 194 : gfc_init_block (&block);
3985 : :
3986 : 194 : if (least <= 2)
3987 : : {
3988 : 24 : if (least == 1)
3989 : : {
3990 : 12 : arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
3991 : : : null_pointer_node;
3992 : 12 : arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
3993 : : : null_pointer_node;
3994 : 12 : arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
3995 : : : null_pointer_node;
3996 : : }
3997 : :
3998 : 24 : if (least == 2)
3999 : : {
4000 : 12 : arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
4001 : : : null_pointer_node;
4002 : 12 : arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
4003 : : : null_pointer_node;
4004 : 12 : arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
4005 : : : null_pointer_node;
4006 : : }
4007 : : }
4008 : : else
4009 : : {
4010 : 170 : if (least == 4)
4011 : : {
4012 : 581 : tmp = build_call_expr_loc (input_location,
4013 : : gfor_fndecl_system_clock4, 3,
4014 : 152 : arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
4015 : : : null_pointer_node,
4016 : 139 : arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
4017 : : : null_pointer_node,
4018 : 138 : arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
4019 : : : null_pointer_node);
4020 : 152 : gfc_add_expr_to_block (&block, tmp);
4021 : : }
4022 : : /* Handle kind>=8, 10, or 16 arguments */
4023 : 170 : if (least >= 8)
4024 : : {
4025 : 72 : tmp = build_call_expr_loc (input_location,
4026 : : gfor_fndecl_system_clock8, 3,
4027 : 18 : arg1 ? gfc_build_addr_expr (NULL_TREE, arg1)
4028 : : : null_pointer_node,
4029 : 18 : arg2 ? gfc_build_addr_expr (NULL_TREE, arg2)
4030 : : : null_pointer_node,
4031 : 18 : arg3 ? gfc_build_addr_expr (NULL_TREE, arg3)
4032 : : : null_pointer_node);
4033 : 18 : gfc_add_expr_to_block (&block, tmp);
4034 : : }
4035 : : }
4036 : :
4037 : : /* And store values back if needed. */
4038 : 194 : if (arg1 && arg1 != count_se.expr)
4039 : 194 : gfc_add_modify (&block, count_se.expr,
4040 : 194 : fold_convert (TREE_TYPE (count_se.expr), arg1));
4041 : 194 : if (arg2 && arg2 != count_rate_se.expr)
4042 : 181 : gfc_add_modify (&block, count_rate_se.expr,
4043 : 181 : fold_convert (TREE_TYPE (count_rate_se.expr), arg2));
4044 : 194 : if (arg3 && arg3 != count_max_se.expr)
4045 : 180 : gfc_add_modify (&block, count_max_se.expr,
4046 : 180 : fold_convert (TREE_TYPE (count_max_se.expr), arg3));
4047 : :
4048 : 194 : return gfc_finish_block (&block);
4049 : : }
4050 : :
4051 : :
4052 : : /* Return a character string containing the tty name. */
4053 : :
4054 : : static void
4055 : 0 : gfc_conv_intrinsic_ttynam (gfc_se * se, gfc_expr * expr)
4056 : : {
4057 : 0 : tree var;
4058 : 0 : tree len;
4059 : 0 : tree tmp;
4060 : 0 : tree cond;
4061 : 0 : tree fndecl;
4062 : 0 : tree *args;
4063 : 0 : unsigned int num_args;
4064 : :
4065 : 0 : num_args = gfc_intrinsic_argument_list_length (expr) + 2;
4066 : 0 : args = XALLOCAVEC (tree, num_args);
4067 : :
4068 : 0 : var = gfc_create_var (pchar_type_node, "pstr");
4069 : 0 : len = gfc_create_var (gfc_charlen_type_node, "len");
4070 : :
4071 : 0 : gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
4072 : 0 : args[0] = gfc_build_addr_expr (NULL_TREE, var);
4073 : 0 : args[1] = gfc_build_addr_expr (NULL_TREE, len);
4074 : :
4075 : 0 : fndecl = build_addr (gfor_fndecl_ttynam);
4076 : 0 : tmp = build_call_array_loc (input_location,
4077 : 0 : TREE_TYPE (TREE_TYPE (gfor_fndecl_ttynam)),
4078 : : fndecl, num_args, args);
4079 : 0 : gfc_add_expr_to_block (&se->pre, tmp);
4080 : :
4081 : : /* Free the temporary afterwards, if necessary. */
4082 : 0 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
4083 : 0 : len, build_int_cst (TREE_TYPE (len), 0));
4084 : 0 : tmp = gfc_call_free (var);
4085 : 0 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
4086 : 0 : gfc_add_expr_to_block (&se->post, tmp);
4087 : :
4088 : 0 : se->expr = var;
4089 : 0 : se->string_length = len;
4090 : 0 : }
4091 : :
4092 : :
4093 : : /* Get the minimum/maximum value of all the parameters.
4094 : : minmax (a1, a2, a3, ...)
4095 : : {
4096 : : mvar = a1;
4097 : : mvar = COMP (mvar, a2)
4098 : : mvar = COMP (mvar, a3)
4099 : : ...
4100 : : return mvar;
4101 : : }
4102 : : Where COMP is MIN/MAX_EXPR for integral types or when we don't
4103 : : care about NaNs, or IFN_FMIN/MAX when the target has support for
4104 : : fast NaN-honouring min/max. When neither holds expand a sequence
4105 : : of explicit comparisons. */
4106 : :
4107 : : /* TODO: Mismatching types can occur when specific names are used.
4108 : : These should be handled during resolution. */
4109 : : static void
4110 : 1321 : gfc_conv_intrinsic_minmax (gfc_se * se, gfc_expr * expr, enum tree_code op)
4111 : : {
4112 : 1321 : tree tmp;
4113 : 1321 : tree mvar;
4114 : 1321 : tree val;
4115 : 1321 : tree *args;
4116 : 1321 : tree type;
4117 : 1321 : tree argtype;
4118 : 1321 : gfc_actual_arglist *argexpr;
4119 : 1321 : unsigned int i, nargs;
4120 : :
4121 : 1321 : nargs = gfc_intrinsic_argument_list_length (expr);
4122 : 1321 : args = XALLOCAVEC (tree, nargs);
4123 : :
4124 : 1321 : gfc_conv_intrinsic_function_args (se, expr, args, nargs);
4125 : 1321 : type = gfc_typenode_for_spec (&expr->ts);
4126 : :
4127 : : /* Only evaluate the argument once. */
4128 : 1321 : if (!VAR_P (args[0]) && !TREE_CONSTANT (args[0]))
4129 : 303 : args[0] = gfc_evaluate_now (args[0], &se->pre);
4130 : :
4131 : : /* Determine suitable type of temporary, as a GNU extension allows
4132 : : different argument kinds. */
4133 : 1321 : argtype = TREE_TYPE (args[0]);
4134 : 1321 : argexpr = expr->value.function.actual;
4135 : 2866 : for (i = 1, argexpr = argexpr->next; i < nargs; i++, argexpr = argexpr->next)
4136 : : {
4137 : 1545 : tree tmptype = TREE_TYPE (args[i]);
4138 : 1545 : if (TYPE_PRECISION (tmptype) > TYPE_PRECISION (argtype))
4139 : 6 : argtype = tmptype;
4140 : : }
4141 : 1321 : mvar = gfc_create_var (argtype, "M");
4142 : 1321 : gfc_add_modify (&se->pre, mvar, convert (argtype, args[0]));
4143 : :
4144 : 1321 : argexpr = expr->value.function.actual;
4145 : 2866 : for (i = 1, argexpr = argexpr->next; i < nargs; i++, argexpr = argexpr->next)
4146 : : {
4147 : 1545 : tree cond = NULL_TREE;
4148 : 1545 : val = args[i];
4149 : :
4150 : : /* Handle absent optional arguments by ignoring the comparison. */
4151 : 1545 : if (argexpr->expr->expr_type == EXPR_VARIABLE
4152 : 911 : && argexpr->expr->symtree->n.sym->attr.optional
4153 : 45 : && INDIRECT_REF_P (val))
4154 : : {
4155 : 84 : cond = fold_build2_loc (input_location,
4156 : : NE_EXPR, logical_type_node,
4157 : 42 : TREE_OPERAND (val, 0),
4158 : 42 : build_int_cst (TREE_TYPE (TREE_OPERAND (val, 0)), 0));
4159 : : }
4160 : 1503 : else if (!VAR_P (val) && !TREE_CONSTANT (val))
4161 : : /* Only evaluate the argument once. */
4162 : 577 : val = gfc_evaluate_now (val, &se->pre);
4163 : :
4164 : 1545 : tree calc;
4165 : : /* For floating point types, the question is what MAX(a, NaN) or
4166 : : MIN(a, NaN) should return (where "a" is a normal number).
4167 : : There are valid use case for returning either one, but the
4168 : : Fortran standard doesn't specify which one should be chosen.
4169 : : Also, there is no consensus among other tested compilers. In
4170 : : short, it's a mess. So lets just do whatever is fastest. */
4171 : 1545 : tree_code code = op == GT_EXPR ? MAX_EXPR : MIN_EXPR;
4172 : 1545 : calc = fold_build2_loc (input_location, code, argtype,
4173 : : convert (argtype, val), mvar);
4174 : 1545 : tmp = build2_v (MODIFY_EXPR, mvar, calc);
4175 : :
4176 : 1545 : if (cond != NULL_TREE)
4177 : 42 : tmp = build3_v (COND_EXPR, cond, tmp,
4178 : : build_empty_stmt (input_location));
4179 : 1545 : gfc_add_expr_to_block (&se->pre, tmp);
4180 : : }
4181 : 1321 : se->expr = convert (type, mvar);
4182 : 1321 : }
4183 : :
4184 : :
4185 : : /* Generate library calls for MIN and MAX intrinsics for character
4186 : : variables. */
4187 : : static void
4188 : 282 : gfc_conv_intrinsic_minmax_char (gfc_se * se, gfc_expr * expr, int op)
4189 : : {
4190 : 282 : tree *args;
4191 : 282 : tree var, len, fndecl, tmp, cond, function;
4192 : 282 : unsigned int nargs;
4193 : :
4194 : 282 : nargs = gfc_intrinsic_argument_list_length (expr);
4195 : 282 : args = XALLOCAVEC (tree, nargs + 4);
4196 : 282 : gfc_conv_intrinsic_function_args (se, expr, &args[4], nargs);
4197 : :
4198 : : /* Create the result variables. */
4199 : 282 : len = gfc_create_var (gfc_charlen_type_node, "len");
4200 : 282 : args[0] = gfc_build_addr_expr (NULL_TREE, len);
4201 : 282 : var = gfc_create_var (gfc_get_pchar_type (expr->ts.kind), "pstr");
4202 : 282 : args[1] = gfc_build_addr_expr (ppvoid_type_node, var);
4203 : 282 : args[2] = build_int_cst (integer_type_node, op);
4204 : 282 : args[3] = build_int_cst (integer_type_node, nargs / 2);
4205 : :
4206 : 282 : if (expr->ts.kind == 1)
4207 : 210 : function = gfor_fndecl_string_minmax;
4208 : 72 : else if (expr->ts.kind == 4)
4209 : 72 : function = gfor_fndecl_string_minmax_char4;
4210 : : else
4211 : 0 : gcc_unreachable ();
4212 : :
4213 : : /* Make the function call. */
4214 : 282 : fndecl = build_addr (function);
4215 : 282 : tmp = build_call_array_loc (input_location,
4216 : 282 : TREE_TYPE (TREE_TYPE (function)), fndecl,
4217 : : nargs + 4, args);
4218 : 282 : gfc_add_expr_to_block (&se->pre, tmp);
4219 : :
4220 : : /* Free the temporary afterwards, if necessary. */
4221 : 282 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
4222 : 282 : len, build_int_cst (TREE_TYPE (len), 0));
4223 : 282 : tmp = gfc_call_free (var);
4224 : 282 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
4225 : 282 : gfc_add_expr_to_block (&se->post, tmp);
4226 : :
4227 : 282 : se->expr = var;
4228 : 282 : se->string_length = len;
4229 : 282 : }
4230 : :
4231 : :
4232 : : /* Create a symbol node for this intrinsic. The symbol from the frontend
4233 : : has the generic name. */
4234 : :
4235 : : static gfc_symbol *
4236 : 11112 : gfc_get_symbol_for_expr (gfc_expr * expr, bool ignore_optional)
4237 : : {
4238 : 11112 : gfc_symbol *sym;
4239 : :
4240 : : /* TODO: Add symbols for intrinsic function to the global namespace. */
4241 : 11112 : gcc_assert (strlen (expr->value.function.name) <= GFC_MAX_SYMBOL_LEN - 5);
4242 : 11112 : sym = gfc_new_symbol (expr->value.function.name, NULL);
4243 : :
4244 : 11112 : sym->ts = expr->ts;
4245 : 11112 : sym->attr.external = 1;
4246 : 11112 : sym->attr.function = 1;
4247 : 11112 : sym->attr.always_explicit = 1;
4248 : 11112 : sym->attr.proc = PROC_INTRINSIC;
4249 : 11112 : sym->attr.flavor = FL_PROCEDURE;
4250 : 11112 : sym->result = sym;
4251 : 11112 : if (expr->rank > 0)
4252 : : {
4253 : 9876 : sym->attr.dimension = 1;
4254 : 9876 : sym->as = gfc_get_array_spec ();
4255 : 9876 : sym->as->type = AS_ASSUMED_SHAPE;
4256 : 9876 : sym->as->rank = expr->rank;
4257 : : }
4258 : :
4259 : 11112 : gfc_copy_formal_args_intr (sym, expr->value.function.isym,
4260 : : ignore_optional ? expr->value.function.actual
4261 : : : NULL);
4262 : :
4263 : 11112 : return sym;
4264 : : }
4265 : :
4266 : : /* Remove empty actual arguments. */
4267 : :
4268 : : static void
4269 : 6993 : remove_empty_actual_arguments (gfc_actual_arglist **ap)
4270 : : {
4271 : 36740 : while (*ap)
4272 : : {
4273 : 29747 : if ((*ap)->expr == NULL)
4274 : : {
4275 : 8684 : gfc_actual_arglist *r = *ap;
4276 : 8684 : *ap = r->next;
4277 : 8684 : r->next = NULL;
4278 : 8684 : gfc_free_actual_arglist (r);
4279 : : }
4280 : : else
4281 : 21063 : ap = &((*ap)->next);
4282 : : }
4283 : 6993 : }
4284 : :
4285 : : #define MAX_SPEC_ARG 12
4286 : :
4287 : : /* Make up an fn spec that's right for intrinsic functions that we
4288 : : want to call. */
4289 : :
4290 : : static char *
4291 : 1566 : intrinsic_fnspec (gfc_expr *expr)
4292 : : {
4293 : 1566 : static char fnspec_buf[MAX_SPEC_ARG*2+1];
4294 : 1566 : char *fp;
4295 : 1566 : int i;
4296 : 1566 : int num_char_args;
4297 : :
4298 : : #define ADD_CHAR(c) do { *fp++ = c; *fp++ = ' '; } while(0)
4299 : :
4300 : : /* Set the fndecl. */
4301 : 1566 : fp = fnspec_buf;
4302 : : /* Function return value. FIXME: Check if the second letter could
4303 : : be something other than a space, for further optimization. */
4304 : 1566 : ADD_CHAR ('.');
4305 : 1566 : if (expr->rank == 0)
4306 : : {
4307 : 166 : if (expr->ts.type == BT_CHARACTER)
4308 : : {
4309 : 84 : ADD_CHAR ('w'); /* Address of character. */
4310 : 84 : ADD_CHAR ('.'); /* Length of character. */
4311 : : }
4312 : : }
4313 : : else
4314 : 1400 : ADD_CHAR ('w'); /* Return value is a descriptor. */
4315 : :
4316 : 1566 : num_char_args = 0;
4317 : 7964 : for (gfc_actual_arglist *a = expr->value.function.actual; a; a = a->next)
4318 : : {
4319 : 6398 : if (a->expr == NULL)
4320 : 1918 : continue;
4321 : :
4322 : 4480 : if (a->name && strcmp (a->name,"%VAL") == 0)
4323 : 934 : ADD_CHAR ('.');
4324 : : else
4325 : : {
4326 : 3546 : if (a->expr->rank > 0)
4327 : 2090 : ADD_CHAR ('r');
4328 : : else
4329 : 1456 : ADD_CHAR ('R');
4330 : : }
4331 : 4480 : num_char_args += a->expr->ts.type == BT_CHARACTER;
4332 : 4480 : gcc_assert (fp - fnspec_buf + num_char_args <= MAX_SPEC_ARG*2);
4333 : : }
4334 : :
4335 : 2190 : for (i = 0; i < num_char_args; i++)
4336 : 624 : ADD_CHAR ('.');
4337 : :
4338 : 1566 : *fp = '\0';
4339 : 1566 : return fnspec_buf;
4340 : : }
4341 : :
4342 : : #undef MAX_SPEC_ARG
4343 : : #undef ADD_CHAR
4344 : :
4345 : : /* Generate the right symbol for the specific intrinsic function and
4346 : : modify the expr accordingly. This assumes that absent optional
4347 : : arguments should be removed. */
4348 : :
4349 : : gfc_symbol *
4350 : 6993 : specific_intrinsic_symbol (gfc_expr *expr)
4351 : : {
4352 : 6993 : gfc_symbol *sym;
4353 : :
4354 : 6993 : sym = gfc_find_intrinsic_symbol (expr);
4355 : 6993 : if (sym == NULL)
4356 : : {
4357 : 1566 : sym = gfc_get_intrinsic_function_symbol (expr);
4358 : 1566 : sym->ts = expr->ts;
4359 : 1566 : if (sym->ts.type == BT_CHARACTER && sym->ts.u.cl)
4360 : 240 : sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
4361 : :
4362 : 1566 : gfc_copy_formal_args_intr (sym, expr->value.function.isym,
4363 : : expr->value.function.actual, true);
4364 : 1566 : sym->backend_decl
4365 : 1566 : = gfc_get_extern_function_decl (sym, expr->value.function.actual,
4366 : 1566 : intrinsic_fnspec (expr));
4367 : : }
4368 : :
4369 : 6993 : remove_empty_actual_arguments (&(expr->value.function.actual));
4370 : :
4371 : 6993 : return sym;
4372 : : }
4373 : :
4374 : : /* Generate a call to an external intrinsic function. FIXME: So far,
4375 : : this only works for functions which are called with well-defined
4376 : : types; CSHIFT and friends will come later. */
4377 : :
4378 : : static void
4379 : 12219 : gfc_conv_intrinsic_funcall (gfc_se * se, gfc_expr * expr)
4380 : : {
4381 : 12219 : gfc_symbol *sym;
4382 : 12219 : vec<tree, va_gc> *append_args;
4383 : 12219 : bool specific_symbol;
4384 : :
4385 : 12219 : gcc_assert (!se->ss || se->ss->info->expr == expr);
4386 : :
4387 : 12219 : if (se->ss)
4388 : 10673 : gcc_assert (expr->rank > 0);
4389 : : else
4390 : 1546 : gcc_assert (expr->rank == 0);
4391 : :
4392 : 12219 : switch (expr->value.function.isym->id)
4393 : : {
4394 : : case GFC_ISYM_ANY:
4395 : : case GFC_ISYM_ALL:
4396 : : case GFC_ISYM_FINDLOC:
4397 : : case GFC_ISYM_MAXLOC:
4398 : : case GFC_ISYM_MINLOC:
4399 : : case GFC_ISYM_MAXVAL:
4400 : : case GFC_ISYM_MINVAL:
4401 : : case GFC_ISYM_NORM2:
4402 : : case GFC_ISYM_PRODUCT:
4403 : : case GFC_ISYM_SUM:
4404 : : specific_symbol = true;
4405 : : break;
4406 : 5226 : default:
4407 : 5226 : specific_symbol = false;
4408 : : }
4409 : :
4410 : 12219 : if (specific_symbol)
4411 : : {
4412 : : /* Need to copy here because specific_intrinsic_symbol modifies
4413 : : expr to omit the absent optional arguments. */
4414 : 6993 : expr = gfc_copy_expr (expr);
4415 : 6993 : sym = specific_intrinsic_symbol (expr);
4416 : : }
4417 : : else
4418 : 5226 : sym = gfc_get_symbol_for_expr (expr, se->ignore_optional);
4419 : :
4420 : : /* Calls to libgfortran_matmul need to be appended special arguments,
4421 : : to be able to call the BLAS ?gemm functions if required and possible. */
4422 : 12219 : append_args = NULL;
4423 : 12219 : if (expr->value.function.isym->id == GFC_ISYM_MATMUL
4424 : 921 : && !expr->external_blas
4425 : 884 : && sym->ts.type != BT_LOGICAL)
4426 : : {
4427 : 868 : tree cint = gfc_get_int_type (gfc_c_int_kind);
4428 : :
4429 : 868 : if (flag_external_blas
4430 : 0 : && (sym->ts.type == BT_REAL || sym->ts.type == BT_COMPLEX)
4431 : 0 : && (sym->ts.kind == 4 || sym->ts.kind == 8))
4432 : : {
4433 : 0 : tree gemm_fndecl;
4434 : :
4435 : 0 : if (sym->ts.type == BT_REAL)
4436 : : {
4437 : 0 : if (sym->ts.kind == 4)
4438 : 0 : gemm_fndecl = gfor_fndecl_sgemm;
4439 : : else
4440 : 0 : gemm_fndecl = gfor_fndecl_dgemm;
4441 : : }
4442 : : else
4443 : : {
4444 : 0 : if (sym->ts.kind == 4)
4445 : 0 : gemm_fndecl = gfor_fndecl_cgemm;
4446 : : else
4447 : 0 : gemm_fndecl = gfor_fndecl_zgemm;
4448 : : }
4449 : :
4450 : 0 : vec_alloc (append_args, 3);
4451 : 0 : append_args->quick_push (build_int_cst (cint, 1));
4452 : 0 : append_args->quick_push (build_int_cst (cint,
4453 : : flag_blas_matmul_limit));
4454 : 0 : append_args->quick_push (gfc_build_addr_expr (NULL_TREE,
4455 : : gemm_fndecl));
4456 : 0 : }
4457 : : else
4458 : : {
4459 : 868 : vec_alloc (append_args, 3);
4460 : 868 : append_args->quick_push (build_int_cst (cint, 0));
4461 : 868 : append_args->quick_push (build_int_cst (cint, 0));
4462 : 868 : append_args->quick_push (null_pointer_node);
4463 : : }
4464 : : }
4465 : :
4466 : 12219 : gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
4467 : : append_args);
4468 : :
4469 : 12219 : if (specific_symbol)
4470 : 6993 : gfc_free_expr (expr);
4471 : : else
4472 : 5226 : gfc_free_symbol (sym);
4473 : 12219 : }
4474 : :
4475 : : /* ANY and ALL intrinsics. ANY->op == NE_EXPR, ALL->op == EQ_EXPR.
4476 : : Implemented as
4477 : : any(a)
4478 : : {
4479 : : forall (i=...)
4480 : : if (a[i] != 0)
4481 : : return 1
4482 : : end forall
4483 : : return 0
4484 : : }
4485 : : all(a)
4486 : : {
4487 : : forall (i=...)
4488 : : if (a[i] == 0)
4489 : : return 0
4490 : : end forall
4491 : : return 1
4492 : : }
4493 : : */
4494 : : static void
4495 : 34050 : gfc_conv_intrinsic_anyall (gfc_se * se, gfc_expr * expr, enum tree_code op)
4496 : : {
4497 : 34050 : tree resvar;
4498 : 34050 : stmtblock_t block;
4499 : 34050 : stmtblock_t body;
4500 : 34050 : tree type;
4501 : 34050 : tree tmp;
4502 : 34050 : tree found;
4503 : 34050 : gfc_loopinfo loop;
4504 : 34050 : gfc_actual_arglist *actual;
4505 : 34050 : gfc_ss *arrayss;
4506 : 34050 : gfc_se arrayse;
4507 : 34050 : tree exit_label;
4508 : :
4509 : 34050 : if (se->ss)
4510 : : {
4511 : 0 : gfc_conv_intrinsic_funcall (se, expr);
4512 : 0 : return;
4513 : : }
4514 : :
4515 : 34050 : actual = expr->value.function.actual;
4516 : 34050 : type = gfc_typenode_for_spec (&expr->ts);
4517 : : /* Initialize the result. */
4518 : 34050 : resvar = gfc_create_var (type, "test");
4519 : 34050 : if (op == EQ_EXPR)
4520 : 443 : tmp = convert (type, boolean_true_node);
4521 : : else
4522 : 33607 : tmp = convert (type, boolean_false_node);
4523 : 34050 : gfc_add_modify (&se->pre, resvar, tmp);
4524 : :
4525 : : /* Walk the arguments. */
4526 : 34050 : arrayss = gfc_walk_expr (actual->expr);
4527 : 34050 : gcc_assert (arrayss != gfc_ss_terminator);
4528 : :
4529 : : /* Initialize the scalarizer. */
4530 : 34050 : gfc_init_loopinfo (&loop);
4531 : 34050 : exit_label = gfc_build_label_decl (NULL_TREE);
4532 : 34050 : TREE_USED (exit_label) = 1;
4533 : 34050 : gfc_add_ss_to_loop (&loop, arrayss);
4534 : :
4535 : : /* Initialize the loop. */
4536 : 34050 : gfc_conv_ss_startstride (&loop);
4537 : 34050 : gfc_conv_loop_setup (&loop, &expr->where);
4538 : :
4539 : 34050 : gfc_mark_ss_chain_used (arrayss, 1);
4540 : : /* Generate the loop body. */
4541 : 34050 : gfc_start_scalarized_body (&loop, &body);
4542 : :
4543 : : /* If the condition matches then set the return value. */
4544 : 34050 : gfc_start_block (&block);
4545 : 34050 : if (op == EQ_EXPR)
4546 : 443 : tmp = convert (type, boolean_false_node);
4547 : : else
4548 : 33607 : tmp = convert (type, boolean_true_node);
4549 : 34050 : gfc_add_modify (&block, resvar, tmp);
4550 : :
4551 : : /* And break out of the loop. */
4552 : 34050 : tmp = build1_v (GOTO_EXPR, exit_label);
4553 : 34050 : gfc_add_expr_to_block (&block, tmp);
4554 : :
4555 : 34050 : found = gfc_finish_block (&block);
4556 : :
4557 : : /* Check this element. */
4558 : 34050 : gfc_init_se (&arrayse, NULL);
4559 : 34050 : gfc_copy_loopinfo_to_se (&arrayse, &loop);
4560 : 34050 : arrayse.ss = arrayss;
4561 : 34050 : gfc_conv_expr_val (&arrayse, actual->expr);
4562 : :
4563 : 34050 : gfc_add_block_to_block (&body, &arrayse.pre);
4564 : 34050 : tmp = fold_build2_loc (input_location, op, logical_type_node, arrayse.expr,
4565 : 34050 : build_int_cst (TREE_TYPE (arrayse.expr), 0));
4566 : 34050 : tmp = build3_v (COND_EXPR, tmp, found, build_empty_stmt (input_location));
4567 : 34050 : gfc_add_expr_to_block (&body, tmp);
4568 : 34050 : gfc_add_block_to_block (&body, &arrayse.post);
4569 : :
4570 : 34050 : gfc_trans_scalarizing_loops (&loop, &body);
4571 : :
4572 : : /* Add the exit label. */
4573 : 34050 : tmp = build1_v (LABEL_EXPR, exit_label);
4574 : 34050 : gfc_add_expr_to_block (&loop.pre, tmp);
4575 : :
4576 : 34050 : gfc_add_block_to_block (&se->pre, &loop.pre);
4577 : 34050 : gfc_add_block_to_block (&se->pre, &loop.post);
4578 : 34050 : gfc_cleanup_loop (&loop);
4579 : :
4580 : 34050 : se->expr = resvar;
4581 : : }
4582 : :
4583 : :
4584 : : /* Generate the constant 180 / pi, which is used in the conversion
4585 : : of acosd(), asind(), atand(), atan2d(). */
4586 : :
4587 : : static tree
4588 : 288 : rad2deg (int kind)
4589 : : {
4590 : 288 : tree retval;
4591 : 288 : mpfr_t pi, t0;
4592 : :
4593 : 288 : gfc_set_model_kind (kind);
4594 : 288 : mpfr_init (pi);
4595 : 288 : mpfr_init (t0);
4596 : 288 : mpfr_set_si (t0, 180, GFC_RND_MODE);
4597 : 288 : mpfr_const_pi (pi, GFC_RND_MODE);
4598 : 288 : mpfr_div (t0, t0, pi, GFC_RND_MODE);
4599 : 288 : retval = gfc_conv_mpfr_to_tree (t0, kind, 0);
4600 : 288 : mpfr_clear (t0);
4601 : 288 : mpfr_clear (pi);
4602 : 288 : return retval;
4603 : : }
4604 : :
4605 : :
4606 : : static gfc_intrinsic_map_t *
4607 : 498 : gfc_lookup_intrinsic (gfc_isym_id id)
4608 : : {
4609 : 498 : gfc_intrinsic_map_t *m = gfc_intrinsic_map;
4610 : 8400 : for (; m->id != GFC_ISYM_NONE || m->double_built_in != END_BUILTINS; m++)
4611 : 8400 : if (id == m->id)
4612 : : break;
4613 : 498 : gcc_assert (id == m->id);
4614 : 498 : return m;
4615 : : }
4616 : :
4617 : :
4618 : : /* ACOSD(x) is translated into ACOS(x) * 180 / pi.
4619 : : ASIND(x) is translated into ASIN(x) * 180 / pi.
4620 : : ATAND(x) is translated into ATAN(x) * 180 / pi. */
4621 : :
4622 : : static void
4623 : 216 : gfc_conv_intrinsic_atrigd (gfc_se * se, gfc_expr * expr, gfc_isym_id id)
4624 : : {
4625 : 216 : tree arg;
4626 : 216 : tree atrigd;
4627 : 216 : tree type;
4628 : 216 : gfc_intrinsic_map_t *m;
4629 : :
4630 : 216 : type = gfc_typenode_for_spec (&expr->ts);
4631 : :
4632 : 216 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
4633 : :
4634 : 216 : switch (id)
4635 : : {
4636 : 72 : case GFC_ISYM_ACOSD:
4637 : 72 : m = gfc_lookup_intrinsic (GFC_ISYM_ACOS);
4638 : 72 : break;
4639 : 72 : case GFC_ISYM_ASIND:
4640 : 72 : m = gfc_lookup_intrinsic (GFC_ISYM_ASIN);
4641 : 72 : break;
4642 : 72 : case GFC_ISYM_ATAND:
4643 : 72 : m = gfc_lookup_intrinsic (GFC_ISYM_ATAN);
4644 : 72 : break;
4645 : 0 : default:
4646 : 0 : gcc_unreachable ();
4647 : : }
4648 : 216 : atrigd = gfc_get_intrinsic_lib_fndecl (m, expr);
4649 : 216 : atrigd = build_call_expr_loc (input_location, atrigd, 1, arg);
4650 : :
4651 : 216 : se->expr = fold_build2_loc (input_location, MULT_EXPR, type, atrigd,
4652 : : fold_convert (type, rad2deg (expr->ts.kind)));
4653 : 216 : }
4654 : :
4655 : :
4656 : : /* COTAN(X) is translated into -TAN(X+PI/2) for REAL argument and
4657 : : COS(X) / SIN(X) for COMPLEX argument. */
4658 : :
4659 : : static void
4660 : 102 : gfc_conv_intrinsic_cotan (gfc_se *se, gfc_expr *expr)
4661 : : {
4662 : 102 : gfc_intrinsic_map_t *m;
4663 : 102 : tree arg;
4664 : 102 : tree type;
4665 : :
4666 : 102 : type = gfc_typenode_for_spec (&expr->ts);
4667 : 102 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
4668 : :
4669 : 102 : if (expr->ts.type == BT_REAL)
4670 : : {
4671 : 102 : tree tan;
4672 : 102 : tree tmp;
4673 : 102 : mpfr_t pio2;
4674 : :
4675 : : /* Create pi/2. */
4676 : 102 : gfc_set_model_kind (expr->ts.kind);
4677 : 102 : mpfr_init (pio2);
4678 : 102 : mpfr_const_pi (pio2, GFC_RND_MODE);
4679 : 102 : mpfr_div_ui (pio2, pio2, 2, GFC_RND_MODE);
4680 : 102 : tmp = gfc_conv_mpfr_to_tree (pio2, expr->ts.kind, 0);
4681 : 102 : mpfr_clear (pio2);
4682 : :
4683 : : /* Find tan builtin function. */
4684 : 102 : m = gfc_lookup_intrinsic (GFC_ISYM_TAN);
4685 : 102 : tan = gfc_get_intrinsic_lib_fndecl (m, expr);
4686 : 102 : tmp = fold_build2_loc (input_location, PLUS_EXPR, type, arg, tmp);
4687 : 102 : tan = build_call_expr_loc (input_location, tan, 1, tmp);
4688 : 102 : se->expr = fold_build1_loc (input_location, NEGATE_EXPR, type, tan);
4689 : : }
4690 : : else
4691 : : {
4692 : 0 : tree sin;
4693 : 0 : tree cos;
4694 : :
4695 : : /* Find cos builtin function. */
4696 : 0 : m = gfc_lookup_intrinsic (GFC_ISYM_COS);
4697 : 0 : cos = gfc_get_intrinsic_lib_fndecl (m, expr);
4698 : 0 : cos = build_call_expr_loc (input_location, cos, 1, arg);
4699 : :
4700 : : /* Find sin builtin function. */
4701 : 0 : m = gfc_lookup_intrinsic (GFC_ISYM_SIN);
4702 : 0 : sin = gfc_get_intrinsic_lib_fndecl (m, expr);
4703 : 0 : sin = build_call_expr_loc (input_location, sin, 1, arg);
4704 : :
4705 : : /* Divide cos by sin. */
4706 : 0 : se->expr = fold_build2_loc (input_location, RDIV_EXPR, type, cos, sin);
4707 : : }
4708 : 102 : }
4709 : :
4710 : :
4711 : : /* COTAND(X) is translated into -TAND(X+90) for REAL argument. */
4712 : :
4713 : : static void
4714 : 108 : gfc_conv_intrinsic_cotand (gfc_se *se, gfc_expr *expr)
4715 : : {
4716 : 108 : tree arg;
4717 : 108 : tree type;
4718 : 108 : tree ninety_tree;
4719 : 108 : mpfr_t ninety;
4720 : :
4721 : 108 : type = gfc_typenode_for_spec (&expr->ts);
4722 : 108 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
4723 : :
4724 : 108 : gfc_set_model_kind (expr->ts.kind);
4725 : :
4726 : : /* Build the tree for x + 90. */
4727 : 108 : mpfr_init_set_ui (ninety, 90, GFC_RND_MODE);
4728 : 108 : ninety_tree = gfc_conv_mpfr_to_tree (ninety, expr->ts.kind, 0);
4729 : 108 : arg = fold_build2_loc (input_location, PLUS_EXPR, type, arg, ninety_tree);
4730 : 108 : mpfr_clear (ninety);
4731 : :
4732 : : /* Find tand. */
4733 : 108 : gfc_intrinsic_map_t *m = gfc_lookup_intrinsic (GFC_ISYM_TAND);
4734 : 108 : tree tand = gfc_get_intrinsic_lib_fndecl (m, expr);
4735 : 108 : tand = build_call_expr_loc (input_location, tand, 1, arg);
4736 : :
4737 : 108 : se->expr = fold_build1_loc (input_location, NEGATE_EXPR, type, tand);
4738 : 108 : }
4739 : :
4740 : :
4741 : : /* ATAN2D(Y,X) is translated into ATAN2(Y,X) * 180 / PI. */
4742 : :
4743 : : static void
4744 : 72 : gfc_conv_intrinsic_atan2d (gfc_se *se, gfc_expr *expr)
4745 : : {
4746 : 72 : tree args[2];
4747 : 72 : tree atan2d;
4748 : 72 : tree type;
4749 : :
4750 : 72 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
4751 : 72 : type = TREE_TYPE (args[0]);
4752 : :
4753 : 72 : gfc_intrinsic_map_t *m = gfc_lookup_intrinsic (GFC_ISYM_ATAN2);
4754 : 72 : atan2d = gfc_get_intrinsic_lib_fndecl (m, expr);
4755 : 72 : atan2d = build_call_expr_loc (input_location, atan2d, 2, args[0], args[1]);
4756 : :
4757 : 72 : se->expr = fold_build2_loc (input_location, MULT_EXPR, type, atan2d,
4758 : : rad2deg (expr->ts.kind));
4759 : 72 : }
4760 : :
4761 : :
4762 : : /* COUNT(A) = Number of true elements in A. */
4763 : : static void
4764 : 142 : gfc_conv_intrinsic_count (gfc_se * se, gfc_expr * expr)
4765 : : {
4766 : 142 : tree resvar;
4767 : 142 : tree type;
4768 : 142 : stmtblock_t body;
4769 : 142 : tree tmp;
4770 : 142 : gfc_loopinfo loop;
4771 : 142 : gfc_actual_arglist *actual;
4772 : 142 : gfc_ss *arrayss;
4773 : 142 : gfc_se arrayse;
4774 : :
4775 : 142 : if (se->ss)
4776 : : {
4777 : 0 : gfc_conv_intrinsic_funcall (se, expr);
4778 : 0 : return;
4779 : : }
4780 : :
4781 : 142 : actual = expr->value.function.actual;
4782 : :
4783 : 142 : type = gfc_typenode_for_spec (&expr->ts);
4784 : : /* Initialize the result. */
4785 : 142 : resvar = gfc_create_var (type, "count");
4786 : 142 : gfc_add_modify (&se->pre, resvar, build_int_cst (type, 0));
4787 : :
4788 : : /* Walk the arguments. */
4789 : 142 : arrayss = gfc_walk_expr (actual->expr);
4790 : 142 : gcc_assert (arrayss != gfc_ss_terminator);
4791 : :
4792 : : /* Initialize the scalarizer. */
4793 : 142 : gfc_init_loopinfo (&loop);
4794 : 142 : gfc_add_ss_to_loop (&loop, arrayss);
4795 : :
4796 : : /* Initialize the loop. */
4797 : 142 : gfc_conv_ss_startstride (&loop);
4798 : 142 : gfc_conv_loop_setup (&loop, &expr->where);
4799 : :
4800 : 142 : gfc_mark_ss_chain_used (arrayss, 1);
4801 : : /* Generate the loop body. */
4802 : 142 : gfc_start_scalarized_body (&loop, &body);
4803 : :
4804 : 142 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (resvar),
4805 : 142 : resvar, build_int_cst (TREE_TYPE (resvar), 1));
4806 : 142 : tmp = build2_v (MODIFY_EXPR, resvar, tmp);
4807 : :
4808 : 142 : gfc_init_se (&arrayse, NULL);
4809 : 142 : gfc_copy_loopinfo_to_se (&arrayse, &loop);
4810 : 142 : arrayse.ss = arrayss;
4811 : 142 : gfc_conv_expr_val (&arrayse, actual->expr);
4812 : 142 : tmp = build3_v (COND_EXPR, arrayse.expr, tmp,
4813 : : build_empty_stmt (input_location));
4814 : :
4815 : 142 : gfc_add_block_to_block (&body, &arrayse.pre);
4816 : 142 : gfc_add_expr_to_block (&body, tmp);
4817 : 142 : gfc_add_block_to_block (&body, &arrayse.post);
4818 : :
4819 : 142 : gfc_trans_scalarizing_loops (&loop, &body);
4820 : :
4821 : 142 : gfc_add_block_to_block (&se->pre, &loop.pre);
4822 : 142 : gfc_add_block_to_block (&se->pre, &loop.post);
4823 : 142 : gfc_cleanup_loop (&loop);
4824 : :
4825 : 142 : se->expr = resvar;
4826 : : }
4827 : :
4828 : :
4829 : : /* Update given gfc_se to have ss component pointing to the nested gfc_ss
4830 : : struct and return the corresponding loopinfo. */
4831 : :
4832 : : static gfc_loopinfo *
4833 : 2435 : enter_nested_loop (gfc_se *se)
4834 : : {
4835 : 2435 : se->ss = se->ss->nested_ss;
4836 : 2435 : gcc_assert (se->ss == se->ss->loop->ss);
4837 : :
4838 : 2435 : return se->ss->loop;
4839 : : }
4840 : :
4841 : : /* Build the condition for a mask, which may be optional. */
4842 : :
4843 : : static tree
4844 : 10495 : conv_mask_condition (gfc_se *maskse, gfc_expr *maskexpr,
4845 : : bool optional_mask)
4846 : : {
4847 : 10495 : tree present;
4848 : 10495 : tree type;
4849 : :
4850 : 10495 : if (optional_mask)
4851 : : {
4852 : 206 : type = TREE_TYPE (maskse->expr);
4853 : 206 : present = gfc_conv_expr_present (maskexpr->symtree->n.sym);
4854 : 206 : present = convert (type, present);
4855 : 206 : present = fold_build1_loc (input_location, TRUTH_NOT_EXPR, type,
4856 : : present);
4857 : 206 : return fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
4858 : 206 : type, present, maskse->expr);
4859 : : }
4860 : : else
4861 : 10289 : return maskse->expr;
4862 : : }
4863 : :
4864 : : /* Inline implementation of the sum and product intrinsics. */
4865 : : static void
4866 : 2462 : gfc_conv_intrinsic_arith (gfc_se * se, gfc_expr * expr, enum tree_code op,
4867 : : bool norm2)
4868 : : {
4869 : 2462 : tree resvar;
4870 : 2462 : tree scale = NULL_TREE;
4871 : 2462 : tree type;
4872 : 2462 : stmtblock_t body;
4873 : 2462 : stmtblock_t block;
4874 : 2462 : tree tmp;
4875 : 2462 : gfc_loopinfo loop, *ploop;
4876 : 2462 : gfc_actual_arglist *arg_array, *arg_mask;
4877 : 2462 : gfc_ss *arrayss = NULL;
4878 : 2462 : gfc_ss *maskss = NULL;
4879 : 2462 : gfc_se arrayse;
4880 : 2462 : gfc_se maskse;
4881 : 2462 : gfc_se *parent_se;
4882 : 2462 : gfc_expr *arrayexpr;
4883 : 2462 : gfc_expr *maskexpr;
4884 : 2462 : bool optional_mask;
4885 : :
4886 : 2462 : if (expr->rank > 0)
4887 : : {
4888 : 563 : gcc_assert (gfc_inline_intrinsic_function_p (expr));
4889 : : parent_se = se;
4890 : : }
4891 : : else
4892 : : parent_se = NULL;
4893 : :
4894 : 2462 : type = gfc_typenode_for_spec (&expr->ts);
4895 : : /* Initialize the result. */
4896 : 2462 : resvar = gfc_create_var (type, "val");
4897 : 2462 : if (norm2)
4898 : : {
4899 : : /* result = 0.0;
4900 : : scale = 1.0. */
4901 : 68 : scale = gfc_create_var (type, "scale");
4902 : 68 : gfc_add_modify (&se->pre, scale,
4903 : : gfc_build_const (type, integer_one_node));
4904 : 68 : tmp = gfc_build_const (type, integer_zero_node);
4905 : : }
4906 : 2394 : else if (op == PLUS_EXPR || op == BIT_IOR_EXPR || op == BIT_XOR_EXPR)
4907 : 1990 : tmp = gfc_build_const (type, integer_zero_node);
4908 : 404 : else if (op == NE_EXPR)
4909 : : /* PARITY. */
4910 : 36 : tmp = convert (type, boolean_false_node);
4911 : 368 : else if (op == BIT_AND_EXPR)
4912 : 24 : tmp = gfc_build_const (type, fold_build1_loc (input_location, NEGATE_EXPR,
4913 : : type, integer_one_node));
4914 : : else
4915 : 344 : tmp = gfc_build_const (type, integer_one_node);
4916 : :
4917 : 2462 : gfc_add_modify (&se->pre, resvar, tmp);
4918 : :
4919 : 2462 : arg_array = expr->value.function.actual;
4920 : :
4921 : 2462 : arrayexpr = arg_array->expr;
4922 : :
4923 : 2462 : if (op == NE_EXPR || norm2)
4924 : : {
4925 : : /* PARITY and NORM2. */
4926 : : maskexpr = NULL;
4927 : : optional_mask = false;
4928 : : }
4929 : : else
4930 : : {
4931 : 2358 : arg_mask = arg_array->next->next;
4932 : 2358 : gcc_assert (arg_mask != NULL);
4933 : 2358 : maskexpr = arg_mask->expr;
4934 : 371 : optional_mask = maskexpr && maskexpr->expr_type == EXPR_VARIABLE
4935 : 266 : && maskexpr->symtree->n.sym->attr.dummy
4936 : 2624 : && maskexpr->symtree->n.sym->attr.optional;
4937 : : }
4938 : :
4939 : 2462 : if (expr->rank == 0)
4940 : : {
4941 : : /* Walk the arguments. */
4942 : 1899 : arrayss = gfc_walk_expr (arrayexpr);
4943 : 1899 : gcc_assert (arrayss != gfc_ss_terminator);
4944 : :
4945 : 1899 : if (maskexpr && maskexpr->rank > 0)
4946 : : {
4947 : 223 : maskss = gfc_walk_expr (maskexpr);
4948 : 223 : gcc_assert (maskss != gfc_ss_terminator);
4949 : : }
4950 : : else
4951 : : maskss = NULL;
4952 : :
4953 : : /* Initialize the scalarizer. */
4954 : 1899 : gfc_init_loopinfo (&loop);
4955 : :
4956 : : /* We add the mask first because the number of iterations is
4957 : : taken from the last ss, and this breaks if an absent
4958 : : optional argument is used for mask. */
4959 : :
4960 : 1899 : if (maskexpr && maskexpr->rank > 0)
4961 : 223 : gfc_add_ss_to_loop (&loop, maskss);
4962 : 1899 : gfc_add_ss_to_loop (&loop, arrayss);
4963 : :
4964 : : /* Initialize the loop. */
4965 : 1899 : gfc_conv_ss_startstride (&loop);
4966 : 1899 : gfc_conv_loop_setup (&loop, &expr->where);
4967 : :
4968 : 1899 : if (maskexpr && maskexpr->rank > 0)
4969 : 223 : gfc_mark_ss_chain_used (maskss, 1);
4970 : 1899 : gfc_mark_ss_chain_used (arrayss, 1);
4971 : :
4972 : 1899 : ploop = &loop;
4973 : : }
4974 : : else
4975 : : /* All the work has been done in the parent loops. */
4976 : 563 : ploop = enter_nested_loop (se);
4977 : :
4978 : 2462 : gcc_assert (ploop);
4979 : :
4980 : : /* Generate the loop body. */
4981 : 2462 : gfc_start_scalarized_body (ploop, &body);
4982 : :
4983 : : /* If we have a mask, only add this element if the mask is set. */
4984 : 2462 : if (maskexpr && maskexpr->rank > 0)
4985 : : {
4986 : 307 : gfc_init_se (&maskse, parent_se);
4987 : 307 : gfc_copy_loopinfo_to_se (&maskse, ploop);
4988 : 307 : if (expr->rank == 0)
4989 : 223 : maskse.ss = maskss;
4990 : 307 : gfc_conv_expr_val (&maskse, maskexpr);
4991 : 307 : gfc_add_block_to_block (&body, &maskse.pre);
4992 : :
4993 : 307 : gfc_start_block (&block);
4994 : : }
4995 : : else
4996 : 2155 : gfc_init_block (&block);
4997 : :
4998 : : /* Do the actual summation/product. */
4999 : 2462 : gfc_init_se (&arrayse, parent_se);
5000 : 2462 : gfc_copy_loopinfo_to_se (&arrayse, ploop);
5001 : 2462 : if (expr->rank == 0)
5002 : 1899 : arrayse.ss = arrayss;
5003 : 2462 : gfc_conv_expr_val (&arrayse, arrayexpr);
5004 : 2462 : gfc_add_block_to_block (&block, &arrayse.pre);
5005 : :
5006 : 2462 : if (norm2)
5007 : : {
5008 : : /* if (x (i) != 0.0)
5009 : : {
5010 : : absX = abs(x(i))
5011 : : if (absX > scale)
5012 : : {
5013 : : val = scale/absX;
5014 : : result = 1.0 + result * val * val;
5015 : : scale = absX;
5016 : : }
5017 : : else
5018 : : {
5019 : : val = absX/scale;
5020 : : result += val * val;
5021 : : }
5022 : : } */
5023 : 68 : tree res1, res2, cond, absX, val;
5024 : 68 : stmtblock_t ifblock1, ifblock2, ifblock3;
5025 : :
5026 : 68 : gfc_init_block (&ifblock1);
5027 : :
5028 : 68 : absX = gfc_create_var (type, "absX");
5029 : 68 : gfc_add_modify (&ifblock1, absX,
5030 : : fold_build1_loc (input_location, ABS_EXPR, type,
5031 : : arrayse.expr));
5032 : 68 : val = gfc_create_var (type, "val");
5033 : 68 : gfc_add_expr_to_block (&ifblock1, val);
5034 : :
5035 : 68 : gfc_init_block (&ifblock2);
5036 : 68 : gfc_add_modify (&ifblock2, val,
5037 : : fold_build2_loc (input_location, RDIV_EXPR, type, scale,
5038 : : absX));
5039 : 68 : res1 = fold_build2_loc (input_location, MULT_EXPR, type, val, val);
5040 : 68 : res1 = fold_build2_loc (input_location, MULT_EXPR, type, resvar, res1);
5041 : 68 : res1 = fold_build2_loc (input_location, PLUS_EXPR, type, res1,
5042 : : gfc_build_const (type, integer_one_node));
5043 : 68 : gfc_add_modify (&ifblock2, resvar, res1);
5044 : 68 : gfc_add_modify (&ifblock2, scale, absX);
5045 : 68 : res1 = gfc_finish_block (&ifblock2);
5046 : :
5047 : 68 : gfc_init_block (&ifblock3);
5048 : 68 : gfc_add_modify (&ifblock3, val,
5049 : : fold_build2_loc (input_location, RDIV_EXPR, type, absX,
5050 : : scale));
5051 : 68 : res2 = fold_build2_loc (input_location, MULT_EXPR, type, val, val);
5052 : 68 : res2 = fold_build2_loc (input_location, PLUS_EXPR, type, resvar, res2);
5053 : 68 : gfc_add_modify (&ifblock3, resvar, res2);
5054 : 68 : res2 = gfc_finish_block (&ifblock3);
5055 : :
5056 : 68 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
5057 : : absX, scale);
5058 : 68 : tmp = build3_v (COND_EXPR, cond, res1, res2);
5059 : 68 : gfc_add_expr_to_block (&ifblock1, tmp);
5060 : 68 : tmp = gfc_finish_block (&ifblock1);
5061 : :
5062 : 68 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
5063 : : arrayse.expr,
5064 : : gfc_build_const (type, integer_zero_node));
5065 : :
5066 : 68 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
5067 : 68 : gfc_add_expr_to_block (&block, tmp);
5068 : : }
5069 : : else
5070 : : {
5071 : 2394 : tmp = fold_build2_loc (input_location, op, type, resvar, arrayse.expr);
5072 : 2394 : gfc_add_modify (&block, resvar, tmp);
5073 : : }
5074 : :
5075 : 2462 : gfc_add_block_to_block (&block, &arrayse.post);
5076 : :
5077 : 2462 : if (maskexpr && maskexpr->rank > 0)
5078 : : {
5079 : : /* We enclose the above in if (mask) {...} . If the mask is an
5080 : : optional argument, generate
5081 : : IF (.NOT. PRESENT(MASK) .OR. MASK(I)). */
5082 : 307 : tree ifmask;
5083 : 307 : tmp = gfc_finish_block (&block);
5084 : 307 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
5085 : 307 : tmp = build3_v (COND_EXPR, ifmask, tmp,
5086 : : build_empty_stmt (input_location));
5087 : 307 : }
5088 : : else
5089 : 2155 : tmp = gfc_finish_block (&block);
5090 : 2462 : gfc_add_expr_to_block (&body, tmp);
5091 : :
5092 : 2462 : gfc_trans_scalarizing_loops (ploop, &body);
5093 : :
5094 : : /* For a scalar mask, enclose the loop in an if statement. */
5095 : 2462 : if (maskexpr && maskexpr->rank == 0)
5096 : : {
5097 : 64 : gfc_init_block (&block);
5098 : 64 : gfc_add_block_to_block (&block, &ploop->pre);
5099 : 64 : gfc_add_block_to_block (&block, &ploop->post);
5100 : 64 : tmp = gfc_finish_block (&block);
5101 : :
5102 : 64 : if (expr->rank > 0)
5103 : : {
5104 : 34 : tmp = build3_v (COND_EXPR, se->ss->info->data.scalar.value, tmp,
5105 : : build_empty_stmt (input_location));
5106 : 34 : gfc_advance_se_ss_chain (se);
5107 : : }
5108 : : else
5109 : : {
5110 : 30 : tree ifmask;
5111 : :
5112 : 30 : gcc_assert (expr->rank == 0);
5113 : 30 : gfc_init_se (&maskse, NULL);
5114 : 30 : gfc_conv_expr_val (&maskse, maskexpr);
5115 : 30 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
5116 : 30 : tmp = build3_v (COND_EXPR, ifmask, tmp,
5117 : : build_empty_stmt (input_location));
5118 : : }
5119 : :
5120 : 64 : gfc_add_expr_to_block (&block, tmp);
5121 : 64 : gfc_add_block_to_block (&se->pre, &block);
5122 : 64 : gcc_assert (se->post.head == NULL);
5123 : : }
5124 : : else
5125 : : {
5126 : 2398 : gfc_add_block_to_block (&se->pre, &ploop->pre);
5127 : 2398 : gfc_add_block_to_block (&se->pre, &ploop->post);
5128 : : }
5129 : :
5130 : 2462 : if (expr->rank == 0)
5131 : 1899 : gfc_cleanup_loop (ploop);
5132 : :
5133 : 2462 : if (norm2)
5134 : : {
5135 : : /* result = scale * sqrt(result). */
5136 : 68 : tree sqrt;
5137 : 68 : sqrt = gfc_builtin_decl_for_float_kind (BUILT_IN_SQRT, expr->ts.kind);
5138 : 68 : resvar = build_call_expr_loc (input_location,
5139 : : sqrt, 1, resvar);
5140 : 68 : resvar = fold_build2_loc (input_location, MULT_EXPR, type, scale, resvar);
5141 : : }
5142 : :
5143 : 2462 : se->expr = resvar;
5144 : 2462 : }
5145 : :
5146 : :
5147 : : /* Inline implementation of the dot_product intrinsic. This function
5148 : : is based on gfc_conv_intrinsic_arith (the previous function). */
5149 : : static void
5150 : 123 : gfc_conv_intrinsic_dot_product (gfc_se * se, gfc_expr * expr)
5151 : : {
5152 : 123 : tree resvar;
5153 : 123 : tree type;
5154 : 123 : stmtblock_t body;
5155 : 123 : stmtblock_t block;
5156 : 123 : tree tmp;
5157 : 123 : gfc_loopinfo loop;
5158 : 123 : gfc_actual_arglist *actual;
5159 : 123 : gfc_ss *arrayss1, *arrayss2;
5160 : 123 : gfc_se arrayse1, arrayse2;
5161 : 123 : gfc_expr *arrayexpr1, *arrayexpr2;
5162 : :
5163 : 123 : type = gfc_typenode_for_spec (&expr->ts);
5164 : :
5165 : : /* Initialize the result. */
5166 : 123 : resvar = gfc_create_var (type, "val");
5167 : 123 : if (expr->ts.type == BT_LOGICAL)
5168 : 30 : tmp = build_int_cst (type, 0);
5169 : : else
5170 : 93 : tmp = gfc_build_const (type, integer_zero_node);
5171 : :
5172 : 123 : gfc_add_modify (&se->pre, resvar, tmp);
5173 : :
5174 : : /* Walk argument #1. */
5175 : 123 : actual = expr->value.function.actual;
5176 : 123 : arrayexpr1 = actual->expr;
5177 : 123 : arrayss1 = gfc_walk_expr (arrayexpr1);
5178 : 123 : gcc_assert (arrayss1 != gfc_ss_terminator);
5179 : :
5180 : : /* Walk argument #2. */
5181 : 123 : actual = actual->next;
5182 : 123 : arrayexpr2 = actual->expr;
5183 : 123 : arrayss2 = gfc_walk_expr (arrayexpr2);
5184 : 123 : gcc_assert (arrayss2 != gfc_ss_terminator);
5185 : :
5186 : : /* Initialize the scalarizer. */
5187 : 123 : gfc_init_loopinfo (&loop);
5188 : 123 : gfc_add_ss_to_loop (&loop, arrayss1);
5189 : 123 : gfc_add_ss_to_loop (&loop, arrayss2);
5190 : :
5191 : : /* Initialize the loop. */
5192 : 123 : gfc_conv_ss_startstride (&loop);
5193 : 123 : gfc_conv_loop_setup (&loop, &expr->where);
5194 : :
5195 : 123 : gfc_mark_ss_chain_used (arrayss1, 1);
5196 : 123 : gfc_mark_ss_chain_used (arrayss2, 1);
5197 : :
5198 : : /* Generate the loop body. */
5199 : 123 : gfc_start_scalarized_body (&loop, &body);
5200 : 123 : gfc_init_block (&block);
5201 : :
5202 : : /* Make the tree expression for [conjg(]array1[)]. */
5203 : 123 : gfc_init_se (&arrayse1, NULL);
5204 : 123 : gfc_copy_loopinfo_to_se (&arrayse1, &loop);
5205 : 123 : arrayse1.ss = arrayss1;
5206 : 123 : gfc_conv_expr_val (&arrayse1, arrayexpr1);
5207 : 123 : if (expr->ts.type == BT_COMPLEX)
5208 : 9 : arrayse1.expr = fold_build1_loc (input_location, CONJ_EXPR, type,
5209 : : arrayse1.expr);
5210 : 123 : gfc_add_block_to_block (&block, &arrayse1.pre);
5211 : :
5212 : : /* Make the tree expression for array2. */
5213 : 123 : gfc_init_se (&arrayse2, NULL);
5214 : 123 : gfc_copy_loopinfo_to_se (&arrayse2, &loop);
5215 : 123 : arrayse2.ss = arrayss2;
5216 : 123 : gfc_conv_expr_val (&arrayse2, arrayexpr2);
5217 : 123 : gfc_add_block_to_block (&block, &arrayse2.pre);
5218 : :
5219 : : /* Do the actual product and sum. */
5220 : 123 : if (expr->ts.type == BT_LOGICAL)
5221 : : {
5222 : 30 : tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, type,
5223 : : arrayse1.expr, arrayse2.expr);
5224 : 30 : tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR, type, resvar, tmp);
5225 : : }
5226 : : else
5227 : : {
5228 : 93 : tmp = fold_build2_loc (input_location, MULT_EXPR, type, arrayse1.expr,
5229 : : arrayse2.expr);
5230 : 93 : tmp = fold_build2_loc (input_location, PLUS_EXPR, type, resvar, tmp);
5231 : : }
5232 : 123 : gfc_add_modify (&block, resvar, tmp);
5233 : :
5234 : : /* Finish up the loop block and the loop. */
5235 : 123 : tmp = gfc_finish_block (&block);
5236 : 123 : gfc_add_expr_to_block (&body, tmp);
5237 : :
5238 : 123 : gfc_trans_scalarizing_loops (&loop, &body);
5239 : 123 : gfc_add_block_to_block (&se->pre, &loop.pre);
5240 : 123 : gfc_add_block_to_block (&se->pre, &loop.post);
5241 : 123 : gfc_cleanup_loop (&loop);
5242 : :
5243 : 123 : se->expr = resvar;
5244 : 123 : }
5245 : :
5246 : :
5247 : : /* Tells whether the expression E is a reference to an optional variable whose
5248 : : presence is not known at compile time. Those are variable references without
5249 : : subreference; if there is a subreference, we can assume the variable is
5250 : : present. We have to special case full arrays, which we represent with a fake
5251 : : "full" reference, and class descriptors for which a reference to data is not
5252 : : really a subreference. */
5253 : :
5254 : : bool
5255 : 10277 : maybe_absent_optional_variable (gfc_expr *e)
5256 : : {
5257 : 10277 : if (!(e && e->expr_type == EXPR_VARIABLE))
5258 : : return false;
5259 : :
5260 : 1100 : gfc_symbol *sym = e->symtree->n.sym;
5261 : 1100 : if (!sym->attr.optional)
5262 : : return false;
5263 : :
5264 : 224 : gfc_ref *ref = e->ref;
5265 : 224 : if (ref == nullptr)
5266 : : return true;
5267 : :
5268 : 20 : if (ref->type == REF_ARRAY
5269 : 20 : && ref->u.ar.type == AR_FULL
5270 : 20 : && ref->next == nullptr)
5271 : : return true;
5272 : :
5273 : 0 : if (!(sym->ts.type == BT_CLASS
5274 : 0 : && ref->type == REF_COMPONENT
5275 : 0 : && ref->u.c.component == CLASS_DATA (sym)))
5276 : : return false;
5277 : :
5278 : 0 : gfc_ref *next_ref = ref->next;
5279 : 0 : if (next_ref == nullptr)
5280 : : return true;
5281 : :
5282 : 0 : if (next_ref->type == REF_ARRAY
5283 : 0 : && next_ref->u.ar.type == AR_FULL
5284 : 0 : && next_ref->next == nullptr)
5285 : 0 : return true;
5286 : :
5287 : : return false;
5288 : : }
5289 : :
5290 : :
5291 : : /* Remove unneeded kind= argument from actual argument list when the
5292 : : result conversion is dealt with in a different place. */
5293 : :
5294 : : static void
5295 : 76 : strip_kind_from_actual (gfc_actual_arglist * actual)
5296 : : {
5297 : 456 : for (gfc_actual_arglist *a = actual; a; a = a->next)
5298 : : {
5299 : 380 : if (a && a->name && strcmp (a->name, "kind") == 0)
5300 : : {
5301 : 12 : gfc_free_expr (a->expr);
5302 : 12 : a->expr = NULL;
5303 : : }
5304 : : }
5305 : 76 : }
5306 : :
5307 : : /* Emit code for minloc or maxloc intrinsic. There are many different cases
5308 : : we need to handle. For performance reasons we sometimes create two
5309 : : loops instead of one, where the second one is much simpler.
5310 : : Examples for minloc intrinsic:
5311 : : A: Result is scalar.
5312 : : 1) Array mask is used and NaNs need to be supported:
5313 : : limit = Infinity;
5314 : : pos = 0;
5315 : : S = from;
5316 : : while (S <= to) {
5317 : : if (mask[S]) {
5318 : : if (pos == 0) pos = S + (1 - from);
5319 : : if (a[S] <= limit) {
5320 : : limit = a[S];
5321 : : pos = S + (1 - from);
5322 : : goto lab1;
5323 : : }
5324 : : }
5325 : : S++;
5326 : : }
5327 : : goto lab2;
5328 : : lab1:;
5329 : : while (S <= to) {
5330 : : if (mask[S])
5331 : : if (a[S] < limit) {
5332 : : limit = a[S];
5333 : : pos = S + (1 - from);
5334 : : }
5335 : : S++;
5336 : : }
5337 : : lab2:;
5338 : : 2) NaNs need to be supported, but it is known at compile time or cheaply
5339 : : at runtime whether array is nonempty or not:
5340 : : limit = Infinity;
5341 : : pos = 0;
5342 : : S = from;
5343 : : while (S <= to) {
5344 : : if (a[S] <= limit) {
5345 : : limit = a[S];
5346 : : pos = S + (1 - from);
5347 : : goto lab1;
5348 : : }
5349 : : S++;
5350 : : }
5351 : : if (from <= to) pos = 1;
5352 : : goto lab2;
5353 : : lab1:;
5354 : : while (S <= to) {
5355 : : if (a[S] < limit) {
5356 : : limit = a[S];
5357 : : pos = S + (1 - from);
5358 : : }
5359 : : S++;
5360 : : }
5361 : : lab2:;
5362 : : 3) NaNs aren't supported, array mask is used:
5363 : : limit = infinities_supported ? Infinity : huge (limit);
5364 : : pos = 0;
5365 : : S = from;
5366 : : while (S <= to) {
5367 : : if (mask[S]) {
5368 : : limit = a[S];
5369 : : pos = S + (1 - from);
5370 : : goto lab1;
5371 : : }
5372 : : S++;
5373 : : }
5374 : : goto lab2;
5375 : : lab1:;
5376 : : while (S <= to) {
5377 : : if (mask[S])
5378 : : if (a[S] < limit) {
5379 : : limit = a[S];
5380 : : pos = S + (1 - from);
5381 : : }
5382 : : S++;
5383 : : }
5384 : : lab2:;
5385 : : 4) Same without array mask:
5386 : : limit = infinities_supported ? Infinity : huge (limit);
5387 : : pos = (from <= to) ? 1 : 0;
5388 : : S = from;
5389 : : while (S <= to) {
5390 : : if (a[S] < limit) {
5391 : : limit = a[S];
5392 : : pos = S + (1 - from);
5393 : : }
5394 : : S++;
5395 : : }
5396 : : B: Array result, non-CHARACTER type, DIM absent
5397 : : Generate similar code as in the scalar case, using a collection of
5398 : : variables (one per dimension) instead of a single variable as result.
5399 : : Picking only cases 1) and 4) with ARRAY of rank 2, the generated code
5400 : : becomes:
5401 : : 1) Array mask is used and NaNs need to be supported:
5402 : : limit = Infinity;
5403 : : pos0 = 0;
5404 : : pos1 = 0;
5405 : : S1 = from1;
5406 : : second_loop_entry = false;
5407 : : while (S1 <= to1) {
5408 : : S0 = from0;
5409 : : while (s0 <= to0 {
5410 : : if (mask[S1][S0]) {
5411 : : if (pos0 == 0) {
5412 : : pos0 = S0 + (1 - from0);
5413 : : pos1 = S1 + (1 - from1);
5414 : : }
5415 : : if (a[S1][S0] <= limit) {
5416 : : limit = a[S1][S0];
5417 : : pos0 = S0 + (1 - from0);
5418 : : pos1 = S1 + (1 - from1);
5419 : : second_loop_entry = true;
5420 : : goto lab1;
5421 : : }
5422 : : }
5423 : : S0++;
5424 : : }
5425 : : S1++;
5426 : : }
5427 : : goto lab2;
5428 : : lab1:;
5429 : : S1 = second_loop_entry ? S1 : from1;
5430 : : while (S1 <= to1) {
5431 : : S0 = second_loop_entry ? S0 : from0;
5432 : : while (S0 <= to0) {
5433 : : if (mask[S1][S0])
5434 : : if (a[S1][S0] < limit) {
5435 : : limit = a[S1][S0];
5436 : : pos0 = S + (1 - from0);
5437 : : pos1 = S + (1 - from1);
5438 : : }
5439 : : second_loop_entry = false;
5440 : : S0++;
5441 : : }
5442 : : S1++;
5443 : : }
5444 : : lab2:;
5445 : : result = { pos0, pos1 };
5446 : : ...
5447 : : 4) NANs aren't supported, no array mask.
5448 : : limit = infinities_supported ? Infinity : huge (limit);
5449 : : pos0 = (from0 <= to0 && from1 <= to1) ? 1 : 0;
5450 : : pos1 = (from0 <= to0 && from1 <= to1) ? 1 : 0;
5451 : : S1 = from1;
5452 : : while (S1 <= to1) {
5453 : : S0 = from0;
5454 : : while (S0 <= to0) {
5455 : : if (a[S1][S0] < limit) {
5456 : : limit = a[S1][S0];
5457 : : pos0 = S + (1 - from0);
5458 : : pos1 = S + (1 - from1);
5459 : : }
5460 : : S0++;
5461 : : }
5462 : : S1++;
5463 : : }
5464 : : result = { pos0, pos1 };
5465 : : C: Otherwise, a call is generated.
5466 : : For 2) and 4), if mask is scalar, this all goes into a conditional,
5467 : : setting pos = 0; in the else branch.
5468 : :
5469 : : Since we now also support the BACK argument, instead of using
5470 : : if (a[S] < limit), we now use
5471 : :
5472 : : if (back)
5473 : : cond = a[S] <= limit;
5474 : : else
5475 : : cond = a[S] < limit;
5476 : : if (cond) {
5477 : : ....
5478 : :
5479 : : The optimizer is smart enough to move the condition out of the loop.
5480 : : They are now marked as unlikely too for further speedup. */
5481 : :
5482 : : static void
5483 : 13312 : gfc_conv_intrinsic_minmaxloc (gfc_se * se, gfc_expr * expr, enum tree_code op)
5484 : : {
5485 : 13312 : stmtblock_t body;
5486 : 13312 : stmtblock_t block;
5487 : 13312 : stmtblock_t ifblock;
5488 : 13312 : stmtblock_t elseblock;
5489 : 13312 : tree limit;
5490 : 13312 : tree type;
5491 : 13312 : tree tmp;
5492 : 13312 : tree cond;
5493 : 13312 : tree elsetmp;
5494 : 13312 : tree ifbody;
5495 : 13312 : tree offset[GFC_MAX_DIMENSIONS];
5496 : 13312 : tree nonempty;
5497 : 13312 : tree lab1, lab2;
5498 : 13312 : tree b_if, b_else;
5499 : 13312 : tree back;
5500 : 13312 : gfc_loopinfo loop, *ploop;
5501 : 13312 : gfc_actual_arglist *actual, *array_arg, *dim_arg, *mask_arg, *kind_arg;
5502 : 13312 : gfc_actual_arglist *back_arg;
5503 : 13312 : gfc_ss *arrayss = nullptr;
5504 : 13312 : gfc_ss *maskss = nullptr;
5505 : 13312 : gfc_ss *orig_ss = nullptr;
5506 : 13312 : gfc_se arrayse;
5507 : 13312 : gfc_se maskse;
5508 : 13312 : gfc_se nested_se;
5509 : 13312 : gfc_se *base_se;
5510 : 13312 : gfc_expr *arrayexpr;
5511 : 13312 : gfc_expr *maskexpr;
5512 : 13312 : gfc_expr *backexpr;
5513 : 13312 : gfc_se backse;
5514 : 13312 : tree pos[GFC_MAX_DIMENSIONS];
5515 : 13312 : tree idx[GFC_MAX_DIMENSIONS];
5516 : 13312 : tree result_var = NULL_TREE;
5517 : 13312 : int n;
5518 : 13312 : bool optional_mask;
5519 : :
5520 : 13312 : actual = expr->value.function.actual;
5521 : 13312 : array_arg = actual;
5522 : 13312 : dim_arg = array_arg->next;
5523 : 13312 : mask_arg = dim_arg->next;
5524 : 13312 : kind_arg = mask_arg->next;
5525 : 13312 : back_arg = kind_arg->next;
5526 : :
5527 : 13312 : bool dim_present = dim_arg->expr != nullptr;
5528 : 13312 : bool nested_loop = dim_present && expr->rank > 0;
5529 : :
5530 : : /* The last argument, BACK, is passed by value. Ensure that
5531 : : by setting its name to %VAL. */
5532 : 79872 : for (gfc_actual_arglist *a = actual; a; a = a->next)
5533 : : {
5534 : 66560 : if (a->next == NULL)
5535 : 13312 : a->name = "%VAL";
5536 : : }
5537 : :
5538 : 13312 : if (se->ss)
5539 : : {
5540 : 10658 : if (se->ss->info->useflags)
5541 : : {
5542 : 5193 : if (!dim_present || !gfc_inline_intrinsic_function_p (expr))
5543 : : {
5544 : : /* The code generating and initializing the result array has been
5545 : : generated already before the scalarization loop, either with a
5546 : : library function call or with inline code; now we can just use
5547 : : the result. */
5548 : 3321 : gfc_conv_tmp_array_ref (se);
5549 : 9478 : return;
5550 : : }
5551 : : }
5552 : 5465 : else if (!gfc_inline_intrinsic_function_p (expr))
5553 : : {
5554 : 2760 : gfc_conv_intrinsic_funcall (se, expr);
5555 : 2760 : return;
5556 : : }
5557 : : }
5558 : :
5559 : 7231 : arrayexpr = actual->expr;
5560 : :
5561 : : /* Special case for character maxloc. Remove unneeded actual
5562 : : arguments, then call a library function. */
5563 : :
5564 : 7231 : if (arrayexpr->ts.type == BT_CHARACTER)
5565 : : {
5566 : 76 : gcc_assert (expr->rank == 0);
5567 : :
5568 : 76 : gfc_actual_arglist *a = actual;
5569 : 76 : strip_kind_from_actual (a);
5570 : 532 : while (a)
5571 : : {
5572 : 380 : if (a->name && strcmp (a->name, "dim") == 0)
5573 : : {
5574 : 76 : gfc_free_expr (a->expr);
5575 : 76 : a->expr = NULL;
5576 : : }
5577 : 380 : a = a->next;
5578 : : }
5579 : 76 : gfc_conv_intrinsic_funcall (se, expr);
5580 : 76 : return;
5581 : : }
5582 : :
5583 : 7155 : type = gfc_typenode_for_spec (&expr->ts);
5584 : :
5585 : 7155 : if (expr->rank > 0 && !dim_present)
5586 : : {
5587 : 2705 : gfc_array_spec as;
5588 : 2705 : memset (&as, 0, sizeof (as));
5589 : :
5590 : 2705 : as.rank = 1;
5591 : 2705 : as.lower[0] = gfc_get_int_expr (gfc_index_integer_kind,
5592 : : &arrayexpr->where,
5593 : : HOST_WIDE_INT_1);
5594 : 5410 : as.upper[0] = gfc_get_int_expr (gfc_index_integer_kind,
5595 : : &arrayexpr->where,
5596 : 2705 : arrayexpr->rank);
5597 : :
5598 : 2705 : tree array = gfc_get_nodesc_array_type (type, &as, PACKED_STATIC, true);
5599 : :
5600 : 2705 : result_var = gfc_create_var (array, "loc_result");
5601 : : }
5602 : :
5603 : 5283 : const int reduction_dimensions = dim_present ? 1 : arrayexpr->rank;
5604 : :
5605 : : /* Initialize the result. */
5606 : 16009 : for (int i = 0; i < reduction_dimensions; i++)
5607 : : {
5608 : 8854 : pos[i] = gfc_create_var (gfc_array_index_type,
5609 : : gfc_get_string ("pos%d", i));
5610 : 8854 : offset[i] = gfc_create_var (gfc_array_index_type,
5611 : : gfc_get_string ("offset%d", i));
5612 : 8854 : idx[i] = gfc_create_var (gfc_array_index_type,
5613 : : gfc_get_string ("idx%d", i));
5614 : : }
5615 : :
5616 : 7155 : maskexpr = mask_arg->expr;
5617 : 5038 : optional_mask = maskexpr && maskexpr->expr_type == EXPR_VARIABLE
5618 : 3849 : && maskexpr->symtree->n.sym->attr.dummy
5619 : 11004 : && maskexpr->symtree->n.sym->attr.optional;
5620 : 7155 : backexpr = back_arg->expr;
5621 : :
5622 : 12438 : gfc_init_se (&backse, nested_loop ? se : nullptr);
5623 : 7155 : if (backexpr == nullptr)
5624 : 0 : back = logical_false_node;
5625 : 7155 : else if (maybe_absent_optional_variable (backexpr))
5626 : : {
5627 : : /* This should have been checked already by
5628 : : maybe_absent_optional_variable. */
5629 : 184 : gcc_checking_assert (backexpr->expr_type == EXPR_VARIABLE);
5630 : :
5631 : 184 : gfc_conv_expr (&backse, backexpr);
5632 : 184 : tree present = gfc_conv_expr_present (backexpr->symtree->n.sym, false);
5633 : 184 : back = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
5634 : : logical_type_node, present, backse.expr);
5635 : : }
5636 : : else
5637 : : {
5638 : 6971 : gfc_conv_expr (&backse, backexpr);
5639 : 6971 : back = backse.expr;
5640 : : }
5641 : 7155 : gfc_add_block_to_block (&se->pre, &backse.pre);
5642 : 7155 : back = gfc_evaluate_now_loc (input_location, back, &se->pre);
5643 : 7155 : gfc_add_block_to_block (&se->pre, &backse.post);
5644 : :
5645 : 7155 : if (nested_loop)
5646 : : {
5647 : 1872 : gfc_init_se (&nested_se, se);
5648 : 1872 : base_se = &nested_se;
5649 : : }
5650 : : else
5651 : : {
5652 : : /* Walk the arguments. */
5653 : 5283 : arrayss = gfc_walk_expr (arrayexpr);
5654 : 5283 : gcc_assert (arrayss != gfc_ss_terminator);
5655 : :
5656 : 5283 : if (maskexpr && maskexpr->rank != 0)
5657 : : {
5658 : 2268 : maskss = gfc_walk_expr (maskexpr);
5659 : 2268 : gcc_assert (maskss != gfc_ss_terminator);
5660 : : }
5661 : :
5662 : : base_se = nullptr;
5663 : : }
5664 : :
5665 : 13199 : nonempty = nullptr;
5666 : 5660 : if (!(maskexpr && maskexpr->rank > 0))
5667 : : {
5668 : 4021 : mpz_t asize;
5669 : 4021 : bool reduction_size_known;
5670 : :
5671 : 4021 : if (dim_present)
5672 : : {
5673 : 2552 : int reduction_dim;
5674 : 2552 : if (dim_arg->expr->expr_type == EXPR_CONSTANT)
5675 : 2550 : reduction_dim = mpz_get_si (dim_arg->expr->value.integer) - 1;
5676 : 2 : else if (arrayexpr->rank == 1)
5677 : : reduction_dim = 0;
5678 : : else
5679 : 0 : gcc_unreachable ();
5680 : 2552 : reduction_size_known = gfc_array_dimen_size (arrayexpr, reduction_dim,
5681 : : &asize);
5682 : : }
5683 : : else
5684 : 1469 : reduction_size_known = gfc_array_size (arrayexpr, &asize);
5685 : :
5686 : 4021 : if (reduction_size_known)
5687 : : {
5688 : 2426 : nonempty = gfc_conv_mpz_to_tree (asize, gfc_index_integer_kind);
5689 : 2426 : mpz_clear (asize);
5690 : 2426 : nonempty = fold_build2_loc (input_location, GT_EXPR,
5691 : : logical_type_node, nonempty,
5692 : : gfc_index_zero_node);
5693 : : }
5694 : 4021 : maskss = NULL;
5695 : : }
5696 : :
5697 : 7155 : limit = gfc_create_var (gfc_typenode_for_spec (&arrayexpr->ts), "limit");
5698 : 7155 : switch (arrayexpr->ts.type)
5699 : : {
5700 : 2986 : case BT_REAL:
5701 : 2986 : tmp = gfc_build_inf_or_huge (TREE_TYPE (limit), arrayexpr->ts.kind);
5702 : 2986 : break;
5703 : :
5704 : 4145 : case BT_INTEGER:
5705 : 4145 : n = gfc_validate_kind (arrayexpr->ts.type, arrayexpr->ts.kind, false);
5706 : 4145 : tmp = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge,
5707 : : arrayexpr->ts.kind);
5708 : 4145 : break;
5709 : :
5710 : 24 : case BT_UNSIGNED:
5711 : : /* For MAXVAL, the minimum is zero, for MINVAL it is HUGE(). */
5712 : 24 : if (op == GT_EXPR)
5713 : : {
5714 : 12 : tmp = gfc_get_unsigned_type (arrayexpr->ts.kind);
5715 : 12 : tmp = build_int_cst (tmp, 0);
5716 : : }
5717 : : else
5718 : : {
5719 : 12 : n = gfc_validate_kind (arrayexpr->ts.type, arrayexpr->ts.kind, false);
5720 : 12 : tmp = gfc_conv_mpz_unsigned_to_tree (gfc_unsigned_kinds[n].huge,
5721 : : expr->ts.kind);
5722 : : }
5723 : : break;
5724 : :
5725 : 0 : default:
5726 : 0 : gcc_unreachable ();
5727 : : }
5728 : :
5729 : : /* We start with the most negative possible value for MAXLOC, and the most
5730 : : positive possible value for MINLOC. The most negative possible value is
5731 : : -HUGE for BT_REAL and (-HUGE - 1) for BT_INTEGER; the most positive
5732 : : possible value is HUGE in both cases. BT_UNSIGNED has already been dealt
5733 : : with above. */
5734 : 7155 : if (op == GT_EXPR && expr->ts.type != BT_UNSIGNED)
5735 : 3296 : tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (tmp), tmp);
5736 : 3296 : if (op == GT_EXPR && arrayexpr->ts.type == BT_INTEGER)
5737 : 1942 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (tmp), tmp,
5738 : 1942 : build_int_cst (TREE_TYPE (tmp), 1));
5739 : :
5740 : 7155 : gfc_add_modify (&se->pre, limit, tmp);
5741 : :
5742 : : /* If we are in a case where we generate two sets of loops, the second one
5743 : : should continue where the first stopped instead of restarting from the
5744 : : beginning. So nested loops in the second set should have a partial range
5745 : : on the first iteration, but they should start from the beginning and span
5746 : : their full range on the following iterations. So we use conditionals in
5747 : : the loops lower bounds, and use the following variable in those
5748 : : conditionals to decide whether to use the original loop bound or to use
5749 : : the index at which the loop from the first set stopped. */
5750 : 7155 : tree second_loop_entry = gfc_create_var (logical_type_node,
5751 : : "second_loop_entry");
5752 : 7155 : gfc_add_modify (&se->pre, second_loop_entry, logical_false_node);
5753 : :
5754 : 7155 : if (nested_loop)
5755 : : {
5756 : 1872 : ploop = enter_nested_loop (&nested_se);
5757 : 1872 : orig_ss = nested_se.ss;
5758 : 1872 : ploop->temp_dim = 1;
5759 : : }
5760 : : else
5761 : : {
5762 : : /* Initialize the scalarizer. */
5763 : 5283 : gfc_init_loopinfo (&loop);
5764 : :
5765 : : /* We add the mask first because the number of iterations is taken
5766 : : from the last ss, and this breaks if an absent optional argument
5767 : : is used for mask. */
5768 : :
5769 : 5283 : if (maskss)
5770 : 2268 : gfc_add_ss_to_loop (&loop, maskss);
5771 : :
5772 : 5283 : gfc_add_ss_to_loop (&loop, arrayss);
5773 : :
5774 : : /* Initialize the loop. */
5775 : 5283 : gfc_conv_ss_startstride (&loop);
5776 : :
5777 : : /* The code generated can have more than one loop in sequence (see the
5778 : : comment at the function header). This doesn't work well with the
5779 : : scalarizer, which changes arrays' offset when the scalarization loops
5780 : : are generated (see gfc_trans_preloop_setup). Fortunately, we can use
5781 : : the scalarizer temporary code to handle multiple loops. Thus, we set
5782 : : temp_dim here, we call gfc_mark_ss_chain_used with flag=3 later, and
5783 : : we use gfc_trans_scalarized_loop_boundary even later to restore
5784 : : offset. */
5785 : 5283 : loop.temp_dim = loop.dimen;
5786 : 5283 : gfc_conv_loop_setup (&loop, &expr->where);
5787 : :
5788 : 5283 : ploop = &loop;
5789 : : }
5790 : :
5791 : 7155 : gcc_assert (reduction_dimensions == ploop->dimen);
5792 : :
5793 : 7155 : if (nonempty == NULL && !(maskexpr && maskexpr->rank > 0))
5794 : : {
5795 : 1595 : nonempty = logical_true_node;
5796 : :
5797 : 3697 : for (int i = 0; i < ploop->dimen; i++)
5798 : : {
5799 : 2102 : if (!(ploop->from[i] && ploop->to[i]))
5800 : : {
5801 : : nonempty = NULL;
5802 : : break;
5803 : : }
5804 : :
5805 : 2102 : tree tmp = fold_build2_loc (input_location, LE_EXPR,
5806 : : logical_type_node, ploop->from[i],
5807 : : ploop->to[i]);
5808 : :
5809 : 2102 : nonempty = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
5810 : : logical_type_node, nonempty, tmp);
5811 : : }
5812 : : }
5813 : :
5814 : 8750 : lab1 = NULL;
5815 : 8750 : lab2 = NULL;
5816 : : /* Initialize the position to zero, following Fortran 2003. We are free
5817 : : to do this because Fortran 95 allows the result of an entirely false
5818 : : mask to be processor dependent. If we know at compile time the array
5819 : : is non-empty and no MASK is used, we can initialize to 1 to simplify
5820 : : the inner loop. */
5821 : 7155 : if (nonempty != NULL && !HONOR_NANS (DECL_MODE (limit)))
5822 : : {
5823 : 2364 : tree init = fold_build3_loc (input_location, COND_EXPR,
5824 : : gfc_array_index_type, nonempty,
5825 : : gfc_index_one_node,
5826 : : gfc_index_zero_node);
5827 : 5278 : for (int i = 0; i < ploop->dimen; i++)
5828 : 2914 : gfc_add_modify (&ploop->pre, pos[i], init);
5829 : : }
5830 : : else
5831 : : {
5832 : 10731 : for (int i = 0; i < ploop->dimen; i++)
5833 : 5940 : gfc_add_modify (&ploop->pre, pos[i], gfc_index_zero_node);
5834 : 4791 : lab1 = gfc_build_label_decl (NULL_TREE);
5835 : 4791 : TREE_USED (lab1) = 1;
5836 : 4791 : lab2 = gfc_build_label_decl (NULL_TREE);
5837 : 4791 : TREE_USED (lab2) = 1;
5838 : : }
5839 : :
5840 : : /* An offset must be added to the loop
5841 : : counter to obtain the required position. */
5842 : 16009 : for (int i = 0; i < ploop->dimen; i++)
5843 : : {
5844 : 8854 : gcc_assert (ploop->from[i]);
5845 : :
5846 : 8854 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
5847 : : gfc_index_one_node, ploop->from[i]);
5848 : 8854 : gfc_add_modify (&ploop->pre, offset[i], tmp);
5849 : : }
5850 : :
5851 : 7155 : if (!nested_loop)
5852 : : {
5853 : 7133 : gfc_mark_ss_chain_used (arrayss, lab1 ? 3 : 1);
5854 : 5283 : if (maskss)
5855 : 2268 : gfc_mark_ss_chain_used (maskss, lab1 ? 3 : 1);
5856 : : }
5857 : :
5858 : : /* Generate the loop body. */
5859 : 7155 : gfc_start_scalarized_body (ploop, &body);
5860 : :
5861 : : /* If we have a mask, only check this element if the mask is set. */
5862 : 7155 : if (maskexpr && maskexpr->rank > 0)
5863 : : {
5864 : 3134 : gfc_init_se (&maskse, base_se);
5865 : 3134 : gfc_copy_loopinfo_to_se (&maskse, ploop);
5866 : 3134 : if (!nested_loop)
5867 : 2268 : maskse.ss = maskss;
5868 : 3134 : gfc_conv_expr_val (&maskse, maskexpr);
5869 : 3134 : gfc_add_block_to_block (&body, &maskse.pre);
5870 : :
5871 : 3134 : gfc_start_block (&block);
5872 : : }
5873 : : else
5874 : 4021 : gfc_init_block (&block);
5875 : :
5876 : : /* Compare with the current limit. */
5877 : 7155 : gfc_init_se (&arrayse, base_se);
5878 : 7155 : gfc_copy_loopinfo_to_se (&arrayse, ploop);
5879 : 7155 : if (!nested_loop)
5880 : 5283 : arrayse.ss = arrayss;
5881 : 7155 : gfc_conv_expr_val (&arrayse, arrayexpr);
5882 : 7155 : gfc_add_block_to_block (&block, &arrayse.pre);
5883 : :
5884 : : /* We do the following if this is a more extreme value. */
5885 : 7155 : gfc_start_block (&ifblock);
5886 : :
5887 : : /* Assign the value to the limit... */
5888 : 7155 : gfc_add_modify (&ifblock, limit, arrayse.expr);
5889 : :
5890 : 7155 : if (nonempty == NULL && HONOR_NANS (DECL_MODE (limit)))
5891 : : {
5892 : 1329 : stmtblock_t ifblock2;
5893 : 1329 : tree ifbody2;
5894 : :
5895 : 1329 : gfc_start_block (&ifblock2);
5896 : 2959 : for (int i = 0; i < ploop->dimen; i++)
5897 : : {
5898 : 1630 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos[i]),
5899 : : ploop->loopvar[i], offset[i]);
5900 : 1630 : gfc_add_modify (&ifblock2, pos[i], tmp);
5901 : : }
5902 : 1329 : ifbody2 = gfc_finish_block (&ifblock2);
5903 : :
5904 : 1329 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
5905 : : pos[0], gfc_index_zero_node);
5906 : 1329 : tmp = build3_v (COND_EXPR, cond, ifbody2,
5907 : : build_empty_stmt (input_location));
5908 : 1329 : gfc_add_expr_to_block (&block, tmp);
5909 : : }
5910 : :
5911 : 16009 : for (int i = 0; i < ploop->dimen; i++)
5912 : : {
5913 : 8854 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos[i]),
5914 : : ploop->loopvar[i], offset[i]);
5915 : 8854 : gfc_add_modify (&ifblock, pos[i], tmp);
5916 : 8854 : gfc_add_modify (&ifblock, idx[i], ploop->loopvar[i]);
5917 : : }
5918 : :
5919 : 7155 : gfc_add_modify (&ifblock, second_loop_entry, logical_true_node);
5920 : :
5921 : 7155 : if (lab1)
5922 : 4791 : gfc_add_expr_to_block (&ifblock, build1_v (GOTO_EXPR, lab1));
5923 : :
5924 : 7155 : ifbody = gfc_finish_block (&ifblock);
5925 : :
5926 : 7155 : if (!lab1 || HONOR_NANS (DECL_MODE (limit)))
5927 : : {
5928 : 5350 : if (lab1)
5929 : 4630 : cond = fold_build2_loc (input_location,
5930 : : op == GT_EXPR ? GE_EXPR : LE_EXPR,
5931 : : logical_type_node, arrayse.expr, limit);
5932 : : else
5933 : : {
5934 : 2364 : tree ifbody2, elsebody2;
5935 : :
5936 : : /* We switch to > or >= depending on the value of the BACK argument. */
5937 : 2364 : cond = gfc_create_var (logical_type_node, "cond");
5938 : :
5939 : 2364 : gfc_start_block (&ifblock);
5940 : 3585 : b_if = fold_build2_loc (input_location, op == GT_EXPR ? GE_EXPR : LE_EXPR,
5941 : : logical_type_node, arrayse.expr, limit);
5942 : :
5943 : 2364 : gfc_add_modify (&ifblock, cond, b_if);
5944 : 2364 : ifbody2 = gfc_finish_block (&ifblock);
5945 : :
5946 : 2364 : gfc_start_block (&elseblock);
5947 : 2364 : b_else = fold_build2_loc (input_location, op, logical_type_node,
5948 : : arrayse.expr, limit);
5949 : :
5950 : 2364 : gfc_add_modify (&elseblock, cond, b_else);
5951 : 2364 : elsebody2 = gfc_finish_block (&elseblock);
5952 : :
5953 : 2364 : tmp = fold_build3_loc (input_location, COND_EXPR, logical_type_node,
5954 : : back, ifbody2, elsebody2);
5955 : :
5956 : 2364 : gfc_add_expr_to_block (&block, tmp);
5957 : : }
5958 : :
5959 : 5350 : cond = gfc_unlikely (cond, PRED_BUILTIN_EXPECT);
5960 : 5350 : ifbody = build3_v (COND_EXPR, cond, ifbody,
5961 : : build_empty_stmt (input_location));
5962 : : }
5963 : 7155 : gfc_add_expr_to_block (&block, ifbody);
5964 : :
5965 : 7155 : if (maskexpr && maskexpr->rank > 0)
5966 : : {
5967 : : /* We enclose the above in if (mask) {...}. If the mask is an
5968 : : optional argument, generate IF (.NOT. PRESENT(MASK)
5969 : : .OR. MASK(I)). */
5970 : :
5971 : 3134 : tree ifmask;
5972 : 3134 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
5973 : 3134 : tmp = gfc_finish_block (&block);
5974 : 3134 : tmp = build3_v (COND_EXPR, ifmask, tmp,
5975 : : build_empty_stmt (input_location));
5976 : 3134 : }
5977 : : else
5978 : 4021 : tmp = gfc_finish_block (&block);
5979 : 7155 : gfc_add_expr_to_block (&body, tmp);
5980 : :
5981 : 7155 : if (lab1)
5982 : : {
5983 : 10731 : for (int i = 0; i < ploop->dimen; i++)
5984 : 5940 : ploop->from[i] = fold_build3_loc (input_location, COND_EXPR,
5985 : 5940 : TREE_TYPE (ploop->from[i]),
5986 : : second_loop_entry, idx[i],
5987 : : ploop->from[i]);
5988 : :
5989 : 4791 : gfc_trans_scalarized_loop_boundary (ploop, &body);
5990 : :
5991 : 4791 : if (nested_loop)
5992 : : {
5993 : : /* The first loop already advanced the parent se'ss chain, so clear
5994 : : the parent now to avoid doing it a second time, making the chain
5995 : : out of sync. */
5996 : 1358 : nested_se.parent = nullptr;
5997 : 1358 : nested_se.ss = orig_ss;
5998 : : }
5999 : :
6000 : 4791 : stmtblock_t * const outer_block = &ploop->code[ploop->dimen - 1];
6001 : :
6002 : 4791 : if (HONOR_NANS (DECL_MODE (limit)))
6003 : : {
6004 : 2986 : if (nonempty != NULL)
6005 : : {
6006 : 1657 : stmtblock_t init_block;
6007 : 1657 : gfc_init_block (&init_block);
6008 : :
6009 : 3693 : for (int i = 0; i < ploop->dimen; i++)
6010 : 2036 : gfc_add_modify (&init_block, pos[i], gfc_index_one_node);
6011 : :
6012 : 1657 : tree ifbody = gfc_finish_block (&init_block);
6013 : 1657 : tmp = build3_v (COND_EXPR, nonempty, ifbody,
6014 : : build_empty_stmt (input_location));
6015 : 1657 : gfc_add_expr_to_block (outer_block, tmp);
6016 : : }
6017 : : }
6018 : :
6019 : 4791 : gfc_add_expr_to_block (outer_block, build1_v (GOTO_EXPR, lab2));
6020 : 4791 : gfc_add_expr_to_block (outer_block, build1_v (LABEL_EXPR, lab1));
6021 : :
6022 : : /* If we have a mask, only check this element if the mask is set. */
6023 : 4791 : if (maskexpr && maskexpr->rank > 0)
6024 : : {
6025 : 3134 : gfc_init_se (&maskse, base_se);
6026 : 3134 : gfc_copy_loopinfo_to_se (&maskse, ploop);
6027 : 3134 : if (!nested_loop)
6028 : 2268 : maskse.ss = maskss;
6029 : 3134 : gfc_conv_expr_val (&maskse, maskexpr);
6030 : 3134 : gfc_add_block_to_block (&body, &maskse.pre);
6031 : :
6032 : 3134 : gfc_start_block (&block);
6033 : : }
6034 : : else
6035 : 1657 : gfc_init_block (&block);
6036 : :
6037 : : /* Compare with the current limit. */
6038 : 4791 : gfc_init_se (&arrayse, base_se);
6039 : 4791 : gfc_copy_loopinfo_to_se (&arrayse, ploop);
6040 : 4791 : if (!nested_loop)
6041 : 3433 : arrayse.ss = arrayss;
6042 : 4791 : gfc_conv_expr_val (&arrayse, arrayexpr);
6043 : 4791 : gfc_add_block_to_block (&block, &arrayse.pre);
6044 : :
6045 : : /* We do the following if this is a more extreme value. */
6046 : 4791 : gfc_start_block (&ifblock);
6047 : :
6048 : : /* Assign the value to the limit... */
6049 : 4791 : gfc_add_modify (&ifblock, limit, arrayse.expr);
6050 : :
6051 : 10731 : for (int i = 0; i < ploop->dimen; i++)
6052 : : {
6053 : 5940 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (pos[i]),
6054 : : ploop->loopvar[i], offset[i]);
6055 : 5940 : gfc_add_modify (&ifblock, pos[i], tmp);
6056 : : }
6057 : :
6058 : 4791 : ifbody = gfc_finish_block (&ifblock);
6059 : :
6060 : : /* We switch to > or >= depending on the value of the BACK argument. */
6061 : 4791 : {
6062 : 4791 : tree ifbody2, elsebody2;
6063 : :
6064 : 4791 : cond = gfc_create_var (logical_type_node, "cond");
6065 : :
6066 : 4791 : gfc_start_block (&ifblock);
6067 : 7429 : b_if = fold_build2_loc (input_location, op == GT_EXPR ? GE_EXPR : LE_EXPR,
6068 : : logical_type_node, arrayse.expr, limit);
6069 : :
6070 : 4791 : gfc_add_modify (&ifblock, cond, b_if);
6071 : 4791 : ifbody2 = gfc_finish_block (&ifblock);
6072 : :
6073 : 4791 : gfc_start_block (&elseblock);
6074 : 4791 : b_else = fold_build2_loc (input_location, op, logical_type_node,
6075 : : arrayse.expr, limit);
6076 : :
6077 : 4791 : gfc_add_modify (&elseblock, cond, b_else);
6078 : 4791 : elsebody2 = gfc_finish_block (&elseblock);
6079 : :
6080 : 4791 : tmp = fold_build3_loc (input_location, COND_EXPR, logical_type_node,
6081 : : back, ifbody2, elsebody2);
6082 : : }
6083 : :
6084 : 4791 : gfc_add_expr_to_block (&block, tmp);
6085 : 4791 : cond = gfc_unlikely (cond, PRED_BUILTIN_EXPECT);
6086 : 4791 : tmp = build3_v (COND_EXPR, cond, ifbody,
6087 : : build_empty_stmt (input_location));
6088 : :
6089 : 4791 : gfc_add_expr_to_block (&block, tmp);
6090 : :
6091 : 4791 : if (maskexpr && maskexpr->rank > 0)
6092 : : {
6093 : : /* We enclose the above in if (mask) {...}. If the mask is
6094 : : an optional argument, generate IF (.NOT. PRESENT(MASK)
6095 : : .OR. MASK(I)).*/
6096 : :
6097 : 3134 : tree ifmask;
6098 : 3134 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6099 : 3134 : tmp = gfc_finish_block (&block);
6100 : 3134 : tmp = build3_v (COND_EXPR, ifmask, tmp,
6101 : : build_empty_stmt (input_location));
6102 : 3134 : }
6103 : : else
6104 : 1657 : tmp = gfc_finish_block (&block);
6105 : :
6106 : 4791 : gfc_add_expr_to_block (&body, tmp);
6107 : 4791 : gfc_add_modify (&body, second_loop_entry, logical_false_node);
6108 : : }
6109 : :
6110 : 7155 : gfc_trans_scalarizing_loops (ploop, &body);
6111 : :
6112 : 7155 : if (lab2)
6113 : 4791 : gfc_add_expr_to_block (&ploop->pre, build1_v (LABEL_EXPR, lab2));
6114 : :
6115 : : /* For a scalar mask, enclose the loop in an if statement. */
6116 : 7155 : if (maskexpr && maskexpr->rank == 0)
6117 : : {
6118 : 1904 : tree ifmask;
6119 : :
6120 : 1904 : gfc_init_se (&maskse, nested_loop ? se : nullptr);
6121 : 1904 : gfc_conv_expr_val (&maskse, maskexpr);
6122 : 1904 : gfc_add_block_to_block (&se->pre, &maskse.pre);
6123 : 1904 : gfc_init_block (&block);
6124 : 1904 : gfc_add_block_to_block (&block, &ploop->pre);
6125 : 1904 : gfc_add_block_to_block (&block, &ploop->post);
6126 : 1904 : tmp = gfc_finish_block (&block);
6127 : :
6128 : : /* For the else part of the scalar mask, just initialize
6129 : : the pos variable the same way as above. */
6130 : :
6131 : 1904 : gfc_init_block (&elseblock);
6132 : 4100 : for (int i = 0; i < ploop->dimen; i++)
6133 : 2196 : gfc_add_modify (&elseblock, pos[i], gfc_index_zero_node);
6134 : 1904 : elsetmp = gfc_finish_block (&elseblock);
6135 : 1904 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6136 : 1904 : tmp = build3_v (COND_EXPR, ifmask, tmp, elsetmp);
6137 : 1904 : gfc_add_expr_to_block (&block, tmp);
6138 : 1904 : gfc_add_block_to_block (&se->pre, &block);
6139 : 1904 : }
6140 : : else
6141 : : {
6142 : 5251 : gfc_add_block_to_block (&se->pre, &ploop->pre);
6143 : 5251 : gfc_add_block_to_block (&se->pre, &ploop->post);
6144 : : }
6145 : :
6146 : 7155 : if (!nested_loop)
6147 : 5283 : gfc_cleanup_loop (&loop);
6148 : :
6149 : 7155 : if (!dim_present)
6150 : : {
6151 : 7109 : for (int i = 0; i < arrayexpr->rank; i++)
6152 : : {
6153 : 4404 : tree res_idx = build_int_cst (gfc_array_index_type, i);
6154 : 4404 : tree res_arr_ref = gfc_build_array_ref (result_var, res_idx,
6155 : : NULL_TREE, true);
6156 : :
6157 : 4404 : tree value = convert (type, pos[i]);
6158 : 4404 : gfc_add_modify (&se->pre, res_arr_ref, value);
6159 : : }
6160 : :
6161 : 2705 : se->expr = result_var;
6162 : : }
6163 : : else
6164 : 4450 : se->expr = convert (type, pos[0]);
6165 : : }
6166 : :
6167 : : /* Emit code for findloc. */
6168 : :
6169 : : static void
6170 : 1296 : gfc_conv_intrinsic_findloc (gfc_se *se, gfc_expr *expr)
6171 : : {
6172 : 1296 : gfc_actual_arglist *array_arg, *value_arg, *dim_arg, *mask_arg,
6173 : : *kind_arg, *back_arg;
6174 : 1296 : gfc_expr *value_expr;
6175 : 1296 : int ikind;
6176 : 1296 : tree resvar;
6177 : 1296 : stmtblock_t block;
6178 : 1296 : stmtblock_t body;
6179 : 1296 : stmtblock_t loopblock;
6180 : 1296 : tree type;
6181 : 1296 : tree tmp;
6182 : 1296 : tree found;
6183 : 1296 : tree forward_branch = NULL_TREE;
6184 : 1296 : tree back_branch;
6185 : 1296 : gfc_loopinfo loop;
6186 : 1296 : gfc_ss *arrayss;
6187 : 1296 : gfc_ss *maskss;
6188 : 1296 : gfc_se arrayse;
6189 : 1296 : gfc_se valuese;
6190 : 1296 : gfc_se maskse;
6191 : 1296 : gfc_se backse;
6192 : 1296 : tree exit_label;
6193 : 1296 : gfc_expr *maskexpr;
6194 : 1296 : tree offset;
6195 : 1296 : int i;
6196 : 1296 : bool optional_mask;
6197 : :
6198 : 1296 : array_arg = expr->value.function.actual;
6199 : 1296 : value_arg = array_arg->next;
6200 : 1296 : dim_arg = value_arg->next;
6201 : 1296 : mask_arg = dim_arg->next;
6202 : 1296 : kind_arg = mask_arg->next;
6203 : 1296 : back_arg = kind_arg->next;
6204 : :
6205 : : /* Remove kind and set ikind. */
6206 : 1296 : if (kind_arg->expr)
6207 : : {
6208 : 0 : ikind = mpz_get_si (kind_arg->expr->value.integer);
6209 : 0 : gfc_free_expr (kind_arg->expr);
6210 : 0 : kind_arg->expr = NULL;
6211 : : }
6212 : : else
6213 : 1296 : ikind = gfc_default_integer_kind;
6214 : :
6215 : 1296 : value_expr = value_arg->expr;
6216 : :
6217 : : /* Unless it's a string, pass VALUE by value. */
6218 : 1296 : if (value_expr->ts.type != BT_CHARACTER)
6219 : 732 : value_arg->name = "%VAL";
6220 : :
6221 : : /* Pass BACK argument by value. */
6222 : 1296 : back_arg->name = "%VAL";
6223 : :
6224 : : /* Call the library if we have a character function or if
6225 : : rank > 0. */
6226 : 1296 : if (se->ss || array_arg->expr->ts.type == BT_CHARACTER)
6227 : : {
6228 : 1164 : se->ignore_optional = 1;
6229 : 1164 : if (expr->rank == 0)
6230 : : {
6231 : : /* Remove dim argument. */
6232 : 48 : gfc_free_expr (dim_arg->expr);
6233 : 48 : dim_arg->expr = NULL;
6234 : : }
6235 : 1164 : gfc_conv_intrinsic_funcall (se, expr);
6236 : 1164 : return;
6237 : : }
6238 : :
6239 : 132 : type = gfc_get_int_type (ikind);
6240 : :
6241 : : /* Initialize the result. */
6242 : 132 : resvar = gfc_create_var (gfc_array_index_type, "pos");
6243 : 132 : gfc_add_modify (&se->pre, resvar, build_int_cst (gfc_array_index_type, 0));
6244 : 132 : offset = gfc_create_var (gfc_array_index_type, "offset");
6245 : :
6246 : 132 : maskexpr = mask_arg->expr;
6247 : 72 : optional_mask = maskexpr && maskexpr->expr_type == EXPR_VARIABLE
6248 : 60 : && maskexpr->symtree->n.sym->attr.dummy
6249 : 192 : && maskexpr->symtree->n.sym->attr.optional;
6250 : :
6251 : : /* Generate two loops, one for BACK=.true. and one for BACK=.false. */
6252 : :
6253 : 396 : for (i = 0 ; i < 2; i++)
6254 : : {
6255 : : /* Walk the arguments. */
6256 : 264 : arrayss = gfc_walk_expr (array_arg->expr);
6257 : 264 : gcc_assert (arrayss != gfc_ss_terminator);
6258 : :
6259 : 264 : if (maskexpr && maskexpr->rank != 0)
6260 : : {
6261 : 84 : maskss = gfc_walk_expr (maskexpr);
6262 : 84 : gcc_assert (maskss != gfc_ss_terminator);
6263 : : }
6264 : : else
6265 : : maskss = NULL;
6266 : :
6267 : : /* Initialize the scalarizer. */
6268 : 264 : gfc_init_loopinfo (&loop);
6269 : 264 : exit_label = gfc_build_label_decl (NULL_TREE);
6270 : 264 : TREE_USED (exit_label) = 1;
6271 : :
6272 : : /* We add the mask first because the number of iterations is
6273 : : taken from the last ss, and this breaks if an absent
6274 : : optional argument is used for mask. */
6275 : :
6276 : 264 : if (maskss)
6277 : 84 : gfc_add_ss_to_loop (&loop, maskss);
6278 : 264 : gfc_add_ss_to_loop (&loop, arrayss);
6279 : :
6280 : : /* Initialize the loop. */
6281 : 264 : gfc_conv_ss_startstride (&loop);
6282 : 264 : gfc_conv_loop_setup (&loop, &expr->where);
6283 : :
6284 : : /* Calculate the offset. */
6285 : 264 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6286 : : gfc_index_one_node, loop.from[0]);
6287 : 264 : gfc_add_modify (&loop.pre, offset, tmp);
6288 : :
6289 : 264 : gfc_mark_ss_chain_used (arrayss, 1);
6290 : 264 : if (maskss)
6291 : 84 : gfc_mark_ss_chain_used (maskss, 1);
6292 : :
6293 : : /* The first loop is for BACK=.true. */
6294 : 264 : if (i == 0)
6295 : 132 : loop.reverse[0] = GFC_REVERSE_SET;
6296 : :
6297 : : /* Generate the loop body. */
6298 : 264 : gfc_start_scalarized_body (&loop, &body);
6299 : :
6300 : : /* If we have an array mask, only add the element if it is
6301 : : set. */
6302 : 264 : if (maskss)
6303 : : {
6304 : 84 : gfc_init_se (&maskse, NULL);
6305 : 84 : gfc_copy_loopinfo_to_se (&maskse, &loop);
6306 : 84 : maskse.ss = maskss;
6307 : 84 : gfc_conv_expr_val (&maskse, maskexpr);
6308 : 84 : gfc_add_block_to_block (&body, &maskse.pre);
6309 : : }
6310 : :
6311 : : /* If the condition matches then set the return value. */
6312 : 264 : gfc_start_block (&block);
6313 : :
6314 : : /* Add the offset. */
6315 : 264 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
6316 : 264 : TREE_TYPE (resvar),
6317 : : loop.loopvar[0], offset);
6318 : 264 : gfc_add_modify (&block, resvar, tmp);
6319 : : /* And break out of the loop. */
6320 : 264 : tmp = build1_v (GOTO_EXPR, exit_label);
6321 : 264 : gfc_add_expr_to_block (&block, tmp);
6322 : :
6323 : 264 : found = gfc_finish_block (&block);
6324 : :
6325 : : /* Check this element. */
6326 : 264 : gfc_init_se (&arrayse, NULL);
6327 : 264 : gfc_copy_loopinfo_to_se (&arrayse, &loop);
6328 : 264 : arrayse.ss = arrayss;
6329 : 264 : gfc_conv_expr_val (&arrayse, array_arg->expr);
6330 : 264 : gfc_add_block_to_block (&body, &arrayse.pre);
6331 : :
6332 : 264 : gfc_init_se (&valuese, NULL);
6333 : 264 : gfc_conv_expr_val (&valuese, value_arg->expr);
6334 : 264 : gfc_add_block_to_block (&body, &valuese.pre);
6335 : :
6336 : 264 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
6337 : : arrayse.expr, valuese.expr);
6338 : :
6339 : 264 : tmp = build3_v (COND_EXPR, tmp, found, build_empty_stmt (input_location));
6340 : 264 : if (maskss)
6341 : : {
6342 : : /* We enclose the above in if (mask) {...}. If the mask is
6343 : : an optional argument, generate IF (.NOT. PRESENT(MASK)
6344 : : .OR. MASK(I)). */
6345 : :
6346 : 84 : tree ifmask;
6347 : 84 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6348 : 84 : tmp = build3_v (COND_EXPR, ifmask, tmp,
6349 : : build_empty_stmt (input_location));
6350 : : }
6351 : :
6352 : 264 : gfc_add_expr_to_block (&body, tmp);
6353 : 264 : gfc_add_block_to_block (&body, &arrayse.post);
6354 : :
6355 : 264 : gfc_trans_scalarizing_loops (&loop, &body);
6356 : :
6357 : : /* Add the exit label. */
6358 : 264 : tmp = build1_v (LABEL_EXPR, exit_label);
6359 : 264 : gfc_add_expr_to_block (&loop.pre, tmp);
6360 : 264 : gfc_start_block (&loopblock);
6361 : 264 : gfc_add_block_to_block (&loopblock, &loop.pre);
6362 : 264 : gfc_add_block_to_block (&loopblock, &loop.post);
6363 : 264 : if (i == 0)
6364 : 132 : forward_branch = gfc_finish_block (&loopblock);
6365 : : else
6366 : 132 : back_branch = gfc_finish_block (&loopblock);
6367 : :
6368 : 264 : gfc_cleanup_loop (&loop);
6369 : : }
6370 : :
6371 : : /* Enclose the two loops in an IF statement. */
6372 : :
6373 : 132 : gfc_init_se (&backse, NULL);
6374 : 132 : gfc_conv_expr_val (&backse, back_arg->expr);
6375 : 132 : gfc_add_block_to_block (&se->pre, &backse.pre);
6376 : 132 : tmp = build3_v (COND_EXPR, backse.expr, forward_branch, back_branch);
6377 : :
6378 : : /* For a scalar mask, enclose the loop in an if statement. */
6379 : 132 : if (maskexpr && maskss == NULL)
6380 : : {
6381 : 30 : tree ifmask;
6382 : 30 : tree if_stmt;
6383 : :
6384 : 30 : gfc_init_se (&maskse, NULL);
6385 : 30 : gfc_conv_expr_val (&maskse, maskexpr);
6386 : 30 : gfc_init_block (&block);
6387 : 30 : gfc_add_expr_to_block (&block, maskse.expr);
6388 : 30 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6389 : 30 : if_stmt = build3_v (COND_EXPR, ifmask, tmp,
6390 : : build_empty_stmt (input_location));
6391 : 30 : gfc_add_expr_to_block (&block, if_stmt);
6392 : 30 : tmp = gfc_finish_block (&block);
6393 : : }
6394 : :
6395 : 132 : gfc_add_expr_to_block (&se->pre, tmp);
6396 : 132 : se->expr = convert (type, resvar);
6397 : :
6398 : : }
6399 : :
6400 : : /* Emit code for minval or maxval intrinsic. There are many different cases
6401 : : we need to handle. For performance reasons we sometimes create two
6402 : : loops instead of one, where the second one is much simpler.
6403 : : Examples for minval intrinsic:
6404 : : 1) Result is an array, a call is generated
6405 : : 2) Array mask is used and NaNs need to be supported, rank 1:
6406 : : limit = Infinity;
6407 : : nonempty = false;
6408 : : S = from;
6409 : : while (S <= to) {
6410 : : if (mask[S]) { nonempty = true; if (a[S] <= limit) goto lab; }
6411 : : S++;
6412 : : }
6413 : : limit = nonempty ? NaN : huge (limit);
6414 : : lab:
6415 : : while (S <= to) { if(mask[S]) limit = min (a[S], limit); S++; }
6416 : : 3) NaNs need to be supported, but it is known at compile time or cheaply
6417 : : at runtime whether array is nonempty or not, rank 1:
6418 : : limit = Infinity;
6419 : : S = from;
6420 : : while (S <= to) { if (a[S] <= limit) goto lab; S++; }
6421 : : limit = (from <= to) ? NaN : huge (limit);
6422 : : lab:
6423 : : while (S <= to) { limit = min (a[S], limit); S++; }
6424 : : 4) Array mask is used and NaNs need to be supported, rank > 1:
6425 : : limit = Infinity;
6426 : : nonempty = false;
6427 : : fast = false;
6428 : : S1 = from1;
6429 : : while (S1 <= to1) {
6430 : : S2 = from2;
6431 : : while (S2 <= to2) {
6432 : : if (mask[S1][S2]) {
6433 : : if (fast) limit = min (a[S1][S2], limit);
6434 : : else {
6435 : : nonempty = true;
6436 : : if (a[S1][S2] <= limit) {
6437 : : limit = a[S1][S2];
6438 : : fast = true;
6439 : : }
6440 : : }
6441 : : }
6442 : : S2++;
6443 : : }
6444 : : S1++;
6445 : : }
6446 : : if (!fast)
6447 : : limit = nonempty ? NaN : huge (limit);
6448 : : 5) NaNs need to be supported, but it is known at compile time or cheaply
6449 : : at runtime whether array is nonempty or not, rank > 1:
6450 : : limit = Infinity;
6451 : : fast = false;
6452 : : S1 = from1;
6453 : : while (S1 <= to1) {
6454 : : S2 = from2;
6455 : : while (S2 <= to2) {
6456 : : if (fast) limit = min (a[S1][S2], limit);
6457 : : else {
6458 : : if (a[S1][S2] <= limit) {
6459 : : limit = a[S1][S2];
6460 : : fast = true;
6461 : : }
6462 : : }
6463 : : S2++;
6464 : : }
6465 : : S1++;
6466 : : }
6467 : : if (!fast)
6468 : : limit = (nonempty_array) ? NaN : huge (limit);
6469 : : 6) NaNs aren't supported, but infinities are. Array mask is used:
6470 : : limit = Infinity;
6471 : : nonempty = false;
6472 : : S = from;
6473 : : while (S <= to) {
6474 : : if (mask[S]) { nonempty = true; limit = min (a[S], limit); }
6475 : : S++;
6476 : : }
6477 : : limit = nonempty ? limit : huge (limit);
6478 : : 7) Same without array mask:
6479 : : limit = Infinity;
6480 : : S = from;
6481 : : while (S <= to) { limit = min (a[S], limit); S++; }
6482 : : limit = (from <= to) ? limit : huge (limit);
6483 : : 8) Neither NaNs nor infinities are supported (-ffast-math or BT_INTEGER):
6484 : : limit = huge (limit);
6485 : : S = from;
6486 : : while (S <= to) { limit = min (a[S], limit); S++); }
6487 : : (or
6488 : : while (S <= to) { if (mask[S]) limit = min (a[S], limit); S++; }
6489 : : with array mask instead).
6490 : : For 3), 5), 7) and 8), if mask is scalar, this all goes into a conditional,
6491 : : setting limit = huge (limit); in the else branch. */
6492 : :
6493 : : static void
6494 : 2337 : gfc_conv_intrinsic_minmaxval (gfc_se * se, gfc_expr * expr, enum tree_code op)
6495 : : {
6496 : 2337 : tree limit;
6497 : 2337 : tree type;
6498 : 2337 : tree tmp;
6499 : 2337 : tree ifbody;
6500 : 2337 : tree nonempty;
6501 : 2337 : tree nonempty_var;
6502 : 2337 : tree lab;
6503 : 2337 : tree fast;
6504 : 2337 : tree huge_cst = NULL, nan_cst = NULL;
6505 : 2337 : stmtblock_t body;
6506 : 2337 : stmtblock_t block, block2;
6507 : 2337 : gfc_loopinfo loop;
6508 : 2337 : gfc_actual_arglist *actual;
6509 : 2337 : gfc_ss *arrayss;
6510 : 2337 : gfc_ss *maskss;
6511 : 2337 : gfc_se arrayse;
6512 : 2337 : gfc_se maskse;
6513 : 2337 : gfc_expr *arrayexpr;
6514 : 2337 : gfc_expr *maskexpr;
6515 : 2337 : int n;
6516 : 2337 : bool optional_mask;
6517 : :
6518 : 2337 : if (se->ss)
6519 : : {
6520 : 0 : gfc_conv_intrinsic_funcall (se, expr);
6521 : 186 : return;
6522 : : }
6523 : :
6524 : 2337 : actual = expr->value.function.actual;
6525 : 2337 : arrayexpr = actual->expr;
6526 : :
6527 : 2337 : if (arrayexpr->ts.type == BT_CHARACTER)
6528 : : {
6529 : 186 : gfc_actual_arglist *dim = actual->next;
6530 : 186 : if (expr->rank == 0 && dim->expr != 0)
6531 : : {
6532 : 6 : gfc_free_expr (dim->expr);
6533 : 6 : dim->expr = NULL;
6534 : : }
6535 : 186 : gfc_conv_intrinsic_funcall (se, expr);
6536 : 186 : return;
6537 : : }
6538 : :
6539 : 2151 : type = gfc_typenode_for_spec (&expr->ts);
6540 : : /* Initialize the result. */
6541 : 2151 : limit = gfc_create_var (type, "limit");
6542 : 2151 : n = gfc_validate_kind (expr->ts.type, expr->ts.kind, false);
6543 : 2151 : switch (expr->ts.type)
6544 : : {
6545 : 1196 : case BT_REAL:
6546 : 1196 : huge_cst = gfc_conv_mpfr_to_tree (gfc_real_kinds[n].huge,
6547 : : expr->ts.kind, 0);
6548 : 1196 : if (HONOR_INFINITIES (DECL_MODE (limit)))
6549 : : {
6550 : 1192 : REAL_VALUE_TYPE real;
6551 : 1192 : real_inf (&real);
6552 : 1192 : tmp = build_real (type, real);
6553 : : }
6554 : : else
6555 : : tmp = huge_cst;
6556 : 1196 : if (HONOR_NANS (DECL_MODE (limit)))
6557 : 1192 : nan_cst = gfc_build_nan (type, "");
6558 : : break;
6559 : :
6560 : 931 : case BT_INTEGER:
6561 : 931 : tmp = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge, expr->ts.kind);
6562 : 931 : break;
6563 : :
6564 : 24 : case BT_UNSIGNED:
6565 : : /* For MAXVAL, the minimum is zero, for MINVAL it is HUGE(). */
6566 : 24 : if (op == GT_EXPR)
6567 : 12 : tmp = build_int_cst (type, 0);
6568 : : else
6569 : 12 : tmp = gfc_conv_mpz_unsigned_to_tree (gfc_unsigned_kinds[n].huge,
6570 : : expr->ts.kind);
6571 : : break;
6572 : :
6573 : 0 : default:
6574 : 0 : gcc_unreachable ();
6575 : : }
6576 : :
6577 : : /* We start with the most negative possible value for MAXVAL, and the most
6578 : : positive possible value for MINVAL. The most negative possible value is
6579 : : -HUGE for BT_REAL and (-HUGE - 1) for BT_INTEGER; the most positive
6580 : : possible value is HUGE in both cases. BT_UNSIGNED has already been dealt
6581 : : with above. */
6582 : 2151 : if (op == GT_EXPR && expr->ts.type != BT_UNSIGNED)
6583 : : {
6584 : 913 : tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (tmp), tmp);
6585 : 913 : if (huge_cst)
6586 : 511 : huge_cst = fold_build1_loc (input_location, NEGATE_EXPR,
6587 : 511 : TREE_TYPE (huge_cst), huge_cst);
6588 : : }
6589 : :
6590 : 925 : if (op == GT_EXPR && expr->ts.type == BT_INTEGER)
6591 : 402 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (tmp),
6592 : 402 : tmp, build_int_cst (type, 1));
6593 : :
6594 : 2151 : gfc_add_modify (&se->pre, limit, tmp);
6595 : :
6596 : : /* Walk the arguments. */
6597 : 2151 : arrayss = gfc_walk_expr (arrayexpr);
6598 : 2151 : gcc_assert (arrayss != gfc_ss_terminator);
6599 : :
6600 : 2151 : actual = actual->next->next;
6601 : 2151 : gcc_assert (actual);
6602 : 2151 : maskexpr = actual->expr;
6603 : 1536 : optional_mask = maskexpr && maskexpr->expr_type == EXPR_VARIABLE
6604 : 1524 : && maskexpr->symtree->n.sym->attr.dummy
6605 : 3675 : && maskexpr->symtree->n.sym->attr.optional;
6606 : 1524 : nonempty = NULL;
6607 : 1536 : if (maskexpr && maskexpr->rank != 0)
6608 : : {
6609 : 990 : maskss = gfc_walk_expr (maskexpr);
6610 : 990 : gcc_assert (maskss != gfc_ss_terminator);
6611 : : }
6612 : : else
6613 : : {
6614 : 1161 : mpz_t asize;
6615 : 1161 : if (gfc_array_size (arrayexpr, &asize))
6616 : : {
6617 : 636 : nonempty = gfc_conv_mpz_to_tree (asize, gfc_index_integer_kind);
6618 : 636 : mpz_clear (asize);
6619 : 636 : nonempty = fold_build2_loc (input_location, GT_EXPR,
6620 : : logical_type_node, nonempty,
6621 : : gfc_index_zero_node);
6622 : : }
6623 : 1161 : maskss = NULL;
6624 : : }
6625 : :
6626 : : /* Initialize the scalarizer. */
6627 : 2151 : gfc_init_loopinfo (&loop);
6628 : :
6629 : : /* We add the mask first because the number of iterations is taken
6630 : : from the last ss, and this breaks if an absent optional argument
6631 : : is used for mask. */
6632 : :
6633 : 2151 : if (maskss)
6634 : 990 : gfc_add_ss_to_loop (&loop, maskss);
6635 : 2151 : gfc_add_ss_to_loop (&loop, arrayss);
6636 : :
6637 : : /* Initialize the loop. */
6638 : 2151 : gfc_conv_ss_startstride (&loop);
6639 : :
6640 : : /* The code generated can have more than one loop in sequence (see the
6641 : : comment at the function header). This doesn't work well with the
6642 : : scalarizer, which changes arrays' offset when the scalarization loops
6643 : : are generated (see gfc_trans_preloop_setup). Fortunately, {min,max}val
6644 : : are currently inlined in the scalar case only. As there is no dependency
6645 : : to care about in that case, there is no temporary, so that we can use the
6646 : : scalarizer temporary code to handle multiple loops. Thus, we set temp_dim
6647 : : here, we call gfc_mark_ss_chain_used with flag=3 later, and we use
6648 : : gfc_trans_scalarized_loop_boundary even later to restore offset.
6649 : : TODO: this prevents inlining of rank > 0 minmaxval calls, so this
6650 : : should eventually go away. We could either create two loops properly,
6651 : : or find another way to save/restore the array offsets between the two
6652 : : loops (without conflicting with temporary management), or use a single
6653 : : loop minmaxval implementation. See PR 31067. */
6654 : 2151 : loop.temp_dim = loop.dimen;
6655 : 2151 : gfc_conv_loop_setup (&loop, &expr->where);
6656 : :
6657 : 2151 : if (nonempty == NULL && maskss == NULL
6658 : 525 : && loop.dimen == 1 && loop.from[0] && loop.to[0])
6659 : 489 : nonempty = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
6660 : : loop.from[0], loop.to[0]);
6661 : 2151 : nonempty_var = NULL;
6662 : 2151 : if (nonempty == NULL
6663 : 2151 : && (HONOR_INFINITIES (DECL_MODE (limit))
6664 : 468 : || HONOR_NANS (DECL_MODE (limit))))
6665 : : {
6666 : 558 : nonempty_var = gfc_create_var (logical_type_node, "nonempty");
6667 : 558 : gfc_add_modify (&se->pre, nonempty_var, logical_false_node);
6668 : 558 : nonempty = nonempty_var;
6669 : : }
6670 : 2151 : lab = NULL;
6671 : 2151 : fast = NULL;
6672 : 2151 : if (HONOR_NANS (DECL_MODE (limit)))
6673 : : {
6674 : 1192 : if (loop.dimen == 1)
6675 : : {
6676 : 796 : lab = gfc_build_label_decl (NULL_TREE);
6677 : 796 : TREE_USED (lab) = 1;
6678 : : }
6679 : : else
6680 : : {
6681 : 396 : fast = gfc_create_var (logical_type_node, "fast");
6682 : 396 : gfc_add_modify (&se->pre, fast, logical_false_node);
6683 : : }
6684 : : }
6685 : :
6686 : 2151 : gfc_mark_ss_chain_used (arrayss, lab ? 3 : 1);
6687 : 2151 : if (maskss)
6688 : 1644 : gfc_mark_ss_chain_used (maskss, lab ? 3 : 1);
6689 : : /* Generate the loop body. */
6690 : 2151 : gfc_start_scalarized_body (&loop, &body);
6691 : :
6692 : : /* If we have a mask, only add this element if the mask is set. */
6693 : 2151 : if (maskss)
6694 : : {
6695 : 990 : gfc_init_se (&maskse, NULL);
6696 : 990 : gfc_copy_loopinfo_to_se (&maskse, &loop);
6697 : 990 : maskse.ss = maskss;
6698 : 990 : gfc_conv_expr_val (&maskse, maskexpr);
6699 : 990 : gfc_add_block_to_block (&body, &maskse.pre);
6700 : :
6701 : 990 : gfc_start_block (&block);
6702 : : }
6703 : : else
6704 : 1161 : gfc_init_block (&block);
6705 : :
6706 : : /* Compare with the current limit. */
6707 : 2151 : gfc_init_se (&arrayse, NULL);
6708 : 2151 : gfc_copy_loopinfo_to_se (&arrayse, &loop);
6709 : 2151 : arrayse.ss = arrayss;
6710 : 2151 : gfc_conv_expr_val (&arrayse, arrayexpr);
6711 : 2151 : gfc_add_block_to_block (&block, &arrayse.pre);
6712 : :
6713 : 2151 : gfc_init_block (&block2);
6714 : :
6715 : 2151 : if (nonempty_var)
6716 : 558 : gfc_add_modify (&block2, nonempty_var, logical_true_node);
6717 : :
6718 : 2151 : if (HONOR_NANS (DECL_MODE (limit)))
6719 : : {
6720 : 1873 : tmp = fold_build2_loc (input_location, op == GT_EXPR ? GE_EXPR : LE_EXPR,
6721 : : logical_type_node, arrayse.expr, limit);
6722 : 1192 : if (lab)
6723 : 796 : ifbody = build1_v (GOTO_EXPR, lab);
6724 : : else
6725 : : {
6726 : 396 : stmtblock_t ifblock;
6727 : :
6728 : 396 : gfc_init_block (&ifblock);
6729 : 396 : gfc_add_modify (&ifblock, limit, arrayse.expr);
6730 : 396 : gfc_add_modify (&ifblock, fast, logical_true_node);
6731 : 396 : ifbody = gfc_finish_block (&ifblock);
6732 : : }
6733 : 1192 : tmp = build3_v (COND_EXPR, tmp, ifbody,
6734 : : build_empty_stmt (input_location));
6735 : 1192 : gfc_add_expr_to_block (&block2, tmp);
6736 : : }
6737 : : else
6738 : : {
6739 : : /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
6740 : : signed zeros. */
6741 : 1504 : tmp = fold_build2_loc (input_location,
6742 : : op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
6743 : : type, arrayse.expr, limit);
6744 : 959 : gfc_add_modify (&block2, limit, tmp);
6745 : : }
6746 : :
6747 : 2151 : if (fast)
6748 : : {
6749 : 396 : tree elsebody = gfc_finish_block (&block2);
6750 : :
6751 : : /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
6752 : : signed zeros. */
6753 : 396 : if (HONOR_NANS (DECL_MODE (limit)))
6754 : : {
6755 : 396 : tmp = fold_build2_loc (input_location, op, logical_type_node,
6756 : : arrayse.expr, limit);
6757 : 396 : ifbody = build2_v (MODIFY_EXPR, limit, arrayse.expr);
6758 : 396 : ifbody = build3_v (COND_EXPR, tmp, ifbody,
6759 : : build_empty_stmt (input_location));
6760 : : }
6761 : : else
6762 : : {
6763 : 0 : tmp = fold_build2_loc (input_location,
6764 : : op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
6765 : : type, arrayse.expr, limit);
6766 : 0 : ifbody = build2_v (MODIFY_EXPR, limit, tmp);
6767 : : }
6768 : 396 : tmp = build3_v (COND_EXPR, fast, ifbody, elsebody);
6769 : 396 : gfc_add_expr_to_block (&block, tmp);
6770 : : }
6771 : : else
6772 : 1755 : gfc_add_block_to_block (&block, &block2);
6773 : :
6774 : 2151 : gfc_add_block_to_block (&block, &arrayse.post);
6775 : :
6776 : 2151 : tmp = gfc_finish_block (&block);
6777 : 2151 : if (maskss)
6778 : : {
6779 : : /* We enclose the above in if (mask) {...}. If the mask is an
6780 : : optional argument, generate IF (.NOT. PRESENT(MASK)
6781 : : .OR. MASK(I)). */
6782 : 990 : tree ifmask;
6783 : 990 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6784 : 990 : tmp = build3_v (COND_EXPR, ifmask, tmp,
6785 : : build_empty_stmt (input_location));
6786 : : }
6787 : 2151 : gfc_add_expr_to_block (&body, tmp);
6788 : :
6789 : 2151 : if (lab)
6790 : : {
6791 : 796 : gfc_trans_scalarized_loop_boundary (&loop, &body);
6792 : :
6793 : 796 : tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty,
6794 : : nan_cst, huge_cst);
6795 : 796 : gfc_add_modify (&loop.code[0], limit, tmp);
6796 : 796 : gfc_add_expr_to_block (&loop.code[0], build1_v (LABEL_EXPR, lab));
6797 : :
6798 : : /* If we have a mask, only add this element if the mask is set. */
6799 : 796 : if (maskss)
6800 : : {
6801 : 336 : gfc_init_se (&maskse, NULL);
6802 : 336 : gfc_copy_loopinfo_to_se (&maskse, &loop);
6803 : 336 : maskse.ss = maskss;
6804 : 336 : gfc_conv_expr_val (&maskse, maskexpr);
6805 : 336 : gfc_add_block_to_block (&body, &maskse.pre);
6806 : :
6807 : 336 : gfc_start_block (&block);
6808 : : }
6809 : : else
6810 : 460 : gfc_init_block (&block);
6811 : :
6812 : : /* Compare with the current limit. */
6813 : 796 : gfc_init_se (&arrayse, NULL);
6814 : 796 : gfc_copy_loopinfo_to_se (&arrayse, &loop);
6815 : 796 : arrayse.ss = arrayss;
6816 : 796 : gfc_conv_expr_val (&arrayse, arrayexpr);
6817 : 796 : gfc_add_block_to_block (&block, &arrayse.pre);
6818 : :
6819 : : /* MIN_EXPR/MAX_EXPR has unspecified behavior with NaNs or
6820 : : signed zeros. */
6821 : 796 : if (HONOR_NANS (DECL_MODE (limit)))
6822 : : {
6823 : 796 : tmp = fold_build2_loc (input_location, op, logical_type_node,
6824 : : arrayse.expr, limit);
6825 : 796 : ifbody = build2_v (MODIFY_EXPR, limit, arrayse.expr);
6826 : 796 : tmp = build3_v (COND_EXPR, tmp, ifbody,
6827 : : build_empty_stmt (input_location));
6828 : 796 : gfc_add_expr_to_block (&block, tmp);
6829 : : }
6830 : : else
6831 : : {
6832 : 0 : tmp = fold_build2_loc (input_location,
6833 : : op == GT_EXPR ? MAX_EXPR : MIN_EXPR,
6834 : : type, arrayse.expr, limit);
6835 : 0 : gfc_add_modify (&block, limit, tmp);
6836 : : }
6837 : :
6838 : 796 : gfc_add_block_to_block (&block, &arrayse.post);
6839 : :
6840 : 796 : tmp = gfc_finish_block (&block);
6841 : 796 : if (maskss)
6842 : : /* We enclose the above in if (mask) {...}. */
6843 : : {
6844 : 336 : tree ifmask;
6845 : 336 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6846 : 336 : tmp = build3_v (COND_EXPR, ifmask, tmp,
6847 : : build_empty_stmt (input_location));
6848 : : }
6849 : :
6850 : 796 : gfc_add_expr_to_block (&body, tmp);
6851 : : /* Avoid initializing loopvar[0] again, it should be left where
6852 : : it finished by the first loop. */
6853 : 796 : loop.from[0] = loop.loopvar[0];
6854 : : }
6855 : 2151 : gfc_trans_scalarizing_loops (&loop, &body);
6856 : :
6857 : 2151 : if (fast)
6858 : : {
6859 : 396 : tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty,
6860 : : nan_cst, huge_cst);
6861 : 396 : ifbody = build2_v (MODIFY_EXPR, limit, tmp);
6862 : 396 : tmp = build3_v (COND_EXPR, fast, build_empty_stmt (input_location),
6863 : : ifbody);
6864 : 396 : gfc_add_expr_to_block (&loop.pre, tmp);
6865 : : }
6866 : 1755 : else if (HONOR_INFINITIES (DECL_MODE (limit)) && !lab)
6867 : : {
6868 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR, type, nonempty, limit,
6869 : : huge_cst);
6870 : 0 : gfc_add_modify (&loop.pre, limit, tmp);
6871 : : }
6872 : :
6873 : : /* For a scalar mask, enclose the loop in an if statement. */
6874 : 2151 : if (maskexpr && maskss == NULL)
6875 : : {
6876 : 546 : tree else_stmt;
6877 : 546 : tree ifmask;
6878 : :
6879 : 546 : gfc_init_se (&maskse, NULL);
6880 : 546 : gfc_conv_expr_val (&maskse, maskexpr);
6881 : 546 : gfc_init_block (&block);
6882 : 546 : gfc_add_block_to_block (&block, &loop.pre);
6883 : 546 : gfc_add_block_to_block (&block, &loop.post);
6884 : 546 : tmp = gfc_finish_block (&block);
6885 : :
6886 : 546 : if (HONOR_INFINITIES (DECL_MODE (limit)))
6887 : 354 : else_stmt = build2_v (MODIFY_EXPR, limit, huge_cst);
6888 : : else
6889 : 192 : else_stmt = build_empty_stmt (input_location);
6890 : :
6891 : 546 : ifmask = conv_mask_condition (&maskse, maskexpr, optional_mask);
6892 : 546 : tmp = build3_v (COND_EXPR, ifmask, tmp, else_stmt);
6893 : 546 : gfc_add_expr_to_block (&block, tmp);
6894 : 546 : gfc_add_block_to_block (&se->pre, &block);
6895 : : }
6896 : : else
6897 : : {
6898 : 1605 : gfc_add_block_to_block (&se->pre, &loop.pre);
6899 : 1605 : gfc_add_block_to_block (&se->pre, &loop.post);
6900 : : }
6901 : :
6902 : 2151 : gfc_cleanup_loop (&loop);
6903 : :
6904 : 2151 : se->expr = limit;
6905 : : }
6906 : :
6907 : : /* BTEST (i, pos) = (i & (1 << pos)) != 0. */
6908 : : static void
6909 : 145 : gfc_conv_intrinsic_btest (gfc_se * se, gfc_expr * expr)
6910 : : {
6911 : 145 : tree args[2];
6912 : 145 : tree type;
6913 : 145 : tree tmp;
6914 : :
6915 : 145 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
6916 : 145 : type = TREE_TYPE (args[0]);
6917 : :
6918 : : /* Optionally generate code for runtime argument check. */
6919 : 145 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
6920 : : {
6921 : 6 : tree below = fold_build2_loc (input_location, LT_EXPR,
6922 : : logical_type_node, args[1],
6923 : 6 : build_int_cst (TREE_TYPE (args[1]), 0));
6924 : 6 : tree nbits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
6925 : 6 : tree above = fold_build2_loc (input_location, GE_EXPR,
6926 : : logical_type_node, args[1], nbits);
6927 : 6 : tree scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
6928 : : logical_type_node, below, above);
6929 : 6 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
6930 : : "POS argument (%ld) out of range 0:%ld "
6931 : : "in intrinsic BTEST",
6932 : : fold_convert (long_integer_type_node, args[1]),
6933 : : fold_convert (long_integer_type_node, nbits));
6934 : : }
6935 : :
6936 : 145 : tmp = fold_build2_loc (input_location, LSHIFT_EXPR, type,
6937 : 145 : build_int_cst (type, 1), args[1]);
6938 : 145 : tmp = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[0], tmp);
6939 : 145 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node, tmp,
6940 : 145 : build_int_cst (type, 0));
6941 : 145 : type = gfc_typenode_for_spec (&expr->ts);
6942 : 145 : se->expr = convert (type, tmp);
6943 : 145 : }
6944 : :
6945 : :
6946 : : /* Generate code for BGE, BGT, BLE and BLT intrinsics. */
6947 : : static void
6948 : 216 : gfc_conv_intrinsic_bitcomp (gfc_se * se, gfc_expr * expr, enum tree_code op)
6949 : : {
6950 : 216 : tree args[2];
6951 : :
6952 : 216 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
6953 : :
6954 : : /* Convert both arguments to the unsigned type of the same size. */
6955 : 216 : args[0] = fold_convert (unsigned_type_for (TREE_TYPE (args[0])), args[0]);
6956 : 216 : args[1] = fold_convert (unsigned_type_for (TREE_TYPE (args[1])), args[1]);
6957 : :
6958 : : /* If they have unequal type size, convert to the larger one. */
6959 : 216 : if (TYPE_PRECISION (TREE_TYPE (args[0]))
6960 : 216 : > TYPE_PRECISION (TREE_TYPE (args[1])))
6961 : 0 : args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
6962 : 216 : else if (TYPE_PRECISION (TREE_TYPE (args[1]))
6963 : 216 : > TYPE_PRECISION (TREE_TYPE (args[0])))
6964 : 0 : args[0] = fold_convert (TREE_TYPE (args[1]), args[0]);
6965 : :
6966 : : /* Now, we compare them. */
6967 : 216 : se->expr = fold_build2_loc (input_location, op, logical_type_node,
6968 : : args[0], args[1]);
6969 : 216 : }
6970 : :
6971 : :
6972 : : /* Generate code to perform the specified operation. */
6973 : : static void
6974 : 1885 : gfc_conv_intrinsic_bitop (gfc_se * se, gfc_expr * expr, enum tree_code op)
6975 : : {
6976 : 1885 : tree args[2];
6977 : :
6978 : 1885 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
6979 : 1885 : se->expr = fold_build2_loc (input_location, op, TREE_TYPE (args[0]),
6980 : : args[0], args[1]);
6981 : 1885 : }
6982 : :
6983 : : /* Bitwise not. */
6984 : : static void
6985 : 228 : gfc_conv_intrinsic_not (gfc_se * se, gfc_expr * expr)
6986 : : {
6987 : 228 : tree arg;
6988 : :
6989 : 228 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
6990 : 228 : se->expr = fold_build1_loc (input_location, BIT_NOT_EXPR,
6991 : 228 : TREE_TYPE (arg), arg);
6992 : 228 : }
6993 : :
6994 : : /* Set or clear a single bit. */
6995 : : static void
6996 : 306 : gfc_conv_intrinsic_singlebitop (gfc_se * se, gfc_expr * expr, int set)
6997 : : {
6998 : 306 : tree args[2];
6999 : 306 : tree type;
7000 : 306 : tree tmp;
7001 : 306 : enum tree_code op;
7002 : :
7003 : 306 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
7004 : 306 : type = TREE_TYPE (args[0]);
7005 : :
7006 : : /* Optionally generate code for runtime argument check. */
7007 : 306 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7008 : : {
7009 : 12 : tree below = fold_build2_loc (input_location, LT_EXPR,
7010 : : logical_type_node, args[1],
7011 : 12 : build_int_cst (TREE_TYPE (args[1]), 0));
7012 : 12 : tree nbits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
7013 : 12 : tree above = fold_build2_loc (input_location, GE_EXPR,
7014 : : logical_type_node, args[1], nbits);
7015 : 12 : tree scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7016 : : logical_type_node, below, above);
7017 : 12 : size_t len_name = strlen (expr->value.function.isym->name);
7018 : 12 : char *name = XALLOCAVEC (char, len_name + 1);
7019 : 72 : for (size_t i = 0; i < len_name; i++)
7020 : 60 : name[i] = TOUPPER (expr->value.function.isym->name[i]);
7021 : 12 : name[len_name] = '\0';
7022 : 12 : tree iname = gfc_build_addr_expr (pchar_type_node,
7023 : : gfc_build_cstring_const (name));
7024 : 12 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7025 : : "POS argument (%ld) out of range 0:%ld "
7026 : : "in intrinsic %s",
7027 : : fold_convert (long_integer_type_node, args[1]),
7028 : : fold_convert (long_integer_type_node, nbits),
7029 : : iname);
7030 : : }
7031 : :
7032 : 306 : tmp = fold_build2_loc (input_location, LSHIFT_EXPR, type,
7033 : 306 : build_int_cst (type, 1), args[1]);
7034 : 306 : if (set)
7035 : : op = BIT_IOR_EXPR;
7036 : : else
7037 : : {
7038 : 168 : op = BIT_AND_EXPR;
7039 : 168 : tmp = fold_build1_loc (input_location, BIT_NOT_EXPR, type, tmp);
7040 : : }
7041 : 306 : se->expr = fold_build2_loc (input_location, op, type, args[0], tmp);
7042 : 306 : }
7043 : :
7044 : : /* Extract a sequence of bits.
7045 : : IBITS(I, POS, LEN) = (I >> POS) & ~((~0) << LEN). */
7046 : : static void
7047 : 27 : gfc_conv_intrinsic_ibits (gfc_se * se, gfc_expr * expr)
7048 : : {
7049 : 27 : tree args[3];
7050 : 27 : tree type;
7051 : 27 : tree tmp;
7052 : 27 : tree mask;
7053 : 27 : tree num_bits, cond;
7054 : :
7055 : 27 : gfc_conv_intrinsic_function_args (se, expr, args, 3);
7056 : 27 : type = TREE_TYPE (args[0]);
7057 : :
7058 : : /* Optionally generate code for runtime argument check. */
7059 : 27 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7060 : : {
7061 : 12 : tree tmp1 = fold_convert (long_integer_type_node, args[1]);
7062 : 12 : tree tmp2 = fold_convert (long_integer_type_node, args[2]);
7063 : 36 : tree nbits = build_int_cst (long_integer_type_node,
7064 : 12 : TYPE_PRECISION (type));
7065 : 12 : tree below = fold_build2_loc (input_location, LT_EXPR,
7066 : : logical_type_node, args[1],
7067 : 12 : build_int_cst (TREE_TYPE (args[1]), 0));
7068 : 12 : tree above = fold_build2_loc (input_location, GT_EXPR,
7069 : : logical_type_node, tmp1, nbits);
7070 : 12 : tree scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7071 : : logical_type_node, below, above);
7072 : 12 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7073 : : "POS argument (%ld) out of range 0:%ld "
7074 : : "in intrinsic IBITS", tmp1, nbits);
7075 : 12 : below = fold_build2_loc (input_location, LT_EXPR,
7076 : : logical_type_node, args[2],
7077 : 12 : build_int_cst (TREE_TYPE (args[2]), 0));
7078 : 12 : above = fold_build2_loc (input_location, GT_EXPR,
7079 : : logical_type_node, tmp2, nbits);
7080 : 12 : scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7081 : : logical_type_node, below, above);
7082 : 12 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7083 : : "LEN argument (%ld) out of range 0:%ld "
7084 : : "in intrinsic IBITS", tmp2, nbits);
7085 : 12 : above = fold_build2_loc (input_location, PLUS_EXPR,
7086 : : long_integer_type_node, tmp1, tmp2);
7087 : 12 : scond = fold_build2_loc (input_location, GT_EXPR,
7088 : : logical_type_node, above, nbits);
7089 : 12 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7090 : : "POS(%ld)+LEN(%ld)>BIT_SIZE(%ld) "
7091 : : "in intrinsic IBITS", tmp1, tmp2, nbits);
7092 : : }
7093 : :
7094 : : /* The Fortran standard allows (shift width) LEN <= BIT_SIZE(I), whereas
7095 : : gcc requires a shift width < BIT_SIZE(I), so we have to catch this
7096 : : special case. See also gfc_conv_intrinsic_ishft (). */
7097 : 27 : num_bits = build_int_cst (TREE_TYPE (args[2]), TYPE_PRECISION (type));
7098 : :
7099 : 27 : mask = build_int_cst (type, -1);
7100 : 27 : mask = fold_build2_loc (input_location, LSHIFT_EXPR, type, mask, args[2]);
7101 : 27 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node, args[2],
7102 : : num_bits);
7103 : 27 : mask = fold_build3_loc (input_location, COND_EXPR, type, cond,
7104 : 27 : build_int_cst (type, 0), mask);
7105 : 27 : mask = fold_build1_loc (input_location, BIT_NOT_EXPR, type, mask);
7106 : :
7107 : 27 : tmp = fold_build2_loc (input_location, RSHIFT_EXPR, type, args[0], args[1]);
7108 : :
7109 : 27 : se->expr = fold_build2_loc (input_location, BIT_AND_EXPR, type, tmp, mask);
7110 : 27 : }
7111 : :
7112 : : static void
7113 : 429 : gfc_conv_intrinsic_shift (gfc_se * se, gfc_expr * expr, bool right_shift,
7114 : : bool arithmetic)
7115 : : {
7116 : 429 : tree args[2], type, num_bits, cond;
7117 : 429 : tree bigshift;
7118 : 429 : bool do_convert = false;
7119 : :
7120 : 429 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
7121 : :
7122 : 429 : args[0] = gfc_evaluate_now (args[0], &se->pre);
7123 : 429 : args[1] = gfc_evaluate_now (args[1], &se->pre);
7124 : 429 : type = TREE_TYPE (args[0]);
7125 : :
7126 : 429 : if (!arithmetic)
7127 : : {
7128 : 327 : args[0] = fold_convert (unsigned_type_for (type), args[0]);
7129 : 327 : do_convert = true;
7130 : : }
7131 : : else
7132 : 102 : gcc_assert (right_shift);
7133 : :
7134 : 429 : if (flag_unsigned && arithmetic && expr->ts.type == BT_UNSIGNED)
7135 : : {
7136 : 30 : do_convert = true;
7137 : 30 : args[0] = fold_convert (signed_type_for (type), args[0]);
7138 : : }
7139 : :
7140 : 690 : se->expr = fold_build2_loc (input_location,
7141 : : right_shift ? RSHIFT_EXPR : LSHIFT_EXPR,
7142 : 429 : TREE_TYPE (args[0]), args[0], args[1]);
7143 : :
7144 : 429 : if (do_convert)
7145 : 357 : se->expr = fold_convert (type, se->expr);
7146 : :
7147 : 429 : if (!arithmetic)
7148 : 327 : bigshift = build_int_cst (type, 0);
7149 : : else
7150 : : {
7151 : 102 : tree nonneg = fold_build2_loc (input_location, GE_EXPR,
7152 : : logical_type_node, args[0],
7153 : 102 : build_int_cst (TREE_TYPE (args[0]), 0));
7154 : 102 : bigshift = fold_build3_loc (input_location, COND_EXPR, type, nonneg,
7155 : 102 : build_int_cst (type, 0),
7156 : 102 : build_int_cst (type, -1));
7157 : : }
7158 : :
7159 : : /* The Fortran standard allows shift widths <= BIT_SIZE(I), whereas
7160 : : gcc requires a shift width < BIT_SIZE(I), so we have to catch this
7161 : : special case. */
7162 : 429 : num_bits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
7163 : :
7164 : : /* Optionally generate code for runtime argument check. */
7165 : 429 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7166 : : {
7167 : 30 : tree below = fold_build2_loc (input_location, LT_EXPR,
7168 : : logical_type_node, args[1],
7169 : 30 : build_int_cst (TREE_TYPE (args[1]), 0));
7170 : 30 : tree above = fold_build2_loc (input_location, GT_EXPR,
7171 : : logical_type_node, args[1], num_bits);
7172 : 30 : tree scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7173 : : logical_type_node, below, above);
7174 : 30 : size_t len_name = strlen (expr->value.function.isym->name);
7175 : 30 : char *name = XALLOCAVEC (char, len_name + 1);
7176 : 210 : for (size_t i = 0; i < len_name; i++)
7177 : 180 : name[i] = TOUPPER (expr->value.function.isym->name[i]);
7178 : 30 : name[len_name] = '\0';
7179 : 30 : tree iname = gfc_build_addr_expr (pchar_type_node,
7180 : : gfc_build_cstring_const (name));
7181 : 30 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7182 : : "SHIFT argument (%ld) out of range 0:%ld "
7183 : : "in intrinsic %s",
7184 : : fold_convert (long_integer_type_node, args[1]),
7185 : : fold_convert (long_integer_type_node, num_bits),
7186 : : iname);
7187 : : }
7188 : :
7189 : 429 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
7190 : : args[1], num_bits);
7191 : :
7192 : 429 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
7193 : : bigshift, se->expr);
7194 : 429 : }
7195 : :
7196 : : /* ISHFT (I, SHIFT) = (abs (shift) >= BIT_SIZE (i))
7197 : : ? 0
7198 : : : ((shift >= 0) ? i << shift : i >> -shift)
7199 : : where all shifts are logical shifts. */
7200 : : static void
7201 : 318 : gfc_conv_intrinsic_ishft (gfc_se * se, gfc_expr * expr)
7202 : : {
7203 : 318 : tree args[2];
7204 : 318 : tree type;
7205 : 318 : tree utype;
7206 : 318 : tree tmp;
7207 : 318 : tree width;
7208 : 318 : tree num_bits;
7209 : 318 : tree cond;
7210 : 318 : tree lshift;
7211 : 318 : tree rshift;
7212 : :
7213 : 318 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
7214 : :
7215 : 318 : args[0] = gfc_evaluate_now (args[0], &se->pre);
7216 : 318 : args[1] = gfc_evaluate_now (args[1], &se->pre);
7217 : :
7218 : 318 : type = TREE_TYPE (args[0]);
7219 : 318 : utype = unsigned_type_for (type);
7220 : :
7221 : 318 : width = fold_build1_loc (input_location, ABS_EXPR, TREE_TYPE (args[1]),
7222 : : args[1]);
7223 : :
7224 : : /* Left shift if positive. */
7225 : 318 : lshift = fold_build2_loc (input_location, LSHIFT_EXPR, type, args[0], width);
7226 : :
7227 : : /* Right shift if negative.
7228 : : We convert to an unsigned type because we want a logical shift.
7229 : : The standard doesn't define the case of shifting negative
7230 : : numbers, and we try to be compatible with other compilers, most
7231 : : notably g77, here. */
7232 : 318 : rshift = fold_convert (type, fold_build2_loc (input_location, RSHIFT_EXPR,
7233 : : utype, convert (utype, args[0]), width));
7234 : :
7235 : 318 : tmp = fold_build2_loc (input_location, GE_EXPR, logical_type_node, args[1],
7236 : 318 : build_int_cst (TREE_TYPE (args[1]), 0));
7237 : 318 : tmp = fold_build3_loc (input_location, COND_EXPR, type, tmp, lshift, rshift);
7238 : :
7239 : : /* The Fortran standard allows shift widths <= BIT_SIZE(I), whereas
7240 : : gcc requires a shift width < BIT_SIZE(I), so we have to catch this
7241 : : special case. */
7242 : 318 : num_bits = build_int_cst (TREE_TYPE (args[1]), TYPE_PRECISION (type));
7243 : :
7244 : : /* Optionally generate code for runtime argument check. */
7245 : 318 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7246 : : {
7247 : 24 : tree outside = fold_build2_loc (input_location, GT_EXPR,
7248 : : logical_type_node, width, num_bits);
7249 : 24 : gfc_trans_runtime_check (true, false, outside, &se->pre, &expr->where,
7250 : : "SHIFT argument (%ld) out of range -%ld:%ld "
7251 : : "in intrinsic ISHFT",
7252 : : fold_convert (long_integer_type_node, args[1]),
7253 : : fold_convert (long_integer_type_node, num_bits),
7254 : : fold_convert (long_integer_type_node, num_bits));
7255 : : }
7256 : :
7257 : 318 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node, width,
7258 : : num_bits);
7259 : 318 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
7260 : 318 : build_int_cst (type, 0), tmp);
7261 : 318 : }
7262 : :
7263 : :
7264 : : /* Circular shift. AKA rotate or barrel shift. */
7265 : :
7266 : : static void
7267 : 658 : gfc_conv_intrinsic_ishftc (gfc_se * se, gfc_expr * expr)
7268 : : {
7269 : 658 : tree *args;
7270 : 658 : tree type;
7271 : 658 : tree tmp;
7272 : 658 : tree lrot;
7273 : 658 : tree rrot;
7274 : 658 : tree zero;
7275 : 658 : tree nbits;
7276 : 658 : unsigned int num_args;
7277 : :
7278 : 658 : num_args = gfc_intrinsic_argument_list_length (expr);
7279 : 658 : args = XALLOCAVEC (tree, num_args);
7280 : :
7281 : 658 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
7282 : :
7283 : 658 : type = TREE_TYPE (args[0]);
7284 : 658 : nbits = build_int_cst (long_integer_type_node, TYPE_PRECISION (type));
7285 : :
7286 : 658 : if (num_args == 3)
7287 : : {
7288 : 550 : gfc_expr *size = expr->value.function.actual->next->next->expr;
7289 : :
7290 : : /* Use a library function for the 3 parameter version. */
7291 : 550 : tree int4type = gfc_get_int_type (4);
7292 : :
7293 : : /* Treat optional SIZE argument when it is passed as an optional
7294 : : dummy. If SIZE is absent, the default value is BIT_SIZE(I). */
7295 : 550 : if (size->expr_type == EXPR_VARIABLE
7296 : 438 : && size->symtree->n.sym->attr.dummy
7297 : 438 : && size->symtree->n.sym->attr.optional)
7298 : : {
7299 : 36 : tree type_of_size = TREE_TYPE (args[2]);
7300 : 72 : args[2] = build3_loc (input_location, COND_EXPR, type_of_size,
7301 : 36 : gfc_conv_expr_present (size->symtree->n.sym),
7302 : : args[2], fold_convert (type_of_size, nbits));
7303 : : }
7304 : :
7305 : : /* We convert the first argument to at least 4 bytes, and
7306 : : convert back afterwards. This removes the need for library
7307 : : functions for all argument sizes, and function will be
7308 : : aligned to at least 32 bits, so there's no loss. */
7309 : 550 : if (expr->ts.kind < 4)
7310 : 242 : args[0] = convert (int4type, args[0]);
7311 : :
7312 : : /* Convert the SHIFT and SIZE args to INTEGER*4 otherwise we would
7313 : : need loads of library functions. They cannot have values >
7314 : : BIT_SIZE (I) so the conversion is safe. */
7315 : 550 : args[1] = convert (int4type, args[1]);
7316 : 550 : args[2] = convert (int4type, args[2]);
7317 : :
7318 : : /* Optionally generate code for runtime argument check. */
7319 : 550 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7320 : : {
7321 : 18 : tree size = fold_convert (long_integer_type_node, args[2]);
7322 : 18 : tree below = fold_build2_loc (input_location, LE_EXPR,
7323 : : logical_type_node, size,
7324 : 18 : build_int_cst (TREE_TYPE (args[1]), 0));
7325 : 18 : tree above = fold_build2_loc (input_location, GT_EXPR,
7326 : : logical_type_node, size, nbits);
7327 : 18 : tree scond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7328 : : logical_type_node, below, above);
7329 : 18 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7330 : : "SIZE argument (%ld) out of range 1:%ld "
7331 : : "in intrinsic ISHFTC", size, nbits);
7332 : 18 : tree width = fold_convert (long_integer_type_node, args[1]);
7333 : 18 : width = fold_build1_loc (input_location, ABS_EXPR,
7334 : : long_integer_type_node, width);
7335 : 18 : scond = fold_build2_loc (input_location, GT_EXPR,
7336 : : logical_type_node, width, size);
7337 : 18 : gfc_trans_runtime_check (true, false, scond, &se->pre, &expr->where,
7338 : : "SHIFT argument (%ld) out of range -%ld:%ld "
7339 : : "in intrinsic ISHFTC",
7340 : : fold_convert (long_integer_type_node, args[1]),
7341 : : size, size);
7342 : : }
7343 : :
7344 : 550 : switch (expr->ts.kind)
7345 : : {
7346 : 426 : case 1:
7347 : 426 : case 2:
7348 : 426 : case 4:
7349 : 426 : tmp = gfor_fndecl_math_ishftc4;
7350 : 426 : break;
7351 : 124 : case 8:
7352 : 124 : tmp = gfor_fndecl_math_ishftc8;
7353 : 124 : break;
7354 : 0 : case 16:
7355 : 0 : tmp = gfor_fndecl_math_ishftc16;
7356 : 0 : break;
7357 : 0 : default:
7358 : 0 : gcc_unreachable ();
7359 : : }
7360 : 550 : se->expr = build_call_expr_loc (input_location,
7361 : : tmp, 3, args[0], args[1], args[2]);
7362 : : /* Convert the result back to the original type, if we extended
7363 : : the first argument's width above. */
7364 : 550 : if (expr->ts.kind < 4)
7365 : 242 : se->expr = convert (type, se->expr);
7366 : :
7367 : 550 : return;
7368 : : }
7369 : :
7370 : : /* Evaluate arguments only once. */
7371 : 108 : args[0] = gfc_evaluate_now (args[0], &se->pre);
7372 : 108 : args[1] = gfc_evaluate_now (args[1], &se->pre);
7373 : :
7374 : : /* Optionally generate code for runtime argument check. */
7375 : 108 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
7376 : : {
7377 : 12 : tree width = fold_convert (long_integer_type_node, args[1]);
7378 : 12 : width = fold_build1_loc (input_location, ABS_EXPR,
7379 : : long_integer_type_node, width);
7380 : 12 : tree outside = fold_build2_loc (input_location, GT_EXPR,
7381 : : logical_type_node, width, nbits);
7382 : 12 : gfc_trans_runtime_check (true, false, outside, &se->pre, &expr->where,
7383 : : "SHIFT argument (%ld) out of range -%ld:%ld "
7384 : : "in intrinsic ISHFTC",
7385 : : fold_convert (long_integer_type_node, args[1]),
7386 : : nbits, nbits);
7387 : : }
7388 : :
7389 : : /* Rotate left if positive. */
7390 : 108 : lrot = fold_build2_loc (input_location, LROTATE_EXPR, type, args[0], args[1]);
7391 : :
7392 : : /* Rotate right if negative. */
7393 : 108 : tmp = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (args[1]),
7394 : : args[1]);
7395 : 108 : rrot = fold_build2_loc (input_location,RROTATE_EXPR, type, args[0], tmp);
7396 : :
7397 : 108 : zero = build_int_cst (TREE_TYPE (args[1]), 0);
7398 : 108 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node, args[1],
7399 : : zero);
7400 : 108 : rrot = fold_build3_loc (input_location, COND_EXPR, type, tmp, lrot, rrot);
7401 : :
7402 : : /* Do nothing if shift == 0. */
7403 : 108 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, args[1],
7404 : : zero);
7405 : 108 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, tmp, args[0],
7406 : : rrot);
7407 : : }
7408 : :
7409 : :
7410 : : /* LEADZ (i) = (i == 0) ? BIT_SIZE (i)
7411 : : : __builtin_clz(i) - (BIT_SIZE('int') - BIT_SIZE(i))
7412 : :
7413 : : The conditional expression is necessary because the result of LEADZ(0)
7414 : : is defined, but the result of __builtin_clz(0) is undefined for most
7415 : : targets.
7416 : :
7417 : : For INTEGER kinds smaller than the C 'int' type, we have to subtract the
7418 : : difference in bit size between the argument of LEADZ and the C int. */
7419 : :
7420 : : static void
7421 : 270 : gfc_conv_intrinsic_leadz (gfc_se * se, gfc_expr * expr)
7422 : : {
7423 : 270 : tree arg;
7424 : 270 : tree arg_type;
7425 : 270 : tree cond;
7426 : 270 : tree result_type;
7427 : 270 : tree leadz;
7428 : 270 : tree bit_size;
7429 : 270 : tree tmp;
7430 : 270 : tree func;
7431 : 270 : int s, argsize;
7432 : :
7433 : 270 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7434 : 270 : argsize = TYPE_PRECISION (TREE_TYPE (arg));
7435 : :
7436 : : /* Which variant of __builtin_clz* should we call? */
7437 : 270 : if (argsize <= INT_TYPE_SIZE)
7438 : : {
7439 : 183 : arg_type = unsigned_type_node;
7440 : 183 : func = builtin_decl_explicit (BUILT_IN_CLZ);
7441 : : }
7442 : 87 : else if (argsize <= LONG_TYPE_SIZE)
7443 : : {
7444 : 57 : arg_type = long_unsigned_type_node;
7445 : 57 : func = builtin_decl_explicit (BUILT_IN_CLZL);
7446 : : }
7447 : 30 : else if (argsize <= LONG_LONG_TYPE_SIZE)
7448 : : {
7449 : 0 : arg_type = long_long_unsigned_type_node;
7450 : 0 : func = builtin_decl_explicit (BUILT_IN_CLZLL);
7451 : : }
7452 : : else
7453 : : {
7454 : 30 : gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
7455 : 30 : arg_type = gfc_build_uint_type (argsize);
7456 : 30 : func = NULL_TREE;
7457 : : }
7458 : :
7459 : : /* Convert the actual argument twice: first, to the unsigned type of the
7460 : : same size; then, to the proper argument type for the built-in
7461 : : function. But the return type is of the default INTEGER kind. */
7462 : 270 : arg = fold_convert (gfc_build_uint_type (argsize), arg);
7463 : 270 : arg = fold_convert (arg_type, arg);
7464 : 270 : arg = gfc_evaluate_now (arg, &se->pre);
7465 : 270 : result_type = gfc_get_int_type (gfc_default_integer_kind);
7466 : :
7467 : : /* Compute LEADZ for the case i .ne. 0. */
7468 : 270 : if (func)
7469 : : {
7470 : 240 : s = TYPE_PRECISION (arg_type) - argsize;
7471 : 240 : tmp = fold_convert (result_type,
7472 : : build_call_expr_loc (input_location, func,
7473 : : 1, arg));
7474 : 240 : leadz = fold_build2_loc (input_location, MINUS_EXPR, result_type,
7475 : 240 : tmp, build_int_cst (result_type, s));
7476 : : }
7477 : : else
7478 : : {
7479 : : /* We end up here if the argument type is larger than 'long long'.
7480 : : We generate this code:
7481 : :
7482 : : if (x & (ULL_MAX << ULL_SIZE) != 0)
7483 : : return clzll ((unsigned long long) (x >> ULLSIZE));
7484 : : else
7485 : : return ULL_SIZE + clzll ((unsigned long long) x);
7486 : : where ULL_MAX is the largest value that a ULL_MAX can hold
7487 : : (0xFFFFFFFFFFFFFFFF for a 64-bit long long type), and ULLSIZE
7488 : : is the bit-size of the long long type (64 in this example). */
7489 : 30 : tree ullsize, ullmax, tmp1, tmp2, btmp;
7490 : :
7491 : 30 : ullsize = build_int_cst (result_type, LONG_LONG_TYPE_SIZE);
7492 : 30 : ullmax = fold_build1_loc (input_location, BIT_NOT_EXPR,
7493 : : long_long_unsigned_type_node,
7494 : 30 : build_int_cst (long_long_unsigned_type_node,
7495 : 30 : 0));
7496 : :
7497 : 30 : cond = fold_build2_loc (input_location, LSHIFT_EXPR, arg_type,
7498 : : fold_convert (arg_type, ullmax), ullsize);
7499 : 30 : cond = fold_build2_loc (input_location, BIT_AND_EXPR, arg_type,
7500 : : arg, cond);
7501 : 30 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
7502 : 30 : cond, build_int_cst (arg_type, 0));
7503 : :
7504 : 30 : tmp1 = fold_build2_loc (input_location, RSHIFT_EXPR, arg_type,
7505 : : arg, ullsize);
7506 : 30 : tmp1 = fold_convert (long_long_unsigned_type_node, tmp1);
7507 : 30 : btmp = builtin_decl_explicit (BUILT_IN_CLZLL);
7508 : 30 : tmp1 = fold_convert (result_type,
7509 : : build_call_expr_loc (input_location, btmp, 1, tmp1));
7510 : :
7511 : 30 : tmp2 = fold_convert (long_long_unsigned_type_node, arg);
7512 : 30 : btmp = builtin_decl_explicit (BUILT_IN_CLZLL);
7513 : 30 : tmp2 = fold_convert (result_type,
7514 : : build_call_expr_loc (input_location, btmp, 1, tmp2));
7515 : 30 : tmp2 = fold_build2_loc (input_location, PLUS_EXPR, result_type,
7516 : : tmp2, ullsize);
7517 : :
7518 : 30 : leadz = fold_build3_loc (input_location, COND_EXPR, result_type,
7519 : : cond, tmp1, tmp2);
7520 : : }
7521 : :
7522 : : /* Build BIT_SIZE. */
7523 : 270 : bit_size = build_int_cst (result_type, argsize);
7524 : :
7525 : 270 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
7526 : 270 : arg, build_int_cst (arg_type, 0));
7527 : 270 : se->expr = fold_build3_loc (input_location, COND_EXPR, result_type, cond,
7528 : : bit_size, leadz);
7529 : 270 : }
7530 : :
7531 : :
7532 : : /* TRAILZ(i) = (i == 0) ? BIT_SIZE (i) : __builtin_ctz(i)
7533 : :
7534 : : The conditional expression is necessary because the result of TRAILZ(0)
7535 : : is defined, but the result of __builtin_ctz(0) is undefined for most
7536 : : targets. */
7537 : :
7538 : : static void
7539 : 282 : gfc_conv_intrinsic_trailz (gfc_se * se, gfc_expr *expr)
7540 : : {
7541 : 282 : tree arg;
7542 : 282 : tree arg_type;
7543 : 282 : tree cond;
7544 : 282 : tree result_type;
7545 : 282 : tree trailz;
7546 : 282 : tree bit_size;
7547 : 282 : tree func;
7548 : 282 : int argsize;
7549 : :
7550 : 282 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7551 : 282 : argsize = TYPE_PRECISION (TREE_TYPE (arg));
7552 : :
7553 : : /* Which variant of __builtin_ctz* should we call? */
7554 : 282 : if (argsize <= INT_TYPE_SIZE)
7555 : : {
7556 : 195 : arg_type = unsigned_type_node;
7557 : 195 : func = builtin_decl_explicit (BUILT_IN_CTZ);
7558 : : }
7559 : 87 : else if (argsize <= LONG_TYPE_SIZE)
7560 : : {
7561 : 57 : arg_type = long_unsigned_type_node;
7562 : 57 : func = builtin_decl_explicit (BUILT_IN_CTZL);
7563 : : }
7564 : 30 : else if (argsize <= LONG_LONG_TYPE_SIZE)
7565 : : {
7566 : 0 : arg_type = long_long_unsigned_type_node;
7567 : 0 : func = builtin_decl_explicit (BUILT_IN_CTZLL);
7568 : : }
7569 : : else
7570 : : {
7571 : 30 : gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
7572 : 30 : arg_type = gfc_build_uint_type (argsize);
7573 : 30 : func = NULL_TREE;
7574 : : }
7575 : :
7576 : : /* Convert the actual argument twice: first, to the unsigned type of the
7577 : : same size; then, to the proper argument type for the built-in
7578 : : function. But the return type is of the default INTEGER kind. */
7579 : 282 : arg = fold_convert (gfc_build_uint_type (argsize), arg);
7580 : 282 : arg = fold_convert (arg_type, arg);
7581 : 282 : arg = gfc_evaluate_now (arg, &se->pre);
7582 : 282 : result_type = gfc_get_int_type (gfc_default_integer_kind);
7583 : :
7584 : : /* Compute TRAILZ for the case i .ne. 0. */
7585 : 282 : if (func)
7586 : 252 : trailz = fold_convert (result_type, build_call_expr_loc (input_location,
7587 : : func, 1, arg));
7588 : : else
7589 : : {
7590 : : /* We end up here if the argument type is larger than 'long long'.
7591 : : We generate this code:
7592 : :
7593 : : if ((x & ULL_MAX) == 0)
7594 : : return ULL_SIZE + ctzll ((unsigned long long) (x >> ULLSIZE));
7595 : : else
7596 : : return ctzll ((unsigned long long) x);
7597 : :
7598 : : where ULL_MAX is the largest value that a ULL_MAX can hold
7599 : : (0xFFFFFFFFFFFFFFFF for a 64-bit long long type), and ULLSIZE
7600 : : is the bit-size of the long long type (64 in this example). */
7601 : 30 : tree ullsize, ullmax, tmp1, tmp2, btmp;
7602 : :
7603 : 30 : ullsize = build_int_cst (result_type, LONG_LONG_TYPE_SIZE);
7604 : 30 : ullmax = fold_build1_loc (input_location, BIT_NOT_EXPR,
7605 : : long_long_unsigned_type_node,
7606 : 30 : build_int_cst (long_long_unsigned_type_node, 0));
7607 : :
7608 : 30 : cond = fold_build2_loc (input_location, BIT_AND_EXPR, arg_type, arg,
7609 : : fold_convert (arg_type, ullmax));
7610 : 30 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, cond,
7611 : 30 : build_int_cst (arg_type, 0));
7612 : :
7613 : 30 : tmp1 = fold_build2_loc (input_location, RSHIFT_EXPR, arg_type,
7614 : : arg, ullsize);
7615 : 30 : tmp1 = fold_convert (long_long_unsigned_type_node, tmp1);
7616 : 30 : btmp = builtin_decl_explicit (BUILT_IN_CTZLL);
7617 : 30 : tmp1 = fold_convert (result_type,
7618 : : build_call_expr_loc (input_location, btmp, 1, tmp1));
7619 : 30 : tmp1 = fold_build2_loc (input_location, PLUS_EXPR, result_type,
7620 : : tmp1, ullsize);
7621 : :
7622 : 30 : tmp2 = fold_convert (long_long_unsigned_type_node, arg);
7623 : 30 : btmp = builtin_decl_explicit (BUILT_IN_CTZLL);
7624 : 30 : tmp2 = fold_convert (result_type,
7625 : : build_call_expr_loc (input_location, btmp, 1, tmp2));
7626 : :
7627 : 30 : trailz = fold_build3_loc (input_location, COND_EXPR, result_type,
7628 : : cond, tmp1, tmp2);
7629 : : }
7630 : :
7631 : : /* Build BIT_SIZE. */
7632 : 282 : bit_size = build_int_cst (result_type, argsize);
7633 : :
7634 : 282 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
7635 : 282 : arg, build_int_cst (arg_type, 0));
7636 : 282 : se->expr = fold_build3_loc (input_location, COND_EXPR, result_type, cond,
7637 : : bit_size, trailz);
7638 : 282 : }
7639 : :
7640 : : /* Using __builtin_popcount for POPCNT and __builtin_parity for POPPAR;
7641 : : for types larger than "long long", we call the long long built-in for
7642 : : the lower and higher bits and combine the result. */
7643 : :
7644 : : static void
7645 : 134 : gfc_conv_intrinsic_popcnt_poppar (gfc_se * se, gfc_expr *expr, int parity)
7646 : : {
7647 : 134 : tree arg;
7648 : 134 : tree arg_type;
7649 : 134 : tree result_type;
7650 : 134 : tree func;
7651 : 134 : int argsize;
7652 : :
7653 : 134 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7654 : 134 : argsize = TYPE_PRECISION (TREE_TYPE (arg));
7655 : 134 : result_type = gfc_get_int_type (gfc_default_integer_kind);
7656 : :
7657 : : /* Which variant of the builtin should we call? */
7658 : 134 : if (argsize <= INT_TYPE_SIZE)
7659 : : {
7660 : 108 : arg_type = unsigned_type_node;
7661 : 198 : func = builtin_decl_explicit (parity
7662 : : ? BUILT_IN_PARITY
7663 : : : BUILT_IN_POPCOUNT);
7664 : : }
7665 : 26 : else if (argsize <= LONG_TYPE_SIZE)
7666 : : {
7667 : 12 : arg_type = long_unsigned_type_node;
7668 : 18 : func = builtin_decl_explicit (parity
7669 : : ? BUILT_IN_PARITYL
7670 : : : BUILT_IN_POPCOUNTL);
7671 : : }
7672 : 14 : else if (argsize <= LONG_LONG_TYPE_SIZE)
7673 : : {
7674 : 0 : arg_type = long_long_unsigned_type_node;
7675 : 0 : func = builtin_decl_explicit (parity
7676 : : ? BUILT_IN_PARITYLL
7677 : : : BUILT_IN_POPCOUNTLL);
7678 : : }
7679 : : else
7680 : : {
7681 : : /* Our argument type is larger than 'long long', which mean none
7682 : : of the POPCOUNT builtins covers it. We thus call the 'long long'
7683 : : variant multiple times, and add the results. */
7684 : 14 : tree utype, arg2, call1, call2;
7685 : :
7686 : : /* For now, we only cover the case where argsize is twice as large
7687 : : as 'long long'. */
7688 : 14 : gcc_assert (argsize == 2 * LONG_LONG_TYPE_SIZE);
7689 : :
7690 : 21 : func = builtin_decl_explicit (parity
7691 : : ? BUILT_IN_PARITYLL
7692 : : : BUILT_IN_POPCOUNTLL);
7693 : :
7694 : : /* Convert it to an integer, and store into a variable. */
7695 : 14 : utype = gfc_build_uint_type (argsize);
7696 : 14 : arg = fold_convert (utype, arg);
7697 : 14 : arg = gfc_evaluate_now (arg, &se->pre);
7698 : :
7699 : : /* Call the builtin twice. */
7700 : 14 : call1 = build_call_expr_loc (input_location, func, 1,
7701 : : fold_convert (long_long_unsigned_type_node,
7702 : : arg));
7703 : :
7704 : 14 : arg2 = fold_build2_loc (input_location, RSHIFT_EXPR, utype, arg,
7705 : 14 : build_int_cst (utype, LONG_LONG_TYPE_SIZE));
7706 : 14 : call2 = build_call_expr_loc (input_location, func, 1,
7707 : : fold_convert (long_long_unsigned_type_node,
7708 : : arg2));
7709 : :
7710 : : /* Combine the results. */
7711 : 14 : if (parity)
7712 : 7 : se->expr = fold_build2_loc (input_location, BIT_XOR_EXPR,
7713 : : integer_type_node, call1, call2);
7714 : : else
7715 : 7 : se->expr = fold_build2_loc (input_location, PLUS_EXPR,
7716 : : integer_type_node, call1, call2);
7717 : :
7718 : 14 : se->expr = convert (result_type, se->expr);
7719 : 14 : return;
7720 : : }
7721 : :
7722 : : /* Convert the actual argument twice: first, to the unsigned type of the
7723 : : same size; then, to the proper argument type for the built-in
7724 : : function. */
7725 : 120 : arg = fold_convert (gfc_build_uint_type (argsize), arg);
7726 : 120 : arg = fold_convert (arg_type, arg);
7727 : :
7728 : 120 : se->expr = fold_convert (result_type,
7729 : : build_call_expr_loc (input_location, func, 1, arg));
7730 : : }
7731 : :
7732 : :
7733 : : /* Process an intrinsic with unspecified argument-types that has an optional
7734 : : argument (which could be of type character), e.g. EOSHIFT. For those, we
7735 : : need to append the string length of the optional argument if it is not
7736 : : present and the type is really character.
7737 : : primary specifies the position (starting at 1) of the non-optional argument
7738 : : specifying the type and optional gives the position of the optional
7739 : : argument in the arglist. */
7740 : :
7741 : : static void
7742 : 5886 : conv_generic_with_optional_char_arg (gfc_se* se, gfc_expr* expr,
7743 : : unsigned primary, unsigned optional)
7744 : : {
7745 : 5886 : gfc_actual_arglist* prim_arg;
7746 : 5886 : gfc_actual_arglist* opt_arg;
7747 : 5886 : unsigned cur_pos;
7748 : 5886 : gfc_actual_arglist* arg;
7749 : 5886 : gfc_symbol* sym;
7750 : 5886 : vec<tree, va_gc> *append_args;
7751 : :
7752 : : /* Find the two arguments given as position. */
7753 : 5886 : cur_pos = 0;
7754 : 5886 : prim_arg = NULL;
7755 : 5886 : opt_arg = NULL;
7756 : 17658 : for (arg = expr->value.function.actual; arg; arg = arg->next)
7757 : : {
7758 : 17658 : ++cur_pos;
7759 : :
7760 : 17658 : if (cur_pos == primary)
7761 : 5886 : prim_arg = arg;
7762 : 17658 : if (cur_pos == optional)
7763 : 5886 : opt_arg = arg;
7764 : :
7765 : 17658 : if (cur_pos >= primary && cur_pos >= optional)
7766 : : break;
7767 : : }
7768 : 5886 : gcc_assert (prim_arg);
7769 : 5886 : gcc_assert (prim_arg->expr);
7770 : 5886 : gcc_assert (opt_arg);
7771 : :
7772 : : /* If we do have type CHARACTER and the optional argument is really absent,
7773 : : append a dummy 0 as string length. */
7774 : 5886 : append_args = NULL;
7775 : 5886 : if (prim_arg->expr->ts.type == BT_CHARACTER && !opt_arg->expr)
7776 : : {
7777 : 606 : tree dummy;
7778 : :
7779 : 606 : dummy = build_int_cst (gfc_charlen_type_node, 0);
7780 : 606 : vec_alloc (append_args, 1);
7781 : 606 : append_args->quick_push (dummy);
7782 : : }
7783 : :
7784 : : /* Build the call itself. */
7785 : 5886 : gcc_assert (!se->ignore_optional);
7786 : 5886 : sym = gfc_get_symbol_for_expr (expr, false);
7787 : 5886 : gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
7788 : : append_args);
7789 : 5886 : gfc_free_symbol (sym);
7790 : 5886 : }
7791 : :
7792 : : /* The length of a character string. */
7793 : : static void
7794 : 5548 : gfc_conv_intrinsic_len (gfc_se * se, gfc_expr * expr)
7795 : : {
7796 : 5548 : tree len;
7797 : 5548 : tree type;
7798 : 5548 : tree decl;
7799 : 5548 : gfc_symbol *sym;
7800 : 5548 : gfc_se argse;
7801 : 5548 : gfc_expr *arg;
7802 : :
7803 : 5548 : gcc_assert (!se->ss);
7804 : :
7805 : 5548 : arg = expr->value.function.actual->expr;
7806 : :
7807 : 5548 : type = gfc_typenode_for_spec (&expr->ts);
7808 : 5548 : switch (arg->expr_type)
7809 : : {
7810 : 0 : case EXPR_CONSTANT:
7811 : 0 : len = build_int_cst (gfc_charlen_type_node, arg->value.character.length);
7812 : 0 : break;
7813 : :
7814 : 2 : case EXPR_ARRAY:
7815 : : /* Obtain the string length from the function used by
7816 : : trans-array.cc(gfc_trans_array_constructor). */
7817 : 2 : len = NULL_TREE;
7818 : 2 : get_array_ctor_strlen (&se->pre, arg->value.constructor, &len);
7819 : 2 : break;
7820 : :
7821 : 4963 : case EXPR_VARIABLE:
7822 : 4963 : if (arg->ref == NULL
7823 : 2250 : || (arg->ref->next == NULL && arg->ref->type == REF_ARRAY))
7824 : : {
7825 : : /* This doesn't catch all cases.
7826 : : See http://gcc.gnu.org/ml/fortran/2004-06/msg00165.html
7827 : : and the surrounding thread. */
7828 : 4443 : sym = arg->symtree->n.sym;
7829 : 4443 : decl = gfc_get_symbol_decl (sym);
7830 : 4443 : if (decl == current_function_decl && sym->attr.function
7831 : 53 : && (sym->result == sym))
7832 : 53 : decl = gfc_get_fake_result_decl (sym, 0);
7833 : :
7834 : 4443 : len = sym->ts.u.cl->backend_decl;
7835 : 4443 : gcc_assert (len);
7836 : : break;
7837 : : }
7838 : :
7839 : : /* Fall through. */
7840 : :
7841 : 1103 : default:
7842 : 1103 : gfc_init_se (&argse, se);
7843 : 1103 : if (arg->rank == 0)
7844 : 986 : gfc_conv_expr (&argse, arg);
7845 : : else
7846 : 117 : gfc_conv_expr_descriptor (&argse, arg);
7847 : 1103 : gfc_add_block_to_block (&se->pre, &argse.pre);
7848 : 1103 : gfc_add_block_to_block (&se->post, &argse.post);
7849 : 1103 : len = argse.string_length;
7850 : 1103 : break;
7851 : : }
7852 : 5548 : se->expr = convert (type, len);
7853 : 5548 : }
7854 : :
7855 : : /* The length of a character string not including trailing blanks. */
7856 : : static void
7857 : 2276 : gfc_conv_intrinsic_len_trim (gfc_se * se, gfc_expr * expr)
7858 : : {
7859 : 2276 : int kind = expr->value.function.actual->expr->ts.kind;
7860 : 2276 : tree args[2], type, fndecl;
7861 : :
7862 : 2276 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
7863 : 2276 : type = gfc_typenode_for_spec (&expr->ts);
7864 : :
7865 : 2276 : if (kind == 1)
7866 : 1899 : fndecl = gfor_fndecl_string_len_trim;
7867 : 377 : else if (kind == 4)
7868 : 377 : fndecl = gfor_fndecl_string_len_trim_char4;
7869 : : else
7870 : 0 : gcc_unreachable ();
7871 : :
7872 : 2276 : se->expr = build_call_expr_loc (input_location,
7873 : : fndecl, 2, args[0], args[1]);
7874 : 2276 : se->expr = convert (type, se->expr);
7875 : 2276 : }
7876 : :
7877 : :
7878 : : /* Returns the starting position of a substring within a string. */
7879 : :
7880 : : static void
7881 : 738 : gfc_conv_intrinsic_index_scan_verify (gfc_se * se, gfc_expr * expr,
7882 : : tree function)
7883 : : {
7884 : 738 : tree logical4_type_node = gfc_get_logical_type (4);
7885 : 738 : tree type;
7886 : 738 : tree fndecl;
7887 : 738 : tree *args;
7888 : 738 : unsigned int num_args;
7889 : :
7890 : 738 : args = XALLOCAVEC (tree, 5);
7891 : :
7892 : : /* Get number of arguments; characters count double due to the
7893 : : string length argument. Kind= is not passed to the library
7894 : : and thus ignored. */
7895 : 738 : if (expr->value.function.actual->next->next->expr == NULL)
7896 : : num_args = 4;
7897 : : else
7898 : 304 : num_args = 5;
7899 : :
7900 : 738 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
7901 : 738 : type = gfc_typenode_for_spec (&expr->ts);
7902 : :
7903 : 738 : if (num_args == 4)
7904 : 434 : args[4] = build_int_cst (logical4_type_node, 0);
7905 : : else
7906 : 304 : args[4] = convert (logical4_type_node, args[4]);
7907 : :
7908 : 738 : fndecl = build_addr (function);
7909 : 738 : se->expr = build_call_array_loc (input_location,
7910 : 738 : TREE_TYPE (TREE_TYPE (function)), fndecl,
7911 : : 5, args);
7912 : 738 : se->expr = convert (type, se->expr);
7913 : :
7914 : 738 : }
7915 : :
7916 : : /* The ascii value for a single character. */
7917 : : static void
7918 : 2033 : gfc_conv_intrinsic_ichar (gfc_se * se, gfc_expr * expr)
7919 : : {
7920 : 2033 : tree args[3], type, pchartype;
7921 : 2033 : int nargs;
7922 : :
7923 : 2033 : nargs = gfc_intrinsic_argument_list_length (expr);
7924 : 2033 : gfc_conv_intrinsic_function_args (se, expr, args, nargs);
7925 : 2033 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (args[1])));
7926 : 2033 : pchartype = gfc_get_pchar_type (expr->value.function.actual->expr->ts.kind);
7927 : 2033 : args[1] = fold_build1_loc (input_location, NOP_EXPR, pchartype, args[1]);
7928 : 2033 : type = gfc_typenode_for_spec (&expr->ts);
7929 : :
7930 : 2033 : se->expr = build_fold_indirect_ref_loc (input_location,
7931 : : args[1]);
7932 : 2033 : se->expr = convert (type, se->expr);
7933 : 2033 : }
7934 : :
7935 : :
7936 : : /* Intrinsic ISNAN calls __builtin_isnan. */
7937 : :
7938 : : static void
7939 : 432 : gfc_conv_intrinsic_isnan (gfc_se * se, gfc_expr * expr)
7940 : : {
7941 : 432 : tree arg;
7942 : :
7943 : 432 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7944 : 432 : se->expr = build_call_expr_loc (input_location,
7945 : : builtin_decl_explicit (BUILT_IN_ISNAN),
7946 : : 1, arg);
7947 : 864 : STRIP_TYPE_NOPS (se->expr);
7948 : 432 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
7949 : 432 : }
7950 : :
7951 : :
7952 : : /* Intrinsics IS_IOSTAT_END and IS_IOSTAT_EOR just need to compare
7953 : : their argument against a constant integer value. */
7954 : :
7955 : : static void
7956 : 24 : gfc_conv_has_intvalue (gfc_se * se, gfc_expr * expr, const int value)
7957 : : {
7958 : 24 : tree arg;
7959 : :
7960 : 24 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
7961 : 24 : se->expr = fold_build2_loc (input_location, EQ_EXPR,
7962 : : gfc_typenode_for_spec (&expr->ts),
7963 : 24 : arg, build_int_cst (TREE_TYPE (arg), value));
7964 : 24 : }
7965 : :
7966 : :
7967 : :
7968 : : /* MERGE (tsource, fsource, mask) = mask ? tsource : fsource. */
7969 : :
7970 : : static void
7971 : 954 : gfc_conv_intrinsic_merge (gfc_se * se, gfc_expr * expr)
7972 : : {
7973 : 954 : tree tsource;
7974 : 954 : tree fsource;
7975 : 954 : tree mask;
7976 : 954 : tree type;
7977 : 954 : tree len, len2;
7978 : 954 : tree *args;
7979 : 954 : unsigned int num_args;
7980 : :
7981 : 954 : num_args = gfc_intrinsic_argument_list_length (expr);
7982 : 954 : args = XALLOCAVEC (tree, num_args);
7983 : :
7984 : 954 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
7985 : 954 : if (expr->ts.type != BT_CHARACTER)
7986 : : {
7987 : 422 : tsource = args[0];
7988 : 422 : fsource = args[1];
7989 : 422 : mask = args[2];
7990 : : }
7991 : : else
7992 : : {
7993 : : /* We do the same as in the non-character case, but the argument
7994 : : list is different because of the string length arguments. We
7995 : : also have to set the string length for the result. */
7996 : 532 : len = args[0];
7997 : 532 : tsource = args[1];
7998 : 532 : len2 = args[2];
7999 : 532 : fsource = args[3];
8000 : 532 : mask = args[4];
8001 : :
8002 : 532 : gfc_trans_same_strlen_check ("MERGE intrinsic", &expr->where, len, len2,
8003 : : &se->pre);
8004 : 532 : se->string_length = len;
8005 : : }
8006 : 954 : tsource = gfc_evaluate_now (tsource, &se->pre);
8007 : 954 : fsource = gfc_evaluate_now (fsource, &se->pre);
8008 : 954 : mask = gfc_evaluate_now (mask, &se->pre);
8009 : 954 : type = TREE_TYPE (tsource);
8010 : 954 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, mask, tsource,
8011 : : fold_convert (type, fsource));
8012 : 954 : }
8013 : :
8014 : :
8015 : : /* MERGE_BITS (I, J, MASK) = (I & MASK) | (I & (~MASK)). */
8016 : :
8017 : : static void
8018 : 42 : gfc_conv_intrinsic_merge_bits (gfc_se * se, gfc_expr * expr)
8019 : : {
8020 : 42 : tree args[3], mask, type;
8021 : :
8022 : 42 : gfc_conv_intrinsic_function_args (se, expr, args, 3);
8023 : 42 : mask = gfc_evaluate_now (args[2], &se->pre);
8024 : :
8025 : 42 : type = TREE_TYPE (args[0]);
8026 : 42 : gcc_assert (TREE_TYPE (args[1]) == type);
8027 : 42 : gcc_assert (TREE_TYPE (mask) == type);
8028 : :
8029 : 42 : args[0] = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[0], mask);
8030 : 42 : args[1] = fold_build2_loc (input_location, BIT_AND_EXPR, type, args[1],
8031 : : fold_build1_loc (input_location, BIT_NOT_EXPR,
8032 : : type, mask));
8033 : 42 : se->expr = fold_build2_loc (input_location, BIT_IOR_EXPR, type,
8034 : : args[0], args[1]);
8035 : 42 : }
8036 : :
8037 : :
8038 : : /* MASKL(n) = n == 0 ? 0 : (~0) << (BIT_SIZE - n)
8039 : : MASKR(n) = n == BIT_SIZE ? ~0 : ~((~0) << n) */
8040 : :
8041 : : static void
8042 : 64 : gfc_conv_intrinsic_mask (gfc_se * se, gfc_expr * expr, int left)
8043 : : {
8044 : 64 : tree arg, allones, type, utype, res, cond, bitsize;
8045 : 64 : int i;
8046 : :
8047 : 64 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
8048 : 64 : arg = gfc_evaluate_now (arg, &se->pre);
8049 : :
8050 : 64 : type = gfc_get_int_type (expr->ts.kind);
8051 : 64 : utype = unsigned_type_for (type);
8052 : :
8053 : 64 : i = gfc_validate_kind (BT_INTEGER, expr->ts.kind, false);
8054 : 64 : bitsize = build_int_cst (TREE_TYPE (arg), gfc_integer_kinds[i].bit_size);
8055 : :
8056 : 64 : allones = fold_build1_loc (input_location, BIT_NOT_EXPR, utype,
8057 : 64 : build_int_cst (utype, 0));
8058 : :
8059 : 64 : if (left)
8060 : : {
8061 : : /* Left-justified mask. */
8062 : 32 : res = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (arg),
8063 : : bitsize, arg);
8064 : 32 : res = fold_build2_loc (input_location, LSHIFT_EXPR, utype, allones,
8065 : : fold_convert (utype, res));
8066 : :
8067 : : /* Special case arg == 0, because SHIFT_EXPR wants a shift strictly
8068 : : smaller than type width. */
8069 : 32 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, arg,
8070 : 32 : build_int_cst (TREE_TYPE (arg), 0));
8071 : 32 : res = fold_build3_loc (input_location, COND_EXPR, utype, cond,
8072 : 32 : build_int_cst (utype, 0), res);
8073 : : }
8074 : : else
8075 : : {
8076 : : /* Right-justified mask. */
8077 : 32 : res = fold_build2_loc (input_location, LSHIFT_EXPR, utype, allones,
8078 : : fold_convert (utype, arg));
8079 : 32 : res = fold_build1_loc (input_location, BIT_NOT_EXPR, utype, res);
8080 : :
8081 : : /* Special case agr == bit_size, because SHIFT_EXPR wants a shift
8082 : : strictly smaller than type width. */
8083 : 32 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
8084 : : arg, bitsize);
8085 : 32 : res = fold_build3_loc (input_location, COND_EXPR, utype,
8086 : : cond, allones, res);
8087 : : }
8088 : :
8089 : 64 : se->expr = fold_convert (type, res);
8090 : 64 : }
8091 : :
8092 : :
8093 : : /* FRACTION (s) is translated into:
8094 : : isfinite (s) ? frexp (s, &dummy_int) : NaN */
8095 : : static void
8096 : 60 : gfc_conv_intrinsic_fraction (gfc_se * se, gfc_expr * expr)
8097 : : {
8098 : 60 : tree arg, type, tmp, res, frexp, cond;
8099 : :
8100 : 60 : frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
8101 : :
8102 : 60 : type = gfc_typenode_for_spec (&expr->ts);
8103 : 60 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
8104 : 60 : arg = gfc_evaluate_now (arg, &se->pre);
8105 : :
8106 : 60 : cond = build_call_expr_loc (input_location,
8107 : : builtin_decl_explicit (BUILT_IN_ISFINITE),
8108 : : 1, arg);
8109 : :
8110 : 60 : tmp = gfc_create_var (integer_type_node, NULL);
8111 : 60 : res = build_call_expr_loc (input_location, frexp, 2,
8112 : : fold_convert (type, arg),
8113 : : gfc_build_addr_expr (NULL_TREE, tmp));
8114 : 60 : res = fold_convert (type, res);
8115 : :
8116 : 60 : se->expr = fold_build3_loc (input_location, COND_EXPR, type,
8117 : : cond, res, gfc_build_nan (type, ""));
8118 : 60 : }
8119 : :
8120 : :
8121 : : /* NEAREST (s, dir) is translated into
8122 : : tmp = copysign (HUGE_VAL, dir);
8123 : : return nextafter (s, tmp);
8124 : : */
8125 : : static void
8126 : 1610 : gfc_conv_intrinsic_nearest (gfc_se * se, gfc_expr * expr)
8127 : : {
8128 : 1610 : tree args[2], type, tmp, nextafter, copysign, huge_val;
8129 : :
8130 : 1610 : nextafter = gfc_builtin_decl_for_float_kind (BUILT_IN_NEXTAFTER, expr->ts.kind);
8131 : 1610 : copysign = gfc_builtin_decl_for_float_kind (BUILT_IN_COPYSIGN, expr->ts.kind);
8132 : :
8133 : 1610 : type = gfc_typenode_for_spec (&expr->ts);
8134 : 1610 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
8135 : :
8136 : 1610 : huge_val = gfc_build_inf_or_huge (type, expr->ts.kind);
8137 : 1610 : tmp = build_call_expr_loc (input_location, copysign, 2, huge_val,
8138 : : fold_convert (type, args[1]));
8139 : 1610 : se->expr = build_call_expr_loc (input_location, nextafter, 2,
8140 : : fold_convert (type, args[0]), tmp);
8141 : 1610 : se->expr = fold_convert (type, se->expr);
8142 : 1610 : }
8143 : :
8144 : :
8145 : : /* SPACING (s) is translated into
8146 : : int e;
8147 : : if (!isfinite (s))
8148 : : res = NaN;
8149 : : else if (s == 0)
8150 : : res = tiny;
8151 : : else
8152 : : {
8153 : : frexp (s, &e);
8154 : : e = e - prec;
8155 : : e = MAX_EXPR (e, emin);
8156 : : res = scalbn (1., e);
8157 : : }
8158 : : return res;
8159 : :
8160 : : where prec is the precision of s, gfc_real_kinds[k].digits,
8161 : : emin is min_exponent - 1, gfc_real_kinds[k].min_exponent - 1,
8162 : : and tiny is tiny(s), gfc_real_kinds[k].tiny. */
8163 : :
8164 : : static void
8165 : 70 : gfc_conv_intrinsic_spacing (gfc_se * se, gfc_expr * expr)
8166 : : {
8167 : 70 : tree arg, type, prec, emin, tiny, res, e;
8168 : 70 : tree cond, nan, tmp, frexp, scalbn;
8169 : 70 : int k;
8170 : 70 : stmtblock_t block;
8171 : :
8172 : 70 : k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
8173 : 70 : prec = build_int_cst (integer_type_node, gfc_real_kinds[k].digits);
8174 : 70 : emin = build_int_cst (integer_type_node, gfc_real_kinds[k].min_exponent - 1);
8175 : 70 : tiny = gfc_conv_mpfr_to_tree (gfc_real_kinds[k].tiny, expr->ts.kind, 0);
8176 : :
8177 : 70 : frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
8178 : 70 : scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
8179 : :
8180 : 70 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
8181 : 70 : arg = gfc_evaluate_now (arg, &se->pre);
8182 : :
8183 : 70 : type = gfc_typenode_for_spec (&expr->ts);
8184 : 70 : e = gfc_create_var (integer_type_node, NULL);
8185 : 70 : res = gfc_create_var (type, NULL);
8186 : :
8187 : :
8188 : : /* Build the block for s /= 0. */
8189 : 70 : gfc_start_block (&block);
8190 : 70 : tmp = build_call_expr_loc (input_location, frexp, 2, arg,
8191 : : gfc_build_addr_expr (NULL_TREE, e));
8192 : 70 : gfc_add_expr_to_block (&block, tmp);
8193 : :
8194 : 70 : tmp = fold_build2_loc (input_location, MINUS_EXPR, integer_type_node, e,
8195 : : prec);
8196 : 70 : gfc_add_modify (&block, e, fold_build2_loc (input_location, MAX_EXPR,
8197 : : integer_type_node, tmp, emin));
8198 : :
8199 : 70 : tmp = build_call_expr_loc (input_location, scalbn, 2,
8200 : 70 : build_real_from_int_cst (type, integer_one_node), e);
8201 : 70 : gfc_add_modify (&block, res, tmp);
8202 : :
8203 : : /* Finish by building the IF statement for value zero. */
8204 : 70 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, arg,
8205 : 70 : build_real_from_int_cst (type, integer_zero_node));
8206 : 70 : tmp = build3_v (COND_EXPR, cond, build2_v (MODIFY_EXPR, res, tiny),
8207 : : gfc_finish_block (&block));
8208 : :
8209 : : /* And deal with infinities and NaNs. */
8210 : 70 : cond = build_call_expr_loc (input_location,
8211 : : builtin_decl_explicit (BUILT_IN_ISFINITE),
8212 : : 1, arg);
8213 : 70 : nan = gfc_build_nan (type, "");
8214 : 70 : tmp = build3_v (COND_EXPR, cond, tmp, build2_v (MODIFY_EXPR, res, nan));
8215 : :
8216 : 70 : gfc_add_expr_to_block (&se->pre, tmp);
8217 : 70 : se->expr = res;
8218 : 70 : }
8219 : :
8220 : :
8221 : : /* RRSPACING (s) is translated into
8222 : : int e;
8223 : : real x;
8224 : : x = fabs (s);
8225 : : if (isfinite (x))
8226 : : {
8227 : : if (x != 0)
8228 : : {
8229 : : frexp (s, &e);
8230 : : x = scalbn (x, precision - e);
8231 : : }
8232 : : }
8233 : : else
8234 : : x = NaN;
8235 : : return x;
8236 : :
8237 : : where precision is gfc_real_kinds[k].digits. */
8238 : :
8239 : : static void
8240 : 48 : gfc_conv_intrinsic_rrspacing (gfc_se * se, gfc_expr * expr)
8241 : : {
8242 : 48 : tree arg, type, e, x, cond, nan, stmt, tmp, frexp, scalbn, fabs;
8243 : 48 : int prec, k;
8244 : 48 : stmtblock_t block;
8245 : :
8246 : 48 : k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
8247 : 48 : prec = gfc_real_kinds[k].digits;
8248 : :
8249 : 48 : frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
8250 : 48 : scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
8251 : 48 : fabs = gfc_builtin_decl_for_float_kind (BUILT_IN_FABS, expr->ts.kind);
8252 : :
8253 : 48 : type = gfc_typenode_for_spec (&expr->ts);
8254 : 48 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
8255 : 48 : arg = gfc_evaluate_now (arg, &se->pre);
8256 : :
8257 : 48 : e = gfc_create_var (integer_type_node, NULL);
8258 : 48 : x = gfc_create_var (type, NULL);
8259 : 48 : gfc_add_modify (&se->pre, x,
8260 : : build_call_expr_loc (input_location, fabs, 1, arg));
8261 : :
8262 : :
8263 : 48 : gfc_start_block (&block);
8264 : 48 : tmp = build_call_expr_loc (input_location, frexp, 2, arg,
8265 : : gfc_build_addr_expr (NULL_TREE, e));
8266 : 48 : gfc_add_expr_to_block (&block, tmp);
8267 : :
8268 : 48 : tmp = fold_build2_loc (input_location, MINUS_EXPR, integer_type_node,
8269 : 48 : build_int_cst (integer_type_node, prec), e);
8270 : 48 : tmp = build_call_expr_loc (input_location, scalbn, 2, x, tmp);
8271 : 48 : gfc_add_modify (&block, x, tmp);
8272 : 48 : stmt = gfc_finish_block (&block);
8273 : :
8274 : : /* if (x != 0) */
8275 : 48 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node, x,
8276 : 48 : build_real_from_int_cst (type, integer_zero_node));
8277 : 48 : tmp = build3_v (COND_EXPR, cond, stmt, build_empty_stmt (input_location));
8278 : :
8279 : : /* And deal with infinities and NaNs. */
8280 : 48 : cond = build_call_expr_loc (input_location,
8281 : : builtin_decl_explicit (BUILT_IN_ISFINITE),
8282 : : 1, x);
8283 : 48 : nan = gfc_build_nan (type, "");
8284 : 48 : tmp = build3_v (COND_EXPR, cond, tmp, build2_v (MODIFY_EXPR, x, nan));
8285 : :
8286 : 48 : gfc_add_expr_to_block (&se->pre, tmp);
8287 : 48 : se->expr = fold_convert (type, x);
8288 : 48 : }
8289 : :
8290 : :
8291 : : /* SCALE (s, i) is translated into scalbn (s, i). */
8292 : : static void
8293 : 72 : gfc_conv_intrinsic_scale (gfc_se * se, gfc_expr * expr)
8294 : : {
8295 : 72 : tree args[2], type, scalbn;
8296 : :
8297 : 72 : scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
8298 : :
8299 : 72 : type = gfc_typenode_for_spec (&expr->ts);
8300 : 72 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
8301 : 72 : se->expr = build_call_expr_loc (input_location, scalbn, 2,
8302 : : fold_convert (type, args[0]),
8303 : : fold_convert (integer_type_node, args[1]));
8304 : 72 : se->expr = fold_convert (type, se->expr);
8305 : 72 : }
8306 : :
8307 : :
8308 : : /* SET_EXPONENT (s, i) is translated into
8309 : : isfinite(s) ? scalbn (frexp (s, &dummy_int), i) : NaN */
8310 : : static void
8311 : 262 : gfc_conv_intrinsic_set_exponent (gfc_se * se, gfc_expr * expr)
8312 : : {
8313 : 262 : tree args[2], type, tmp, frexp, scalbn, cond, nan, res;
8314 : :
8315 : 262 : frexp = gfc_builtin_decl_for_float_kind (BUILT_IN_FREXP, expr->ts.kind);
8316 : 262 : scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind);
8317 : :
8318 : 262 : type = gfc_typenode_for_spec (&expr->ts);
8319 : 262 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
8320 : 262 : args[0] = gfc_evaluate_now (args[0], &se->pre);
8321 : :
8322 : 262 : tmp = gfc_create_var (integer_type_node, NULL);
8323 : 262 : tmp = build_call_expr_loc (input_location, frexp, 2,
8324 : : fold_convert (type, args[0]),
8325 : : gfc_build_addr_expr (NULL_TREE, tmp));
8326 : 262 : res = build_call_expr_loc (input_location, scalbn, 2, tmp,
8327 : : fold_convert (integer_type_node, args[1]));
8328 : 262 : res = fold_convert (type, res);
8329 : :
8330 : : /* Call to isfinite */
8331 : 262 : cond = build_call_expr_loc (input_location,
8332 : : builtin_decl_explicit (BUILT_IN_ISFINITE),
8333 : : 1, args[0]);
8334 : 262 : nan = gfc_build_nan (type, "");
8335 : :
8336 : 262 : se->expr = fold_build3_loc (input_location, COND_EXPR, type, cond,
8337 : : res, nan);
8338 : 262 : }
8339 : :
8340 : :
8341 : : static void
8342 : 14691 : gfc_conv_intrinsic_size (gfc_se * se, gfc_expr * expr)
8343 : : {
8344 : 14691 : gfc_actual_arglist *actual;
8345 : 14691 : tree arg1;
8346 : 14691 : tree type;
8347 : 14691 : tree size;
8348 : 14691 : gfc_se argse;
8349 : 14691 : gfc_expr *e;
8350 : 14691 : gfc_symbol *sym = NULL;
8351 : :
8352 : 14691 : gfc_init_se (&argse, NULL);
8353 : 14691 : actual = expr->value.function.actual;
8354 : :
8355 : 14691 : if (actual->expr->ts.type == BT_CLASS)
8356 : 577 : gfc_add_class_array_ref (actual->expr);
8357 : :
8358 : 14691 : e = actual->expr;
8359 : :
8360 : : /* These are emerging from the interface mapping, when a class valued
8361 : : function appears as the rhs in a realloc on assign statement, where
8362 : : the size of the result is that of one of the actual arguments. */
8363 : 14691 : if (e->expr_type == EXPR_VARIABLE
8364 : 14244 : && e->symtree->n.sym->ns == NULL /* This is distinctive! */
8365 : 555 : && e->symtree->n.sym->ts.type == BT_CLASS
8366 : 44 : && e->ref && e->ref->type == REF_COMPONENT
8367 : 26 : && strcmp (e->ref->u.c.component->name, "_data") == 0)
8368 : 14691 : sym = e->symtree->n.sym;
8369 : :
8370 : 14691 : if ((gfc_option.rtcheck & GFC_RTCHECK_POINTER)
8371 : : && e
8372 : 899 : && (e->expr_type == EXPR_VARIABLE || e->expr_type == EXPR_FUNCTION))
8373 : : {
8374 : 899 : symbol_attribute attr;
8375 : 899 : char *msg;
8376 : 899 : tree temp;
8377 : 899 : tree cond;
8378 : :
8379 : 899 : if (e->symtree->n.sym && IS_CLASS_ARRAY (e->symtree->n.sym))
8380 : : {
8381 : 32 : attr = CLASS_DATA (e->symtree->n.sym)->attr;
8382 : 32 : attr.pointer = attr.class_pointer;
8383 : : }
8384 : : else
8385 : 867 : attr = gfc_expr_attr (e);
8386 : :
8387 : 899 : if (attr.allocatable)
8388 : 150 : msg = xasprintf ("Allocatable argument '%s' is not allocated",
8389 : 150 : e->symtree->n.sym->name);
8390 : 749 : else if (attr.pointer)
8391 : 42 : msg = xasprintf ("Pointer argument '%s' is not associated",
8392 : 42 : e->symtree->n.sym->name);
8393 : : else
8394 : 707 : goto end_arg_check;
8395 : :
8396 : 192 : if (sym)
8397 : : {
8398 : 0 : temp = gfc_class_data_get (sym->backend_decl);
8399 : 0 : temp = gfc_conv_descriptor_data_get (temp);
8400 : : }
8401 : : else
8402 : : {
8403 : 192 : argse.descriptor_only = 1;
8404 : 192 : gfc_conv_expr_descriptor (&argse, actual->expr);
8405 : 192 : temp = gfc_conv_descriptor_data_get (argse.expr);
8406 : : }
8407 : :
8408 : 192 : cond = fold_build2_loc (input_location, EQ_EXPR,
8409 : : logical_type_node, temp,
8410 : 192 : fold_convert (TREE_TYPE (temp),
8411 : : null_pointer_node));
8412 : 192 : gfc_trans_runtime_check (true, false, cond, &argse.pre, &e->where, msg);
8413 : :
8414 : 192 : free (msg);
8415 : : }
8416 : 13792 : end_arg_check:
8417 : :
8418 : 14691 : argse.data_not_needed = 1;
8419 : 14691 : if (gfc_is_class_array_function (e))
8420 : : {
8421 : : /* For functions that return a class array conv_expr_descriptor is not
8422 : : able to get the descriptor right. Therefore this special case. */
8423 : 6 : gfc_conv_expr_reference (&argse, e);
8424 : 6 : argse.expr = gfc_class_data_get (argse.expr);
8425 : : }
8426 : 14685 : else if (sym && sym->backend_decl)
8427 : : {
8428 : 14 : gcc_assert (GFC_CLASS_TYPE_P (TREE_TYPE (sym->backend_decl)));
8429 : 14 : argse.expr = gfc_class_data_get (sym->backend_decl);
8430 : : }
8431 : : else
8432 : 14671 : gfc_conv_expr_descriptor (&argse, actual->expr);
8433 : 14691 : gfc_add_block_to_block (&se->pre, &argse.pre);
8434 : 14691 : gfc_add_block_to_block (&se->post, &argse.post);
8435 : 14691 : arg1 = argse.expr;
8436 : :
8437 : 14691 : actual = actual->next;
8438 : 14691 : if (actual->expr)
8439 : : {
8440 : 8805 : stmtblock_t block;
8441 : 8805 : gfc_init_block (&block);
8442 : 8805 : gfc_init_se (&argse, NULL);
8443 : 8805 : gfc_conv_expr_type (&argse, actual->expr,
8444 : : gfc_array_index_type);
8445 : 8805 : gfc_add_block_to_block (&block, &argse.pre);
8446 : 8805 : tree tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
8447 : : argse.expr, gfc_index_one_node);
8448 : 8805 : size = gfc_tree_array_size (&block, arg1, e, tmp);
8449 : :
8450 : : /* Unusually, for an intrinsic, size does not exclude
8451 : : an optional arg2, so we must test for it. */
8452 : 8805 : if (actual->expr->expr_type == EXPR_VARIABLE
8453 : 1944 : && actual->expr->symtree->n.sym->attr.dummy
8454 : 1944 : && actual->expr->symtree->n.sym->attr.optional)
8455 : : {
8456 : 31 : tree cond;
8457 : 31 : stmtblock_t block2;
8458 : 31 : gfc_init_block (&block2);
8459 : 31 : gfc_init_se (&argse, NULL);
8460 : 31 : argse.want_pointer = 1;
8461 : 31 : argse.data_not_needed = 1;
8462 : 31 : gfc_conv_expr (&argse, actual->expr);
8463 : 31 : gfc_add_block_to_block (&se->pre, &argse.pre);
8464 : : /* 'block2' contains the arg2 absent case, 'block' the arg2 present
8465 : : case; size_var can be used in both blocks. */
8466 : 31 : tree size_var = gfc_create_var (TREE_TYPE (size), "size");
8467 : 31 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
8468 : 31 : TREE_TYPE (size_var), size_var, size);
8469 : 31 : gfc_add_expr_to_block (&block, tmp);
8470 : 31 : size = gfc_tree_array_size (&block2, arg1, e, NULL_TREE);
8471 : 31 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
8472 : 31 : TREE_TYPE (size_var), size_var, size);
8473 : 31 : gfc_add_expr_to_block (&block2, tmp);
8474 : 31 : cond = gfc_conv_expr_present (actual->expr->symtree->n.sym);
8475 : 31 : tmp = build3_v (COND_EXPR, cond, gfc_finish_block (&block),
8476 : : gfc_finish_block (&block2));
8477 : 31 : gfc_add_expr_to_block (&se->pre, tmp);
8478 : 31 : size = size_var;
8479 : 31 : }
8480 : : else
8481 : 8774 : gfc_add_block_to_block (&se->pre, &block);
8482 : : }
8483 : : else
8484 : 5886 : size = gfc_tree_array_size (&se->pre, arg1, e, NULL_TREE);
8485 : 14691 : type = gfc_typenode_for_spec (&expr->ts);
8486 : 14691 : se->expr = convert (type, size);
8487 : 14691 : }
8488 : :
8489 : :
8490 : : /* Helper function to compute the size of a character variable,
8491 : : excluding the terminating null characters. The result has
8492 : : gfc_array_index_type type. */
8493 : :
8494 : : tree
8495 : 1796 : size_of_string_in_bytes (int kind, tree string_length)
8496 : : {
8497 : 1796 : tree bytesize;
8498 : 1796 : int i = gfc_validate_kind (BT_CHARACTER, kind, false);
8499 : :
8500 : 3592 : bytesize = build_int_cst (gfc_array_index_type,
8501 : 1796 : gfc_character_kinds[i].bit_size / 8);
8502 : :
8503 : 1796 : return fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
8504 : : bytesize,
8505 : 1796 : fold_convert (gfc_array_index_type, string_length));
8506 : : }
8507 : :
8508 : :
8509 : : static void
8510 : 1296 : gfc_conv_intrinsic_sizeof (gfc_se *se, gfc_expr *expr)
8511 : : {
8512 : 1296 : gfc_expr *arg;
8513 : 1296 : gfc_se argse;
8514 : 1296 : tree source_bytes;
8515 : 1296 : tree tmp;
8516 : 1296 : tree lower;
8517 : 1296 : tree upper;
8518 : 1296 : tree byte_size;
8519 : 1296 : tree field;
8520 : 1296 : int n;
8521 : :
8522 : 1296 : gfc_init_se (&argse, NULL);
8523 : 1296 : arg = expr->value.function.actual->expr;
8524 : :
8525 : 1296 : if (arg->rank || arg->ts.type == BT_ASSUMED)
8526 : 1004 : gfc_conv_expr_descriptor (&argse, arg);
8527 : : else
8528 : 292 : gfc_conv_expr_reference (&argse, arg);
8529 : :
8530 : 1296 : if (arg->ts.type == BT_ASSUMED)
8531 : : {
8532 : : /* This only works if an array descriptor has been passed; thus, extract
8533 : : the size from the descriptor. */
8534 : 164 : gcc_assert (TYPE_PRECISION (gfc_array_index_type)
8535 : : == TYPE_PRECISION (size_type_node));
8536 : 164 : tmp = arg->symtree->n.sym->backend_decl;
8537 : 164 : tmp = DECL_LANG_SPECIFIC (tmp)
8538 : 60 : && GFC_DECL_SAVED_DESCRIPTOR (tmp) != NULL_TREE
8539 : 218 : ? GFC_DECL_SAVED_DESCRIPTOR (tmp) : tmp;
8540 : 164 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
8541 : 164 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
8542 : :
8543 : 164 : tmp = gfc_conv_descriptor_dtype (tmp);
8544 : 164 : field = gfc_advance_chain (TYPE_FIELDS (get_dtype_type_node ()),
8545 : : GFC_DTYPE_ELEM_LEN);
8546 : 164 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
8547 : : tmp, field, NULL_TREE);
8548 : :
8549 : 164 : byte_size = fold_convert (gfc_array_index_type, tmp);
8550 : : }
8551 : 1132 : else if (arg->ts.type == BT_CLASS)
8552 : : {
8553 : : /* Conv_expr_descriptor returns a component_ref to _data component of the
8554 : : class object. The class object may be a non-pointer object, e.g.
8555 : : located on the stack, or a memory location pointed to, e.g. a
8556 : : parameter, i.e., an indirect_ref. */
8557 : 954 : if (POINTER_TYPE_P (TREE_TYPE (argse.expr))
8558 : 584 : && GFC_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (argse.expr))))
8559 : 198 : byte_size
8560 : 198 : = gfc_class_vtab_size_get (build_fold_indirect_ref (argse.expr));
8561 : 386 : else if (GFC_CLASS_TYPE_P (TREE_TYPE (argse.expr)))
8562 : 0 : byte_size = gfc_class_vtab_size_get (argse.expr);
8563 : 386 : else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (argse.expr))
8564 : 386 : && TREE_CODE (argse.expr) == COMPONENT_REF)
8565 : 328 : byte_size = gfc_class_vtab_size_get (TREE_OPERAND (argse.expr, 0));
8566 : 58 : else if (arg->rank > 0
8567 : 16 : || (arg->rank == 0
8568 : 16 : && arg->ref && arg->ref->type == REF_COMPONENT))
8569 : : {
8570 : : /* The scalarizer added an additional temp. To get the class' vptr
8571 : : one has to look at the original backend_decl. */
8572 : 58 : if (argse.class_container)
8573 : 16 : byte_size = gfc_class_vtab_size_get (argse.class_container);
8574 : 42 : else if (DECL_LANG_SPECIFIC (arg->symtree->n.sym->backend_decl))
8575 : 84 : byte_size = gfc_class_vtab_size_get (
8576 : 42 : GFC_DECL_SAVED_DESCRIPTOR (arg->symtree->n.sym->backend_decl));
8577 : : else
8578 : 0 : gcc_unreachable ();
8579 : : }
8580 : : else
8581 : 0 : gcc_unreachable ();
8582 : : }
8583 : : else
8584 : : {
8585 : 548 : if (arg->ts.type == BT_CHARACTER)
8586 : 84 : byte_size = size_of_string_in_bytes (arg->ts.kind, argse.string_length);
8587 : : else
8588 : : {
8589 : 464 : if (arg->rank == 0)
8590 : 0 : byte_size = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
8591 : : argse.expr));
8592 : : else
8593 : 464 : byte_size = gfc_get_element_type (TREE_TYPE (argse.expr));
8594 : 464 : byte_size = fold_convert (gfc_array_index_type,
8595 : : size_in_bytes (byte_size));
8596 : : }
8597 : : }
8598 : :
8599 : 1296 : if (arg->rank == 0)
8600 : 292 : se->expr = byte_size;
8601 : : else
8602 : : {
8603 : 1004 : source_bytes = gfc_create_var (gfc_array_index_type, "bytes");
8604 : 1004 : gfc_add_modify (&argse.pre, source_bytes, byte_size);
8605 : :
8606 : 1004 : if (arg->rank == -1)
8607 : : {
8608 : 357 : tree cond, loop_var, exit_label;
8609 : 357 : stmtblock_t body;
8610 : :
8611 : 357 : tmp = fold_convert (gfc_array_index_type,
8612 : : gfc_conv_descriptor_rank (argse.expr));
8613 : 357 : loop_var = gfc_create_var (gfc_array_index_type, "i");
8614 : 357 : gfc_add_modify (&argse.pre, loop_var, gfc_index_zero_node);
8615 : 357 : exit_label = gfc_build_label_decl (NULL_TREE);
8616 : :
8617 : : /* Create loop:
8618 : : for (;;)
8619 : : {
8620 : : if (i >= rank)
8621 : : goto exit;
8622 : : source_bytes = source_bytes * array.dim[i].extent;
8623 : : i = i + 1;
8624 : : }
8625 : : exit: */
8626 : 357 : gfc_start_block (&body);
8627 : 357 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
8628 : : loop_var, tmp);
8629 : 357 : tmp = build1_v (GOTO_EXPR, exit_label);
8630 : 357 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
8631 : : cond, tmp, build_empty_stmt (input_location));
8632 : 357 : gfc_add_expr_to_block (&body, tmp);
8633 : :
8634 : 357 : lower = gfc_conv_descriptor_lbound_get (argse.expr, loop_var);
8635 : 357 : upper = gfc_conv_descriptor_ubound_get (argse.expr, loop_var);
8636 : 357 : tmp = gfc_conv_array_extent_dim (lower, upper, NULL);
8637 : 357 : tmp = fold_build2_loc (input_location, MULT_EXPR,
8638 : : gfc_array_index_type, tmp, source_bytes);
8639 : 357 : gfc_add_modify (&body, source_bytes, tmp);
8640 : :
8641 : 357 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
8642 : : gfc_array_index_type, loop_var,
8643 : : gfc_index_one_node);
8644 : 357 : gfc_add_modify_loc (input_location, &body, loop_var, tmp);
8645 : :
8646 : 357 : tmp = gfc_finish_block (&body);
8647 : :
8648 : 357 : tmp = fold_build1_loc (input_location, LOOP_EXPR, void_type_node,
8649 : : tmp);
8650 : 357 : gfc_add_expr_to_block (&argse.pre, tmp);
8651 : :
8652 : 357 : tmp = build1_v (LABEL_EXPR, exit_label);
8653 : 357 : gfc_add_expr_to_block (&argse.pre, tmp);
8654 : : }
8655 : : else
8656 : : {
8657 : : /* Obtain the size of the array in bytes. */
8658 : 1834 : for (n = 0; n < arg->rank; n++)
8659 : : {
8660 : 1187 : tree idx;
8661 : 1187 : idx = gfc_rank_cst[n];
8662 : 1187 : lower = gfc_conv_descriptor_lbound_get (argse.expr, idx);
8663 : 1187 : upper = gfc_conv_descriptor_ubound_get (argse.expr, idx);
8664 : 1187 : tmp = gfc_conv_array_extent_dim (lower, upper, NULL);
8665 : 1187 : tmp = fold_build2_loc (input_location, MULT_EXPR,
8666 : : gfc_array_index_type, tmp, source_bytes);
8667 : 1187 : gfc_add_modify (&argse.pre, source_bytes, tmp);
8668 : : }
8669 : : }
8670 : 1004 : se->expr = source_bytes;
8671 : : }
8672 : :
8673 : 1296 : gfc_add_block_to_block (&se->pre, &argse.pre);
8674 : 1296 : }
8675 : :
8676 : :
8677 : : static void
8678 : 802 : gfc_conv_intrinsic_storage_size (gfc_se *se, gfc_expr *expr)
8679 : : {
8680 : 802 : gfc_expr *arg;
8681 : 802 : gfc_se argse;
8682 : 802 : tree type, result_type, tmp, class_decl = NULL;
8683 : 802 : gfc_symbol *sym;
8684 : 802 : bool unlimited = false;
8685 : :
8686 : 802 : arg = expr->value.function.actual->expr;
8687 : :
8688 : 802 : gfc_init_se (&argse, NULL);
8689 : 802 : result_type = gfc_get_int_type (expr->ts.kind);
8690 : :
8691 : 802 : if (arg->rank == 0)
8692 : : {
8693 : 211 : if (arg->ts.type == BT_CLASS)
8694 : : {
8695 : 86 : unlimited = UNLIMITED_POLY (arg);
8696 : 86 : gfc_add_vptr_component (arg);
8697 : 86 : gfc_add_size_component (arg);
8698 : 86 : gfc_conv_expr (&argse, arg);
8699 : 86 : tmp = fold_convert (result_type, argse.expr);
8700 : 86 : class_decl = gfc_get_class_from_expr (argse.expr);
8701 : 86 : goto done;
8702 : : }
8703 : :
8704 : 125 : gfc_conv_expr_reference (&argse, arg);
8705 : 125 : type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
8706 : : argse.expr));
8707 : : }
8708 : : else
8709 : : {
8710 : 591 : argse.want_pointer = 0;
8711 : 591 : gfc_conv_expr_descriptor (&argse, arg);
8712 : 591 : sym = arg->expr_type == EXPR_VARIABLE ? arg->symtree->n.sym : NULL;
8713 : 591 : if (arg->ts.type == BT_CLASS)
8714 : : {
8715 : 60 : unlimited = UNLIMITED_POLY (arg);
8716 : 60 : if (TREE_CODE (argse.expr) == COMPONENT_REF)
8717 : 54 : tmp = gfc_class_vtab_size_get (TREE_OPERAND (argse.expr, 0));
8718 : 6 : else if (arg->rank > 0 && sym
8719 : 12 : && DECL_LANG_SPECIFIC (sym->backend_decl))
8720 : 12 : tmp = gfc_class_vtab_size_get (
8721 : 6 : GFC_DECL_SAVED_DESCRIPTOR (sym->backend_decl));
8722 : : else
8723 : 0 : gcc_unreachable ();
8724 : 60 : tmp = fold_convert (result_type, tmp);
8725 : 60 : class_decl = gfc_get_class_from_expr (argse.expr);
8726 : 60 : goto done;
8727 : : }
8728 : 531 : type = gfc_get_element_type (TREE_TYPE (argse.expr));
8729 : : }
8730 : :
8731 : : /* Obtain the argument's word length. */
8732 : 656 : if (arg->ts.type == BT_CHARACTER)
8733 : 241 : tmp = size_of_string_in_bytes (arg->ts.kind, argse.string_length);
8734 : : else
8735 : 415 : tmp = size_in_bytes (type);
8736 : 656 : tmp = fold_convert (result_type, tmp);
8737 : :
8738 : 802 : done:
8739 : 802 : if (unlimited && class_decl)
8740 : 68 : tmp = gfc_resize_class_size_with_len (NULL, class_decl, tmp);
8741 : :
8742 : 802 : se->expr = fold_build2_loc (input_location, MULT_EXPR, result_type, tmp,
8743 : 802 : build_int_cst (result_type, BITS_PER_UNIT));
8744 : 802 : gfc_add_block_to_block (&se->pre, &argse.pre);
8745 : 802 : }
8746 : :
8747 : :
8748 : : /* Intrinsic string comparison functions. */
8749 : :
8750 : : static void
8751 : 99 : gfc_conv_intrinsic_strcmp (gfc_se * se, gfc_expr * expr, enum tree_code op)
8752 : : {
8753 : 99 : tree args[4];
8754 : :
8755 : 99 : gfc_conv_intrinsic_function_args (se, expr, args, 4);
8756 : :
8757 : 99 : se->expr
8758 : 198 : = gfc_build_compare_string (args[0], args[1], args[2], args[3],
8759 : 99 : expr->value.function.actual->expr->ts.kind,
8760 : : op);
8761 : 99 : se->expr = fold_build2_loc (input_location, op,
8762 : : gfc_typenode_for_spec (&expr->ts), se->expr,
8763 : 99 : build_int_cst (TREE_TYPE (se->expr), 0));
8764 : 99 : }
8765 : :
8766 : : /* Generate a call to the adjustl/adjustr library function. */
8767 : : static void
8768 : 455 : gfc_conv_intrinsic_adjust (gfc_se * se, gfc_expr * expr, tree fndecl)
8769 : : {
8770 : 455 : tree args[3];
8771 : 455 : tree len;
8772 : 455 : tree type;
8773 : 455 : tree var;
8774 : 455 : tree tmp;
8775 : :
8776 : 455 : gfc_conv_intrinsic_function_args (se, expr, &args[1], 2);
8777 : 455 : len = args[1];
8778 : :
8779 : 455 : type = TREE_TYPE (args[2]);
8780 : 455 : var = gfc_conv_string_tmp (se, type, len);
8781 : 455 : args[0] = var;
8782 : :
8783 : 455 : tmp = build_call_expr_loc (input_location,
8784 : : fndecl, 3, args[0], args[1], args[2]);
8785 : 455 : gfc_add_expr_to_block (&se->pre, tmp);
8786 : 455 : se->expr = var;
8787 : 455 : se->string_length = len;
8788 : 455 : }
8789 : :
8790 : :
8791 : : /* Generate code for the TRANSFER intrinsic:
8792 : : For scalar results:
8793 : : DEST = TRANSFER (SOURCE, MOLD)
8794 : : where:
8795 : : typeof<DEST> = typeof<MOLD>
8796 : : and:
8797 : : MOLD is scalar.
8798 : :
8799 : : For array results:
8800 : : DEST(1:N) = TRANSFER (SOURCE, MOLD[, SIZE])
8801 : : where:
8802 : : typeof<DEST> = typeof<MOLD>
8803 : : and:
8804 : : N = min (sizeof (SOURCE(:)), sizeof (DEST(:)),
8805 : : sizeof (DEST(0) * SIZE). */
8806 : : static void
8807 : 3259 : gfc_conv_intrinsic_transfer (gfc_se * se, gfc_expr * expr)
8808 : : {
8809 : 3259 : tree tmp;
8810 : 3259 : tree tmpdecl;
8811 : 3259 : tree ptr;
8812 : 3259 : tree extent;
8813 : 3259 : tree source;
8814 : 3259 : tree source_type;
8815 : 3259 : tree source_bytes;
8816 : 3259 : tree mold_type;
8817 : 3259 : tree dest_word_len;
8818 : 3259 : tree size_words;
8819 : 3259 : tree size_bytes;
8820 : 3259 : tree upper;
8821 : 3259 : tree lower;
8822 : 3259 : tree stmt;
8823 : 3259 : tree class_ref = NULL_TREE;
8824 : 3259 : gfc_actual_arglist *arg;
8825 : 3259 : gfc_se argse;
8826 : 3259 : gfc_array_info *info;
8827 : 3259 : stmtblock_t block;
8828 : 3259 : int n;
8829 : 3259 : bool scalar_mold;
8830 : 3259 : gfc_expr *source_expr, *mold_expr, *class_expr;
8831 : :
8832 : 3259 : info = NULL;
8833 : 3259 : if (se->loop)
8834 : 462 : info = &se->ss->info->data.array;
8835 : :
8836 : : /* Convert SOURCE. The output from this stage is:-
8837 : : source_bytes = length of the source in bytes
8838 : : source = pointer to the source data. */
8839 : 3259 : arg = expr->value.function.actual;
8840 : 3259 : source_expr = arg->expr;
8841 : :
8842 : : /* Ensure double transfer through LOGICAL preserves all
8843 : : the needed bits. */
8844 : 3259 : if (arg->expr->expr_type == EXPR_FUNCTION
8845 : 2271 : && arg->expr->value.function.esym == NULL
8846 : 2253 : && arg->expr->value.function.isym != NULL
8847 : 2253 : && arg->expr->value.function.isym->id == GFC_ISYM_TRANSFER
8848 : 12 : && arg->expr->ts.type == BT_LOGICAL
8849 : 12 : && expr->ts.type != arg->expr->ts.type)
8850 : 12 : arg->expr->value.function.name = "__transfer_in_transfer";
8851 : :
8852 : 3259 : gfc_init_se (&argse, NULL);
8853 : :
8854 : 3259 : source_bytes = gfc_create_var (gfc_array_index_type, NULL);
8855 : :
8856 : : /* Obtain the pointer to source and the length of source in bytes. */
8857 : 3259 : if (arg->expr->rank == 0)
8858 : : {
8859 : 2923 : gfc_conv_expr_reference (&argse, arg->expr);
8860 : 2923 : if (arg->expr->ts.type == BT_CLASS)
8861 : : {
8862 : 31 : tmp = build_fold_indirect_ref_loc (input_location, argse.expr);
8863 : 31 : if (GFC_CLASS_TYPE_P (TREE_TYPE (tmp)))
8864 : : {
8865 : 19 : source = gfc_class_data_get (tmp);
8866 : 19 : class_ref = tmp;
8867 : : }
8868 : : else
8869 : : {
8870 : : /* Array elements are evaluated as a reference to the data.
8871 : : To obtain the vptr for the element size, the argument
8872 : : expression must be stripped to the class reference and
8873 : : re-evaluated. The pre and post blocks are not needed. */
8874 : 12 : gcc_assert (arg->expr->expr_type == EXPR_VARIABLE);
8875 : 12 : source = argse.expr;
8876 : 12 : class_expr = gfc_find_and_cut_at_last_class_ref (arg->expr);
8877 : 12 : gfc_init_se (&argse, NULL);
8878 : 12 : gfc_conv_expr (&argse, class_expr);
8879 : 12 : class_ref = argse.expr;
8880 : : }
8881 : : }
8882 : : else
8883 : 2892 : source = argse.expr;
8884 : :
8885 : : /* Obtain the source word length. */
8886 : 2923 : switch (arg->expr->ts.type)
8887 : : {
8888 : 309 : case BT_CHARACTER:
8889 : 309 : tmp = size_of_string_in_bytes (arg->expr->ts.kind,
8890 : : argse.string_length);
8891 : 309 : break;
8892 : 31 : case BT_CLASS:
8893 : 31 : if (class_ref != NULL_TREE)
8894 : : {
8895 : 31 : tmp = gfc_class_vtab_size_get (class_ref);
8896 : 31 : if (UNLIMITED_POLY (source_expr))
8897 : 24 : tmp = gfc_resize_class_size_with_len (NULL, class_ref, tmp);
8898 : : }
8899 : : else
8900 : : {
8901 : 0 : tmp = gfc_class_vtab_size_get (argse.expr);
8902 : 0 : if (UNLIMITED_POLY (source_expr))
8903 : 0 : tmp = gfc_resize_class_size_with_len (NULL, argse.expr, tmp);
8904 : : }
8905 : : break;
8906 : 2583 : default:
8907 : 2583 : source_type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
8908 : : source));
8909 : 2583 : tmp = fold_convert (gfc_array_index_type,
8910 : : size_in_bytes (source_type));
8911 : 2583 : break;
8912 : : }
8913 : : }
8914 : : else
8915 : : {
8916 : 336 : argse.want_pointer = 0;
8917 : 336 : gfc_conv_expr_descriptor (&argse, arg->expr);
8918 : 336 : source = gfc_conv_descriptor_data_get (argse.expr);
8919 : 336 : source_type = gfc_get_element_type (TREE_TYPE (argse.expr));
8920 : :
8921 : : /* Repack the source if not simply contiguous. */
8922 : 336 : if (!gfc_is_simply_contiguous (arg->expr, false, true))
8923 : : {
8924 : 50 : tmp = gfc_build_addr_expr (NULL_TREE, argse.expr);
8925 : :
8926 : 50 : if (warn_array_temporaries)
8927 : 0 : gfc_warning (OPT_Warray_temporaries,
8928 : : "Creating array temporary at %L", &expr->where);
8929 : :
8930 : 50 : source = build_call_expr_loc (input_location,
8931 : : gfor_fndecl_in_pack, 1, tmp);
8932 : 50 : source = gfc_evaluate_now (source, &argse.pre);
8933 : :
8934 : : /* Free the temporary. */
8935 : 50 : gfc_start_block (&block);
8936 : 50 : tmp = gfc_call_free (source);
8937 : 50 : gfc_add_expr_to_block (&block, tmp);
8938 : 50 : stmt = gfc_finish_block (&block);
8939 : :
8940 : : /* Clean up if it was repacked. */
8941 : 50 : gfc_init_block (&block);
8942 : 50 : tmp = gfc_conv_array_data (argse.expr);
8943 : 50 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
8944 : : source, tmp);
8945 : 50 : tmp = build3_v (COND_EXPR, tmp, stmt,
8946 : : build_empty_stmt (input_location));
8947 : 50 : gfc_add_expr_to_block (&block, tmp);
8948 : 50 : gfc_add_block_to_block (&block, &se->post);
8949 : 50 : gfc_init_block (&se->post);
8950 : 50 : gfc_add_block_to_block (&se->post, &block);
8951 : : }
8952 : :
8953 : : /* Obtain the source word length. */
8954 : 336 : if (arg->expr->ts.type == BT_CHARACTER)
8955 : 149 : tmp = size_of_string_in_bytes (arg->expr->ts.kind,
8956 : : argse.string_length);
8957 : 187 : else if (arg->expr->ts.type == BT_CLASS)
8958 : : {
8959 : 36 : class_ref = TREE_OPERAND (argse.expr, 0);
8960 : 36 : tmp = gfc_class_vtab_size_get (class_ref);
8961 : 36 : if (UNLIMITED_POLY (arg->expr))
8962 : 36 : tmp = gfc_resize_class_size_with_len (&argse.pre, class_ref, tmp);
8963 : : }
8964 : : else
8965 : 151 : tmp = fold_convert (gfc_array_index_type,
8966 : : size_in_bytes (source_type));
8967 : :
8968 : : /* Obtain the size of the array in bytes. */
8969 : 336 : extent = gfc_create_var (gfc_array_index_type, NULL);
8970 : 702 : for (n = 0; n < arg->expr->rank; n++)
8971 : : {
8972 : 366 : tree idx;
8973 : 366 : idx = gfc_rank_cst[n];
8974 : 366 : gfc_add_modify (&argse.pre, source_bytes, tmp);
8975 : 366 : lower = gfc_conv_descriptor_lbound_get (argse.expr, idx);
8976 : 366 : upper = gfc_conv_descriptor_ubound_get (argse.expr, idx);
8977 : 366 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
8978 : : gfc_array_index_type, upper, lower);
8979 : 366 : gfc_add_modify (&argse.pre, extent, tmp);
8980 : 366 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
8981 : : gfc_array_index_type, extent,
8982 : : gfc_index_one_node);
8983 : 366 : tmp = fold_build2_loc (input_location, MULT_EXPR,
8984 : : gfc_array_index_type, tmp, source_bytes);
8985 : : }
8986 : : }
8987 : :
8988 : 3259 : gfc_add_modify (&argse.pre, source_bytes, tmp);
8989 : 3259 : gfc_add_block_to_block (&se->pre, &argse.pre);
8990 : 3259 : gfc_add_block_to_block (&se->post, &argse.post);
8991 : :
8992 : : /* Now convert MOLD. The outputs are:
8993 : : mold_type = the TREE type of MOLD
8994 : : dest_word_len = destination word length in bytes. */
8995 : 3259 : arg = arg->next;
8996 : 3259 : mold_expr = arg->expr;
8997 : :
8998 : 3259 : gfc_init_se (&argse, NULL);
8999 : :
9000 : 3259 : scalar_mold = arg->expr->rank == 0;
9001 : :
9002 : 3259 : if (arg->expr->rank == 0)
9003 : : {
9004 : 2956 : gfc_conv_expr_reference (&argse, mold_expr);
9005 : 2956 : mold_type = TREE_TYPE (build_fold_indirect_ref_loc (input_location,
9006 : : argse.expr));
9007 : : }
9008 : : else
9009 : : {
9010 : 303 : argse.want_pointer = 0;
9011 : 303 : gfc_conv_expr_descriptor (&argse, mold_expr);
9012 : 303 : mold_type = gfc_get_element_type (TREE_TYPE (argse.expr));
9013 : : }
9014 : :
9015 : 3259 : gfc_add_block_to_block (&se->pre, &argse.pre);
9016 : 3259 : gfc_add_block_to_block (&se->post, &argse.post);
9017 : :
9018 : 3259 : if (strcmp (expr->value.function.name, "__transfer_in_transfer") == 0)
9019 : : {
9020 : : /* If this TRANSFER is nested in another TRANSFER, use a type
9021 : : that preserves all bits. */
9022 : 12 : if (mold_expr->ts.type == BT_LOGICAL)
9023 : 12 : mold_type = gfc_get_int_type (mold_expr->ts.kind);
9024 : : }
9025 : :
9026 : : /* Obtain the destination word length. */
9027 : 3259 : switch (mold_expr->ts.type)
9028 : : {
9029 : 477 : case BT_CHARACTER:
9030 : 477 : tmp = size_of_string_in_bytes (mold_expr->ts.kind, argse.string_length);
9031 : 477 : mold_type = gfc_get_character_type_len (mold_expr->ts.kind,
9032 : : argse.string_length);
9033 : 477 : break;
9034 : 6 : case BT_CLASS:
9035 : 6 : if (scalar_mold)
9036 : 6 : class_ref = argse.expr;
9037 : : else
9038 : 0 : class_ref = TREE_OPERAND (argse.expr, 0);
9039 : 6 : tmp = gfc_class_vtab_size_get (class_ref);
9040 : 6 : if (UNLIMITED_POLY (arg->expr))
9041 : 0 : tmp = gfc_resize_class_size_with_len (&argse.pre, class_ref, tmp);
9042 : : break;
9043 : 2776 : default:
9044 : 2776 : tmp = fold_convert (gfc_array_index_type, size_in_bytes (mold_type));
9045 : 2776 : break;
9046 : : }
9047 : :
9048 : : /* Do not fix dest_word_len if it is a variable, since the temporary can wind
9049 : : up being used before the assignment. */
9050 : 3259 : if (mold_expr->ts.type == BT_CHARACTER && mold_expr->ts.deferred)
9051 : : dest_word_len = tmp;
9052 : : else
9053 : : {
9054 : 3205 : dest_word_len = gfc_create_var (gfc_array_index_type, NULL);
9055 : 3205 : gfc_add_modify (&se->pre, dest_word_len, tmp);
9056 : : }
9057 : :
9058 : : /* Finally convert SIZE, if it is present. */
9059 : 3259 : arg = arg->next;
9060 : 3259 : size_words = gfc_create_var (gfc_array_index_type, NULL);
9061 : :
9062 : 3259 : if (arg->expr)
9063 : : {
9064 : 247 : gfc_init_se (&argse, NULL);
9065 : 247 : gfc_conv_expr_reference (&argse, arg->expr);
9066 : 247 : tmp = convert (gfc_array_index_type,
9067 : : build_fold_indirect_ref_loc (input_location,
9068 : : argse.expr));
9069 : 247 : gfc_add_block_to_block (&se->pre, &argse.pre);
9070 : 247 : gfc_add_block_to_block (&se->post, &argse.post);
9071 : : }
9072 : : else
9073 : : tmp = NULL_TREE;
9074 : :
9075 : : /* Separate array and scalar results. */
9076 : 3259 : if (scalar_mold && tmp == NULL_TREE)
9077 : 2797 : goto scalar_transfer;
9078 : :
9079 : 462 : size_bytes = gfc_create_var (gfc_array_index_type, NULL);
9080 : 462 : if (tmp != NULL_TREE)
9081 : 247 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
9082 : : tmp, dest_word_len);
9083 : : else
9084 : : tmp = source_bytes;
9085 : :
9086 : 462 : gfc_add_modify (&se->pre, size_bytes, tmp);
9087 : 462 : gfc_add_modify (&se->pre, size_words,
9088 : : fold_build2_loc (input_location, CEIL_DIV_EXPR,
9089 : : gfc_array_index_type,
9090 : : size_bytes, dest_word_len));
9091 : :
9092 : : /* Evaluate the bounds of the result. If the loop range exists, we have
9093 : : to check if it is too large. If so, we modify loop->to be consistent
9094 : : with min(size, size(source)). Otherwise, size is made consistent with
9095 : : the loop range, so that the right number of bytes is transferred.*/
9096 : 462 : n = se->loop->order[0];
9097 : 462 : if (se->loop->to[n] != NULL_TREE)
9098 : : {
9099 : 237 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9100 : : se->loop->to[n], se->loop->from[n]);
9101 : 237 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
9102 : : tmp, gfc_index_one_node);
9103 : 237 : tmp = fold_build2_loc (input_location, MIN_EXPR, gfc_array_index_type,
9104 : : tmp, size_words);
9105 : 237 : gfc_add_modify (&se->pre, size_words, tmp);
9106 : 237 : gfc_add_modify (&se->pre, size_bytes,
9107 : : fold_build2_loc (input_location, MULT_EXPR,
9108 : : gfc_array_index_type,
9109 : : size_words, dest_word_len));
9110 : 474 : upper = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
9111 : 237 : size_words, se->loop->from[n]);
9112 : 237 : upper = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9113 : : upper, gfc_index_one_node);
9114 : : }
9115 : : else
9116 : : {
9117 : 225 : upper = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9118 : : size_words, gfc_index_one_node);
9119 : 225 : se->loop->from[n] = gfc_index_zero_node;
9120 : : }
9121 : :
9122 : 462 : se->loop->to[n] = upper;
9123 : :
9124 : : /* Build a destination descriptor, using the pointer, source, as the
9125 : : data field. */
9126 : 462 : gfc_trans_create_temp_array (&se->pre, &se->post, se->ss, mold_type,
9127 : : NULL_TREE, false, true, false, &expr->where);
9128 : :
9129 : : /* Cast the pointer to the result. */
9130 : 462 : tmp = gfc_conv_descriptor_data_get (info->descriptor);
9131 : 462 : tmp = fold_convert (pvoid_type_node, tmp);
9132 : :
9133 : : /* Use memcpy to do the transfer. */
9134 : 462 : tmp
9135 : 462 : = build_call_expr_loc (input_location,
9136 : : builtin_decl_explicit (BUILT_IN_MEMCPY), 3, tmp,
9137 : : fold_convert (pvoid_type_node, source),
9138 : : fold_convert (size_type_node,
9139 : : fold_build2_loc (input_location,
9140 : : MIN_EXPR,
9141 : : gfc_array_index_type,
9142 : : size_bytes,
9143 : : source_bytes)));
9144 : 462 : gfc_add_expr_to_block (&se->pre, tmp);
9145 : :
9146 : 462 : se->expr = info->descriptor;
9147 : 462 : if (expr->ts.type == BT_CHARACTER)
9148 : : {
9149 : 280 : tmp = fold_convert (gfc_charlen_type_node,
9150 : : TYPE_SIZE_UNIT (gfc_get_char_type (expr->ts.kind)));
9151 : 280 : se->string_length = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
9152 : : gfc_charlen_type_node,
9153 : : dest_word_len, tmp);
9154 : : }
9155 : :
9156 : 462 : return;
9157 : :
9158 : : /* Deal with scalar results. */
9159 : 2797 : scalar_transfer:
9160 : 2797 : extent = fold_build2_loc (input_location, MIN_EXPR, gfc_array_index_type,
9161 : : dest_word_len, source_bytes);
9162 : 2797 : extent = fold_build2_loc (input_location, MAX_EXPR, gfc_array_index_type,
9163 : : extent, gfc_index_zero_node);
9164 : :
9165 : 2797 : if (expr->ts.type == BT_CHARACTER)
9166 : : {
9167 : 197 : tree direct, indirect, free;
9168 : :
9169 : 197 : ptr = convert (gfc_get_pchar_type (expr->ts.kind), source);
9170 : 197 : tmpdecl = gfc_create_var (gfc_get_pchar_type (expr->ts.kind),
9171 : : "transfer");
9172 : :
9173 : : /* If source is longer than the destination, use a pointer to
9174 : : the source directly. */
9175 : 197 : gfc_init_block (&block);
9176 : 197 : gfc_add_modify (&block, tmpdecl, ptr);
9177 : 197 : direct = gfc_finish_block (&block);
9178 : :
9179 : : /* Otherwise, allocate a string with the length of the destination
9180 : : and copy the source into it. */
9181 : 197 : gfc_init_block (&block);
9182 : 197 : tmp = gfc_get_pchar_type (expr->ts.kind);
9183 : 197 : tmp = gfc_call_malloc (&block, tmp, dest_word_len);
9184 : 197 : gfc_add_modify (&block, tmpdecl,
9185 : 197 : fold_convert (TREE_TYPE (ptr), tmp));
9186 : 197 : tmp = build_call_expr_loc (input_location,
9187 : : builtin_decl_explicit (BUILT_IN_MEMCPY), 3,
9188 : : fold_convert (pvoid_type_node, tmpdecl),
9189 : : fold_convert (pvoid_type_node, ptr),
9190 : : fold_convert (size_type_node, extent));
9191 : 197 : gfc_add_expr_to_block (&block, tmp);
9192 : 197 : indirect = gfc_finish_block (&block);
9193 : :
9194 : : /* Wrap it up with the condition. */
9195 : 197 : tmp = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
9196 : : dest_word_len, source_bytes);
9197 : 197 : tmp = build3_v (COND_EXPR, tmp, direct, indirect);
9198 : 197 : gfc_add_expr_to_block (&se->pre, tmp);
9199 : :
9200 : : /* Free the temporary string, if necessary. */
9201 : 197 : free = gfc_call_free (tmpdecl);
9202 : 197 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
9203 : : dest_word_len, source_bytes);
9204 : 197 : tmp = build3_v (COND_EXPR, tmp, free, build_empty_stmt (input_location));
9205 : 197 : gfc_add_expr_to_block (&se->post, tmp);
9206 : :
9207 : 197 : se->expr = tmpdecl;
9208 : 197 : tmp = fold_convert (gfc_charlen_type_node,
9209 : : TYPE_SIZE_UNIT (gfc_get_char_type (expr->ts.kind)));
9210 : 197 : se->string_length = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
9211 : : gfc_charlen_type_node,
9212 : : dest_word_len, tmp);
9213 : : }
9214 : : else
9215 : : {
9216 : 2600 : tmpdecl = gfc_create_var (mold_type, "transfer");
9217 : :
9218 : 2600 : ptr = convert (build_pointer_type (mold_type), source);
9219 : :
9220 : : /* For CLASS results, allocate the needed memory first. */
9221 : 2600 : if (mold_expr->ts.type == BT_CLASS)
9222 : : {
9223 : 6 : tree cdata;
9224 : 6 : cdata = gfc_class_data_get (tmpdecl);
9225 : 6 : tmp = gfc_call_malloc (&se->pre, TREE_TYPE (cdata), dest_word_len);
9226 : 6 : gfc_add_modify (&se->pre, cdata, tmp);
9227 : : }
9228 : :
9229 : : /* Use memcpy to do the transfer. */
9230 : 2600 : if (mold_expr->ts.type == BT_CLASS)
9231 : 6 : tmp = gfc_class_data_get (tmpdecl);
9232 : : else
9233 : 2594 : tmp = gfc_build_addr_expr (NULL_TREE, tmpdecl);
9234 : :
9235 : 2600 : tmp = build_call_expr_loc (input_location,
9236 : : builtin_decl_explicit (BUILT_IN_MEMCPY), 3,
9237 : : fold_convert (pvoid_type_node, tmp),
9238 : : fold_convert (pvoid_type_node, ptr),
9239 : : fold_convert (size_type_node, extent));
9240 : 2600 : gfc_add_expr_to_block (&se->pre, tmp);
9241 : :
9242 : : /* For CLASS results, set the _vptr. */
9243 : 2600 : if (mold_expr->ts.type == BT_CLASS)
9244 : 6 : gfc_reset_vptr (&se->pre, nullptr, tmpdecl, source_expr->ts.u.derived);
9245 : :
9246 : 2600 : se->expr = tmpdecl;
9247 : : }
9248 : : }
9249 : :
9250 : :
9251 : : /* Generate a call to caf_is_present. */
9252 : :
9253 : : static tree
9254 : 60 : trans_caf_is_present (gfc_se *se, gfc_expr *expr)
9255 : : {
9256 : 60 : tree caf_reference, caf_decl, token, image_index;
9257 : :
9258 : : /* Compile the reference chain. */
9259 : 60 : caf_reference = conv_expr_ref_to_caf_ref (&se->pre, expr);
9260 : 60 : gcc_assert (caf_reference != NULL_TREE);
9261 : :
9262 : 60 : caf_decl = gfc_get_tree_for_caf_expr (expr);
9263 : 60 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
9264 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
9265 : 60 : image_index = gfc_caf_get_image_index (&se->pre, expr, caf_decl);
9266 : 60 : gfc_get_caf_token_offset (se, &token, NULL, caf_decl, NULL,
9267 : : expr);
9268 : :
9269 : 60 : return build_call_expr_loc (input_location, gfor_fndecl_caf_is_present,
9270 : 60 : 3, token, image_index, caf_reference);
9271 : : }
9272 : :
9273 : :
9274 : : /* Test whether this ref-chain refs this image only. */
9275 : :
9276 : : static bool
9277 : 60 : caf_this_image_ref (gfc_ref *ref)
9278 : : {
9279 : 60 : for ( ; ref; ref = ref->next)
9280 : 60 : if (ref->type == REF_ARRAY && ref->u.ar.codimen)
9281 : 60 : return ref->u.ar.dimen_type[ref->u.ar.dimen] == DIMEN_THIS_IMAGE;
9282 : :
9283 : : return false;
9284 : : }
9285 : :
9286 : :
9287 : : /* Generate code for the ALLOCATED intrinsic.
9288 : : Generate inline code that directly check the address of the argument. */
9289 : :
9290 : : static void
9291 : 6818 : gfc_conv_allocated (gfc_se *se, gfc_expr *expr)
9292 : : {
9293 : 6818 : gfc_se arg1se;
9294 : 6818 : tree tmp;
9295 : 6818 : bool coindexed_caf_comp = false;
9296 : 6818 : gfc_expr *e = expr->value.function.actual->expr;
9297 : :
9298 : 6818 : gfc_init_se (&arg1se, NULL);
9299 : 6818 : if (e->ts.type == BT_CLASS)
9300 : : {
9301 : : /* Make sure that class array expressions have both a _data
9302 : : component reference and an array reference.... */
9303 : 888 : if (CLASS_DATA (e)->attr.dimension)
9304 : 425 : gfc_add_class_array_ref (e);
9305 : : /* .... whilst scalars only need the _data component. */
9306 : : else
9307 : 463 : gfc_add_data_component (e);
9308 : : }
9309 : :
9310 : : /* When 'e' references an allocatable component in a coarray, then call
9311 : : the caf-library function caf_is_present (). */
9312 : 6818 : if (flag_coarray == GFC_FCOARRAY_LIB && e->expr_type == EXPR_FUNCTION
9313 : 66 : && e->value.function.isym
9314 : 66 : && e->value.function.isym->id == GFC_ISYM_CAF_GET)
9315 : : {
9316 : 66 : e = e->value.function.actual->expr;
9317 : 66 : if (gfc_expr_attr (e).codimension)
9318 : : {
9319 : : /* Last partref is the coindexed coarray. As coarrays are collectively
9320 : : (de)allocated, the allocation status must be the same as the one of
9321 : : the local allocation. Convert to local access. */
9322 : 9 : for (gfc_ref *ref = e->ref; ref; ref = ref->next)
9323 : 9 : if (ref->type == REF_ARRAY && ref->u.ar.codimen)
9324 : : {
9325 : 6 : for (int i = ref->u.ar.dimen;
9326 : 18 : i < ref->u.ar.dimen + ref->u.ar.codimen; ++i)
9327 : 12 : ref->u.ar.dimen_type[i] = DIMEN_THIS_IMAGE;
9328 : : break;
9329 : : }
9330 : : }
9331 : 60 : else if (!caf_this_image_ref (e->ref))
9332 : 60 : coindexed_caf_comp = true;
9333 : : }
9334 : 60 : if (coindexed_caf_comp)
9335 : 60 : tmp = trans_caf_is_present (se, e);
9336 : : else
9337 : : {
9338 : 6758 : if (e->rank == 0)
9339 : : {
9340 : : /* Allocatable scalar. */
9341 : 2628 : arg1se.want_pointer = 1;
9342 : 2628 : gfc_conv_expr (&arg1se, e);
9343 : 2628 : tmp = arg1se.expr;
9344 : : }
9345 : : else
9346 : : {
9347 : : /* Allocatable array. */
9348 : 4130 : arg1se.descriptor_only = 1;
9349 : 4130 : gfc_conv_expr_descriptor (&arg1se, e);
9350 : 4130 : tmp = gfc_conv_descriptor_data_get (arg1se.expr);
9351 : : }
9352 : :
9353 : 6758 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node, tmp,
9354 : 6758 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
9355 : : }
9356 : :
9357 : : /* Components of pointer array references sometimes come back with a pre block. */
9358 : 6818 : if (arg1se.pre.head)
9359 : 6 : gfc_add_block_to_block (&se->pre, &arg1se.pre);
9360 : :
9361 : 6818 : se->expr = convert (gfc_typenode_for_spec (&expr->ts), tmp);
9362 : 6818 : }
9363 : :
9364 : :
9365 : : /* Generate code for the ASSOCIATED intrinsic.
9366 : : If both POINTER and TARGET are arrays, generate a call to library function
9367 : : _gfor_associated, and pass descriptors of POINTER and TARGET to it.
9368 : : In other cases, generate inline code that directly compare the address of
9369 : : POINTER with the address of TARGET. */
9370 : :
9371 : : static void
9372 : 8240 : gfc_conv_associated (gfc_se *se, gfc_expr *expr)
9373 : : {
9374 : 8240 : gfc_actual_arglist *arg1;
9375 : 8240 : gfc_actual_arglist *arg2;
9376 : 8240 : gfc_se arg1se;
9377 : 8240 : gfc_se arg2se;
9378 : 8240 : tree tmp2;
9379 : 8240 : tree tmp;
9380 : 8240 : tree nonzero_arraylen = NULL_TREE;
9381 : 8240 : gfc_ss *ss;
9382 : 8240 : bool scalar;
9383 : :
9384 : 8240 : gfc_init_se (&arg1se, NULL);
9385 : 8240 : gfc_init_se (&arg2se, NULL);
9386 : 8240 : arg1 = expr->value.function.actual;
9387 : 8240 : arg2 = arg1->next;
9388 : :
9389 : : /* Check whether the expression is a scalar or not; we cannot use
9390 : : arg1->expr->rank as it can be nonzero for proc pointers. */
9391 : 8240 : ss = gfc_walk_expr (arg1->expr);
9392 : 8240 : scalar = ss == gfc_ss_terminator;
9393 : 8240 : if (!scalar)
9394 : 3328 : gfc_free_ss_chain (ss);
9395 : :
9396 : 8240 : if (!arg2->expr)
9397 : : {
9398 : : /* No optional target. */
9399 : 6459 : if (scalar)
9400 : : {
9401 : : /* A pointer to a scalar. */
9402 : 4076 : arg1se.want_pointer = 1;
9403 : 4076 : gfc_conv_expr (&arg1se, arg1->expr);
9404 : 4076 : if (arg1->expr->symtree->n.sym->attr.proc_pointer
9405 : 4076 : && arg1->expr->symtree->n.sym->attr.dummy)
9406 : 78 : arg1se.expr = build_fold_indirect_ref_loc (input_location,
9407 : : arg1se.expr);
9408 : 4076 : if (arg1->expr->ts.type == BT_CLASS)
9409 : : {
9410 : 384 : tmp2 = gfc_class_data_get (arg1se.expr);
9411 : 384 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)))
9412 : 0 : tmp2 = gfc_conv_descriptor_data_get (tmp2);
9413 : : }
9414 : : else
9415 : 3692 : tmp2 = arg1se.expr;
9416 : : }
9417 : : else
9418 : : {
9419 : : /* A pointer to an array. */
9420 : 2383 : gfc_conv_expr_descriptor (&arg1se, arg1->expr);
9421 : 2383 : tmp2 = gfc_conv_descriptor_data_get (arg1se.expr);
9422 : : }
9423 : 6459 : gfc_add_block_to_block (&se->pre, &arg1se.pre);
9424 : 6459 : gfc_add_block_to_block (&se->post, &arg1se.post);
9425 : 6459 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node, tmp2,
9426 : 6459 : fold_convert (TREE_TYPE (tmp2), null_pointer_node));
9427 : 6459 : se->expr = tmp;
9428 : : }
9429 : : else
9430 : : {
9431 : : /* An optional target. */
9432 : 1781 : if (arg2->expr->ts.type == BT_CLASS
9433 : 24 : && arg2->expr->expr_type != EXPR_FUNCTION)
9434 : 18 : gfc_add_data_component (arg2->expr);
9435 : :
9436 : 1781 : if (scalar)
9437 : : {
9438 : : /* A pointer to a scalar. */
9439 : 836 : arg1se.want_pointer = 1;
9440 : 836 : gfc_conv_expr (&arg1se, arg1->expr);
9441 : 836 : if (arg1->expr->symtree->n.sym->attr.proc_pointer
9442 : 836 : && arg1->expr->symtree->n.sym->attr.dummy)
9443 : 42 : arg1se.expr = build_fold_indirect_ref_loc (input_location,
9444 : : arg1se.expr);
9445 : 836 : if (arg1->expr->ts.type == BT_CLASS)
9446 : 246 : arg1se.expr = gfc_class_data_get (arg1se.expr);
9447 : :
9448 : 836 : arg2se.want_pointer = 1;
9449 : 836 : gfc_conv_expr (&arg2se, arg2->expr);
9450 : 836 : if (arg2->expr->symtree->n.sym->attr.proc_pointer
9451 : 836 : && arg2->expr->symtree->n.sym->attr.dummy)
9452 : 0 : arg2se.expr = build_fold_indirect_ref_loc (input_location,
9453 : : arg2se.expr);
9454 : 836 : if (arg2->expr->ts.type == BT_CLASS)
9455 : : {
9456 : 6 : arg2se.expr = gfc_evaluate_now (arg2se.expr, &arg2se.pre);
9457 : 6 : arg2se.expr = gfc_class_data_get (arg2se.expr);
9458 : : }
9459 : 836 : gfc_add_block_to_block (&se->pre, &arg1se.pre);
9460 : 836 : gfc_add_block_to_block (&se->post, &arg1se.post);
9461 : 836 : gfc_add_block_to_block (&se->pre, &arg2se.pre);
9462 : 836 : gfc_add_block_to_block (&se->post, &arg2se.post);
9463 : 836 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
9464 : : arg1se.expr, arg2se.expr);
9465 : 836 : tmp2 = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9466 : : arg1se.expr, null_pointer_node);
9467 : 836 : se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
9468 : : logical_type_node, tmp, tmp2);
9469 : : }
9470 : : else
9471 : : {
9472 : : /* An array pointer of zero length is not associated if target is
9473 : : present. */
9474 : 945 : arg1se.descriptor_only = 1;
9475 : 945 : gfc_conv_expr_lhs (&arg1se, arg1->expr);
9476 : 945 : if (arg1->expr->rank == -1)
9477 : : {
9478 : 84 : tmp = gfc_conv_descriptor_rank (arg1se.expr);
9479 : 168 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
9480 : 84 : TREE_TYPE (tmp), tmp,
9481 : 84 : build_int_cst (TREE_TYPE (tmp), 1));
9482 : : }
9483 : : else
9484 : 861 : tmp = gfc_rank_cst[arg1->expr->rank - 1];
9485 : 945 : tmp = gfc_conv_descriptor_stride_get (arg1se.expr, tmp);
9486 : 945 : if (arg2->expr->rank != 0)
9487 : 915 : nonzero_arraylen = fold_build2_loc (input_location, NE_EXPR,
9488 : : logical_type_node, tmp,
9489 : 915 : build_int_cst (TREE_TYPE (tmp), 0));
9490 : :
9491 : : /* A pointer to an array, call library function _gfor_associated. */
9492 : 945 : arg1se.want_pointer = 1;
9493 : 945 : gfc_conv_expr_descriptor (&arg1se, arg1->expr);
9494 : 945 : gfc_add_block_to_block (&se->pre, &arg1se.pre);
9495 : 945 : gfc_add_block_to_block (&se->post, &arg1se.post);
9496 : :
9497 : 945 : arg2se.want_pointer = 1;
9498 : 945 : arg2se.force_no_tmp = 1;
9499 : 945 : if (arg2->expr->rank != 0)
9500 : 915 : gfc_conv_expr_descriptor (&arg2se, arg2->expr);
9501 : : else
9502 : : {
9503 : 30 : gfc_conv_expr (&arg2se, arg2->expr);
9504 : 30 : arg2se.expr
9505 : 30 : = gfc_conv_scalar_to_descriptor (&arg2se, arg2se.expr,
9506 : : gfc_expr_attr (arg2->expr));
9507 : 30 : arg2se.expr = gfc_build_addr_expr (NULL_TREE, arg2se.expr);
9508 : : }
9509 : 945 : gfc_add_block_to_block (&se->pre, &arg2se.pre);
9510 : 945 : gfc_add_block_to_block (&se->post, &arg2se.post);
9511 : 945 : se->expr = build_call_expr_loc (input_location,
9512 : : gfor_fndecl_associated, 2,
9513 : : arg1se.expr, arg2se.expr);
9514 : 945 : se->expr = convert (logical_type_node, se->expr);
9515 : 945 : if (arg2->expr->rank != 0)
9516 : 915 : se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
9517 : : logical_type_node, se->expr,
9518 : : nonzero_arraylen);
9519 : : }
9520 : :
9521 : : /* If target is present zero character length pointers cannot
9522 : : be associated. */
9523 : 1781 : if (arg1->expr->ts.type == BT_CHARACTER)
9524 : : {
9525 : 630 : tmp = arg1se.string_length;
9526 : 630 : tmp = fold_build2_loc (input_location, NE_EXPR,
9527 : : logical_type_node, tmp,
9528 : 630 : build_zero_cst (TREE_TYPE (tmp)));
9529 : 630 : se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
9530 : : logical_type_node, se->expr, tmp);
9531 : : }
9532 : : }
9533 : :
9534 : 8240 : se->expr = convert (gfc_typenode_for_spec (&expr->ts), se->expr);
9535 : 8240 : }
9536 : :
9537 : :
9538 : : /* Generate code for the SAME_TYPE_AS intrinsic.
9539 : : Generate inline code that directly checks the vindices. */
9540 : :
9541 : : static void
9542 : 403 : gfc_conv_same_type_as (gfc_se *se, gfc_expr *expr)
9543 : : {
9544 : 403 : gfc_expr *a, *b;
9545 : 403 : gfc_se se1, se2;
9546 : 403 : tree tmp;
9547 : 403 : tree conda = NULL_TREE, condb = NULL_TREE;
9548 : :
9549 : 403 : gfc_init_se (&se1, NULL);
9550 : 403 : gfc_init_se (&se2, NULL);
9551 : :
9552 : 403 : a = expr->value.function.actual->expr;
9553 : 403 : b = expr->value.function.actual->next->expr;
9554 : :
9555 : 403 : bool unlimited_poly_a = UNLIMITED_POLY (a);
9556 : 403 : bool unlimited_poly_b = UNLIMITED_POLY (b);
9557 : 403 : if (unlimited_poly_a)
9558 : : {
9559 : 105 : se1.want_pointer = 1;
9560 : 105 : gfc_add_vptr_component (a);
9561 : : }
9562 : 298 : else if (a->ts.type == BT_CLASS)
9563 : : {
9564 : 256 : gfc_add_vptr_component (a);
9565 : 256 : gfc_add_hash_component (a);
9566 : : }
9567 : 42 : else if (a->ts.type == BT_DERIVED)
9568 : 42 : a = gfc_get_int_expr (gfc_default_integer_kind, NULL,
9569 : 42 : a->ts.u.derived->hash_value);
9570 : :
9571 : 403 : if (unlimited_poly_b)
9572 : : {
9573 : 66 : se2.want_pointer = 1;
9574 : 66 : gfc_add_vptr_component (b);
9575 : : }
9576 : 337 : else if (b->ts.type == BT_CLASS)
9577 : : {
9578 : 169 : gfc_add_vptr_component (b);
9579 : 169 : gfc_add_hash_component (b);
9580 : : }
9581 : 168 : else if (b->ts.type == BT_DERIVED)
9582 : 168 : b = gfc_get_int_expr (gfc_default_integer_kind, NULL,
9583 : 168 : b->ts.u.derived->hash_value);
9584 : :
9585 : 403 : gfc_conv_expr (&se1, a);
9586 : 403 : gfc_conv_expr (&se2, b);
9587 : :
9588 : 403 : if (unlimited_poly_a)
9589 : : {
9590 : 105 : conda = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9591 : : se1.expr,
9592 : 105 : build_int_cst (TREE_TYPE (se1.expr), 0));
9593 : 105 : se1.expr = gfc_vptr_hash_get (se1.expr);
9594 : : }
9595 : :
9596 : 403 : if (unlimited_poly_b)
9597 : : {
9598 : 66 : condb = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9599 : : se2.expr,
9600 : 66 : build_int_cst (TREE_TYPE (se2.expr), 0));
9601 : 66 : se2.expr = gfc_vptr_hash_get (se2.expr);
9602 : : }
9603 : :
9604 : 403 : tmp = fold_build2_loc (input_location, EQ_EXPR,
9605 : : logical_type_node, se1.expr,
9606 : 403 : fold_convert (TREE_TYPE (se1.expr), se2.expr));
9607 : :
9608 : 403 : if (conda)
9609 : 105 : tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
9610 : : logical_type_node, conda, tmp);
9611 : :
9612 : 403 : if (condb)
9613 : 66 : tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
9614 : : logical_type_node, condb, tmp);
9615 : :
9616 : 403 : se->expr = convert (gfc_typenode_for_spec (&expr->ts), tmp);
9617 : 403 : }
9618 : :
9619 : :
9620 : : /* Generate code for SELECTED_CHAR_KIND (NAME) intrinsic function. */
9621 : :
9622 : : static void
9623 : 42 : gfc_conv_intrinsic_sc_kind (gfc_se *se, gfc_expr *expr)
9624 : : {
9625 : 42 : tree args[2];
9626 : :
9627 : 42 : gfc_conv_intrinsic_function_args (se, expr, args, 2);
9628 : 42 : se->expr = build_call_expr_loc (input_location,
9629 : : gfor_fndecl_sc_kind, 2, args[0], args[1]);
9630 : 42 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
9631 : 42 : }
9632 : :
9633 : :
9634 : : /* Generate code for SELECTED_INT_KIND (R) intrinsic function. */
9635 : :
9636 : : static void
9637 : 45 : gfc_conv_intrinsic_si_kind (gfc_se *se, gfc_expr *expr)
9638 : : {
9639 : 45 : tree arg, type;
9640 : :
9641 : 45 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
9642 : :
9643 : : /* The argument to SELECTED_INT_KIND is INTEGER(4). */
9644 : 45 : type = gfc_get_int_type (4);
9645 : 45 : arg = gfc_build_addr_expr (NULL_TREE, fold_convert (type, arg));
9646 : :
9647 : : /* Convert it to the required type. */
9648 : 45 : type = gfc_typenode_for_spec (&expr->ts);
9649 : 45 : se->expr = build_call_expr_loc (input_location,
9650 : : gfor_fndecl_si_kind, 1, arg);
9651 : 45 : se->expr = fold_convert (type, se->expr);
9652 : 45 : }
9653 : :
9654 : :
9655 : : /* Generate code for SELECTED_LOGICAL_KIND (BITS) intrinsic function. */
9656 : :
9657 : : static void
9658 : 6 : gfc_conv_intrinsic_sl_kind (gfc_se *se, gfc_expr *expr)
9659 : : {
9660 : 6 : tree arg, type;
9661 : :
9662 : 6 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
9663 : :
9664 : : /* The argument to SELECTED_LOGICAL_KIND is INTEGER(4). */
9665 : 6 : type = gfc_get_int_type (4);
9666 : 6 : arg = gfc_build_addr_expr (NULL_TREE, fold_convert (type, arg));
9667 : :
9668 : : /* Convert it to the required type. */
9669 : 6 : type = gfc_typenode_for_spec (&expr->ts);
9670 : 6 : se->expr = build_call_expr_loc (input_location,
9671 : : gfor_fndecl_sl_kind, 1, arg);
9672 : 6 : se->expr = fold_convert (type, se->expr);
9673 : 6 : }
9674 : :
9675 : :
9676 : : /* Generate code for SELECTED_REAL_KIND (P, R, RADIX) intrinsic function. */
9677 : :
9678 : : static void
9679 : 82 : gfc_conv_intrinsic_sr_kind (gfc_se *se, gfc_expr *expr)
9680 : : {
9681 : 82 : gfc_actual_arglist *actual;
9682 : 82 : tree type;
9683 : 82 : gfc_se argse;
9684 : 82 : vec<tree, va_gc> *args = NULL;
9685 : :
9686 : 328 : for (actual = expr->value.function.actual; actual; actual = actual->next)
9687 : : {
9688 : 246 : gfc_init_se (&argse, se);
9689 : :
9690 : : /* Pass a NULL pointer for an absent arg. */
9691 : 246 : if (actual->expr == NULL)
9692 : 96 : argse.expr = null_pointer_node;
9693 : : else
9694 : : {
9695 : 150 : gfc_typespec ts;
9696 : 150 : gfc_clear_ts (&ts);
9697 : :
9698 : 150 : if (actual->expr->ts.kind != gfc_c_int_kind)
9699 : : {
9700 : : /* The arguments to SELECTED_REAL_KIND are INTEGER(4). */
9701 : 0 : ts.type = BT_INTEGER;
9702 : 0 : ts.kind = gfc_c_int_kind;
9703 : 0 : gfc_convert_type (actual->expr, &ts, 2);
9704 : : }
9705 : 150 : gfc_conv_expr_reference (&argse, actual->expr);
9706 : : }
9707 : :
9708 : 246 : gfc_add_block_to_block (&se->pre, &argse.pre);
9709 : 246 : gfc_add_block_to_block (&se->post, &argse.post);
9710 : 246 : vec_safe_push (args, argse.expr);
9711 : : }
9712 : :
9713 : : /* Convert it to the required type. */
9714 : 82 : type = gfc_typenode_for_spec (&expr->ts);
9715 : 82 : se->expr = build_call_expr_loc_vec (input_location,
9716 : : gfor_fndecl_sr_kind, args);
9717 : 82 : se->expr = fold_convert (type, se->expr);
9718 : 82 : }
9719 : :
9720 : :
9721 : : /* Generate code for TRIM (A) intrinsic function. */
9722 : :
9723 : : static void
9724 : 581 : gfc_conv_intrinsic_trim (gfc_se * se, gfc_expr * expr)
9725 : : {
9726 : 581 : tree var;
9727 : 581 : tree len;
9728 : 581 : tree addr;
9729 : 581 : tree tmp;
9730 : 581 : tree cond;
9731 : 581 : tree fndecl;
9732 : 581 : tree function;
9733 : 581 : tree *args;
9734 : 581 : unsigned int num_args;
9735 : :
9736 : 581 : num_args = gfc_intrinsic_argument_list_length (expr) + 2;
9737 : 581 : args = XALLOCAVEC (tree, num_args);
9738 : :
9739 : 581 : var = gfc_create_var (gfc_get_pchar_type (expr->ts.kind), "pstr");
9740 : 581 : addr = gfc_build_addr_expr (ppvoid_type_node, var);
9741 : 581 : len = gfc_create_var (gfc_charlen_type_node, "len");
9742 : :
9743 : 581 : gfc_conv_intrinsic_function_args (se, expr, &args[2], num_args - 2);
9744 : 581 : args[0] = gfc_build_addr_expr (NULL_TREE, len);
9745 : 581 : args[1] = addr;
9746 : :
9747 : 581 : if (expr->ts.kind == 1)
9748 : 555 : function = gfor_fndecl_string_trim;
9749 : 26 : else if (expr->ts.kind == 4)
9750 : 26 : function = gfor_fndecl_string_trim_char4;
9751 : : else
9752 : 0 : gcc_unreachable ();
9753 : :
9754 : 581 : fndecl = build_addr (function);
9755 : 581 : tmp = build_call_array_loc (input_location,
9756 : 581 : TREE_TYPE (TREE_TYPE (function)), fndecl,
9757 : : num_args, args);
9758 : 581 : gfc_add_expr_to_block (&se->pre, tmp);
9759 : :
9760 : : /* Free the temporary afterwards, if necessary. */
9761 : 581 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
9762 : 581 : len, build_int_cst (TREE_TYPE (len), 0));
9763 : 581 : tmp = gfc_call_free (var);
9764 : 581 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
9765 : 581 : gfc_add_expr_to_block (&se->post, tmp);
9766 : :
9767 : 581 : se->expr = var;
9768 : 581 : se->string_length = len;
9769 : 581 : }
9770 : :
9771 : :
9772 : : /* Generate code for REPEAT (STRING, NCOPIES) intrinsic function. */
9773 : :
9774 : : static void
9775 : 529 : gfc_conv_intrinsic_repeat (gfc_se * se, gfc_expr * expr)
9776 : : {
9777 : 529 : tree args[3], ncopies, dest, dlen, src, slen, ncopies_type;
9778 : 529 : tree type, cond, tmp, count, exit_label, n, max, largest;
9779 : 529 : tree size;
9780 : 529 : stmtblock_t block, body;
9781 : 529 : int i;
9782 : :
9783 : : /* We store in charsize the size of a character. */
9784 : 529 : i = gfc_validate_kind (BT_CHARACTER, expr->ts.kind, false);
9785 : 529 : size = build_int_cst (sizetype, gfc_character_kinds[i].bit_size / 8);
9786 : :
9787 : : /* Get the arguments. */
9788 : 529 : gfc_conv_intrinsic_function_args (se, expr, args, 3);
9789 : 529 : slen = fold_convert (sizetype, gfc_evaluate_now (args[0], &se->pre));
9790 : 529 : src = args[1];
9791 : 529 : ncopies = gfc_evaluate_now (args[2], &se->pre);
9792 : 529 : ncopies_type = TREE_TYPE (ncopies);
9793 : :
9794 : : /* Check that NCOPIES is not negative. */
9795 : 529 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node, ncopies,
9796 : 529 : build_int_cst (ncopies_type, 0));
9797 : 529 : gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
9798 : : "Argument NCOPIES of REPEAT intrinsic is negative "
9799 : : "(its value is %ld)",
9800 : : fold_convert (long_integer_type_node, ncopies));
9801 : :
9802 : : /* If the source length is zero, any non negative value of NCOPIES
9803 : : is valid, and nothing happens. */
9804 : 529 : n = gfc_create_var (ncopies_type, "ncopies");
9805 : 529 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, slen,
9806 : : size_zero_node);
9807 : 529 : tmp = fold_build3_loc (input_location, COND_EXPR, ncopies_type, cond,
9808 : 529 : build_int_cst (ncopies_type, 0), ncopies);
9809 : 529 : gfc_add_modify (&se->pre, n, tmp);
9810 : 529 : ncopies = n;
9811 : :
9812 : : /* Check that ncopies is not too large: ncopies should be less than
9813 : : (or equal to) MAX / slen, where MAX is the maximal integer of
9814 : : the gfc_charlen_type_node type. If slen == 0, we need a special
9815 : : case to avoid the division by zero. */
9816 : 529 : max = fold_build2_loc (input_location, TRUNC_DIV_EXPR, sizetype,
9817 : 529 : fold_convert (sizetype,
9818 : : TYPE_MAX_VALUE (gfc_charlen_type_node)),
9819 : : slen);
9820 : 529 : largest = TYPE_PRECISION (sizetype) > TYPE_PRECISION (ncopies_type)
9821 : 529 : ? sizetype : ncopies_type;
9822 : 529 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
9823 : : fold_convert (largest, ncopies),
9824 : : fold_convert (largest, max));
9825 : 529 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, slen,
9826 : : size_zero_node);
9827 : 529 : cond = fold_build3_loc (input_location, COND_EXPR, logical_type_node, tmp,
9828 : : logical_false_node, cond);
9829 : 529 : gfc_trans_runtime_check (true, false, cond, &se->pre, &expr->where,
9830 : : "Argument NCOPIES of REPEAT intrinsic is too large");
9831 : :
9832 : : /* Compute the destination length. */
9833 : 529 : dlen = fold_build2_loc (input_location, MULT_EXPR, gfc_charlen_type_node,
9834 : : fold_convert (gfc_charlen_type_node, slen),
9835 : : fold_convert (gfc_charlen_type_node, ncopies));
9836 : 529 : type = gfc_get_character_type (expr->ts.kind, expr->ts.u.cl);
9837 : 529 : dest = gfc_conv_string_tmp (se, build_pointer_type (type), dlen);
9838 : :
9839 : : /* Generate the code to do the repeat operation:
9840 : : for (i = 0; i < ncopies; i++)
9841 : : memmove (dest + (i * slen * size), src, slen*size); */
9842 : 529 : gfc_start_block (&block);
9843 : 529 : count = gfc_create_var (sizetype, "count");
9844 : 529 : gfc_add_modify (&block, count, size_zero_node);
9845 : 529 : exit_label = gfc_build_label_decl (NULL_TREE);
9846 : :
9847 : : /* Start the loop body. */
9848 : 529 : gfc_start_block (&body);
9849 : :
9850 : : /* Exit the loop if count >= ncopies. */
9851 : 529 : cond = fold_build2_loc (input_location, GE_EXPR, logical_type_node, count,
9852 : : fold_convert (sizetype, ncopies));
9853 : 529 : tmp = build1_v (GOTO_EXPR, exit_label);
9854 : 529 : TREE_USED (exit_label) = 1;
9855 : 529 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
9856 : : build_empty_stmt (input_location));
9857 : 529 : gfc_add_expr_to_block (&body, tmp);
9858 : :
9859 : : /* Call memmove (dest + (i*slen*size), src, slen*size). */
9860 : 529 : tmp = fold_build2_loc (input_location, MULT_EXPR, sizetype, slen,
9861 : : count);
9862 : 529 : tmp = fold_build2_loc (input_location, MULT_EXPR, sizetype, tmp,
9863 : : size);
9864 : 529 : tmp = fold_build_pointer_plus_loc (input_location,
9865 : : fold_convert (pvoid_type_node, dest), tmp);
9866 : 529 : tmp = build_call_expr_loc (input_location,
9867 : : builtin_decl_explicit (BUILT_IN_MEMMOVE),
9868 : : 3, tmp, src,
9869 : : fold_build2_loc (input_location, MULT_EXPR,
9870 : : size_type_node, slen, size));
9871 : 529 : gfc_add_expr_to_block (&body, tmp);
9872 : :
9873 : : /* Increment count. */
9874 : 529 : tmp = fold_build2_loc (input_location, PLUS_EXPR, sizetype,
9875 : : count, size_one_node);
9876 : 529 : gfc_add_modify (&body, count, tmp);
9877 : :
9878 : : /* Build the loop. */
9879 : 529 : tmp = build1_v (LOOP_EXPR, gfc_finish_block (&body));
9880 : 529 : gfc_add_expr_to_block (&block, tmp);
9881 : :
9882 : : /* Add the exit label. */
9883 : 529 : tmp = build1_v (LABEL_EXPR, exit_label);
9884 : 529 : gfc_add_expr_to_block (&block, tmp);
9885 : :
9886 : : /* Finish the block. */
9887 : 529 : tmp = gfc_finish_block (&block);
9888 : 529 : gfc_add_expr_to_block (&se->pre, tmp);
9889 : :
9890 : : /* Set the result value. */
9891 : 529 : se->expr = dest;
9892 : 529 : se->string_length = dlen;
9893 : 529 : }
9894 : :
9895 : :
9896 : : /* Generate code for the IARGC intrinsic. */
9897 : :
9898 : : static void
9899 : 12 : gfc_conv_intrinsic_iargc (gfc_se * se, gfc_expr * expr)
9900 : : {
9901 : 12 : tree tmp;
9902 : 12 : tree fndecl;
9903 : 12 : tree type;
9904 : :
9905 : : /* Call the library function. This always returns an INTEGER(4). */
9906 : 12 : fndecl = gfor_fndecl_iargc;
9907 : 12 : tmp = build_call_expr_loc (input_location,
9908 : : fndecl, 0);
9909 : :
9910 : : /* Convert it to the required type. */
9911 : 12 : type = gfc_typenode_for_spec (&expr->ts);
9912 : 12 : tmp = fold_convert (type, tmp);
9913 : :
9914 : 12 : se->expr = tmp;
9915 : 12 : }
9916 : :
9917 : :
9918 : : /* Generate code for the KILL intrinsic. */
9919 : :
9920 : : static void
9921 : 8 : conv_intrinsic_kill (gfc_se *se, gfc_expr *expr)
9922 : : {
9923 : 8 : tree *args;
9924 : 8 : tree int4_type_node = gfc_get_int_type (4);
9925 : 8 : tree pid;
9926 : 8 : tree sig;
9927 : 8 : tree tmp;
9928 : 8 : unsigned int num_args;
9929 : :
9930 : 8 : num_args = gfc_intrinsic_argument_list_length (expr);
9931 : 8 : args = XALLOCAVEC (tree, num_args);
9932 : 8 : gfc_conv_intrinsic_function_args (se, expr, args, num_args);
9933 : :
9934 : : /* Convert PID to a INTEGER(4) entity. */
9935 : 8 : pid = convert (int4_type_node, args[0]);
9936 : :
9937 : : /* Convert SIG to a INTEGER(4) entity. */
9938 : 8 : sig = convert (int4_type_node, args[1]);
9939 : :
9940 : 8 : tmp = build_call_expr_loc (input_location, gfor_fndecl_kill, 2, pid, sig);
9941 : :
9942 : 8 : se->expr = fold_convert (TREE_TYPE (args[0]), tmp);
9943 : 8 : }
9944 : :
9945 : :
9946 : : static tree
9947 : 15 : conv_intrinsic_kill_sub (gfc_code *code)
9948 : : {
9949 : 15 : stmtblock_t block;
9950 : 15 : gfc_se se, se_stat;
9951 : 15 : tree int4_type_node = gfc_get_int_type (4);
9952 : 15 : tree pid;
9953 : 15 : tree sig;
9954 : 15 : tree statp;
9955 : 15 : tree tmp;
9956 : :
9957 : : /* Make the function call. */
9958 : 15 : gfc_init_block (&block);
9959 : 15 : gfc_init_se (&se, NULL);
9960 : :
9961 : : /* Convert PID to a INTEGER(4) entity. */
9962 : 15 : gfc_conv_expr (&se, code->ext.actual->expr);
9963 : 15 : gfc_add_block_to_block (&block, &se.pre);
9964 : 15 : pid = fold_convert (int4_type_node, gfc_evaluate_now (se.expr, &block));
9965 : 15 : gfc_add_block_to_block (&block, &se.post);
9966 : :
9967 : : /* Convert SIG to a INTEGER(4) entity. */
9968 : 15 : gfc_conv_expr (&se, code->ext.actual->next->expr);
9969 : 15 : gfc_add_block_to_block (&block, &se.pre);
9970 : 15 : sig = fold_convert (int4_type_node, gfc_evaluate_now (se.expr, &block));
9971 : 15 : gfc_add_block_to_block (&block, &se.post);
9972 : :
9973 : : /* Deal with an optional STATUS. */
9974 : 15 : if (code->ext.actual->next->next->expr)
9975 : : {
9976 : 10 : gfc_init_se (&se_stat, NULL);
9977 : 10 : gfc_conv_expr (&se_stat, code->ext.actual->next->next->expr);
9978 : 10 : statp = gfc_create_var (gfc_get_int_type (4), "_statp");
9979 : : }
9980 : : else
9981 : : statp = NULL_TREE;
9982 : :
9983 : 25 : tmp = build_call_expr_loc (input_location, gfor_fndecl_kill_sub, 3, pid, sig,
9984 : 10 : statp ? gfc_build_addr_expr (NULL_TREE, statp) : null_pointer_node);
9985 : :
9986 : 15 : gfc_add_expr_to_block (&block, tmp);
9987 : :
9988 : 15 : if (statp && statp != se_stat.expr)
9989 : 10 : gfc_add_modify (&block, se_stat.expr,
9990 : 10 : fold_convert (TREE_TYPE (se_stat.expr), statp));
9991 : :
9992 : 15 : return gfc_finish_block (&block);
9993 : : }
9994 : :
9995 : :
9996 : :
9997 : : /* The loc intrinsic returns the address of its argument as
9998 : : gfc_index_integer_kind integer. */
9999 : :
10000 : : static void
10001 : 8491 : gfc_conv_intrinsic_loc (gfc_se * se, gfc_expr * expr)
10002 : : {
10003 : 8491 : tree temp_var;
10004 : 8491 : gfc_expr *arg_expr;
10005 : :
10006 : 8491 : gcc_assert (!se->ss);
10007 : :
10008 : 8491 : arg_expr = expr->value.function.actual->expr;
10009 : 8491 : if (arg_expr->rank == 0)
10010 : : {
10011 : 6110 : if (arg_expr->ts.type == BT_CLASS)
10012 : 18 : gfc_add_data_component (arg_expr);
10013 : 6110 : gfc_conv_expr_reference (se, arg_expr);
10014 : : }
10015 : : else
10016 : 2381 : gfc_conv_array_parameter (se, arg_expr, true, NULL, NULL, NULL);
10017 : 8491 : se->expr = convert (gfc_get_int_type (gfc_index_integer_kind), se->expr);
10018 : :
10019 : : /* Create a temporary variable for loc return value. Without this,
10020 : : we get an error an ICE in gcc/expr.cc(expand_expr_addr_expr_1). */
10021 : 8491 : temp_var = gfc_create_var (gfc_get_int_type (gfc_index_integer_kind), NULL);
10022 : 8491 : gfc_add_modify (&se->pre, temp_var, se->expr);
10023 : 8491 : se->expr = temp_var;
10024 : 8491 : }
10025 : :
10026 : :
10027 : : /* The following routine generates code for the intrinsic
10028 : : functions from the ISO_C_BINDING module:
10029 : : * C_LOC
10030 : : * C_FUNLOC
10031 : : * C_ASSOCIATED */
10032 : :
10033 : : static void
10034 : 8974 : conv_isocbinding_function (gfc_se *se, gfc_expr *expr)
10035 : : {
10036 : 8974 : gfc_actual_arglist *arg = expr->value.function.actual;
10037 : :
10038 : 8974 : if (expr->value.function.isym->id == GFC_ISYM_C_LOC)
10039 : : {
10040 : 6720 : if (arg->expr->rank == 0)
10041 : 2022 : gfc_conv_expr_reference (se, arg->expr);
10042 : 4698 : else if (gfc_is_simply_contiguous (arg->expr, false, false))
10043 : 3664 : gfc_conv_array_parameter (se, arg->expr, true, NULL, NULL, NULL);
10044 : : else
10045 : : {
10046 : 1034 : gfc_conv_expr_descriptor (se, arg->expr);
10047 : 1034 : se->expr = gfc_conv_descriptor_data_get (se->expr);
10048 : : }
10049 : :
10050 : : /* TODO -- the following two lines shouldn't be necessary, but if
10051 : : they're removed, a bug is exposed later in the code path.
10052 : : This workaround was thus introduced, but will have to be
10053 : : removed; please see PR 35150 for details about the issue. */
10054 : 6720 : se->expr = convert (pvoid_type_node, se->expr);
10055 : 6720 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
10056 : : }
10057 : 2254 : else if (expr->value.function.isym->id == GFC_ISYM_C_FUNLOC)
10058 : 231 : gfc_conv_expr_reference (se, arg->expr);
10059 : 2023 : else if (expr->value.function.isym->id == GFC_ISYM_C_ASSOCIATED)
10060 : : {
10061 : 2023 : gfc_se arg1se;
10062 : 2023 : gfc_se arg2se;
10063 : :
10064 : : /* Build the addr_expr for the first argument. The argument is
10065 : : already an *address* so we don't need to set want_pointer in
10066 : : the gfc_se. */
10067 : 2023 : gfc_init_se (&arg1se, NULL);
10068 : 2023 : gfc_conv_expr (&arg1se, arg->expr);
10069 : 2023 : gfc_add_block_to_block (&se->pre, &arg1se.pre);
10070 : 2023 : gfc_add_block_to_block (&se->post, &arg1se.post);
10071 : :
10072 : : /* See if we were given two arguments. */
10073 : 2023 : if (arg->next->expr == NULL)
10074 : : /* Only given one arg so generate a null and do a
10075 : : not-equal comparison against the first arg. */
10076 : 1684 : se->expr = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10077 : : arg1se.expr,
10078 : 1684 : fold_convert (TREE_TYPE (arg1se.expr),
10079 : : null_pointer_node));
10080 : : else
10081 : : {
10082 : 339 : tree eq_expr;
10083 : 339 : tree not_null_expr;
10084 : :
10085 : : /* Given two arguments so build the arg2se from second arg. */
10086 : 339 : gfc_init_se (&arg2se, NULL);
10087 : 339 : gfc_conv_expr (&arg2se, arg->next->expr);
10088 : 339 : gfc_add_block_to_block (&se->pre, &arg2se.pre);
10089 : 339 : gfc_add_block_to_block (&se->post, &arg2se.post);
10090 : :
10091 : : /* Generate test to compare that the two args are equal. */
10092 : 339 : eq_expr = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
10093 : : arg1se.expr, arg2se.expr);
10094 : : /* Generate test to ensure that the first arg is not null. */
10095 : 339 : not_null_expr = fold_build2_loc (input_location, NE_EXPR,
10096 : : logical_type_node,
10097 : : arg1se.expr, null_pointer_node);
10098 : :
10099 : : /* Finally, the generated test must check that both arg1 is not
10100 : : NULL and that it is equal to the second arg. */
10101 : 339 : se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
10102 : : logical_type_node,
10103 : : not_null_expr, eq_expr);
10104 : : }
10105 : : }
10106 : : else
10107 : 0 : gcc_unreachable ();
10108 : 8974 : }
10109 : :
10110 : :
10111 : : /* The following routine generates code for the intrinsic
10112 : : subroutines from the ISO_C_BINDING module:
10113 : : * C_F_POINTER
10114 : : * C_F_PROCPOINTER. */
10115 : :
10116 : : static tree
10117 : 2622 : conv_isocbinding_subroutine (gfc_code *code)
10118 : : {
10119 : 2622 : gfc_se se;
10120 : 2622 : gfc_se cptrse;
10121 : 2622 : gfc_se fptrse;
10122 : 2622 : gfc_se shapese;
10123 : 2622 : gfc_ss *shape_ss;
10124 : 2622 : tree desc, dim, tmp, stride, offset;
10125 : 2622 : stmtblock_t body, block;
10126 : 2622 : gfc_loopinfo loop;
10127 : 2622 : gfc_actual_arglist *arg = code->ext.actual;
10128 : :
10129 : 2622 : gfc_init_se (&se, NULL);
10130 : 2622 : gfc_init_se (&cptrse, NULL);
10131 : 2622 : gfc_conv_expr (&cptrse, arg->expr);
10132 : 2622 : gfc_add_block_to_block (&se.pre, &cptrse.pre);
10133 : 2622 : gfc_add_block_to_block (&se.post, &cptrse.post);
10134 : :
10135 : 2622 : gfc_init_se (&fptrse, NULL);
10136 : 2622 : if (arg->next->expr->rank == 0)
10137 : : {
10138 : 2168 : fptrse.want_pointer = 1;
10139 : 2168 : gfc_conv_expr (&fptrse, arg->next->expr);
10140 : 2168 : gfc_add_block_to_block (&se.pre, &fptrse.pre);
10141 : 2168 : gfc_add_block_to_block (&se.post, &fptrse.post);
10142 : 2168 : if (arg->next->expr->symtree->n.sym->attr.proc_pointer
10143 : 2168 : && arg->next->expr->symtree->n.sym->attr.dummy)
10144 : 7 : fptrse.expr = build_fold_indirect_ref_loc (input_location,
10145 : : fptrse.expr);
10146 : 4336 : se.expr = fold_build2_loc (input_location, MODIFY_EXPR,
10147 : 2168 : TREE_TYPE (fptrse.expr),
10148 : : fptrse.expr,
10149 : 2168 : fold_convert (TREE_TYPE (fptrse.expr),
10150 : : cptrse.expr));
10151 : 2168 : gfc_add_expr_to_block (&se.pre, se.expr);
10152 : 2168 : gfc_add_block_to_block (&se.pre, &se.post);
10153 : 2168 : return gfc_finish_block (&se.pre);
10154 : : }
10155 : :
10156 : 454 : gfc_start_block (&block);
10157 : :
10158 : : /* Get the descriptor of the Fortran pointer. */
10159 : 454 : fptrse.descriptor_only = 1;
10160 : 454 : gfc_conv_expr_descriptor (&fptrse, arg->next->expr);
10161 : 454 : gfc_add_block_to_block (&block, &fptrse.pre);
10162 : 454 : desc = fptrse.expr;
10163 : :
10164 : : /* Set the span field. */
10165 : 454 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (desc)));
10166 : 454 : tmp = fold_convert (gfc_array_index_type, tmp);
10167 : 454 : gfc_conv_descriptor_span_set (&block, desc, tmp);
10168 : :
10169 : : /* Set data value, dtype, and offset. */
10170 : 454 : tmp = GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (desc));
10171 : 454 : gfc_conv_descriptor_data_set (&block, desc, fold_convert (tmp, cptrse.expr));
10172 : 454 : gfc_add_modify (&block, gfc_conv_descriptor_dtype (desc),
10173 : 454 : gfc_get_dtype (TREE_TYPE (desc)));
10174 : :
10175 : : /* Start scalarization of the bounds, using the shape argument. */
10176 : :
10177 : 454 : shape_ss = gfc_walk_expr (arg->next->next->expr);
10178 : 454 : gcc_assert (shape_ss != gfc_ss_terminator);
10179 : 454 : gfc_init_se (&shapese, NULL);
10180 : :
10181 : 454 : gfc_init_loopinfo (&loop);
10182 : 454 : gfc_add_ss_to_loop (&loop, shape_ss);
10183 : 454 : gfc_conv_ss_startstride (&loop);
10184 : 454 : gfc_conv_loop_setup (&loop, &arg->next->expr->where);
10185 : 454 : gfc_mark_ss_chain_used (shape_ss, 1);
10186 : :
10187 : 454 : gfc_copy_loopinfo_to_se (&shapese, &loop);
10188 : 454 : shapese.ss = shape_ss;
10189 : :
10190 : 454 : stride = gfc_create_var (gfc_array_index_type, "stride");
10191 : 454 : offset = gfc_create_var (gfc_array_index_type, "offset");
10192 : 454 : gfc_add_modify (&block, stride, gfc_index_one_node);
10193 : 454 : gfc_add_modify (&block, offset, gfc_index_zero_node);
10194 : :
10195 : : /* Loop body. */
10196 : 454 : gfc_start_scalarized_body (&loop, &body);
10197 : :
10198 : 454 : dim = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
10199 : : loop.loopvar[0], loop.from[0]);
10200 : :
10201 : : /* Set bounds and stride. */
10202 : 454 : gfc_conv_descriptor_lbound_set (&body, desc, dim, gfc_index_one_node);
10203 : 454 : gfc_conv_descriptor_stride_set (&body, desc, dim, stride);
10204 : :
10205 : 454 : gfc_conv_expr (&shapese, arg->next->next->expr);
10206 : 454 : gfc_add_block_to_block (&body, &shapese.pre);
10207 : 454 : gfc_conv_descriptor_ubound_set (&body, desc, dim, shapese.expr);
10208 : 454 : gfc_add_block_to_block (&body, &shapese.post);
10209 : :
10210 : : /* Calculate offset. */
10211 : 454 : gfc_add_modify (&body, offset,
10212 : : fold_build2_loc (input_location, PLUS_EXPR,
10213 : : gfc_array_index_type, offset, stride));
10214 : : /* Update stride. */
10215 : 454 : gfc_add_modify (&body, stride,
10216 : : fold_build2_loc (input_location, MULT_EXPR,
10217 : : gfc_array_index_type, stride,
10218 : : fold_convert (gfc_array_index_type,
10219 : : shapese.expr)));
10220 : : /* Finish scalarization loop. */
10221 : 454 : gfc_trans_scalarizing_loops (&loop, &body);
10222 : 454 : gfc_add_block_to_block (&block, &loop.pre);
10223 : 454 : gfc_add_block_to_block (&block, &loop.post);
10224 : 454 : gfc_add_block_to_block (&block, &fptrse.post);
10225 : 454 : gfc_cleanup_loop (&loop);
10226 : :
10227 : 454 : gfc_add_modify (&block, offset,
10228 : : fold_build1_loc (input_location, NEGATE_EXPR,
10229 : : gfc_array_index_type, offset));
10230 : 454 : gfc_conv_descriptor_offset_set (&block, desc, offset);
10231 : :
10232 : 454 : gfc_add_expr_to_block (&se.pre, gfc_finish_block (&block));
10233 : 454 : gfc_add_block_to_block (&se.pre, &se.post);
10234 : 454 : return gfc_finish_block (&se.pre);
10235 : : }
10236 : :
10237 : :
10238 : : /* Save and restore floating-point state. */
10239 : :
10240 : : tree
10241 : 942 : gfc_save_fp_state (stmtblock_t *block)
10242 : : {
10243 : 942 : tree type, fpstate, tmp;
10244 : :
10245 : 942 : type = build_array_type (char_type_node,
10246 : : build_range_type (size_type_node, size_zero_node,
10247 : 942 : size_int (GFC_FPE_STATE_BUFFER_SIZE)));
10248 : 942 : fpstate = gfc_create_var (type, "fpstate");
10249 : 942 : fpstate = gfc_build_addr_expr (pvoid_type_node, fpstate);
10250 : :
10251 : 942 : tmp = build_call_expr_loc (input_location, gfor_fndecl_ieee_procedure_entry,
10252 : : 1, fpstate);
10253 : 942 : gfc_add_expr_to_block (block, tmp);
10254 : :
10255 : 942 : return fpstate;
10256 : : }
10257 : :
10258 : :
10259 : : void
10260 : 942 : gfc_restore_fp_state (stmtblock_t *block, tree fpstate)
10261 : : {
10262 : 942 : tree tmp;
10263 : :
10264 : 942 : tmp = build_call_expr_loc (input_location, gfor_fndecl_ieee_procedure_exit,
10265 : : 1, fpstate);
10266 : 942 : gfc_add_expr_to_block (block, tmp);
10267 : 942 : }
10268 : :
10269 : :
10270 : : /* Generate code for arguments of IEEE functions. */
10271 : :
10272 : : static void
10273 : 12433 : conv_ieee_function_args (gfc_se *se, gfc_expr *expr, tree *argarray,
10274 : : int nargs)
10275 : : {
10276 : 12433 : gfc_actual_arglist *actual;
10277 : 12433 : gfc_expr *e;
10278 : 12433 : gfc_se argse;
10279 : 12433 : int arg;
10280 : :
10281 : 12433 : actual = expr->value.function.actual;
10282 : 34389 : for (arg = 0; arg < nargs; arg++, actual = actual->next)
10283 : : {
10284 : 21956 : gcc_assert (actual);
10285 : 21956 : e = actual->expr;
10286 : :
10287 : 21956 : gfc_init_se (&argse, se);
10288 : 21956 : gfc_conv_expr_val (&argse, e);
10289 : :
10290 : 21956 : gfc_add_block_to_block (&se->pre, &argse.pre);
10291 : 21956 : gfc_add_block_to_block (&se->post, &argse.post);
10292 : 21956 : argarray[arg] = argse.expr;
10293 : : }
10294 : 12433 : }
10295 : :
10296 : :
10297 : : /* Generate code for intrinsics IEEE_IS_NAN, IEEE_IS_FINITE
10298 : : and IEEE_UNORDERED, which translate directly to GCC type-generic
10299 : : built-ins. */
10300 : :
10301 : : static void
10302 : 1062 : conv_intrinsic_ieee_builtin (gfc_se * se, gfc_expr * expr,
10303 : : enum built_in_function code, int nargs)
10304 : : {
10305 : 1062 : tree args[2];
10306 : 1062 : gcc_assert ((unsigned) nargs <= ARRAY_SIZE (args));
10307 : :
10308 : 1062 : conv_ieee_function_args (se, expr, args, nargs);
10309 : 1062 : se->expr = build_call_expr_loc_array (input_location,
10310 : : builtin_decl_explicit (code),
10311 : : nargs, args);
10312 : 2388 : STRIP_TYPE_NOPS (se->expr);
10313 : 1062 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
10314 : 1062 : }
10315 : :
10316 : :
10317 : : /* Generate code for intrinsics IEEE_SIGNBIT. */
10318 : :
10319 : : static void
10320 : 624 : conv_intrinsic_ieee_signbit (gfc_se * se, gfc_expr * expr)
10321 : : {
10322 : 624 : tree arg, signbit;
10323 : :
10324 : 624 : conv_ieee_function_args (se, expr, &arg, 1);
10325 : 624 : signbit = build_call_expr_loc (input_location,
10326 : : builtin_decl_explicit (BUILT_IN_SIGNBIT),
10327 : : 1, arg);
10328 : 624 : signbit = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10329 : : signbit, integer_zero_node);
10330 : 624 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), signbit);
10331 : 624 : }
10332 : :
10333 : :
10334 : : /* Generate code for IEEE_IS_NORMAL intrinsic:
10335 : : IEEE_IS_NORMAL(x) --> (__builtin_isnormal(x) || x == 0) */
10336 : :
10337 : : static void
10338 : 312 : conv_intrinsic_ieee_is_normal (gfc_se * se, gfc_expr * expr)
10339 : : {
10340 : 312 : tree arg, isnormal, iszero;
10341 : :
10342 : : /* Convert arg, evaluate it only once. */
10343 : 312 : conv_ieee_function_args (se, expr, &arg, 1);
10344 : 312 : arg = gfc_evaluate_now (arg, &se->pre);
10345 : :
10346 : 312 : isnormal = build_call_expr_loc (input_location,
10347 : : builtin_decl_explicit (BUILT_IN_ISNORMAL),
10348 : : 1, arg);
10349 : 312 : iszero = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, arg,
10350 : 312 : build_real_from_int_cst (TREE_TYPE (arg),
10351 : 312 : integer_zero_node));
10352 : 312 : se->expr = fold_build2_loc (input_location, TRUTH_OR_EXPR,
10353 : : logical_type_node, isnormal, iszero);
10354 : 312 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
10355 : 312 : }
10356 : :
10357 : :
10358 : : /* Generate code for IEEE_IS_NEGATIVE intrinsic:
10359 : : IEEE_IS_NEGATIVE(x) --> (__builtin_signbit(x) && !__builtin_isnan(x)) */
10360 : :
10361 : : static void
10362 : 312 : conv_intrinsic_ieee_is_negative (gfc_se * se, gfc_expr * expr)
10363 : : {
10364 : 312 : tree arg, signbit, isnan;
10365 : :
10366 : : /* Convert arg, evaluate it only once. */
10367 : 312 : conv_ieee_function_args (se, expr, &arg, 1);
10368 : 312 : arg = gfc_evaluate_now (arg, &se->pre);
10369 : :
10370 : 312 : isnan = build_call_expr_loc (input_location,
10371 : : builtin_decl_explicit (BUILT_IN_ISNAN),
10372 : : 1, arg);
10373 : 936 : STRIP_TYPE_NOPS (isnan);
10374 : :
10375 : 312 : signbit = build_call_expr_loc (input_location,
10376 : : builtin_decl_explicit (BUILT_IN_SIGNBIT),
10377 : : 1, arg);
10378 : 312 : signbit = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10379 : : signbit, integer_zero_node);
10380 : :
10381 : 312 : se->expr = fold_build2_loc (input_location, TRUTH_AND_EXPR,
10382 : : logical_type_node, signbit,
10383 : : fold_build1_loc (input_location, TRUTH_NOT_EXPR,
10384 : 312 : TREE_TYPE(isnan), isnan));
10385 : :
10386 : 312 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), se->expr);
10387 : 312 : }
10388 : :
10389 : :
10390 : : /* Generate code for IEEE_LOGB and IEEE_RINT. */
10391 : :
10392 : : static void
10393 : 240 : conv_intrinsic_ieee_logb_rint (gfc_se * se, gfc_expr * expr,
10394 : : enum built_in_function code)
10395 : : {
10396 : 240 : tree arg, decl, call, fpstate;
10397 : 240 : int argprec;
10398 : :
10399 : 240 : conv_ieee_function_args (se, expr, &arg, 1);
10400 : 240 : argprec = TYPE_PRECISION (TREE_TYPE (arg));
10401 : 240 : decl = builtin_decl_for_precision (code, argprec);
10402 : :
10403 : : /* Save floating-point state. */
10404 : 240 : fpstate = gfc_save_fp_state (&se->pre);
10405 : :
10406 : : /* Make the function call. */
10407 : 240 : call = build_call_expr_loc (input_location, decl, 1, arg);
10408 : 240 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), call);
10409 : :
10410 : : /* Restore floating-point state. */
10411 : 240 : gfc_restore_fp_state (&se->post, fpstate);
10412 : 240 : }
10413 : :
10414 : :
10415 : : /* Generate code for IEEE_REM. */
10416 : :
10417 : : static void
10418 : 84 : conv_intrinsic_ieee_rem (gfc_se * se, gfc_expr * expr)
10419 : : {
10420 : 84 : tree args[2], decl, call, fpstate;
10421 : 84 : int argprec;
10422 : :
10423 : 84 : conv_ieee_function_args (se, expr, args, 2);
10424 : :
10425 : : /* If arguments have unequal size, convert them to the larger. */
10426 : 84 : if (TYPE_PRECISION (TREE_TYPE (args[0]))
10427 : 84 : > TYPE_PRECISION (TREE_TYPE (args[1])))
10428 : 6 : args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
10429 : 78 : else if (TYPE_PRECISION (TREE_TYPE (args[1]))
10430 : 78 : > TYPE_PRECISION (TREE_TYPE (args[0])))
10431 : 24 : args[0] = fold_convert (TREE_TYPE (args[1]), args[0]);
10432 : :
10433 : 84 : argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
10434 : 84 : decl = builtin_decl_for_precision (BUILT_IN_REMAINDER, argprec);
10435 : :
10436 : : /* Save floating-point state. */
10437 : 84 : fpstate = gfc_save_fp_state (&se->pre);
10438 : :
10439 : : /* Make the function call. */
10440 : 84 : call = build_call_expr_loc_array (input_location, decl, 2, args);
10441 : 84 : se->expr = fold_convert (TREE_TYPE (args[0]), call);
10442 : :
10443 : : /* Restore floating-point state. */
10444 : 84 : gfc_restore_fp_state (&se->post, fpstate);
10445 : 84 : }
10446 : :
10447 : :
10448 : : /* Generate code for IEEE_NEXT_AFTER. */
10449 : :
10450 : : static void
10451 : 180 : conv_intrinsic_ieee_next_after (gfc_se * se, gfc_expr * expr)
10452 : : {
10453 : 180 : tree args[2], decl, call, fpstate;
10454 : 180 : int argprec;
10455 : :
10456 : 180 : conv_ieee_function_args (se, expr, args, 2);
10457 : :
10458 : : /* Result has the characteristics of first argument. */
10459 : 180 : args[1] = fold_convert (TREE_TYPE (args[0]), args[1]);
10460 : 180 : argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
10461 : 180 : decl = builtin_decl_for_precision (BUILT_IN_NEXTAFTER, argprec);
10462 : :
10463 : : /* Save floating-point state. */
10464 : 180 : fpstate = gfc_save_fp_state (&se->pre);
10465 : :
10466 : : /* Make the function call. */
10467 : 180 : call = build_call_expr_loc_array (input_location, decl, 2, args);
10468 : 180 : se->expr = fold_convert (TREE_TYPE (args[0]), call);
10469 : :
10470 : : /* Restore floating-point state. */
10471 : 180 : gfc_restore_fp_state (&se->post, fpstate);
10472 : 180 : }
10473 : :
10474 : :
10475 : : /* Generate code for IEEE_SCALB. */
10476 : :
10477 : : static void
10478 : 228 : conv_intrinsic_ieee_scalb (gfc_se * se, gfc_expr * expr)
10479 : : {
10480 : 228 : tree args[2], decl, call, huge, type;
10481 : 228 : int argprec, n;
10482 : :
10483 : 228 : conv_ieee_function_args (se, expr, args, 2);
10484 : :
10485 : : /* Result has the characteristics of first argument. */
10486 : 228 : argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
10487 : 228 : decl = builtin_decl_for_precision (BUILT_IN_SCALBN, argprec);
10488 : :
10489 : 228 : if (TYPE_PRECISION (TREE_TYPE (args[1])) > TYPE_PRECISION (integer_type_node))
10490 : : {
10491 : : /* We need to fold the integer into the range of a C int. */
10492 : 18 : args[1] = gfc_evaluate_now (args[1], &se->pre);
10493 : 18 : type = TREE_TYPE (args[1]);
10494 : :
10495 : 18 : n = gfc_validate_kind (BT_INTEGER, gfc_c_int_kind, false);
10496 : 18 : huge = gfc_conv_mpz_to_tree (gfc_integer_kinds[n].huge,
10497 : : gfc_c_int_kind);
10498 : 18 : huge = fold_convert (type, huge);
10499 : 18 : args[1] = fold_build2_loc (input_location, MIN_EXPR, type, args[1],
10500 : : huge);
10501 : 18 : args[1] = fold_build2_loc (input_location, MAX_EXPR, type, args[1],
10502 : : fold_build1_loc (input_location, NEGATE_EXPR,
10503 : : type, huge));
10504 : : }
10505 : :
10506 : 228 : args[1] = fold_convert (integer_type_node, args[1]);
10507 : :
10508 : : /* Make the function call. */
10509 : 228 : call = build_call_expr_loc_array (input_location, decl, 2, args);
10510 : 228 : se->expr = fold_convert (TREE_TYPE (args[0]), call);
10511 : 228 : }
10512 : :
10513 : :
10514 : : /* Generate code for IEEE_COPY_SIGN. */
10515 : :
10516 : : static void
10517 : 576 : conv_intrinsic_ieee_copy_sign (gfc_se * se, gfc_expr * expr)
10518 : : {
10519 : 576 : tree args[2], decl, sign;
10520 : 576 : int argprec;
10521 : :
10522 : 576 : conv_ieee_function_args (se, expr, args, 2);
10523 : :
10524 : : /* Get the sign of the second argument. */
10525 : 576 : sign = build_call_expr_loc (input_location,
10526 : : builtin_decl_explicit (BUILT_IN_SIGNBIT),
10527 : : 1, args[1]);
10528 : 576 : sign = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10529 : : sign, integer_zero_node);
10530 : :
10531 : : /* Create a value of one, with the right sign. */
10532 : 576 : sign = fold_build3_loc (input_location, COND_EXPR, integer_type_node,
10533 : : sign,
10534 : : fold_build1_loc (input_location, NEGATE_EXPR,
10535 : : integer_type_node,
10536 : : integer_one_node),
10537 : : integer_one_node);
10538 : 576 : args[1] = fold_convert (TREE_TYPE (args[0]), sign);
10539 : :
10540 : 576 : argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
10541 : 576 : decl = builtin_decl_for_precision (BUILT_IN_COPYSIGN, argprec);
10542 : :
10543 : 576 : se->expr = build_call_expr_loc_array (input_location, decl, 2, args);
10544 : 576 : }
10545 : :
10546 : :
10547 : : /* Generate code for IEEE_CLASS. */
10548 : :
10549 : : static void
10550 : 648 : conv_intrinsic_ieee_class (gfc_se *se, gfc_expr *expr)
10551 : : {
10552 : 648 : tree arg, c, t1, t2, t3, t4;
10553 : :
10554 : : /* Convert arg, evaluate it only once. */
10555 : 648 : conv_ieee_function_args (se, expr, &arg, 1);
10556 : 648 : arg = gfc_evaluate_now (arg, &se->pre);
10557 : :
10558 : 648 : c = build_call_expr_loc (input_location,
10559 : : builtin_decl_explicit (BUILT_IN_FPCLASSIFY), 6,
10560 : 648 : build_int_cst (integer_type_node, IEEE_QUIET_NAN),
10561 : 648 : build_int_cst (integer_type_node,
10562 : 648 : IEEE_POSITIVE_INF),
10563 : 648 : build_int_cst (integer_type_node,
10564 : 648 : IEEE_POSITIVE_NORMAL),
10565 : 648 : build_int_cst (integer_type_node,
10566 : 648 : IEEE_POSITIVE_DENORMAL),
10567 : 648 : build_int_cst (integer_type_node,
10568 : 648 : IEEE_POSITIVE_ZERO),
10569 : : arg);
10570 : 648 : c = gfc_evaluate_now (c, &se->pre);
10571 : 648 : t1 = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
10572 : 648 : c, build_int_cst (integer_type_node,
10573 : 648 : IEEE_QUIET_NAN));
10574 : 648 : t2 = build_call_expr_loc (input_location,
10575 : : builtin_decl_explicit (BUILT_IN_ISSIGNALING), 1,
10576 : : arg);
10577 : 648 : t2 = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10578 : 648 : t2, build_zero_cst (TREE_TYPE (t2)));
10579 : 648 : t1 = fold_build2_loc (input_location, TRUTH_AND_EXPR,
10580 : : logical_type_node, t1, t2);
10581 : 648 : t3 = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
10582 : 648 : c, build_int_cst (integer_type_node,
10583 : 648 : IEEE_POSITIVE_ZERO));
10584 : 648 : t4 = build_call_expr_loc (input_location,
10585 : : builtin_decl_explicit (BUILT_IN_SIGNBIT), 1,
10586 : : arg);
10587 : 648 : t4 = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10588 : 648 : t4, build_zero_cst (TREE_TYPE (t4)));
10589 : 648 : t3 = fold_build2_loc (input_location, TRUTH_AND_EXPR,
10590 : : logical_type_node, t3, t4);
10591 : 648 : int s = IEEE_NEGATIVE_ZERO + IEEE_POSITIVE_ZERO;
10592 : 648 : gcc_assert (IEEE_NEGATIVE_INF == s - IEEE_POSITIVE_INF);
10593 : 648 : gcc_assert (IEEE_NEGATIVE_NORMAL == s - IEEE_POSITIVE_NORMAL);
10594 : 648 : gcc_assert (IEEE_NEGATIVE_DENORMAL == s - IEEE_POSITIVE_DENORMAL);
10595 : 648 : gcc_assert (IEEE_NEGATIVE_SUBNORMAL == s - IEEE_POSITIVE_SUBNORMAL);
10596 : 648 : gcc_assert (IEEE_NEGATIVE_ZERO == s - IEEE_POSITIVE_ZERO);
10597 : 648 : t4 = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (c),
10598 : 648 : build_int_cst (TREE_TYPE (c), s), c);
10599 : 648 : t3 = fold_build3_loc (input_location, COND_EXPR, TREE_TYPE (c),
10600 : : t3, t4, c);
10601 : 648 : t1 = fold_build3_loc (input_location, COND_EXPR, TREE_TYPE (c), t1,
10602 : 648 : build_int_cst (TREE_TYPE (c), IEEE_SIGNALING_NAN),
10603 : : t3);
10604 : 648 : tree type = gfc_typenode_for_spec (&expr->ts);
10605 : : /* Perform a quick sanity check that the return type is
10606 : : IEEE_CLASS_TYPE derived type defined in
10607 : : libgfortran/ieee/ieee_arithmetic.F90
10608 : : Primarily check that it is a derived type with a single
10609 : : member in it. */
10610 : 648 : gcc_assert (TREE_CODE (type) == RECORD_TYPE);
10611 : 648 : tree field = NULL_TREE;
10612 : 1296 : for (tree f = TYPE_FIELDS (type); f != NULL_TREE; f = DECL_CHAIN (f))
10613 : 648 : if (TREE_CODE (f) == FIELD_DECL)
10614 : : {
10615 : 648 : gcc_assert (field == NULL_TREE);
10616 : : field = f;
10617 : : }
10618 : 648 : gcc_assert (field);
10619 : 648 : t1 = fold_convert (TREE_TYPE (field), t1);
10620 : 648 : se->expr = build_constructor_single (type, field, t1);
10621 : 648 : }
10622 : :
10623 : :
10624 : : /* Generate code for IEEE_VALUE. */
10625 : :
10626 : : static void
10627 : 1087 : conv_intrinsic_ieee_value (gfc_se *se, gfc_expr *expr)
10628 : : {
10629 : 1087 : tree args[2], arg, ret, tmp;
10630 : 1087 : stmtblock_t body;
10631 : :
10632 : : /* Convert args, evaluate the second one only once. */
10633 : 1087 : conv_ieee_function_args (se, expr, args, 2);
10634 : 1087 : arg = gfc_evaluate_now (args[1], &se->pre);
10635 : :
10636 : 1087 : tree type = TREE_TYPE (arg);
10637 : : /* Perform a quick sanity check that the second argument's type is
10638 : : IEEE_CLASS_TYPE derived type defined in
10639 : : libgfortran/ieee/ieee_arithmetic.F90
10640 : : Primarily check that it is a derived type with a single
10641 : : member in it. */
10642 : 1087 : gcc_assert (TREE_CODE (type) == RECORD_TYPE);
10643 : 1087 : tree field = NULL_TREE;
10644 : 2174 : for (tree f = TYPE_FIELDS (type); f != NULL_TREE; f = DECL_CHAIN (f))
10645 : 1087 : if (TREE_CODE (f) == FIELD_DECL)
10646 : : {
10647 : 1087 : gcc_assert (field == NULL_TREE);
10648 : : field = f;
10649 : : }
10650 : 1087 : gcc_assert (field);
10651 : 1087 : arg = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
10652 : : arg, field, NULL_TREE);
10653 : 1087 : arg = gfc_evaluate_now (arg, &se->pre);
10654 : :
10655 : 1087 : type = gfc_typenode_for_spec (&expr->ts);
10656 : 1087 : gcc_assert (SCALAR_FLOAT_TYPE_P (type));
10657 : 1087 : ret = gfc_create_var (type, NULL);
10658 : :
10659 : 1087 : gfc_init_block (&body);
10660 : :
10661 : 1087 : tree end_label = gfc_build_label_decl (NULL_TREE);
10662 : 11957 : for (int c = IEEE_SIGNALING_NAN; c <= IEEE_POSITIVE_INF; ++c)
10663 : : {
10664 : 10870 : tree label = gfc_build_label_decl (NULL_TREE);
10665 : 10870 : tree low = build_int_cst (TREE_TYPE (arg), c);
10666 : 10870 : tmp = build_case_label (low, low, label);
10667 : 10870 : gfc_add_expr_to_block (&body, tmp);
10668 : :
10669 : 10870 : REAL_VALUE_TYPE real;
10670 : 10870 : int k;
10671 : 10870 : switch (c)
10672 : : {
10673 : 1087 : case IEEE_SIGNALING_NAN:
10674 : 1087 : real_nan (&real, "", 0, TYPE_MODE (type));
10675 : 1087 : break;
10676 : 1087 : case IEEE_QUIET_NAN:
10677 : 1087 : real_nan (&real, "", 1, TYPE_MODE (type));
10678 : 1087 : break;
10679 : 1087 : case IEEE_NEGATIVE_INF:
10680 : 1087 : real_inf (&real);
10681 : 1087 : real = real_value_negate (&real);
10682 : 1087 : break;
10683 : 1087 : case IEEE_NEGATIVE_NORMAL:
10684 : 1087 : real_from_integer (&real, TYPE_MODE (type), -42, SIGNED);
10685 : 1087 : break;
10686 : 1087 : case IEEE_NEGATIVE_DENORMAL:
10687 : 1087 : k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
10688 : 1087 : real_from_mpfr (&real, gfc_real_kinds[k].tiny,
10689 : : type, GFC_RND_MODE);
10690 : 1087 : real_arithmetic (&real, RDIV_EXPR, &real, &dconst2);
10691 : 1087 : real = real_value_negate (&real);
10692 : 1087 : break;
10693 : 1087 : case IEEE_NEGATIVE_ZERO:
10694 : 1087 : real_from_integer (&real, TYPE_MODE (type), 0, SIGNED);
10695 : 1087 : real = real_value_negate (&real);
10696 : 1087 : break;
10697 : 1087 : case IEEE_POSITIVE_ZERO:
10698 : : /* Make this also the default: label. The other possibility
10699 : : would be to add a separate default: label followed by
10700 : : __builtin_unreachable (). */
10701 : 1087 : label = gfc_build_label_decl (NULL_TREE);
10702 : 1087 : tmp = build_case_label (NULL_TREE, NULL_TREE, label);
10703 : 1087 : gfc_add_expr_to_block (&body, tmp);
10704 : 1087 : real_from_integer (&real, TYPE_MODE (type), 0, SIGNED);
10705 : 1087 : break;
10706 : 1087 : case IEEE_POSITIVE_DENORMAL:
10707 : 1087 : k = gfc_validate_kind (BT_REAL, expr->ts.kind, false);
10708 : 1087 : real_from_mpfr (&real, gfc_real_kinds[k].tiny,
10709 : : type, GFC_RND_MODE);
10710 : 1087 : real_arithmetic (&real, RDIV_EXPR, &real, &dconst2);
10711 : 1087 : break;
10712 : 1087 : case IEEE_POSITIVE_NORMAL:
10713 : 1087 : real_from_integer (&real, TYPE_MODE (type), 42, SIGNED);
10714 : 1087 : break;
10715 : 1087 : case IEEE_POSITIVE_INF:
10716 : 1087 : real_inf (&real);
10717 : 1087 : break;
10718 : : default:
10719 : : gcc_unreachable ();
10720 : : }
10721 : :
10722 : 10870 : tree val = build_real (type, real);
10723 : 10870 : gfc_add_modify (&body, ret, val);
10724 : :
10725 : 10870 : tmp = build1_v (GOTO_EXPR, end_label);
10726 : 10870 : gfc_add_expr_to_block (&body, tmp);
10727 : : }
10728 : :
10729 : 1087 : tmp = gfc_finish_block (&body);
10730 : 1087 : tmp = fold_build2_loc (input_location, SWITCH_EXPR, NULL_TREE, arg, tmp);
10731 : 1087 : gfc_add_expr_to_block (&se->pre, tmp);
10732 : :
10733 : 1087 : tmp = build1_v (LABEL_EXPR, end_label);
10734 : 1087 : gfc_add_expr_to_block (&se->pre, tmp);
10735 : :
10736 : 1087 : se->expr = ret;
10737 : 1087 : }
10738 : :
10739 : :
10740 : : /* Generate code for IEEE_FMA. */
10741 : :
10742 : : static void
10743 : 120 : conv_intrinsic_ieee_fma (gfc_se * se, gfc_expr * expr)
10744 : : {
10745 : 120 : tree args[3], decl, call;
10746 : 120 : int argprec;
10747 : :
10748 : 120 : conv_ieee_function_args (se, expr, args, 3);
10749 : :
10750 : : /* All three arguments should have the same type. */
10751 : 120 : gcc_assert (TYPE_PRECISION (TREE_TYPE (args[0])) == TYPE_PRECISION (TREE_TYPE (args[1])));
10752 : 120 : gcc_assert (TYPE_PRECISION (TREE_TYPE (args[0])) == TYPE_PRECISION (TREE_TYPE (args[2])));
10753 : :
10754 : : /* Call the type-generic FMA built-in. */
10755 : 120 : argprec = TYPE_PRECISION (TREE_TYPE (args[0]));
10756 : 120 : decl = builtin_decl_for_precision (BUILT_IN_FMA, argprec);
10757 : 120 : call = build_call_expr_loc_array (input_location, decl, 3, args);
10758 : :
10759 : : /* Convert to the final type. */
10760 : 120 : se->expr = fold_convert (TREE_TYPE (args[0]), call);
10761 : 120 : }
10762 : :
10763 : :
10764 : : /* Generate code for IEEE_{MIN,MAX}_NUM{,_MAG}. */
10765 : :
10766 : : static void
10767 : 3072 : conv_intrinsic_ieee_minmax (gfc_se * se, gfc_expr * expr, int max,
10768 : : const char *name)
10769 : : {
10770 : 3072 : tree args[2], func;
10771 : 3072 : built_in_function fn;
10772 : :
10773 : 3072 : conv_ieee_function_args (se, expr, args, 2);
10774 : 3072 : gcc_assert (TYPE_PRECISION (TREE_TYPE (args[0])) == TYPE_PRECISION (TREE_TYPE (args[1])));
10775 : 3072 : args[0] = gfc_evaluate_now (args[0], &se->pre);
10776 : 3072 : args[1] = gfc_evaluate_now (args[1], &se->pre);
10777 : :
10778 : 3072 : if (startswith (name, "mag"))
10779 : : {
10780 : : /* IEEE_MIN_NUM_MAG and IEEE_MAX_NUM_MAG translate to C functions
10781 : : fminmag() and fmaxmag(), which do not exist as built-ins.
10782 : :
10783 : : Following glibc, we emit this:
10784 : :
10785 : : fminmag (x, y) {
10786 : : ax = ABS (x);
10787 : : ay = ABS (y);
10788 : : if (isless (ax, ay))
10789 : : return x;
10790 : : else if (isgreater (ax, ay))
10791 : : return y;
10792 : : else if (ax == ay)
10793 : : return x < y ? x : y;
10794 : : else if (issignaling (x) || issignaling (y))
10795 : : return x + y;
10796 : : else
10797 : : return isnan (y) ? x : y;
10798 : : }
10799 : :
10800 : : fmaxmag (x, y) {
10801 : : ax = ABS (x);
10802 : : ay = ABS (y);
10803 : : if (isgreater (ax, ay))
10804 : : return x;
10805 : : else if (isless (ax, ay))
10806 : : return y;
10807 : : else if (ax == ay)
10808 : : return x > y ? x : y;
10809 : : else if (issignaling (x) || issignaling (y))
10810 : : return x + y;
10811 : : else
10812 : : return isnan (y) ? x : y;
10813 : : }
10814 : :
10815 : : */
10816 : :
10817 : 1536 : tree abs0, abs1, sig0, sig1;
10818 : 1536 : tree cond1, cond2, cond3, cond4, cond5;
10819 : 1536 : tree res;
10820 : 1536 : tree type = TREE_TYPE (args[0]);
10821 : :
10822 : 1536 : func = gfc_builtin_decl_for_float_kind (BUILT_IN_FABS, expr->ts.kind);
10823 : 1536 : abs0 = build_call_expr_loc (input_location, func, 1, args[0]);
10824 : 1536 : abs1 = build_call_expr_loc (input_location, func, 1, args[1]);
10825 : 1536 : abs0 = gfc_evaluate_now (abs0, &se->pre);
10826 : 1536 : abs1 = gfc_evaluate_now (abs1, &se->pre);
10827 : :
10828 : 1536 : cond5 = build_call_expr_loc (input_location,
10829 : : builtin_decl_explicit (BUILT_IN_ISNAN),
10830 : : 1, args[1]);
10831 : 1536 : res = fold_build3_loc (input_location, COND_EXPR, type, cond5,
10832 : : args[0], args[1]);
10833 : :
10834 : 1536 : sig0 = build_call_expr_loc (input_location,
10835 : : builtin_decl_explicit (BUILT_IN_ISSIGNALING),
10836 : : 1, args[0]);
10837 : 1536 : sig1 = build_call_expr_loc (input_location,
10838 : : builtin_decl_explicit (BUILT_IN_ISSIGNALING),
10839 : : 1, args[1]);
10840 : 1536 : cond4 = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
10841 : : logical_type_node, sig0, sig1);
10842 : 1536 : res = fold_build3_loc (input_location, COND_EXPR, type, cond4,
10843 : : fold_build2_loc (input_location, PLUS_EXPR,
10844 : : type, args[0], args[1]),
10845 : : res);
10846 : :
10847 : 1536 : cond3 = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
10848 : : abs0, abs1);
10849 : 2304 : res = fold_build3_loc (input_location, COND_EXPR, type, cond3,
10850 : : fold_build2_loc (input_location,
10851 : : max ? MAX_EXPR : MIN_EXPR,
10852 : : type, args[0], args[1]),
10853 : : res);
10854 : :
10855 : 2304 : func = builtin_decl_explicit (max ? BUILT_IN_ISLESS : BUILT_IN_ISGREATER);
10856 : 1536 : cond2 = build_call_expr_loc (input_location, func, 2, abs0, abs1);
10857 : 1536 : res = fold_build3_loc (input_location, COND_EXPR, type, cond2,
10858 : : args[1], res);
10859 : :
10860 : 2304 : func = builtin_decl_explicit (max ? BUILT_IN_ISGREATER : BUILT_IN_ISLESS);
10861 : 1536 : cond1 = build_call_expr_loc (input_location, func, 2, abs0, abs1);
10862 : 1536 : res = fold_build3_loc (input_location, COND_EXPR, type, cond1,
10863 : : args[0], res);
10864 : :
10865 : 1536 : se->expr = res;
10866 : : }
10867 : : else
10868 : : {
10869 : : /* IEEE_MIN_NUM and IEEE_MAX_NUM translate to fmin() and fmax(). */
10870 : 1536 : fn = max ? BUILT_IN_FMAX : BUILT_IN_FMIN;
10871 : 1536 : func = gfc_builtin_decl_for_float_kind (fn, expr->ts.kind);
10872 : 1536 : se->expr = build_call_expr_loc_array (input_location, func, 2, args);
10873 : : }
10874 : 3072 : }
10875 : :
10876 : :
10877 : : /* Generate code for comparison functions IEEE_QUIET_* and
10878 : : IEEE_SIGNALING_*. */
10879 : :
10880 : : static void
10881 : 3888 : conv_intrinsic_ieee_comparison (gfc_se * se, gfc_expr * expr, int signaling,
10882 : : const char *name)
10883 : : {
10884 : 3888 : tree args[2];
10885 : 3888 : tree arg1, arg2, res;
10886 : :
10887 : : /* Evaluate arguments only once. */
10888 : 3888 : conv_ieee_function_args (se, expr, args, 2);
10889 : 3888 : arg1 = gfc_evaluate_now (args[0], &se->pre);
10890 : 3888 : arg2 = gfc_evaluate_now (args[1], &se->pre);
10891 : :
10892 : 3888 : if (startswith (name, "eq"))
10893 : : {
10894 : 648 : if (signaling)
10895 : 324 : res = build_call_expr_loc (input_location,
10896 : : builtin_decl_explicit (BUILT_IN_ISEQSIG),
10897 : : 2, arg1, arg2);
10898 : : else
10899 : 324 : res = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
10900 : : arg1, arg2);
10901 : : }
10902 : 3240 : else if (startswith (name, "ne"))
10903 : : {
10904 : 648 : if (signaling)
10905 : : {
10906 : 324 : res = build_call_expr_loc (input_location,
10907 : : builtin_decl_explicit (BUILT_IN_ISEQSIG),
10908 : : 2, arg1, arg2);
10909 : 324 : res = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
10910 : : logical_type_node, res);
10911 : : }
10912 : : else
10913 : 324 : res = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
10914 : : arg1, arg2);
10915 : : }
10916 : 2592 : else if (startswith (name, "ge"))
10917 : : {
10918 : 648 : if (signaling)
10919 : 324 : res = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
10920 : : arg1, arg2);
10921 : : else
10922 : 324 : res = build_call_expr_loc (input_location,
10923 : : builtin_decl_explicit (BUILT_IN_ISGREATEREQUAL),
10924 : : 2, arg1, arg2);
10925 : : }
10926 : 1944 : else if (startswith (name, "gt"))
10927 : : {
10928 : 648 : if (signaling)
10929 : 324 : res = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
10930 : : arg1, arg2);
10931 : : else
10932 : 324 : res = build_call_expr_loc (input_location,
10933 : : builtin_decl_explicit (BUILT_IN_ISGREATER),
10934 : : 2, arg1, arg2);
10935 : : }
10936 : 1296 : else if (startswith (name, "le"))
10937 : : {
10938 : 648 : if (signaling)
10939 : 324 : res = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
10940 : : arg1, arg2);
10941 : : else
10942 : 324 : res = build_call_expr_loc (input_location,
10943 : : builtin_decl_explicit (BUILT_IN_ISLESSEQUAL),
10944 : : 2, arg1, arg2);
10945 : : }
10946 : 648 : else if (startswith (name, "lt"))
10947 : : {
10948 : 648 : if (signaling)
10949 : 324 : res = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
10950 : : arg1, arg2);
10951 : : else
10952 : 324 : res = build_call_expr_loc (input_location,
10953 : : builtin_decl_explicit (BUILT_IN_ISLESS),
10954 : : 2, arg1, arg2);
10955 : : }
10956 : : else
10957 : 0 : gcc_unreachable ();
10958 : :
10959 : 3888 : se->expr = fold_convert (gfc_typenode_for_spec (&expr->ts), res);
10960 : 3888 : }
10961 : :
10962 : :
10963 : : /* Generate code for an intrinsic function from the IEEE_ARITHMETIC
10964 : : module. */
10965 : :
10966 : : bool
10967 : 13903 : gfc_conv_ieee_arithmetic_function (gfc_se * se, gfc_expr * expr)
10968 : : {
10969 : 13903 : const char *name = expr->value.function.name;
10970 : :
10971 : 13903 : if (startswith (name, "_gfortran_ieee_is_nan"))
10972 : 522 : conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISNAN, 1);
10973 : 13381 : else if (startswith (name, "_gfortran_ieee_is_finite"))
10974 : 372 : conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISFINITE, 1);
10975 : 13009 : else if (startswith (name, "_gfortran_ieee_unordered"))
10976 : 168 : conv_intrinsic_ieee_builtin (se, expr, BUILT_IN_ISUNORDERED, 2);
10977 : 12841 : else if (startswith (name, "_gfortran_ieee_signbit"))
10978 : 624 : conv_intrinsic_ieee_signbit (se, expr);
10979 : 12217 : else if (startswith (name, "_gfortran_ieee_is_normal"))
10980 : 312 : conv_intrinsic_ieee_is_normal (se, expr);
10981 : 11905 : else if (startswith (name, "_gfortran_ieee_is_negative"))
10982 : 312 : conv_intrinsic_ieee_is_negative (se, expr);
10983 : 11593 : else if (startswith (name, "_gfortran_ieee_copy_sign"))
10984 : 576 : conv_intrinsic_ieee_copy_sign (se, expr);
10985 : 11017 : else if (startswith (name, "_gfortran_ieee_scalb"))
10986 : 228 : conv_intrinsic_ieee_scalb (se, expr);
10987 : 10789 : else if (startswith (name, "_gfortran_ieee_next_after"))
10988 : 180 : conv_intrinsic_ieee_next_after (se, expr);
10989 : 10609 : else if (startswith (name, "_gfortran_ieee_rem"))
10990 : 84 : conv_intrinsic_ieee_rem (se, expr);
10991 : 10525 : else if (startswith (name, "_gfortran_ieee_logb"))
10992 : 144 : conv_intrinsic_ieee_logb_rint (se, expr, BUILT_IN_LOGB);
10993 : 10381 : else if (startswith (name, "_gfortran_ieee_rint"))
10994 : 96 : conv_intrinsic_ieee_logb_rint (se, expr, BUILT_IN_RINT);
10995 : 10285 : else if (startswith (name, "ieee_class_") && ISDIGIT (name[11]))
10996 : 648 : conv_intrinsic_ieee_class (se, expr);
10997 : 9637 : else if (startswith (name, "ieee_value_") && ISDIGIT (name[11]))
10998 : 1087 : conv_intrinsic_ieee_value (se, expr);
10999 : 8550 : else if (startswith (name, "_gfortran_ieee_fma"))
11000 : 120 : conv_intrinsic_ieee_fma (se, expr);
11001 : 8430 : else if (startswith (name, "_gfortran_ieee_min_num_"))
11002 : 1536 : conv_intrinsic_ieee_minmax (se, expr, 0, name + 23);
11003 : 6894 : else if (startswith (name, "_gfortran_ieee_max_num_"))
11004 : 1536 : conv_intrinsic_ieee_minmax (se, expr, 1, name + 23);
11005 : 5358 : else if (startswith (name, "_gfortran_ieee_quiet_"))
11006 : 1944 : conv_intrinsic_ieee_comparison (se, expr, 0, name + 21);
11007 : 3414 : else if (startswith (name, "_gfortran_ieee_signaling_"))
11008 : 1944 : conv_intrinsic_ieee_comparison (se, expr, 1, name + 25);
11009 : : else
11010 : : /* It is not among the functions we translate directly. We return
11011 : : false, so a library function call is emitted. */
11012 : : return false;
11013 : :
11014 : : return true;
11015 : : }
11016 : :
11017 : :
11018 : : /* Generate a direct call to malloc() for the MALLOC intrinsic. */
11019 : :
11020 : : static void
11021 : 16 : gfc_conv_intrinsic_malloc (gfc_se * se, gfc_expr * expr)
11022 : : {
11023 : 16 : tree arg, res, restype;
11024 : :
11025 : 16 : gfc_conv_intrinsic_function_args (se, expr, &arg, 1);
11026 : 16 : arg = fold_convert (size_type_node, arg);
11027 : 16 : res = build_call_expr_loc (input_location,
11028 : : builtin_decl_explicit (BUILT_IN_MALLOC), 1, arg);
11029 : 16 : restype = gfc_typenode_for_spec (&expr->ts);
11030 : 16 : se->expr = fold_convert (restype, res);
11031 : 16 : }
11032 : :
11033 : :
11034 : : /* Generate code for an intrinsic function. Some map directly to library
11035 : : calls, others get special handling. In some cases the name of the function
11036 : : used depends on the type specifiers. */
11037 : :
11038 : : void
11039 : 237566 : gfc_conv_intrinsic_function (gfc_se * se, gfc_expr * expr)
11040 : : {
11041 : 237566 : const char *name;
11042 : 237566 : int lib, kind;
11043 : 237566 : tree fndecl;
11044 : :
11045 : 237566 : name = &expr->value.function.name[2];
11046 : :
11047 : 237566 : if (expr->rank > 0)
11048 : : {
11049 : 45044 : lib = gfc_is_intrinsic_libcall (expr);
11050 : 45044 : if (lib != 0)
11051 : : {
11052 : 17175 : if (lib == 1)
11053 : 9756 : se->ignore_optional = 1;
11054 : :
11055 : 17175 : switch (expr->value.function.isym->id)
11056 : : {
11057 : 5886 : case GFC_ISYM_EOSHIFT:
11058 : 5886 : case GFC_ISYM_PACK:
11059 : 5886 : case GFC_ISYM_RESHAPE:
11060 : : /* For all of those the first argument specifies the type and the
11061 : : third is optional. */
11062 : 5886 : conv_generic_with_optional_char_arg (se, expr, 1, 3);
11063 : 5886 : break;
11064 : :
11065 : 1116 : case GFC_ISYM_FINDLOC:
11066 : 1116 : gfc_conv_intrinsic_findloc (se, expr);
11067 : 1116 : break;
11068 : :
11069 : 1975 : case GFC_ISYM_MINLOC:
11070 : 1975 : gfc_conv_intrinsic_minmaxloc (se, expr, LT_EXPR);
11071 : 1975 : break;
11072 : :
11073 : 1401 : case GFC_ISYM_MAXLOC:
11074 : 1401 : gfc_conv_intrinsic_minmaxloc (se, expr, GT_EXPR);
11075 : 1401 : break;
11076 : :
11077 : 6797 : default:
11078 : 6797 : gfc_conv_intrinsic_funcall (se, expr);
11079 : 6797 : break;
11080 : : }
11081 : :
11082 : 17175 : return;
11083 : : }
11084 : : }
11085 : :
11086 : 220391 : switch (expr->value.function.isym->id)
11087 : : {
11088 : 0 : case GFC_ISYM_NONE:
11089 : 0 : gcc_unreachable ();
11090 : :
11091 : 529 : case GFC_ISYM_REPEAT:
11092 : 529 : gfc_conv_intrinsic_repeat (se, expr);
11093 : 529 : break;
11094 : :
11095 : 581 : case GFC_ISYM_TRIM:
11096 : 581 : gfc_conv_intrinsic_trim (se, expr);
11097 : 581 : break;
11098 : :
11099 : 42 : case GFC_ISYM_SC_KIND:
11100 : 42 : gfc_conv_intrinsic_sc_kind (se, expr);
11101 : 42 : break;
11102 : :
11103 : 45 : case GFC_ISYM_SI_KIND:
11104 : 45 : gfc_conv_intrinsic_si_kind (se, expr);
11105 : 45 : break;
11106 : :
11107 : 6 : case GFC_ISYM_SL_KIND:
11108 : 6 : gfc_conv_intrinsic_sl_kind (se, expr);
11109 : 6 : break;
11110 : :
11111 : 82 : case GFC_ISYM_SR_KIND:
11112 : 82 : gfc_conv_intrinsic_sr_kind (se, expr);
11113 : 82 : break;
11114 : :
11115 : 228 : case GFC_ISYM_EXPONENT:
11116 : 228 : gfc_conv_intrinsic_exponent (se, expr);
11117 : 228 : break;
11118 : :
11119 : 316 : case GFC_ISYM_SCAN:
11120 : 316 : kind = expr->value.function.actual->expr->ts.kind;
11121 : 316 : if (kind == 1)
11122 : 250 : fndecl = gfor_fndecl_string_scan;
11123 : 66 : else if (kind == 4)
11124 : 66 : fndecl = gfor_fndecl_string_scan_char4;
11125 : : else
11126 : 0 : gcc_unreachable ();
11127 : :
11128 : 316 : gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
11129 : 316 : break;
11130 : :
11131 : 94 : case GFC_ISYM_VERIFY:
11132 : 94 : kind = expr->value.function.actual->expr->ts.kind;
11133 : 94 : if (kind == 1)
11134 : 70 : fndecl = gfor_fndecl_string_verify;
11135 : 24 : else if (kind == 4)
11136 : 24 : fndecl = gfor_fndecl_string_verify_char4;
11137 : : else
11138 : 0 : gcc_unreachable ();
11139 : :
11140 : 94 : gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
11141 : 94 : break;
11142 : :
11143 : 6818 : case GFC_ISYM_ALLOCATED:
11144 : 6818 : gfc_conv_allocated (se, expr);
11145 : 6818 : break;
11146 : :
11147 : 8240 : case GFC_ISYM_ASSOCIATED:
11148 : 8240 : gfc_conv_associated(se, expr);
11149 : 8240 : break;
11150 : :
11151 : 403 : case GFC_ISYM_SAME_TYPE_AS:
11152 : 403 : gfc_conv_same_type_as (se, expr);
11153 : 403 : break;
11154 : :
11155 : 7629 : case GFC_ISYM_ABS:
11156 : 7629 : gfc_conv_intrinsic_abs (se, expr);
11157 : 7629 : break;
11158 : :
11159 : 344 : case GFC_ISYM_ADJUSTL:
11160 : 344 : if (expr->ts.kind == 1)
11161 : 290 : fndecl = gfor_fndecl_adjustl;
11162 : 54 : else if (expr->ts.kind == 4)
11163 : 54 : fndecl = gfor_fndecl_adjustl_char4;
11164 : : else
11165 : 0 : gcc_unreachable ();
11166 : :
11167 : 344 : gfc_conv_intrinsic_adjust (se, expr, fndecl);
11168 : 344 : break;
11169 : :
11170 : 111 : case GFC_ISYM_ADJUSTR:
11171 : 111 : if (expr->ts.kind == 1)
11172 : 56 : fndecl = gfor_fndecl_adjustr;
11173 : 55 : else if (expr->ts.kind == 4)
11174 : 55 : fndecl = gfor_fndecl_adjustr_char4;
11175 : : else
11176 : 0 : gcc_unreachable ();
11177 : :
11178 : 111 : gfc_conv_intrinsic_adjust (se, expr, fndecl);
11179 : 111 : break;
11180 : :
11181 : 438 : case GFC_ISYM_AIMAG:
11182 : 438 : gfc_conv_intrinsic_imagpart (se, expr);
11183 : 438 : break;
11184 : :
11185 : 146 : case GFC_ISYM_AINT:
11186 : 146 : gfc_conv_intrinsic_aint (se, expr, RND_TRUNC);
11187 : 146 : break;
11188 : :
11189 : 443 : case GFC_ISYM_ALL:
11190 : 443 : gfc_conv_intrinsic_anyall (se, expr, EQ_EXPR);
11191 : 443 : break;
11192 : :
11193 : 74 : case GFC_ISYM_ANINT:
11194 : 74 : gfc_conv_intrinsic_aint (se, expr, RND_ROUND);
11195 : 74 : break;
11196 : :
11197 : 90 : case GFC_ISYM_AND:
11198 : 90 : gfc_conv_intrinsic_bitop (se, expr, BIT_AND_EXPR);
11199 : 90 : break;
11200 : :
11201 : 33607 : case GFC_ISYM_ANY:
11202 : 33607 : gfc_conv_intrinsic_anyall (se, expr, NE_EXPR);
11203 : 33607 : break;
11204 : :
11205 : 216 : case GFC_ISYM_ACOSD:
11206 : 216 : case GFC_ISYM_ASIND:
11207 : 216 : case GFC_ISYM_ATAND:
11208 : 216 : gfc_conv_intrinsic_atrigd (se, expr, expr->value.function.isym->id);
11209 : 216 : break;
11210 : :
11211 : 102 : case GFC_ISYM_COTAN:
11212 : 102 : gfc_conv_intrinsic_cotan (se, expr);
11213 : 102 : break;
11214 : :
11215 : 108 : case GFC_ISYM_COTAND:
11216 : 108 : gfc_conv_intrinsic_cotand (se, expr);
11217 : 108 : break;
11218 : :
11219 : 72 : case GFC_ISYM_ATAN2D:
11220 : 72 : gfc_conv_intrinsic_atan2d (se, expr);
11221 : 72 : break;
11222 : :
11223 : 145 : case GFC_ISYM_BTEST:
11224 : 145 : gfc_conv_intrinsic_btest (se, expr);
11225 : 145 : break;
11226 : :
11227 : 54 : case GFC_ISYM_BGE:
11228 : 54 : gfc_conv_intrinsic_bitcomp (se, expr, GE_EXPR);
11229 : 54 : break;
11230 : :
11231 : 54 : case GFC_ISYM_BGT:
11232 : 54 : gfc_conv_intrinsic_bitcomp (se, expr, GT_EXPR);
11233 : 54 : break;
11234 : :
11235 : 54 : case GFC_ISYM_BLE:
11236 : 54 : gfc_conv_intrinsic_bitcomp (se, expr, LE_EXPR);
11237 : 54 : break;
11238 : :
11239 : 54 : case GFC_ISYM_BLT:
11240 : 54 : gfc_conv_intrinsic_bitcomp (se, expr, LT_EXPR);
11241 : 54 : break;
11242 : :
11243 : 8974 : case GFC_ISYM_C_ASSOCIATED:
11244 : 8974 : case GFC_ISYM_C_FUNLOC:
11245 : 8974 : case GFC_ISYM_C_LOC:
11246 : 8974 : conv_isocbinding_function (se, expr);
11247 : 8974 : break;
11248 : :
11249 : 2020 : case GFC_ISYM_ACHAR:
11250 : 2020 : case GFC_ISYM_CHAR:
11251 : 2020 : gfc_conv_intrinsic_char (se, expr);
11252 : 2020 : break;
11253 : :
11254 : 34997 : case GFC_ISYM_CONVERSION:
11255 : 34997 : case GFC_ISYM_DBLE:
11256 : 34997 : case GFC_ISYM_DFLOAT:
11257 : 34997 : case GFC_ISYM_FLOAT:
11258 : 34997 : case GFC_ISYM_LOGICAL:
11259 : 34997 : case GFC_ISYM_REAL:
11260 : 34997 : case GFC_ISYM_REALPART:
11261 : 34997 : case GFC_ISYM_SNGL:
11262 : 34997 : gfc_conv_intrinsic_conversion (se, expr);
11263 : 34997 : break;
11264 : :
11265 : : /* Integer conversions are handled separately to make sure we get the
11266 : : correct rounding mode. */
11267 : 2593 : case GFC_ISYM_INT:
11268 : 2593 : case GFC_ISYM_INT2:
11269 : 2593 : case GFC_ISYM_INT8:
11270 : 2593 : case GFC_ISYM_LONG:
11271 : 2593 : case GFC_ISYM_UINT:
11272 : 2593 : gfc_conv_intrinsic_int (se, expr, RND_TRUNC);
11273 : 2593 : break;
11274 : :
11275 : 167 : case GFC_ISYM_NINT:
11276 : 167 : gfc_conv_intrinsic_int (se, expr, RND_ROUND);
11277 : 167 : break;
11278 : :
11279 : 16 : case GFC_ISYM_CEILING:
11280 : 16 : gfc_conv_intrinsic_int (se, expr, RND_CEIL);
11281 : 16 : break;
11282 : :
11283 : 116 : case GFC_ISYM_FLOOR:
11284 : 116 : gfc_conv_intrinsic_int (se, expr, RND_FLOOR);
11285 : 116 : break;
11286 : :
11287 : 2633 : case GFC_ISYM_MOD:
11288 : 2633 : gfc_conv_intrinsic_mod (se, expr, 0);
11289 : 2633 : break;
11290 : :
11291 : 459 : case GFC_ISYM_MODULO:
11292 : 459 : gfc_conv_intrinsic_mod (se, expr, 1);
11293 : 459 : break;
11294 : :
11295 : 869 : case GFC_ISYM_CAF_GET:
11296 : 869 : gfc_conv_intrinsic_caf_get (se, expr, NULL_TREE, false, NULL);
11297 : 869 : break;
11298 : :
11299 : 482 : case GFC_ISYM_CMPLX:
11300 : 482 : gfc_conv_intrinsic_cmplx (se, expr, name[5] == '1');
11301 : 482 : break;
11302 : :
11303 : 10 : case GFC_ISYM_COMMAND_ARGUMENT_COUNT:
11304 : 10 : gfc_conv_intrinsic_iargc (se, expr);
11305 : 10 : break;
11306 : :
11307 : 6 : case GFC_ISYM_COMPLEX:
11308 : 6 : gfc_conv_intrinsic_cmplx (se, expr, 1);
11309 : 6 : break;
11310 : :
11311 : 255 : case GFC_ISYM_CONJG:
11312 : 255 : gfc_conv_intrinsic_conjg (se, expr);
11313 : 255 : break;
11314 : :
11315 : 142 : case GFC_ISYM_COUNT:
11316 : 142 : gfc_conv_intrinsic_count (se, expr);
11317 : 142 : break;
11318 : :
11319 : 0 : case GFC_ISYM_CTIME:
11320 : 0 : gfc_conv_intrinsic_ctime (se, expr);
11321 : 0 : break;
11322 : :
11323 : 96 : case GFC_ISYM_DIM:
11324 : 96 : gfc_conv_intrinsic_dim (se, expr);
11325 : 96 : break;
11326 : :
11327 : 123 : case GFC_ISYM_DOT_PRODUCT:
11328 : 123 : gfc_conv_intrinsic_dot_product (se, expr);
11329 : 123 : break;
11330 : :
11331 : 13 : case GFC_ISYM_DPROD:
11332 : 13 : gfc_conv_intrinsic_dprod (se, expr);
11333 : 13 : break;
11334 : :
11335 : 66 : case GFC_ISYM_DSHIFTL:
11336 : 66 : gfc_conv_intrinsic_dshift (se, expr, true);
11337 : 66 : break;
11338 : :
11339 : 66 : case GFC_ISYM_DSHIFTR:
11340 : 66 : gfc_conv_intrinsic_dshift (se, expr, false);
11341 : 66 : break;
11342 : :
11343 : 0 : case GFC_ISYM_FDATE:
11344 : 0 : gfc_conv_intrinsic_fdate (se, expr);
11345 : 0 : break;
11346 : :
11347 : 60 : case GFC_ISYM_FRACTION:
11348 : 60 : gfc_conv_intrinsic_fraction (se, expr);
11349 : 60 : break;
11350 : :
11351 : 24 : case GFC_ISYM_IALL:
11352 : 24 : gfc_conv_intrinsic_arith (se, expr, BIT_AND_EXPR, false);
11353 : 24 : break;
11354 : :
11355 : 598 : case GFC_ISYM_IAND:
11356 : 598 : gfc_conv_intrinsic_bitop (se, expr, BIT_AND_EXPR);
11357 : 598 : break;
11358 : :
11359 : 12 : case GFC_ISYM_IANY:
11360 : 12 : gfc_conv_intrinsic_arith (se, expr, BIT_IOR_EXPR, false);
11361 : 12 : break;
11362 : :
11363 : 168 : case GFC_ISYM_IBCLR:
11364 : 168 : gfc_conv_intrinsic_singlebitop (se, expr, 0);
11365 : 168 : break;
11366 : :
11367 : 27 : case GFC_ISYM_IBITS:
11368 : 27 : gfc_conv_intrinsic_ibits (se, expr);
11369 : 27 : break;
11370 : :
11371 : 138 : case GFC_ISYM_IBSET:
11372 : 138 : gfc_conv_intrinsic_singlebitop (se, expr, 1);
11373 : 138 : break;
11374 : :
11375 : 2033 : case GFC_ISYM_IACHAR:
11376 : 2033 : case GFC_ISYM_ICHAR:
11377 : : /* We assume ASCII character sequence. */
11378 : 2033 : gfc_conv_intrinsic_ichar (se, expr);
11379 : 2033 : break;
11380 : :
11381 : 2 : case GFC_ISYM_IARGC:
11382 : 2 : gfc_conv_intrinsic_iargc (se, expr);
11383 : 2 : break;
11384 : :
11385 : 686 : case GFC_ISYM_IEOR:
11386 : 686 : gfc_conv_intrinsic_bitop (se, expr, BIT_XOR_EXPR);
11387 : 686 : break;
11388 : :
11389 : 328 : case GFC_ISYM_INDEX:
11390 : 328 : kind = expr->value.function.actual->expr->ts.kind;
11391 : 328 : if (kind == 1)
11392 : 262 : fndecl = gfor_fndecl_string_index;
11393 : 66 : else if (kind == 4)
11394 : 66 : fndecl = gfor_fndecl_string_index_char4;
11395 : : else
11396 : 0 : gcc_unreachable ();
11397 : :
11398 : 328 : gfc_conv_intrinsic_index_scan_verify (se, expr, fndecl);
11399 : 328 : break;
11400 : :
11401 : 481 : case GFC_ISYM_IOR:
11402 : 481 : gfc_conv_intrinsic_bitop (se, expr, BIT_IOR_EXPR);
11403 : 481 : break;
11404 : :
11405 : 12 : case GFC_ISYM_IPARITY:
11406 : 12 : gfc_conv_intrinsic_arith (se, expr, BIT_XOR_EXPR, false);
11407 : 12 : break;
11408 : :
11409 : 6 : case GFC_ISYM_IS_IOSTAT_END:
11410 : 6 : gfc_conv_has_intvalue (se, expr, LIBERROR_END);
11411 : 6 : break;
11412 : :
11413 : 18 : case GFC_ISYM_IS_IOSTAT_EOR:
11414 : 18 : gfc_conv_has_intvalue (se, expr, LIBERROR_EOR);
11415 : 18 : break;
11416 : :
11417 : 621 : case GFC_ISYM_IS_CONTIGUOUS:
11418 : 621 : gfc_conv_intrinsic_is_contiguous (se, expr);
11419 : 621 : break;
11420 : :
11421 : 432 : case GFC_ISYM_ISNAN:
11422 : 432 : gfc_conv_intrinsic_isnan (se, expr);
11423 : 432 : break;
11424 : :
11425 : 8 : case GFC_ISYM_KILL:
11426 : 8 : conv_intrinsic_kill (se, expr);
11427 : 8 : break;
11428 : :
11429 : 90 : case GFC_ISYM_LSHIFT:
11430 : 90 : gfc_conv_intrinsic_shift (se, expr, false, false);
11431 : 90 : break;
11432 : :
11433 : 24 : case GFC_ISYM_RSHIFT:
11434 : 24 : gfc_conv_intrinsic_shift (se, expr, true, true);
11435 : 24 : break;
11436 : :
11437 : 78 : case GFC_ISYM_SHIFTA:
11438 : 78 : gfc_conv_intrinsic_shift (se, expr, true, true);
11439 : 78 : break;
11440 : :
11441 : 171 : case GFC_ISYM_SHIFTL:
11442 : 171 : gfc_conv_intrinsic_shift (se, expr, false, false);
11443 : 171 : break;
11444 : :
11445 : 66 : case GFC_ISYM_SHIFTR:
11446 : 66 : gfc_conv_intrinsic_shift (se, expr, true, false);
11447 : 66 : break;
11448 : :
11449 : 318 : case GFC_ISYM_ISHFT:
11450 : 318 : gfc_conv_intrinsic_ishft (se, expr);
11451 : 318 : break;
11452 : :
11453 : 658 : case GFC_ISYM_ISHFTC:
11454 : 658 : gfc_conv_intrinsic_ishftc (se, expr);
11455 : 658 : break;
11456 : :
11457 : 270 : case GFC_ISYM_LEADZ:
11458 : 270 : gfc_conv_intrinsic_leadz (se, expr);
11459 : 270 : break;
11460 : :
11461 : 282 : case GFC_ISYM_TRAILZ:
11462 : 282 : gfc_conv_intrinsic_trailz (se, expr);
11463 : 282 : break;
11464 : :
11465 : 103 : case GFC_ISYM_POPCNT:
11466 : 103 : gfc_conv_intrinsic_popcnt_poppar (se, expr, 0);
11467 : 103 : break;
11468 : :
11469 : 31 : case GFC_ISYM_POPPAR:
11470 : 31 : gfc_conv_intrinsic_popcnt_poppar (se, expr, 1);
11471 : 31 : break;
11472 : :
11473 : 5596 : case GFC_ISYM_LBOUND:
11474 : 5596 : gfc_conv_intrinsic_bound (se, expr, GFC_ISYM_LBOUND);
11475 : 5596 : break;
11476 : :
11477 : 178 : case GFC_ISYM_LCOBOUND:
11478 : 178 : conv_intrinsic_cobound (se, expr);
11479 : 178 : break;
11480 : :
11481 : 744 : case GFC_ISYM_TRANSPOSE:
11482 : : /* The scalarizer has already been set up for reversed dimension access
11483 : : order ; now we just get the argument value normally. */
11484 : 744 : gfc_conv_expr (se, expr->value.function.actual->expr);
11485 : 744 : break;
11486 : :
11487 : 5548 : case GFC_ISYM_LEN:
11488 : 5548 : gfc_conv_intrinsic_len (se, expr);
11489 : 5548 : break;
11490 : :
11491 : 2276 : case GFC_ISYM_LEN_TRIM:
11492 : 2276 : gfc_conv_intrinsic_len_trim (se, expr);
11493 : 2276 : break;
11494 : :
11495 : 18 : case GFC_ISYM_LGE:
11496 : 18 : gfc_conv_intrinsic_strcmp (se, expr, GE_EXPR);
11497 : 18 : break;
11498 : :
11499 : 36 : case GFC_ISYM_LGT:
11500 : 36 : gfc_conv_intrinsic_strcmp (se, expr, GT_EXPR);
11501 : 36 : break;
11502 : :
11503 : 18 : case GFC_ISYM_LLE:
11504 : 18 : gfc_conv_intrinsic_strcmp (se, expr, LE_EXPR);
11505 : 18 : break;
11506 : :
11507 : 27 : case GFC_ISYM_LLT:
11508 : 27 : gfc_conv_intrinsic_strcmp (se, expr, LT_EXPR);
11509 : 27 : break;
11510 : :
11511 : 16 : case GFC_ISYM_MALLOC:
11512 : 16 : gfc_conv_intrinsic_malloc (se, expr);
11513 : 16 : break;
11514 : :
11515 : 32 : case GFC_ISYM_MASKL:
11516 : 32 : gfc_conv_intrinsic_mask (se, expr, 1);
11517 : 32 : break;
11518 : :
11519 : 32 : case GFC_ISYM_MASKR:
11520 : 32 : gfc_conv_intrinsic_mask (se, expr, 0);
11521 : 32 : break;
11522 : :
11523 : 1037 : case GFC_ISYM_MAX:
11524 : 1037 : if (expr->ts.type == BT_CHARACTER)
11525 : 138 : gfc_conv_intrinsic_minmax_char (se, expr, 1);
11526 : : else
11527 : 899 : gfc_conv_intrinsic_minmax (se, expr, GT_EXPR);
11528 : : break;
11529 : :
11530 : 4524 : case GFC_ISYM_MAXLOC:
11531 : 4524 : gfc_conv_intrinsic_minmaxloc (se, expr, GT_EXPR);
11532 : 4524 : break;
11533 : :
11534 : 180 : case GFC_ISYM_FINDLOC:
11535 : 180 : gfc_conv_intrinsic_findloc (se, expr);
11536 : 180 : break;
11537 : :
11538 : 1021 : case GFC_ISYM_MAXVAL:
11539 : 1021 : gfc_conv_intrinsic_minmaxval (se, expr, GT_EXPR);
11540 : 1021 : break;
11541 : :
11542 : 954 : case GFC_ISYM_MERGE:
11543 : 954 : gfc_conv_intrinsic_merge (se, expr);
11544 : 954 : break;
11545 : :
11546 : 42 : case GFC_ISYM_MERGE_BITS:
11547 : 42 : gfc_conv_intrinsic_merge_bits (se, expr);
11548 : 42 : break;
11549 : :
11550 : 566 : case GFC_ISYM_MIN:
11551 : 566 : if (expr->ts.type == BT_CHARACTER)
11552 : 144 : gfc_conv_intrinsic_minmax_char (se, expr, -1);
11553 : : else
11554 : 422 : gfc_conv_intrinsic_minmax (se, expr, LT_EXPR);
11555 : : break;
11556 : :
11557 : 5412 : case GFC_ISYM_MINLOC:
11558 : 5412 : gfc_conv_intrinsic_minmaxloc (se, expr, LT_EXPR);
11559 : 5412 : break;
11560 : :
11561 : 1316 : case GFC_ISYM_MINVAL:
11562 : 1316 : gfc_conv_intrinsic_minmaxval (se, expr, LT_EXPR);
11563 : 1316 : break;
11564 : :
11565 : 1610 : case GFC_ISYM_NEAREST:
11566 : 1610 : gfc_conv_intrinsic_nearest (se, expr);
11567 : 1610 : break;
11568 : :
11569 : 68 : case GFC_ISYM_NORM2:
11570 : 68 : gfc_conv_intrinsic_arith (se, expr, PLUS_EXPR, true);
11571 : 68 : break;
11572 : :
11573 : 228 : case GFC_ISYM_NOT:
11574 : 228 : gfc_conv_intrinsic_not (se, expr);
11575 : 228 : break;
11576 : :
11577 : 12 : case GFC_ISYM_OR:
11578 : 12 : gfc_conv_intrinsic_bitop (se, expr, BIT_IOR_EXPR);
11579 : 12 : break;
11580 : :
11581 : 36 : case GFC_ISYM_PARITY:
11582 : 36 : gfc_conv_intrinsic_arith (se, expr, NE_EXPR, false);
11583 : 36 : break;
11584 : :
11585 : 4834 : case GFC_ISYM_PRESENT:
11586 : 4834 : gfc_conv_intrinsic_present (se, expr);
11587 : 4834 : break;
11588 : :
11589 : 344 : case GFC_ISYM_PRODUCT:
11590 : 344 : gfc_conv_intrinsic_arith (se, expr, MULT_EXPR, false);
11591 : 344 : break;
11592 : :
11593 : 10137 : case GFC_ISYM_RANK:
11594 : 10137 : gfc_conv_intrinsic_rank (se, expr);
11595 : 10137 : break;
11596 : :
11597 : 48 : case GFC_ISYM_RRSPACING:
11598 : 48 : gfc_conv_intrinsic_rrspacing (se, expr);
11599 : 48 : break;
11600 : :
11601 : 262 : case GFC_ISYM_SET_EXPONENT:
11602 : 262 : gfc_conv_intrinsic_set_exponent (se, expr);
11603 : 262 : break;
11604 : :
11605 : 72 : case GFC_ISYM_SCALE:
11606 : 72 : gfc_conv_intrinsic_scale (se, expr);
11607 : 72 : break;
11608 : :
11609 : 4725 : case GFC_ISYM_SHAPE:
11610 : 4725 : gfc_conv_intrinsic_bound (se, expr, GFC_ISYM_SHAPE);
11611 : 4725 : break;
11612 : :
11613 : 424 : case GFC_ISYM_SIGN:
11614 : 424 : gfc_conv_intrinsic_sign (se, expr);
11615 : 424 : break;
11616 : :
11617 : 14691 : case GFC_ISYM_SIZE:
11618 : 14691 : gfc_conv_intrinsic_size (se, expr);
11619 : 14691 : break;
11620 : :
11621 : 1296 : case GFC_ISYM_SIZEOF:
11622 : 1296 : case GFC_ISYM_C_SIZEOF:
11623 : 1296 : gfc_conv_intrinsic_sizeof (se, expr);
11624 : 1296 : break;
11625 : :
11626 : 802 : case GFC_ISYM_STORAGE_SIZE:
11627 : 802 : gfc_conv_intrinsic_storage_size (se, expr);
11628 : 802 : break;
11629 : :
11630 : 70 : case GFC_ISYM_SPACING:
11631 : 70 : gfc_conv_intrinsic_spacing (se, expr);
11632 : 70 : break;
11633 : :
11634 : 1802 : case GFC_ISYM_STRIDE:
11635 : 1802 : conv_intrinsic_stride (se, expr);
11636 : 1802 : break;
11637 : :
11638 : 1966 : case GFC_ISYM_SUM:
11639 : 1966 : gfc_conv_intrinsic_arith (se, expr, PLUS_EXPR, false);
11640 : 1966 : break;
11641 : :
11642 : 31 : case GFC_ISYM_TEAM_NUMBER:
11643 : 31 : conv_intrinsic_team_number (se, expr);
11644 : 31 : break;
11645 : :
11646 : 3554 : case GFC_ISYM_TRANSFER:
11647 : 3554 : if (se->ss && se->ss->info->useflags)
11648 : : /* Access the previously obtained result. */
11649 : 295 : gfc_conv_tmp_array_ref (se);
11650 : : else
11651 : 3259 : gfc_conv_intrinsic_transfer (se, expr);
11652 : : break;
11653 : :
11654 : 0 : case GFC_ISYM_TTYNAM:
11655 : 0 : gfc_conv_intrinsic_ttynam (se, expr);
11656 : 0 : break;
11657 : :
11658 : 5620 : case GFC_ISYM_UBOUND:
11659 : 5620 : gfc_conv_intrinsic_bound (se, expr, GFC_ISYM_UBOUND);
11660 : 5620 : break;
11661 : :
11662 : 191 : case GFC_ISYM_UCOBOUND:
11663 : 191 : conv_intrinsic_cobound (se, expr);
11664 : 191 : break;
11665 : :
11666 : 18 : case GFC_ISYM_XOR:
11667 : 18 : gfc_conv_intrinsic_bitop (se, expr, BIT_XOR_EXPR);
11668 : 18 : break;
11669 : :
11670 : 8491 : case GFC_ISYM_LOC:
11671 : 8491 : gfc_conv_intrinsic_loc (se, expr);
11672 : 8491 : break;
11673 : :
11674 : 855 : case GFC_ISYM_THIS_IMAGE:
11675 : : /* For num_images() == 1, handle as LCOBOUND. */
11676 : 855 : if (expr->value.function.actual->expr
11677 : 356 : && flag_coarray == GFC_FCOARRAY_SINGLE)
11678 : 208 : conv_intrinsic_cobound (se, expr);
11679 : : else
11680 : 647 : trans_this_image (se, expr);
11681 : : break;
11682 : :
11683 : 152 : case GFC_ISYM_IMAGE_INDEX:
11684 : 152 : trans_image_index (se, expr);
11685 : 152 : break;
11686 : :
11687 : 16 : case GFC_ISYM_IMAGE_STATUS:
11688 : 16 : conv_intrinsic_image_status (se, expr);
11689 : 16 : break;
11690 : :
11691 : 397 : case GFC_ISYM_NUM_IMAGES:
11692 : 397 : trans_num_images (se, expr);
11693 : 397 : break;
11694 : :
11695 : 1236 : case GFC_ISYM_ACCESS:
11696 : 1236 : case GFC_ISYM_CHDIR:
11697 : 1236 : case GFC_ISYM_CHMOD:
11698 : 1236 : case GFC_ISYM_DTIME:
11699 : 1236 : case GFC_ISYM_ETIME:
11700 : 1236 : case GFC_ISYM_EXTENDS_TYPE_OF:
11701 : 1236 : case GFC_ISYM_FGET:
11702 : 1236 : case GFC_ISYM_FGETC:
11703 : 1236 : case GFC_ISYM_FNUM:
11704 : 1236 : case GFC_ISYM_FPUT:
11705 : 1236 : case GFC_ISYM_FPUTC:
11706 : 1236 : case GFC_ISYM_FSTAT:
11707 : 1236 : case GFC_ISYM_FTELL:
11708 : 1236 : case GFC_ISYM_GETCWD:
11709 : 1236 : case GFC_ISYM_GETGID:
11710 : 1236 : case GFC_ISYM_GETPID:
11711 : 1236 : case GFC_ISYM_GETUID:
11712 : 1236 : case GFC_ISYM_HOSTNM:
11713 : 1236 : case GFC_ISYM_IERRNO:
11714 : 1236 : case GFC_ISYM_IRAND:
11715 : 1236 : case GFC_ISYM_ISATTY:
11716 : 1236 : case GFC_ISYM_JN2:
11717 : 1236 : case GFC_ISYM_LINK:
11718 : 1236 : case GFC_ISYM_LSTAT:
11719 : 1236 : case GFC_ISYM_MATMUL:
11720 : 1236 : case GFC_ISYM_MCLOCK:
11721 : 1236 : case GFC_ISYM_MCLOCK8:
11722 : 1236 : case GFC_ISYM_RAND:
11723 : 1236 : case GFC_ISYM_RENAME:
11724 : 1236 : case GFC_ISYM_SECOND:
11725 : 1236 : case GFC_ISYM_SECNDS:
11726 : 1236 : case GFC_ISYM_SIGNAL:
11727 : 1236 : case GFC_ISYM_STAT:
11728 : 1236 : case GFC_ISYM_SYMLNK:
11729 : 1236 : case GFC_ISYM_SYSTEM:
11730 : 1236 : case GFC_ISYM_TIME:
11731 : 1236 : case GFC_ISYM_TIME8:
11732 : 1236 : case GFC_ISYM_UMASK:
11733 : 1236 : case GFC_ISYM_UNLINK:
11734 : 1236 : case GFC_ISYM_YN2:
11735 : 1236 : gfc_conv_intrinsic_funcall (se, expr);
11736 : 1236 : break;
11737 : :
11738 : 0 : case GFC_ISYM_EOSHIFT:
11739 : 0 : case GFC_ISYM_PACK:
11740 : 0 : case GFC_ISYM_RESHAPE:
11741 : : /* For those, expr->rank should always be >0 and thus the if above the
11742 : : switch should have matched. */
11743 : 0 : gcc_unreachable ();
11744 : 3857 : break;
11745 : :
11746 : 3857 : default:
11747 : 3857 : gfc_conv_intrinsic_lib_function (se, expr);
11748 : 3857 : break;
11749 : : }
11750 : : }
11751 : :
11752 : :
11753 : : static gfc_ss *
11754 : 1598 : walk_inline_intrinsic_transpose (gfc_ss *ss, gfc_expr *expr)
11755 : : {
11756 : 1598 : gfc_ss *arg_ss, *tmp_ss;
11757 : 1598 : gfc_actual_arglist *arg;
11758 : :
11759 : 1598 : arg = expr->value.function.actual;
11760 : :
11761 : 1598 : gcc_assert (arg->expr);
11762 : :
11763 : 1598 : arg_ss = gfc_walk_subexpr (gfc_ss_terminator, arg->expr);
11764 : 1598 : gcc_assert (arg_ss != gfc_ss_terminator);
11765 : :
11766 : : for (tmp_ss = arg_ss; ; tmp_ss = tmp_ss->next)
11767 : : {
11768 : 1703 : if (tmp_ss->info->type != GFC_SS_SCALAR
11769 : : && tmp_ss->info->type != GFC_SS_REFERENCE)
11770 : : {
11771 : 1666 : gcc_assert (tmp_ss->dimen == 2);
11772 : :
11773 : : /* We just invert dimensions. */
11774 : 1666 : std::swap (tmp_ss->dim[0], tmp_ss->dim[1]);
11775 : : }
11776 : :
11777 : : /* Stop when tmp_ss points to the last valid element of the chain... */
11778 : 1703 : if (tmp_ss->next == gfc_ss_terminator)
11779 : : break;
11780 : : }
11781 : :
11782 : : /* ... so that we can attach the rest of the chain to it. */
11783 : 1598 : tmp_ss->next = ss;
11784 : :
11785 : 1598 : return arg_ss;
11786 : : }
11787 : :
11788 : :
11789 : : /* Move the given dimension of the given gfc_ss list to a nested gfc_ss list.
11790 : : This has the side effect of reversing the nested list, so there is no
11791 : : need to call gfc_reverse_ss on it (the given list is assumed not to be
11792 : : reversed yet). */
11793 : :
11794 : : static gfc_ss *
11795 : 2432 : nest_loop_dimension (gfc_ss *ss, int dim)
11796 : : {
11797 : 2432 : int ss_dim, i;
11798 : 2432 : gfc_ss *new_ss, *prev_ss = gfc_ss_terminator;
11799 : 2432 : gfc_loopinfo *new_loop;
11800 : :
11801 : 2432 : gcc_assert (ss != gfc_ss_terminator);
11802 : :
11803 : 5932 : for (; ss != gfc_ss_terminator; ss = ss->next)
11804 : : {
11805 : 3500 : new_ss = gfc_get_ss ();
11806 : 3500 : new_ss->next = prev_ss;
11807 : 3500 : new_ss->parent = ss;
11808 : 3500 : new_ss->info = ss->info;
11809 : 3500 : new_ss->info->refcount++;
11810 : 3500 : if (ss->dimen != 0)
11811 : : {
11812 : 3437 : gcc_assert (ss->info->type != GFC_SS_SCALAR
11813 : : && ss->info->type != GFC_SS_REFERENCE);
11814 : :
11815 : 3437 : new_ss->dimen = 1;
11816 : 3437 : new_ss->dim[0] = ss->dim[dim];
11817 : :
11818 : 3437 : gcc_assert (dim < ss->dimen);
11819 : :
11820 : 3437 : ss_dim = --ss->dimen;
11821 : 6784 : for (i = dim; i < ss_dim; i++)
11822 : 3347 : ss->dim[i] = ss->dim[i + 1];
11823 : :
11824 : 3437 : ss->dim[ss_dim] = 0;
11825 : : }
11826 : 3500 : prev_ss = new_ss;
11827 : :
11828 : 3500 : if (ss->nested_ss)
11829 : : {
11830 : 81 : ss->nested_ss->parent = new_ss;
11831 : 81 : new_ss->nested_ss = ss->nested_ss;
11832 : : }
11833 : 3500 : ss->nested_ss = new_ss;
11834 : : }
11835 : :
11836 : 2432 : new_loop = gfc_get_loopinfo ();
11837 : 2432 : gfc_init_loopinfo (new_loop);
11838 : :
11839 : 2432 : gcc_assert (prev_ss != NULL);
11840 : 2432 : gcc_assert (prev_ss != gfc_ss_terminator);
11841 : 2432 : gfc_add_ss_to_loop (new_loop, prev_ss);
11842 : 2432 : return new_ss->parent;
11843 : : }
11844 : :
11845 : :
11846 : : /* Create the gfc_ss list for the SUM/PRODUCT arguments when the function
11847 : : is to be inlined. */
11848 : :
11849 : : static gfc_ss *
11850 : 560 : walk_inline_intrinsic_arith (gfc_ss *ss, gfc_expr *expr)
11851 : : {
11852 : 560 : gfc_ss *tmp_ss, *tail, *array_ss;
11853 : 560 : gfc_actual_arglist *arg1, *arg2, *arg3;
11854 : 560 : int sum_dim;
11855 : 560 : bool scalar_mask = false;
11856 : :
11857 : : /* The rank of the result will be determined later. */
11858 : 560 : arg1 = expr->value.function.actual;
11859 : 560 : arg2 = arg1->next;
11860 : 560 : arg3 = arg2->next;
11861 : 560 : gcc_assert (arg3 != NULL);
11862 : :
11863 : 560 : if (expr->rank == 0)
11864 : : return ss;
11865 : :
11866 : 560 : tmp_ss = gfc_ss_terminator;
11867 : :
11868 : 560 : if (arg3->expr)
11869 : : {
11870 : 118 : gfc_ss *mask_ss;
11871 : :
11872 : 118 : mask_ss = gfc_walk_subexpr (tmp_ss, arg3->expr);
11873 : 118 : if (mask_ss == tmp_ss)
11874 : 34 : scalar_mask = 1;
11875 : :
11876 : : tmp_ss = mask_ss;
11877 : : }
11878 : :
11879 : 560 : array_ss = gfc_walk_subexpr (tmp_ss, arg1->expr);
11880 : 560 : gcc_assert (array_ss != tmp_ss);
11881 : :
11882 : : /* Odd thing: If the mask is scalar, it is used by the frontend after
11883 : : the array (to make an if around the nested loop). Thus it shall
11884 : : be after array_ss once the gfc_ss list is reversed. */
11885 : 560 : if (scalar_mask)
11886 : 34 : tmp_ss = gfc_get_scalar_ss (array_ss, arg3->expr);
11887 : : else
11888 : : tmp_ss = array_ss;
11889 : :
11890 : : /* "Hide" the dimension on which we will sum in the first arg's scalarization
11891 : : chain. */
11892 : 560 : sum_dim = mpz_get_si (arg2->expr->value.integer) - 1;
11893 : 560 : tail = nest_loop_dimension (tmp_ss, sum_dim);
11894 : 560 : tail->next = ss;
11895 : :
11896 : 560 : return tmp_ss;
11897 : : }
11898 : :
11899 : :
11900 : : /* Create the gfc_ss list for the arguments to MINLOC or MAXLOC when the
11901 : : function is to be inlined. */
11902 : :
11903 : : static gfc_ss *
11904 : 4585 : walk_inline_intrinsic_minmaxloc (gfc_ss *ss, gfc_expr *expr ATTRIBUTE_UNUSED)
11905 : : {
11906 : 4585 : if (expr->rank == 0)
11907 : : return ss;
11908 : :
11909 : 4585 : gfc_actual_arglist *array_arg = expr->value.function.actual;
11910 : 4585 : gfc_actual_arglist *dim_arg = array_arg->next;
11911 : 4585 : gfc_actual_arglist *mask_arg = dim_arg->next;
11912 : 4585 : gfc_actual_arglist *kind_arg = mask_arg->next;
11913 : 4585 : gfc_actual_arglist *back_arg = kind_arg->next;
11914 : :
11915 : 4585 : gfc_expr *array = array_arg->expr;
11916 : 4585 : gfc_expr *dim = dim_arg->expr;
11917 : 4585 : gfc_expr *mask = mask_arg->expr;
11918 : 4585 : gfc_expr *back = back_arg->expr;
11919 : :
11920 : 4585 : if (dim == nullptr)
11921 : 2713 : return gfc_get_array_ss (ss, expr, 1, GFC_SS_INTRINSIC);
11922 : :
11923 : 1872 : gfc_ss *tmp_ss = gfc_ss_terminator;
11924 : :
11925 : 1872 : bool scalar_mask = false;
11926 : 1872 : if (mask)
11927 : : {
11928 : 1250 : gfc_ss *mask_ss = gfc_walk_subexpr (tmp_ss, mask);
11929 : 1250 : if (mask_ss == tmp_ss)
11930 : : scalar_mask = true;
11931 : 866 : else if (maybe_absent_optional_variable (mask))
11932 : 20 : mask_ss->info->can_be_null_ref = true;
11933 : :
11934 : : tmp_ss = mask_ss;
11935 : : }
11936 : :
11937 : 1872 : gfc_ss *array_ss = gfc_walk_subexpr (tmp_ss, array);
11938 : 1872 : gcc_assert (array_ss != tmp_ss);
11939 : :
11940 : 1872 : tmp_ss = array_ss;
11941 : :
11942 : : /* Move the dimension on which we will sum to a separate nested scalarization
11943 : : chain, "hiding" that dimension from the outer scalarization. */
11944 : 1872 : int dim_val = mpz_get_si (dim->value.integer);
11945 : 1872 : gfc_ss *tail = nest_loop_dimension (tmp_ss, dim_val - 1);
11946 : :
11947 : 1872 : if (back && array->rank > 1)
11948 : : {
11949 : : /* If there are nested scalarization loops, include BACK in the
11950 : : scalarization chains to avoid evaluating it multiple times in a loop.
11951 : : Otherwise, prefer to handle it outside of scalarization. */
11952 : 1872 : gfc_ss *back_ss = gfc_get_scalar_ss (ss, back);
11953 : 1872 : back_ss->info->type = GFC_SS_REFERENCE;
11954 : 1872 : if (maybe_absent_optional_variable (back))
11955 : 16 : back_ss->info->can_be_null_ref = true;
11956 : :
11957 : 1872 : tail->next = back_ss;
11958 : 1872 : }
11959 : : else
11960 : 0 : tail->next = ss;
11961 : :
11962 : 1872 : if (scalar_mask)
11963 : : {
11964 : 384 : tmp_ss = gfc_get_scalar_ss (tmp_ss, mask);
11965 : : /* MASK can be a forwarded optional argument, so make the necessary setup
11966 : : to avoid the scalarizer generating any unguarded pointer dereference in
11967 : : that case. */
11968 : 384 : tmp_ss->info->type = GFC_SS_REFERENCE;
11969 : 384 : if (maybe_absent_optional_variable (mask))
11970 : 4 : tmp_ss->info->can_be_null_ref = true;
11971 : : }
11972 : :
11973 : : return tmp_ss;
11974 : : }
11975 : :
11976 : :
11977 : : static gfc_ss *
11978 : 6743 : walk_inline_intrinsic_function (gfc_ss * ss, gfc_expr * expr)
11979 : : {
11980 : :
11981 : 6743 : switch (expr->value.function.isym->id)
11982 : : {
11983 : 560 : case GFC_ISYM_PRODUCT:
11984 : 560 : case GFC_ISYM_SUM:
11985 : 560 : return walk_inline_intrinsic_arith (ss, expr);
11986 : :
11987 : 1598 : case GFC_ISYM_TRANSPOSE:
11988 : 1598 : return walk_inline_intrinsic_transpose (ss, expr);
11989 : :
11990 : 4585 : case GFC_ISYM_MAXLOC:
11991 : 4585 : case GFC_ISYM_MINLOC:
11992 : 4585 : return walk_inline_intrinsic_minmaxloc (ss, expr);
11993 : :
11994 : 0 : default:
11995 : 0 : gcc_unreachable ();
11996 : : }
11997 : : gcc_unreachable ();
11998 : : }
11999 : :
12000 : :
12001 : : /* This generates code to execute before entering the scalarization loop.
12002 : : Currently does nothing. */
12003 : :
12004 : : void
12005 : 10633 : gfc_add_intrinsic_ss_code (gfc_loopinfo * loop ATTRIBUTE_UNUSED, gfc_ss * ss)
12006 : : {
12007 : 10633 : switch (ss->info->expr->value.function.isym->id)
12008 : : {
12009 : 10633 : case GFC_ISYM_UBOUND:
12010 : 10633 : case GFC_ISYM_LBOUND:
12011 : 10633 : case GFC_ISYM_UCOBOUND:
12012 : 10633 : case GFC_ISYM_LCOBOUND:
12013 : 10633 : case GFC_ISYM_MAXLOC:
12014 : 10633 : case GFC_ISYM_MINLOC:
12015 : 10633 : case GFC_ISYM_THIS_IMAGE:
12016 : 10633 : case GFC_ISYM_SHAPE:
12017 : 10633 : break;
12018 : :
12019 : 0 : default:
12020 : 0 : gcc_unreachable ();
12021 : : }
12022 : 10633 : }
12023 : :
12024 : :
12025 : : /* The LBOUND, LCOBOUND, UBOUND, UCOBOUND, and SHAPE intrinsics with
12026 : : one parameter are expanded into code inside the scalarization loop. */
12027 : :
12028 : : static gfc_ss *
12029 : 9750 : gfc_walk_intrinsic_bound (gfc_ss * ss, gfc_expr * expr)
12030 : : {
12031 : 9750 : if (expr->value.function.actual->expr->ts.type == BT_CLASS)
12032 : 410 : gfc_add_class_array_ref (expr->value.function.actual->expr);
12033 : :
12034 : : /* The two argument version returns a scalar. */
12035 : 9750 : if (expr->value.function.isym->id != GFC_ISYM_SHAPE
12036 : 3413 : && expr->value.function.actual->next->expr)
12037 : : return ss;
12038 : :
12039 : 9750 : return gfc_get_array_ss (ss, expr, 1, GFC_SS_INTRINSIC);
12040 : : }
12041 : :
12042 : :
12043 : : /* Walk an intrinsic array libcall. */
12044 : :
12045 : : static gfc_ss *
12046 : 13448 : gfc_walk_intrinsic_libfunc (gfc_ss * ss, gfc_expr * expr)
12047 : : {
12048 : 13448 : gcc_assert (expr->rank > 0);
12049 : 13448 : return gfc_get_array_ss (ss, expr, expr->rank, GFC_SS_FUNCTION);
12050 : : }
12051 : :
12052 : :
12053 : : /* Return whether the function call expression EXPR will be expanded
12054 : : inline by gfc_conv_intrinsic_function. */
12055 : :
12056 : : bool
12057 : 274084 : gfc_inline_intrinsic_function_p (gfc_expr *expr)
12058 : : {
12059 : 274084 : gfc_actual_arglist *args, *dim_arg, *mask_arg;
12060 : 274084 : gfc_expr *maskexpr;
12061 : :
12062 : 274084 : gfc_intrinsic_sym *isym = expr->value.function.isym;
12063 : 274084 : if (!isym)
12064 : : return false;
12065 : :
12066 : 274048 : switch (isym->id)
12067 : : {
12068 : 5017 : case GFC_ISYM_PRODUCT:
12069 : 5017 : case GFC_ISYM_SUM:
12070 : : /* Disable inline expansion if code size matters. */
12071 : 5017 : if (optimize_size)
12072 : : return false;
12073 : :
12074 : 4187 : args = expr->value.function.actual;
12075 : 4187 : dim_arg = args->next;
12076 : :
12077 : : /* We need to be able to subset the SUM argument at compile-time. */
12078 : 4187 : if (dim_arg->expr && dim_arg->expr->expr_type != EXPR_CONSTANT)
12079 : : return false;
12080 : :
12081 : : /* FIXME: If MASK is optional for a more than two-dimensional
12082 : : argument, the scalarizer gets confused if the mask is
12083 : : absent. See PR 82995. For now, fall back to the library
12084 : : function. */
12085 : :
12086 : 3575 : mask_arg = dim_arg->next;
12087 : 3575 : maskexpr = mask_arg->expr;
12088 : :
12089 : 3575 : if (expr->rank > 0 && maskexpr && maskexpr->expr_type == EXPR_VARIABLE
12090 : 276 : && maskexpr->symtree->n.sym->attr.dummy
12091 : 276 : && maskexpr->symtree->n.sym->attr.optional)
12092 : : return false;
12093 : :
12094 : : return true;
12095 : :
12096 : : case GFC_ISYM_TRANSPOSE:
12097 : : return true;
12098 : :
12099 : 42926 : case GFC_ISYM_MINLOC:
12100 : 42926 : case GFC_ISYM_MAXLOC:
12101 : 42926 : {
12102 : 42926 : if ((isym->id == GFC_ISYM_MINLOC
12103 : 23719 : && (flag_inline_intrinsics
12104 : 23719 : & GFC_FLAG_INLINE_INTRINSIC_MINLOC) == 0)
12105 : 34927 : || (isym->id == GFC_ISYM_MAXLOC
12106 : 19207 : && (flag_inline_intrinsics
12107 : 19207 : & GFC_FLAG_INLINE_INTRINSIC_MAXLOC) == 0))
12108 : : return false;
12109 : :
12110 : 28758 : gfc_actual_arglist *array_arg = expr->value.function.actual;
12111 : 28758 : gfc_actual_arglist *dim_arg = array_arg->next;
12112 : :
12113 : 28758 : gfc_expr *array = array_arg->expr;
12114 : 28758 : gfc_expr *dim = dim_arg->expr;
12115 : :
12116 : 28758 : if (!(array->ts.type == BT_INTEGER
12117 : : || array->ts.type == BT_REAL))
12118 : : return false;
12119 : :
12120 : 27158 : if (array->rank == 1)
12121 : : return true;
12122 : :
12123 : 15515 : if (dim != nullptr
12124 : 9616 : && dim->expr_type != EXPR_CONSTANT)
12125 : : return false;
12126 : :
12127 : : return true;
12128 : : }
12129 : :
12130 : : default:
12131 : : return false;
12132 : : }
12133 : : }
12134 : :
12135 : :
12136 : : /* Returns nonzero if the specified intrinsic function call maps directly to
12137 : : an external library call. Should only be used for functions that return
12138 : : arrays. */
12139 : :
12140 : : int
12141 : 81029 : gfc_is_intrinsic_libcall (gfc_expr * expr)
12142 : : {
12143 : 81029 : gcc_assert (expr->expr_type == EXPR_FUNCTION && expr->value.function.isym);
12144 : 81029 : gcc_assert (expr->rank > 0);
12145 : :
12146 : 81029 : if (gfc_inline_intrinsic_function_p (expr))
12147 : : return 0;
12148 : :
12149 : 68598 : switch (expr->value.function.isym->id)
12150 : : {
12151 : : case GFC_ISYM_ALL:
12152 : : case GFC_ISYM_ANY:
12153 : : case GFC_ISYM_COUNT:
12154 : : case GFC_ISYM_FINDLOC:
12155 : : case GFC_ISYM_JN2:
12156 : : case GFC_ISYM_IANY:
12157 : : case GFC_ISYM_IALL:
12158 : : case GFC_ISYM_IPARITY:
12159 : : case GFC_ISYM_MATMUL:
12160 : : case GFC_ISYM_MAXLOC:
12161 : : case GFC_ISYM_MAXVAL:
12162 : : case GFC_ISYM_MINLOC:
12163 : : case GFC_ISYM_MINVAL:
12164 : : case GFC_ISYM_NORM2:
12165 : : case GFC_ISYM_PARITY:
12166 : : case GFC_ISYM_PRODUCT:
12167 : : case GFC_ISYM_SUM:
12168 : : case GFC_ISYM_SPREAD:
12169 : : case GFC_ISYM_YN2:
12170 : : /* Ignore absent optional parameters. */
12171 : : return 1;
12172 : :
12173 : 15975 : case GFC_ISYM_CSHIFT:
12174 : 15975 : case GFC_ISYM_EOSHIFT:
12175 : 15975 : case GFC_ISYM_GET_TEAM:
12176 : 15975 : case GFC_ISYM_FAILED_IMAGES:
12177 : 15975 : case GFC_ISYM_STOPPED_IMAGES:
12178 : 15975 : case GFC_ISYM_PACK:
12179 : 15975 : case GFC_ISYM_RESHAPE:
12180 : 15975 : case GFC_ISYM_UNPACK:
12181 : : /* Pass absent optional parameters. */
12182 : 15975 : return 2;
12183 : :
12184 : : default:
12185 : : return 0;
12186 : : }
12187 : : }
12188 : :
12189 : : /* Walk an intrinsic function. */
12190 : : gfc_ss *
12191 : 51585 : gfc_walk_intrinsic_function (gfc_ss * ss, gfc_expr * expr,
12192 : : gfc_intrinsic_sym * isym)
12193 : : {
12194 : 51585 : gcc_assert (isym);
12195 : :
12196 : 51585 : if (isym->elemental)
12197 : 17303 : return gfc_walk_elemental_function_args (ss, expr->value.function.actual,
12198 : : expr->value.function.isym,
12199 : 17303 : GFC_SS_SCALAR);
12200 : :
12201 : 34282 : if (expr->rank == 0 && expr->corank == 0)
12202 : : return ss;
12203 : :
12204 : 29941 : if (gfc_inline_intrinsic_function_p (expr))
12205 : 6743 : return walk_inline_intrinsic_function (ss, expr);
12206 : :
12207 : 23198 : if (expr->rank != 0 && gfc_is_intrinsic_libcall (expr))
12208 : 12512 : return gfc_walk_intrinsic_libfunc (ss, expr);
12209 : :
12210 : : /* Special cases. */
12211 : 10686 : switch (isym->id)
12212 : : {
12213 : 9750 : case GFC_ISYM_LBOUND:
12214 : 9750 : case GFC_ISYM_LCOBOUND:
12215 : 9750 : case GFC_ISYM_UBOUND:
12216 : 9750 : case GFC_ISYM_UCOBOUND:
12217 : 9750 : case GFC_ISYM_THIS_IMAGE:
12218 : 9750 : case GFC_ISYM_SHAPE:
12219 : 9750 : return gfc_walk_intrinsic_bound (ss, expr);
12220 : :
12221 : 936 : case GFC_ISYM_TRANSFER:
12222 : 936 : case GFC_ISYM_CAF_GET:
12223 : 936 : return gfc_walk_intrinsic_libfunc (ss, expr);
12224 : :
12225 : 0 : default:
12226 : : /* This probably meant someone forgot to add an intrinsic to the above
12227 : : list(s) when they implemented it, or something's gone horribly
12228 : : wrong. */
12229 : 0 : gcc_unreachable ();
12230 : : }
12231 : : }
12232 : :
12233 : : static tree
12234 : 63 : conv_co_collective (gfc_code *code)
12235 : : {
12236 : 63 : gfc_se argse;
12237 : 63 : stmtblock_t block, post_block;
12238 : 63 : tree fndecl, array = NULL_TREE, strlen, image_index, stat, errmsg, errmsg_len;
12239 : 63 : gfc_expr *image_idx_expr, *stat_expr, *errmsg_expr, *opr_expr;
12240 : :
12241 : 63 : gfc_start_block (&block);
12242 : 63 : gfc_init_block (&post_block);
12243 : :
12244 : 63 : if (code->resolved_isym->id == GFC_ISYM_CO_REDUCE)
12245 : : {
12246 : 7 : opr_expr = code->ext.actual->next->expr;
12247 : 7 : image_idx_expr = code->ext.actual->next->next->expr;
12248 : 7 : stat_expr = code->ext.actual->next->next->next->expr;
12249 : 7 : errmsg_expr = code->ext.actual->next->next->next->next->expr;
12250 : : }
12251 : : else
12252 : : {
12253 : 56 : opr_expr = NULL;
12254 : 56 : image_idx_expr = code->ext.actual->next->expr;
12255 : 56 : stat_expr = code->ext.actual->next->next->expr;
12256 : 56 : errmsg_expr = code->ext.actual->next->next->next->expr;
12257 : : }
12258 : :
12259 : : /* stat. */
12260 : 63 : if (stat_expr)
12261 : : {
12262 : 49 : gfc_init_se (&argse, NULL);
12263 : 49 : gfc_conv_expr (&argse, stat_expr);
12264 : 49 : gfc_add_block_to_block (&block, &argse.pre);
12265 : 49 : gfc_add_block_to_block (&post_block, &argse.post);
12266 : 49 : stat = argse.expr;
12267 : 49 : if (flag_coarray != GFC_FCOARRAY_SINGLE)
12268 : 22 : stat = gfc_build_addr_expr (NULL_TREE, stat);
12269 : : }
12270 : 14 : else if (flag_coarray == GFC_FCOARRAY_SINGLE)
12271 : : stat = NULL_TREE;
12272 : : else
12273 : 8 : stat = null_pointer_node;
12274 : :
12275 : : /* Early exit for GFC_FCOARRAY_SINGLE. */
12276 : 63 : if (flag_coarray == GFC_FCOARRAY_SINGLE)
12277 : : {
12278 : 33 : if (stat != NULL_TREE)
12279 : : {
12280 : : /* For optional stats, check the pointer is valid before zero'ing. */
12281 : 27 : if (gfc_expr_attr (stat_expr).optional)
12282 : : {
12283 : 12 : tree tmp;
12284 : 12 : stmtblock_t ass_block;
12285 : 12 : gfc_start_block (&ass_block);
12286 : 12 : gfc_add_modify (&ass_block, stat,
12287 : 12 : fold_convert (TREE_TYPE (stat),
12288 : : integer_zero_node));
12289 : 12 : tmp = fold_build2 (NE_EXPR, logical_type_node,
12290 : : gfc_build_addr_expr (NULL_TREE, stat),
12291 : : null_pointer_node);
12292 : 12 : tmp = fold_build3 (COND_EXPR, void_type_node, tmp,
12293 : : gfc_finish_block (&ass_block),
12294 : : build_empty_stmt (input_location));
12295 : 12 : gfc_add_expr_to_block (&block, tmp);
12296 : : }
12297 : : else
12298 : 15 : gfc_add_modify (&block, stat,
12299 : 15 : fold_convert (TREE_TYPE (stat), integer_zero_node));
12300 : : }
12301 : 33 : return gfc_finish_block (&block);
12302 : : }
12303 : :
12304 : 60 : gfc_symbol *derived = code->ext.actual->expr->ts.type == BT_DERIVED
12305 : 30 : ? code->ext.actual->expr->ts.u.derived : NULL;
12306 : :
12307 : : /* Handle the array. */
12308 : 30 : gfc_init_se (&argse, NULL);
12309 : 30 : if (!derived || !derived->attr.alloc_comp
12310 : 1 : || code->resolved_isym->id != GFC_ISYM_CO_BROADCAST)
12311 : : {
12312 : 29 : if (code->ext.actual->expr->rank == 0)
12313 : : {
12314 : 16 : symbol_attribute attr;
12315 : 16 : gfc_clear_attr (&attr);
12316 : 16 : gfc_init_se (&argse, NULL);
12317 : 16 : gfc_conv_expr (&argse, code->ext.actual->expr);
12318 : 16 : gfc_add_block_to_block (&block, &argse.pre);
12319 : 16 : gfc_add_block_to_block (&post_block, &argse.post);
12320 : 16 : array = gfc_conv_scalar_to_descriptor (&argse, argse.expr, attr);
12321 : 16 : array = gfc_build_addr_expr (NULL_TREE, array);
12322 : : }
12323 : : else
12324 : : {
12325 : 13 : argse.want_pointer = 1;
12326 : 13 : gfc_conv_expr_descriptor (&argse, code->ext.actual->expr);
12327 : 13 : array = argse.expr;
12328 : : }
12329 : : }
12330 : :
12331 : 30 : gfc_add_block_to_block (&block, &argse.pre);
12332 : 30 : gfc_add_block_to_block (&post_block, &argse.post);
12333 : :
12334 : 30 : if (code->ext.actual->expr->ts.type == BT_CHARACTER)
12335 : 6 : strlen = argse.string_length;
12336 : : else
12337 : 24 : strlen = integer_zero_node;
12338 : :
12339 : : /* image_index. */
12340 : 30 : if (image_idx_expr)
12341 : : {
12342 : 22 : gfc_init_se (&argse, NULL);
12343 : 22 : gfc_conv_expr (&argse, image_idx_expr);
12344 : 22 : gfc_add_block_to_block (&block, &argse.pre);
12345 : 22 : gfc_add_block_to_block (&post_block, &argse.post);
12346 : 22 : image_index = fold_convert (integer_type_node, argse.expr);
12347 : : }
12348 : : else
12349 : 8 : image_index = integer_zero_node;
12350 : :
12351 : : /* errmsg. */
12352 : 30 : if (errmsg_expr)
12353 : : {
12354 : 17 : gfc_init_se (&argse, NULL);
12355 : 17 : gfc_conv_expr (&argse, errmsg_expr);
12356 : 17 : gfc_add_block_to_block (&block, &argse.pre);
12357 : 17 : gfc_add_block_to_block (&post_block, &argse.post);
12358 : 17 : errmsg = argse.expr;
12359 : 17 : errmsg_len = fold_convert (size_type_node, argse.string_length);
12360 : : }
12361 : : else
12362 : : {
12363 : 13 : errmsg = null_pointer_node;
12364 : 13 : errmsg_len = build_zero_cst (size_type_node);
12365 : : }
12366 : :
12367 : : /* Generate the function call. */
12368 : 30 : switch (code->resolved_isym->id)
12369 : : {
12370 : 12 : case GFC_ISYM_CO_BROADCAST:
12371 : 12 : fndecl = gfor_fndecl_co_broadcast;
12372 : 12 : break;
12373 : 5 : case GFC_ISYM_CO_MAX:
12374 : 5 : fndecl = gfor_fndecl_co_max;
12375 : 5 : break;
12376 : 4 : case GFC_ISYM_CO_MIN:
12377 : 4 : fndecl = gfor_fndecl_co_min;
12378 : 4 : break;
12379 : 5 : case GFC_ISYM_CO_REDUCE:
12380 : 5 : fndecl = gfor_fndecl_co_reduce;
12381 : 5 : break;
12382 : 4 : case GFC_ISYM_CO_SUM:
12383 : 4 : fndecl = gfor_fndecl_co_sum;
12384 : 4 : break;
12385 : 0 : default:
12386 : 0 : gcc_unreachable ();
12387 : : }
12388 : :
12389 : 30 : if (derived && derived->attr.alloc_comp
12390 : 1 : && code->resolved_isym->id == GFC_ISYM_CO_BROADCAST)
12391 : : /* The derived type has the attribute 'alloc_comp'. */
12392 : : {
12393 : 2 : tree tmp = gfc_bcast_alloc_comp (derived, code->ext.actual->expr,
12394 : 1 : code->ext.actual->expr->rank,
12395 : : image_index, stat, errmsg, errmsg_len);
12396 : 1 : gfc_add_expr_to_block (&block, tmp);
12397 : 1 : }
12398 : : else
12399 : : {
12400 : 29 : if (code->resolved_isym->id == GFC_ISYM_CO_SUM
12401 : 25 : || code->resolved_isym->id == GFC_ISYM_CO_BROADCAST)
12402 : 15 : fndecl = build_call_expr_loc (input_location, fndecl, 5, array,
12403 : : image_index, stat, errmsg, errmsg_len);
12404 : 14 : else if (code->resolved_isym->id != GFC_ISYM_CO_REDUCE)
12405 : 9 : fndecl = build_call_expr_loc (input_location, fndecl, 6, array,
12406 : : image_index, stat, errmsg,
12407 : : strlen, errmsg_len);
12408 : : else
12409 : : {
12410 : 5 : tree opr, opr_flags;
12411 : :
12412 : : // FIXME: Handle TS29113's bind(C) strings with descriptor.
12413 : 5 : int opr_flag_int;
12414 : 5 : if (gfc_is_proc_ptr_comp (opr_expr))
12415 : : {
12416 : 0 : gfc_symbol *sym = gfc_get_proc_ptr_comp (opr_expr)->ts.interface;
12417 : 0 : opr_flag_int = sym->attr.dimension
12418 : 0 : || (sym->ts.type == BT_CHARACTER
12419 : 0 : && !sym->attr.is_bind_c)
12420 : 0 : ? GFC_CAF_BYREF : 0;
12421 : 0 : opr_flag_int |= opr_expr->ts.type == BT_CHARACTER
12422 : 0 : && !sym->attr.is_bind_c
12423 : 0 : ? GFC_CAF_HIDDENLEN : 0;
12424 : 0 : opr_flag_int |= sym->formal->sym->attr.value
12425 : 0 : ? GFC_CAF_ARG_VALUE : 0;
12426 : : }
12427 : : else
12428 : : {
12429 : 5 : opr_flag_int = gfc_return_by_reference (opr_expr->symtree->n.sym)
12430 : 5 : ? GFC_CAF_BYREF : 0;
12431 : 10 : opr_flag_int |= opr_expr->ts.type == BT_CHARACTER
12432 : 0 : && !opr_expr->symtree->n.sym->attr.is_bind_c
12433 : 5 : ? GFC_CAF_HIDDENLEN : 0;
12434 : 5 : opr_flag_int |= opr_expr->symtree->n.sym->formal->sym->attr.value
12435 : 5 : ? GFC_CAF_ARG_VALUE : 0;
12436 : : }
12437 : 5 : opr_flags = build_int_cst (integer_type_node, opr_flag_int);
12438 : 5 : gfc_conv_expr (&argse, opr_expr);
12439 : 5 : opr = argse.expr;
12440 : 5 : fndecl = build_call_expr_loc (input_location, fndecl, 8, array, opr,
12441 : : opr_flags, image_index, stat, errmsg,
12442 : : strlen, errmsg_len);
12443 : : }
12444 : : }
12445 : :
12446 : 30 : gfc_add_expr_to_block (&block, fndecl);
12447 : 30 : gfc_add_block_to_block (&block, &post_block);
12448 : :
12449 : 30 : return gfc_finish_block (&block);
12450 : : }
12451 : :
12452 : :
12453 : : static tree
12454 : 68 : conv_intrinsic_atomic_op (gfc_code *code)
12455 : : {
12456 : 68 : gfc_se argse;
12457 : 68 : tree tmp, atom, value, old = NULL_TREE, stat = NULL_TREE;
12458 : 68 : stmtblock_t block, post_block;
12459 : 68 : gfc_expr *atom_expr = code->ext.actual->expr;
12460 : 68 : gfc_expr *stat_expr;
12461 : 68 : built_in_function fn;
12462 : :
12463 : 68 : if (atom_expr->expr_type == EXPR_FUNCTION
12464 : 25 : && atom_expr->value.function.isym
12465 : 25 : && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
12466 : 25 : atom_expr = atom_expr->value.function.actual->expr;
12467 : :
12468 : 68 : gfc_start_block (&block);
12469 : 68 : gfc_init_block (&post_block);
12470 : :
12471 : 68 : gfc_init_se (&argse, NULL);
12472 : 68 : argse.want_pointer = 1;
12473 : 68 : gfc_conv_expr (&argse, atom_expr);
12474 : 68 : gfc_add_block_to_block (&block, &argse.pre);
12475 : 68 : gfc_add_block_to_block (&post_block, &argse.post);
12476 : 68 : atom = argse.expr;
12477 : :
12478 : 68 : gfc_init_se (&argse, NULL);
12479 : 68 : if (flag_coarray == GFC_FCOARRAY_LIB
12480 : 29 : && code->ext.actual->next->expr->ts.kind == atom_expr->ts.kind)
12481 : 28 : argse.want_pointer = 1;
12482 : 68 : gfc_conv_expr (&argse, code->ext.actual->next->expr);
12483 : 68 : gfc_add_block_to_block (&block, &argse.pre);
12484 : 68 : gfc_add_block_to_block (&post_block, &argse.post);
12485 : 68 : value = argse.expr;
12486 : :
12487 : 68 : switch (code->resolved_isym->id)
12488 : : {
12489 : 42 : case GFC_ISYM_ATOMIC_ADD:
12490 : 42 : case GFC_ISYM_ATOMIC_AND:
12491 : 42 : case GFC_ISYM_ATOMIC_DEF:
12492 : 42 : case GFC_ISYM_ATOMIC_OR:
12493 : 42 : case GFC_ISYM_ATOMIC_XOR:
12494 : 42 : stat_expr = code->ext.actual->next->next->expr;
12495 : 42 : if (flag_coarray == GFC_FCOARRAY_LIB)
12496 : 18 : old = null_pointer_node;
12497 : : break;
12498 : 26 : default:
12499 : 26 : gfc_init_se (&argse, NULL);
12500 : 26 : if (flag_coarray == GFC_FCOARRAY_LIB)
12501 : 11 : argse.want_pointer = 1;
12502 : 26 : gfc_conv_expr (&argse, code->ext.actual->next->next->expr);
12503 : 26 : gfc_add_block_to_block (&block, &argse.pre);
12504 : 26 : gfc_add_block_to_block (&post_block, &argse.post);
12505 : 26 : old = argse.expr;
12506 : 26 : stat_expr = code->ext.actual->next->next->next->expr;
12507 : : }
12508 : :
12509 : : /* STAT= */
12510 : 68 : if (stat_expr != NULL)
12511 : : {
12512 : 58 : gcc_assert (stat_expr->expr_type == EXPR_VARIABLE);
12513 : 58 : gfc_init_se (&argse, NULL);
12514 : 58 : if (flag_coarray == GFC_FCOARRAY_LIB)
12515 : 24 : argse.want_pointer = 1;
12516 : 58 : gfc_conv_expr_val (&argse, stat_expr);
12517 : 58 : gfc_add_block_to_block (&block, &argse.pre);
12518 : 58 : gfc_add_block_to_block (&post_block, &argse.post);
12519 : 58 : stat = argse.expr;
12520 : : }
12521 : 10 : else if (flag_coarray == GFC_FCOARRAY_LIB)
12522 : 5 : stat = null_pointer_node;
12523 : :
12524 : 68 : if (flag_coarray == GFC_FCOARRAY_LIB)
12525 : : {
12526 : 29 : tree image_index, caf_decl, offset, token;
12527 : 29 : int op;
12528 : :
12529 : 29 : switch (code->resolved_isym->id)
12530 : : {
12531 : : case GFC_ISYM_ATOMIC_ADD:
12532 : : case GFC_ISYM_ATOMIC_FETCH_ADD:
12533 : : op = (int) GFC_CAF_ATOMIC_ADD;
12534 : : break;
12535 : 6 : case GFC_ISYM_ATOMIC_AND:
12536 : 6 : case GFC_ISYM_ATOMIC_FETCH_AND:
12537 : 6 : op = (int) GFC_CAF_ATOMIC_AND;
12538 : 6 : break;
12539 : 6 : case GFC_ISYM_ATOMIC_OR:
12540 : 6 : case GFC_ISYM_ATOMIC_FETCH_OR:
12541 : 6 : op = (int) GFC_CAF_ATOMIC_OR;
12542 : 6 : break;
12543 : 6 : case GFC_ISYM_ATOMIC_XOR:
12544 : 6 : case GFC_ISYM_ATOMIC_FETCH_XOR:
12545 : 6 : op = (int) GFC_CAF_ATOMIC_XOR;
12546 : 6 : break;
12547 : 6 : case GFC_ISYM_ATOMIC_DEF:
12548 : 6 : op = 0; /* Unused. */
12549 : 6 : break;
12550 : 0 : default:
12551 : 0 : gcc_unreachable ();
12552 : : }
12553 : :
12554 : 29 : caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
12555 : 29 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
12556 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
12557 : :
12558 : 29 : if (gfc_is_coindexed (atom_expr))
12559 : 25 : image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
12560 : : else
12561 : 4 : image_index = integer_zero_node;
12562 : :
12563 : 29 : if (!POINTER_TYPE_P (TREE_TYPE (value)))
12564 : : {
12565 : 28 : tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (atom)), "value");
12566 : 28 : gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), value));
12567 : 28 : value = gfc_build_addr_expr (NULL_TREE, tmp);
12568 : : }
12569 : :
12570 : 29 : gfc_init_se (&argse, NULL);
12571 : 29 : gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
12572 : : atom_expr);
12573 : :
12574 : 29 : gfc_add_block_to_block (&block, &argse.pre);
12575 : 29 : if (code->resolved_isym->id == GFC_ISYM_ATOMIC_DEF)
12576 : 6 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_def, 7,
12577 : : token, offset, image_index, value, stat,
12578 : 6 : build_int_cst (integer_type_node,
12579 : 6 : (int) atom_expr->ts.type),
12580 : 6 : build_int_cst (integer_type_node,
12581 : 6 : (int) atom_expr->ts.kind));
12582 : : else
12583 : 23 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_op, 9,
12584 : 23 : build_int_cst (integer_type_node, op),
12585 : : token, offset, image_index, value, old, stat,
12586 : 23 : build_int_cst (integer_type_node,
12587 : 23 : (int) atom_expr->ts.type),
12588 : 23 : build_int_cst (integer_type_node,
12589 : 23 : (int) atom_expr->ts.kind));
12590 : :
12591 : 29 : gfc_add_expr_to_block (&block, tmp);
12592 : 29 : gfc_add_block_to_block (&block, &argse.post);
12593 : 29 : gfc_add_block_to_block (&block, &post_block);
12594 : 29 : return gfc_finish_block (&block);
12595 : : }
12596 : :
12597 : :
12598 : 39 : switch (code->resolved_isym->id)
12599 : : {
12600 : : case GFC_ISYM_ATOMIC_ADD:
12601 : : case GFC_ISYM_ATOMIC_FETCH_ADD:
12602 : : fn = BUILT_IN_ATOMIC_FETCH_ADD_N;
12603 : : break;
12604 : 8 : case GFC_ISYM_ATOMIC_AND:
12605 : 8 : case GFC_ISYM_ATOMIC_FETCH_AND:
12606 : 8 : fn = BUILT_IN_ATOMIC_FETCH_AND_N;
12607 : 8 : break;
12608 : 9 : case GFC_ISYM_ATOMIC_DEF:
12609 : 9 : fn = BUILT_IN_ATOMIC_STORE_N;
12610 : 9 : break;
12611 : 8 : case GFC_ISYM_ATOMIC_OR:
12612 : 8 : case GFC_ISYM_ATOMIC_FETCH_OR:
12613 : 8 : fn = BUILT_IN_ATOMIC_FETCH_OR_N;
12614 : 8 : break;
12615 : 8 : case GFC_ISYM_ATOMIC_XOR:
12616 : 8 : case GFC_ISYM_ATOMIC_FETCH_XOR:
12617 : 8 : fn = BUILT_IN_ATOMIC_FETCH_XOR_N;
12618 : 8 : break;
12619 : 0 : default:
12620 : 0 : gcc_unreachable ();
12621 : : }
12622 : :
12623 : 39 : tmp = TREE_TYPE (TREE_TYPE (atom));
12624 : 78 : fn = (built_in_function) ((int) fn
12625 : 39 : + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
12626 : 39 : + 1);
12627 : 39 : tree itype = TREE_TYPE (TREE_TYPE (atom));
12628 : 39 : tmp = builtin_decl_explicit (fn);
12629 : :
12630 : 39 : switch (code->resolved_isym->id)
12631 : : {
12632 : 24 : case GFC_ISYM_ATOMIC_ADD:
12633 : 24 : case GFC_ISYM_ATOMIC_AND:
12634 : 24 : case GFC_ISYM_ATOMIC_DEF:
12635 : 24 : case GFC_ISYM_ATOMIC_OR:
12636 : 24 : case GFC_ISYM_ATOMIC_XOR:
12637 : 24 : tmp = build_call_expr_loc (input_location, tmp, 3, atom,
12638 : : fold_convert (itype, value),
12639 : 24 : build_int_cst (NULL, MEMMODEL_RELAXED));
12640 : 24 : gfc_add_expr_to_block (&block, tmp);
12641 : 24 : break;
12642 : 15 : default:
12643 : 15 : tmp = build_call_expr_loc (input_location, tmp, 3, atom,
12644 : : fold_convert (itype, value),
12645 : 15 : build_int_cst (NULL, MEMMODEL_RELAXED));
12646 : 15 : gfc_add_modify (&block, old, fold_convert (TREE_TYPE (old), tmp));
12647 : 15 : break;
12648 : : }
12649 : :
12650 : 39 : if (stat != NULL_TREE)
12651 : 34 : gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
12652 : 39 : gfc_add_block_to_block (&block, &post_block);
12653 : 39 : return gfc_finish_block (&block);
12654 : : }
12655 : :
12656 : :
12657 : : static tree
12658 : 119 : conv_intrinsic_atomic_ref (gfc_code *code)
12659 : : {
12660 : 119 : gfc_se argse;
12661 : 119 : tree tmp, atom, value, stat = NULL_TREE;
12662 : 119 : stmtblock_t block, post_block;
12663 : 119 : built_in_function fn;
12664 : 119 : gfc_expr *atom_expr = code->ext.actual->next->expr;
12665 : :
12666 : 119 : if (atom_expr->expr_type == EXPR_FUNCTION
12667 : 52 : && atom_expr->value.function.isym
12668 : 52 : && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
12669 : 52 : atom_expr = atom_expr->value.function.actual->expr;
12670 : :
12671 : 119 : gfc_start_block (&block);
12672 : 119 : gfc_init_block (&post_block);
12673 : 119 : gfc_init_se (&argse, NULL);
12674 : 119 : argse.want_pointer = 1;
12675 : 119 : gfc_conv_expr (&argse, atom_expr);
12676 : 119 : gfc_add_block_to_block (&block, &argse.pre);
12677 : 119 : gfc_add_block_to_block (&post_block, &argse.post);
12678 : 119 : atom = argse.expr;
12679 : :
12680 : 119 : gfc_init_se (&argse, NULL);
12681 : 119 : if (flag_coarray == GFC_FCOARRAY_LIB
12682 : 58 : && code->ext.actual->expr->ts.kind == atom_expr->ts.kind)
12683 : 55 : argse.want_pointer = 1;
12684 : 119 : gfc_conv_expr (&argse, code->ext.actual->expr);
12685 : 119 : gfc_add_block_to_block (&block, &argse.pre);
12686 : 119 : gfc_add_block_to_block (&post_block, &argse.post);
12687 : 119 : value = argse.expr;
12688 : :
12689 : : /* STAT= */
12690 : 119 : if (code->ext.actual->next->next->expr != NULL)
12691 : : {
12692 : 110 : gcc_assert (code->ext.actual->next->next->expr->expr_type
12693 : : == EXPR_VARIABLE);
12694 : 110 : gfc_init_se (&argse, NULL);
12695 : 110 : if (flag_coarray == GFC_FCOARRAY_LIB)
12696 : 54 : argse.want_pointer = 1;
12697 : 110 : gfc_conv_expr_val (&argse, code->ext.actual->next->next->expr);
12698 : 110 : gfc_add_block_to_block (&block, &argse.pre);
12699 : 110 : gfc_add_block_to_block (&post_block, &argse.post);
12700 : 110 : stat = argse.expr;
12701 : : }
12702 : 9 : else if (flag_coarray == GFC_FCOARRAY_LIB)
12703 : 4 : stat = null_pointer_node;
12704 : :
12705 : 119 : if (flag_coarray == GFC_FCOARRAY_LIB)
12706 : : {
12707 : 58 : tree image_index, caf_decl, offset, token;
12708 : 58 : tree orig_value = NULL_TREE, vardecl = NULL_TREE;
12709 : :
12710 : 58 : caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
12711 : 58 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
12712 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
12713 : :
12714 : 58 : if (gfc_is_coindexed (atom_expr))
12715 : 52 : image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
12716 : : else
12717 : 6 : image_index = integer_zero_node;
12718 : :
12719 : 58 : gfc_init_se (&argse, NULL);
12720 : 58 : gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
12721 : : atom_expr);
12722 : 58 : gfc_add_block_to_block (&block, &argse.pre);
12723 : :
12724 : : /* Different type, need type conversion. */
12725 : 58 : if (!POINTER_TYPE_P (TREE_TYPE (value)))
12726 : : {
12727 : 3 : vardecl = gfc_create_var (TREE_TYPE (TREE_TYPE (atom)), "value");
12728 : 3 : orig_value = value;
12729 : 3 : value = gfc_build_addr_expr (NULL_TREE, vardecl);
12730 : : }
12731 : :
12732 : 58 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_ref, 7,
12733 : : token, offset, image_index, value, stat,
12734 : 58 : build_int_cst (integer_type_node,
12735 : 58 : (int) atom_expr->ts.type),
12736 : 58 : build_int_cst (integer_type_node,
12737 : 58 : (int) atom_expr->ts.kind));
12738 : 58 : gfc_add_expr_to_block (&block, tmp);
12739 : 58 : if (vardecl != NULL_TREE)
12740 : 3 : gfc_add_modify (&block, orig_value,
12741 : 3 : fold_convert (TREE_TYPE (orig_value), vardecl));
12742 : 58 : gfc_add_block_to_block (&block, &argse.post);
12743 : 58 : gfc_add_block_to_block (&block, &post_block);
12744 : 58 : return gfc_finish_block (&block);
12745 : : }
12746 : :
12747 : 61 : tmp = TREE_TYPE (TREE_TYPE (atom));
12748 : 122 : fn = (built_in_function) ((int) BUILT_IN_ATOMIC_LOAD_N
12749 : 61 : + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
12750 : 61 : + 1);
12751 : 61 : tmp = builtin_decl_explicit (fn);
12752 : 61 : tmp = build_call_expr_loc (input_location, tmp, 2, atom,
12753 : 61 : build_int_cst (integer_type_node,
12754 : 61 : MEMMODEL_RELAXED));
12755 : 61 : gfc_add_modify (&block, value, fold_convert (TREE_TYPE (value), tmp));
12756 : :
12757 : 61 : if (stat != NULL_TREE)
12758 : 56 : gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
12759 : 61 : gfc_add_block_to_block (&block, &post_block);
12760 : 61 : return gfc_finish_block (&block);
12761 : : }
12762 : :
12763 : :
12764 : : static tree
12765 : 10 : conv_intrinsic_atomic_cas (gfc_code *code)
12766 : : {
12767 : 10 : gfc_se argse;
12768 : 10 : tree tmp, atom, old, new_val, comp, stat = NULL_TREE;
12769 : 10 : stmtblock_t block, post_block;
12770 : 10 : built_in_function fn;
12771 : 10 : gfc_expr *atom_expr = code->ext.actual->expr;
12772 : :
12773 : 10 : if (atom_expr->expr_type == EXPR_FUNCTION
12774 : 4 : && atom_expr->value.function.isym
12775 : 4 : && atom_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
12776 : 4 : atom_expr = atom_expr->value.function.actual->expr;
12777 : :
12778 : 10 : gfc_init_block (&block);
12779 : 10 : gfc_init_block (&post_block);
12780 : 10 : gfc_init_se (&argse, NULL);
12781 : 10 : argse.want_pointer = 1;
12782 : 10 : gfc_conv_expr (&argse, atom_expr);
12783 : 10 : atom = argse.expr;
12784 : :
12785 : 10 : gfc_init_se (&argse, NULL);
12786 : 10 : if (flag_coarray == GFC_FCOARRAY_LIB)
12787 : 4 : argse.want_pointer = 1;
12788 : 10 : gfc_conv_expr (&argse, code->ext.actual->next->expr);
12789 : 10 : gfc_add_block_to_block (&block, &argse.pre);
12790 : 10 : gfc_add_block_to_block (&post_block, &argse.post);
12791 : 10 : old = argse.expr;
12792 : :
12793 : 10 : gfc_init_se (&argse, NULL);
12794 : 10 : if (flag_coarray == GFC_FCOARRAY_LIB)
12795 : 4 : argse.want_pointer = 1;
12796 : 10 : gfc_conv_expr (&argse, code->ext.actual->next->next->expr);
12797 : 10 : gfc_add_block_to_block (&block, &argse.pre);
12798 : 10 : gfc_add_block_to_block (&post_block, &argse.post);
12799 : 10 : comp = argse.expr;
12800 : :
12801 : 10 : gfc_init_se (&argse, NULL);
12802 : 10 : if (flag_coarray == GFC_FCOARRAY_LIB
12803 : 4 : && code->ext.actual->next->next->next->expr->ts.kind
12804 : 4 : == atom_expr->ts.kind)
12805 : 4 : argse.want_pointer = 1;
12806 : 10 : gfc_conv_expr (&argse, code->ext.actual->next->next->next->expr);
12807 : 10 : gfc_add_block_to_block (&block, &argse.pre);
12808 : 10 : gfc_add_block_to_block (&post_block, &argse.post);
12809 : 10 : new_val = argse.expr;
12810 : :
12811 : : /* STAT= */
12812 : 10 : if (code->ext.actual->next->next->next->next->expr != NULL)
12813 : : {
12814 : 10 : gcc_assert (code->ext.actual->next->next->next->next->expr->expr_type
12815 : : == EXPR_VARIABLE);
12816 : 10 : gfc_init_se (&argse, NULL);
12817 : 10 : if (flag_coarray == GFC_FCOARRAY_LIB)
12818 : 4 : argse.want_pointer = 1;
12819 : 10 : gfc_conv_expr_val (&argse,
12820 : 10 : code->ext.actual->next->next->next->next->expr);
12821 : 10 : gfc_add_block_to_block (&block, &argse.pre);
12822 : 10 : gfc_add_block_to_block (&post_block, &argse.post);
12823 : 10 : stat = argse.expr;
12824 : : }
12825 : 0 : else if (flag_coarray == GFC_FCOARRAY_LIB)
12826 : 0 : stat = null_pointer_node;
12827 : :
12828 : 10 : if (flag_coarray == GFC_FCOARRAY_LIB)
12829 : : {
12830 : 4 : tree image_index, caf_decl, offset, token;
12831 : :
12832 : 4 : caf_decl = gfc_get_tree_for_caf_expr (atom_expr);
12833 : 4 : if (TREE_CODE (TREE_TYPE (caf_decl)) == REFERENCE_TYPE)
12834 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
12835 : :
12836 : 4 : if (gfc_is_coindexed (atom_expr))
12837 : 4 : image_index = gfc_caf_get_image_index (&block, atom_expr, caf_decl);
12838 : : else
12839 : 0 : image_index = integer_zero_node;
12840 : :
12841 : 4 : if (TREE_TYPE (TREE_TYPE (new_val)) != TREE_TYPE (TREE_TYPE (old)))
12842 : : {
12843 : 4 : tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (old)), "new");
12844 : 4 : gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), new_val));
12845 : 4 : new_val = gfc_build_addr_expr (NULL_TREE, tmp);
12846 : : }
12847 : :
12848 : : /* Convert a constant to a pointer. */
12849 : 4 : if (!POINTER_TYPE_P (TREE_TYPE (comp)))
12850 : : {
12851 : 4 : tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (old)), "comp");
12852 : 4 : gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), comp));
12853 : 4 : comp = gfc_build_addr_expr (NULL_TREE, tmp);
12854 : : }
12855 : :
12856 : 4 : gfc_init_se (&argse, NULL);
12857 : 4 : gfc_get_caf_token_offset (&argse, &token, &offset, caf_decl, atom,
12858 : : atom_expr);
12859 : 4 : gfc_add_block_to_block (&block, &argse.pre);
12860 : :
12861 : 4 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_atomic_cas, 9,
12862 : : token, offset, image_index, old, comp, new_val,
12863 : 4 : stat, build_int_cst (integer_type_node,
12864 : 4 : (int) atom_expr->ts.type),
12865 : 4 : build_int_cst (integer_type_node,
12866 : 4 : (int) atom_expr->ts.kind));
12867 : 4 : gfc_add_expr_to_block (&block, tmp);
12868 : 4 : gfc_add_block_to_block (&block, &argse.post);
12869 : 4 : gfc_add_block_to_block (&block, &post_block);
12870 : 4 : return gfc_finish_block (&block);
12871 : : }
12872 : :
12873 : 6 : tmp = TREE_TYPE (TREE_TYPE (atom));
12874 : 12 : fn = (built_in_function) ((int) BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N
12875 : 6 : + exact_log2 (tree_to_uhwi (TYPE_SIZE_UNIT (tmp)))
12876 : 6 : + 1);
12877 : 6 : tmp = builtin_decl_explicit (fn);
12878 : :
12879 : 6 : gfc_add_modify (&block, old, comp);
12880 : 12 : tmp = build_call_expr_loc (input_location, tmp, 6, atom,
12881 : : gfc_build_addr_expr (NULL, old),
12882 : 6 : fold_convert (TREE_TYPE (old), new_val),
12883 : : boolean_false_node,
12884 : 6 : build_int_cst (NULL, MEMMODEL_RELAXED),
12885 : 6 : build_int_cst (NULL, MEMMODEL_RELAXED));
12886 : 6 : gfc_add_expr_to_block (&block, tmp);
12887 : :
12888 : 6 : if (stat != NULL_TREE)
12889 : 6 : gfc_add_modify (&block, stat, build_int_cst (TREE_TYPE (stat), 0));
12890 : 6 : gfc_add_block_to_block (&block, &post_block);
12891 : 6 : return gfc_finish_block (&block);
12892 : : }
12893 : :
12894 : : static tree
12895 : 70 : conv_intrinsic_event_query (gfc_code *code)
12896 : : {
12897 : 70 : gfc_se se, argse;
12898 : 70 : tree stat = NULL_TREE, stat2 = NULL_TREE;
12899 : 70 : tree count = NULL_TREE, count2 = NULL_TREE;
12900 : :
12901 : 70 : gfc_expr *event_expr = code->ext.actual->expr;
12902 : :
12903 : 70 : if (code->ext.actual->next->next->expr)
12904 : : {
12905 : 12 : gcc_assert (code->ext.actual->next->next->expr->expr_type
12906 : : == EXPR_VARIABLE);
12907 : 12 : gfc_init_se (&argse, NULL);
12908 : 12 : gfc_conv_expr_val (&argse, code->ext.actual->next->next->expr);
12909 : 12 : stat = argse.expr;
12910 : : }
12911 : 58 : else if (flag_coarray == GFC_FCOARRAY_LIB)
12912 : 29 : stat = null_pointer_node;
12913 : :
12914 : 70 : if (code->ext.actual->next->expr)
12915 : : {
12916 : 70 : gcc_assert (code->ext.actual->next->expr->expr_type == EXPR_VARIABLE);
12917 : 70 : gfc_init_se (&argse, NULL);
12918 : 70 : gfc_conv_expr_val (&argse, code->ext.actual->next->expr);
12919 : 70 : count = argse.expr;
12920 : : }
12921 : :
12922 : 70 : gfc_start_block (&se.pre);
12923 : 70 : if (flag_coarray == GFC_FCOARRAY_LIB)
12924 : : {
12925 : 35 : tree tmp, token, image_index;
12926 : 35 : tree index = build_zero_cst (gfc_array_index_type);
12927 : :
12928 : 35 : if (event_expr->expr_type == EXPR_FUNCTION
12929 : 0 : && event_expr->value.function.isym
12930 : 0 : && event_expr->value.function.isym->id == GFC_ISYM_CAF_GET)
12931 : 0 : event_expr = event_expr->value.function.actual->expr;
12932 : :
12933 : 35 : tree caf_decl = gfc_get_tree_for_caf_expr (event_expr);
12934 : :
12935 : 35 : if (event_expr->symtree->n.sym->ts.type != BT_DERIVED
12936 : 35 : || event_expr->symtree->n.sym->ts.u.derived->from_intmod
12937 : : != INTMOD_ISO_FORTRAN_ENV
12938 : 35 : || event_expr->symtree->n.sym->ts.u.derived->intmod_sym_id
12939 : : != ISOFORTRAN_EVENT_TYPE)
12940 : : {
12941 : 0 : gfc_error ("Sorry, the event component of derived type at %L is not "
12942 : : "yet supported", &event_expr->where);
12943 : 0 : return NULL_TREE;
12944 : : }
12945 : :
12946 : 35 : if (gfc_is_coindexed (event_expr))
12947 : : {
12948 : 0 : gfc_error ("The event variable at %L shall not be coindexed",
12949 : : &event_expr->where);
12950 : 0 : return NULL_TREE;
12951 : : }
12952 : :
12953 : 35 : image_index = integer_zero_node;
12954 : :
12955 : 35 : gfc_get_caf_token_offset (&se, &token, NULL, caf_decl, NULL_TREE,
12956 : : event_expr);
12957 : :
12958 : : /* For arrays, obtain the array index. */
12959 : 35 : if (gfc_expr_attr (event_expr).dimension)
12960 : : {
12961 : 26 : tree desc, tmp, extent, lbound, ubound;
12962 : 26 : gfc_array_ref *ar, ar2;
12963 : 26 : int i;
12964 : :
12965 : : /* TODO: Extend this, once DT components are supported. */
12966 : 26 : ar = &event_expr->ref->u.ar;
12967 : 26 : ar2 = *ar;
12968 : 26 : memset (ar, '\0', sizeof (*ar));
12969 : 26 : ar->as = ar2.as;
12970 : 26 : ar->type = AR_FULL;
12971 : :
12972 : 26 : gfc_init_se (&argse, NULL);
12973 : 26 : argse.descriptor_only = 1;
12974 : 26 : gfc_conv_expr_descriptor (&argse, event_expr);
12975 : 26 : gfc_add_block_to_block (&se.pre, &argse.pre);
12976 : 26 : desc = argse.expr;
12977 : 26 : *ar = ar2;
12978 : :
12979 : 26 : extent = build_one_cst (gfc_array_index_type);
12980 : 78 : for (i = 0; i < ar->dimen; i++)
12981 : : {
12982 : 26 : gfc_init_se (&argse, NULL);
12983 : 26 : gfc_conv_expr_type (&argse, ar->start[i], gfc_array_index_type);
12984 : 26 : gfc_add_block_to_block (&argse.pre, &argse.pre);
12985 : 26 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
12986 : 26 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
12987 : 26 : TREE_TYPE (lbound), argse.expr, lbound);
12988 : 26 : tmp = fold_build2_loc (input_location, MULT_EXPR,
12989 : 26 : TREE_TYPE (tmp), extent, tmp);
12990 : 26 : index = fold_build2_loc (input_location, PLUS_EXPR,
12991 : 26 : TREE_TYPE (tmp), index, tmp);
12992 : 26 : if (i < ar->dimen - 1)
12993 : : {
12994 : 0 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
12995 : 0 : tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
12996 : 0 : extent = fold_build2_loc (input_location, MULT_EXPR,
12997 : 0 : TREE_TYPE (tmp), extent, tmp);
12998 : : }
12999 : : }
13000 : : }
13001 : :
13002 : 35 : if (count != null_pointer_node && TREE_TYPE (count) != integer_type_node)
13003 : : {
13004 : 0 : count2 = count;
13005 : 0 : count = gfc_create_var (integer_type_node, "count");
13006 : : }
13007 : :
13008 : 35 : if (stat != null_pointer_node && TREE_TYPE (stat) != integer_type_node)
13009 : : {
13010 : 0 : stat2 = stat;
13011 : 0 : stat = gfc_create_var (integer_type_node, "stat");
13012 : : }
13013 : :
13014 : 35 : index = fold_convert (size_type_node, index);
13015 : 70 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_event_query, 5,
13016 : : token, index, image_index, count
13017 : 35 : ? gfc_build_addr_expr (NULL, count) : count,
13018 : 35 : stat != null_pointer_node
13019 : 6 : ? gfc_build_addr_expr (NULL, stat) : stat);
13020 : 35 : gfc_add_expr_to_block (&se.pre, tmp);
13021 : :
13022 : 35 : if (count2 != NULL_TREE)
13023 : 0 : gfc_add_modify (&se.pre, count2,
13024 : 0 : fold_convert (TREE_TYPE (count2), count));
13025 : :
13026 : 35 : if (stat2 != NULL_TREE)
13027 : 0 : gfc_add_modify (&se.pre, stat2,
13028 : 0 : fold_convert (TREE_TYPE (stat2), stat));
13029 : :
13030 : 35 : return gfc_finish_block (&se.pre);
13031 : : }
13032 : :
13033 : 35 : gfc_init_se (&argse, NULL);
13034 : 35 : gfc_conv_expr_val (&argse, code->ext.actual->expr);
13035 : 35 : gfc_add_modify (&se.pre, count, fold_convert (TREE_TYPE (count), argse.expr));
13036 : :
13037 : 35 : if (stat != NULL_TREE)
13038 : 6 : gfc_add_modify (&se.pre, stat, build_int_cst (TREE_TYPE (stat), 0));
13039 : :
13040 : 35 : return gfc_finish_block (&se.pre);
13041 : : }
13042 : :
13043 : :
13044 : : /* This is a peculiar case because of the need to do dependency checking.
13045 : : It is called via trans-stmt.cc(gfc_trans_call), where it is picked out as
13046 : : a special case and this function called instead of
13047 : : gfc_conv_procedure_call. */
13048 : : void
13049 : 197 : gfc_conv_intrinsic_mvbits (gfc_se *se, gfc_actual_arglist *actual_args,
13050 : : gfc_loopinfo *loop)
13051 : : {
13052 : 197 : gfc_actual_arglist *actual;
13053 : 197 : gfc_se argse[5];
13054 : 197 : gfc_expr *arg[5];
13055 : 197 : gfc_ss *lss;
13056 : 197 : int n;
13057 : :
13058 : 197 : tree from, frompos, len, to, topos;
13059 : 197 : tree lenmask, oldbits, newbits, bitsize;
13060 : 197 : tree type, utype, above, mask1, mask2;
13061 : :
13062 : 197 : if (loop)
13063 : 67 : lss = loop->ss;
13064 : : else
13065 : 130 : lss = gfc_ss_terminator;
13066 : :
13067 : : actual = actual_args;
13068 : 1182 : for (n = 0; n < 5; n++, actual = actual->next)
13069 : : {
13070 : 985 : arg[n] = actual->expr;
13071 : 985 : gfc_init_se (&argse[n], NULL);
13072 : :
13073 : 985 : if (lss != gfc_ss_terminator)
13074 : : {
13075 : 335 : gfc_copy_loopinfo_to_se (&argse[n], loop);
13076 : : /* Find the ss for the expression if it is there. */
13077 : 335 : argse[n].ss = lss;
13078 : 335 : gfc_mark_ss_chain_used (lss, 1);
13079 : : }
13080 : :
13081 : 985 : gfc_conv_expr (&argse[n], arg[n]);
13082 : :
13083 : 985 : if (loop)
13084 : 335 : lss = argse[n].ss;
13085 : : }
13086 : :
13087 : 197 : from = argse[0].expr;
13088 : 197 : frompos = argse[1].expr;
13089 : 197 : len = argse[2].expr;
13090 : 197 : to = argse[3].expr;
13091 : 197 : topos = argse[4].expr;
13092 : :
13093 : : /* The type of the result (TO). */
13094 : 197 : type = TREE_TYPE (to);
13095 : 197 : bitsize = build_int_cst (integer_type_node, TYPE_PRECISION (type));
13096 : :
13097 : : /* Optionally generate code for runtime argument check. */
13098 : 197 : if (gfc_option.rtcheck & GFC_RTCHECK_BITS)
13099 : : {
13100 : 18 : tree nbits, below, ccond;
13101 : 18 : tree fp = fold_convert (long_integer_type_node, frompos);
13102 : 18 : tree ln = fold_convert (long_integer_type_node, len);
13103 : 18 : tree tp = fold_convert (long_integer_type_node, topos);
13104 : 18 : below = fold_build2_loc (input_location, LT_EXPR,
13105 : : logical_type_node, frompos,
13106 : 18 : build_int_cst (TREE_TYPE (frompos), 0));
13107 : 18 : above = fold_build2_loc (input_location, GT_EXPR,
13108 : : logical_type_node, frompos,
13109 : 18 : fold_convert (TREE_TYPE (frompos), bitsize));
13110 : 18 : ccond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
13111 : : logical_type_node, below, above);
13112 : 18 : gfc_trans_runtime_check (true, false, ccond, &argse[1].pre,
13113 : 18 : &arg[1]->where,
13114 : : "FROMPOS argument (%ld) out of range 0:%d "
13115 : : "in intrinsic MVBITS", fp, bitsize);
13116 : 18 : below = fold_build2_loc (input_location, LT_EXPR,
13117 : : logical_type_node, len,
13118 : 18 : build_int_cst (TREE_TYPE (len), 0));
13119 : 18 : above = fold_build2_loc (input_location, GT_EXPR,
13120 : : logical_type_node, len,
13121 : 18 : fold_convert (TREE_TYPE (len), bitsize));
13122 : 18 : ccond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
13123 : : logical_type_node, below, above);
13124 : 18 : gfc_trans_runtime_check (true, false, ccond, &argse[2].pre,
13125 : 18 : &arg[2]->where,
13126 : : "LEN argument (%ld) out of range 0:%d "
13127 : : "in intrinsic MVBITS", ln, bitsize);
13128 : 18 : below = fold_build2_loc (input_location, LT_EXPR,
13129 : : logical_type_node, topos,
13130 : 18 : build_int_cst (TREE_TYPE (topos), 0));
13131 : 18 : above = fold_build2_loc (input_location, GT_EXPR,
13132 : : logical_type_node, topos,
13133 : 18 : fold_convert (TREE_TYPE (topos), bitsize));
13134 : 18 : ccond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
13135 : : logical_type_node, below, above);
13136 : 18 : gfc_trans_runtime_check (true, false, ccond, &argse[4].pre,
13137 : 18 : &arg[4]->where,
13138 : : "TOPOS argument (%ld) out of range 0:%d "
13139 : : "in intrinsic MVBITS", tp, bitsize);
13140 : :
13141 : : /* The tests above ensure that FROMPOS, LEN and TOPOS fit into short
13142 : : integers. Additions below cannot overflow. */
13143 : 18 : nbits = fold_convert (long_integer_type_node, bitsize);
13144 : 18 : above = fold_build2_loc (input_location, PLUS_EXPR,
13145 : : long_integer_type_node, fp, ln);
13146 : 18 : ccond = fold_build2_loc (input_location, GT_EXPR,
13147 : : logical_type_node, above, nbits);
13148 : 18 : gfc_trans_runtime_check (true, false, ccond, &argse[1].pre,
13149 : : &arg[1]->where,
13150 : : "FROMPOS(%ld)+LEN(%ld)>BIT_SIZE(%d) "
13151 : : "in intrinsic MVBITS", fp, ln, bitsize);
13152 : 18 : above = fold_build2_loc (input_location, PLUS_EXPR,
13153 : : long_integer_type_node, tp, ln);
13154 : 18 : ccond = fold_build2_loc (input_location, GT_EXPR,
13155 : : logical_type_node, above, nbits);
13156 : 18 : gfc_trans_runtime_check (true, false, ccond, &argse[4].pre,
13157 : : &arg[4]->where,
13158 : : "TOPOS(%ld)+LEN(%ld)>BIT_SIZE(%d) "
13159 : : "in intrinsic MVBITS", tp, ln, bitsize);
13160 : : }
13161 : :
13162 : 1182 : for (n = 0; n < 5; n++)
13163 : : {
13164 : 985 : gfc_add_block_to_block (&se->pre, &argse[n].pre);
13165 : 985 : gfc_add_block_to_block (&se->post, &argse[n].post);
13166 : : }
13167 : :
13168 : : /* lenmask = (LEN >= bit_size (TYPE)) ? ~(TYPE)0 : ((TYPE)1 << LEN) - 1 */
13169 : 197 : above = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
13170 : 197 : len, fold_convert (TREE_TYPE (len), bitsize));
13171 : 197 : mask1 = build_int_cst (type, -1);
13172 : 197 : mask2 = fold_build2_loc (input_location, LSHIFT_EXPR, type,
13173 : 197 : build_int_cst (type, 1), len);
13174 : 197 : mask2 = fold_build2_loc (input_location, MINUS_EXPR, type,
13175 : 197 : mask2, build_int_cst (type, 1));
13176 : 197 : lenmask = fold_build3_loc (input_location, COND_EXPR, type,
13177 : : above, mask1, mask2);
13178 : :
13179 : : /* newbits = (((UTYPE)(FROM) >> FROMPOS) & lenmask) << TOPOS.
13180 : : * For valid frompos+len <= bit_size(FROM) the conversion to unsigned is
13181 : : * not strictly necessary; artificial bits from rshift will be masked. */
13182 : 197 : utype = unsigned_type_for (type);
13183 : 197 : newbits = fold_build2_loc (input_location, RSHIFT_EXPR, utype,
13184 : : fold_convert (utype, from), frompos);
13185 : 197 : newbits = fold_build2_loc (input_location, BIT_AND_EXPR, type,
13186 : : fold_convert (type, newbits), lenmask);
13187 : 197 : newbits = fold_build2_loc (input_location, LSHIFT_EXPR, type,
13188 : : newbits, topos);
13189 : :
13190 : : /* oldbits = TO & (~(lenmask << TOPOS)). */
13191 : 197 : oldbits = fold_build2_loc (input_location, LSHIFT_EXPR, type,
13192 : : lenmask, topos);
13193 : 197 : oldbits = fold_build1_loc (input_location, BIT_NOT_EXPR, type, oldbits);
13194 : 197 : oldbits = fold_build2_loc (input_location, BIT_AND_EXPR, type, oldbits, to);
13195 : :
13196 : : /* TO = newbits | oldbits. */
13197 : 197 : se->expr = fold_build2_loc (input_location, BIT_IOR_EXPR, type,
13198 : : oldbits, newbits);
13199 : :
13200 : : /* Return the assignment. */
13201 : 197 : se->expr = fold_build2_loc (input_location, MODIFY_EXPR,
13202 : : void_type_node, to, se->expr);
13203 : 197 : }
13204 : :
13205 : :
13206 : : static tree
13207 : 236 : conv_intrinsic_move_alloc (gfc_code *code)
13208 : : {
13209 : 236 : stmtblock_t block;
13210 : 236 : gfc_expr *from_expr, *to_expr;
13211 : 236 : gfc_se from_se, to_se;
13212 : 236 : tree tmp, to_tree, from_tree;
13213 : 236 : bool coarray, from_is_class, from_is_scalar;
13214 : :
13215 : 236 : gfc_start_block (&block);
13216 : :
13217 : 236 : from_expr = code->ext.actual->expr;
13218 : 236 : to_expr = code->ext.actual->next->expr;
13219 : :
13220 : 236 : gfc_init_se (&from_se, NULL);
13221 : 236 : gfc_init_se (&to_se, NULL);
13222 : :
13223 : 236 : gcc_assert (from_expr->ts.type != BT_CLASS || to_expr->ts.type == BT_CLASS);
13224 : 236 : coarray = from_expr->corank != 0;
13225 : :
13226 : 236 : from_is_class = from_expr->ts.type == BT_CLASS;
13227 : 236 : from_is_scalar = from_expr->rank == 0 && !coarray;
13228 : 236 : if (to_expr->ts.type == BT_CLASS || from_is_scalar)
13229 : : {
13230 : 163 : from_se.want_pointer = 1;
13231 : 163 : if (from_is_scalar)
13232 : 115 : gfc_conv_expr (&from_se, from_expr);
13233 : : else
13234 : 48 : gfc_conv_expr_descriptor (&from_se, from_expr);
13235 : 163 : if (from_is_class)
13236 : 64 : from_tree = gfc_class_data_get (from_se.expr);
13237 : : else
13238 : : {
13239 : 99 : gfc_symbol *vtab;
13240 : 99 : from_tree = from_se.expr;
13241 : :
13242 : 99 : if (to_expr->ts.type == BT_CLASS)
13243 : : {
13244 : 36 : vtab = gfc_find_vtab (&from_expr->ts);
13245 : 36 : gcc_assert (vtab);
13246 : 36 : from_se.expr = gfc_get_symbol_decl (vtab);
13247 : : }
13248 : : }
13249 : 163 : gfc_add_block_to_block (&block, &from_se.pre);
13250 : :
13251 : 163 : to_se.want_pointer = 1;
13252 : 163 : if (to_expr->rank == 0)
13253 : 115 : gfc_conv_expr (&to_se, to_expr);
13254 : : else
13255 : 48 : gfc_conv_expr_descriptor (&to_se, to_expr);
13256 : 163 : if (to_expr->ts.type == BT_CLASS)
13257 : 100 : to_tree = gfc_class_data_get (to_se.expr);
13258 : : else
13259 : 63 : to_tree = to_se.expr;
13260 : 163 : gfc_add_block_to_block (&block, &to_se.pre);
13261 : :
13262 : : /* Deallocate "to". */
13263 : 163 : if (to_expr->rank == 0)
13264 : : {
13265 : 115 : tmp
13266 : 115 : = gfc_deallocate_scalar_with_status (to_tree, NULL_TREE, NULL_TREE,
13267 : : true, to_expr, to_expr->ts);
13268 : 115 : gfc_add_expr_to_block (&block, tmp);
13269 : : }
13270 : :
13271 : 163 : if (from_is_scalar)
13272 : : {
13273 : : /* Assign (_data) pointers. */
13274 : 115 : gfc_add_modify_loc (input_location, &block, to_tree,
13275 : 115 : fold_convert (TREE_TYPE (to_tree), from_tree));
13276 : :
13277 : : /* Set "from" to NULL. */
13278 : 115 : gfc_add_modify_loc (input_location, &block, from_tree,
13279 : 115 : fold_convert (TREE_TYPE (from_tree),
13280 : : null_pointer_node));
13281 : :
13282 : 115 : gfc_add_block_to_block (&block, &from_se.post);
13283 : : }
13284 : 163 : gfc_add_block_to_block (&block, &to_se.post);
13285 : :
13286 : : /* Set _vptr. */
13287 : 163 : if (to_expr->ts.type == BT_CLASS)
13288 : : {
13289 : 100 : gfc_class_set_vptr (&block, to_se.expr, from_se.expr);
13290 : 100 : if (from_is_class)
13291 : 64 : gfc_reset_vptr (&block, from_expr);
13292 : 100 : if (UNLIMITED_POLY (to_expr))
13293 : : {
13294 : 20 : tree to_len = gfc_class_len_get (to_se.class_container);
13295 : 6 : tmp = from_expr->ts.type == BT_CHARACTER && from_se.string_length
13296 : 20 : ? from_se.string_length
13297 : : : size_zero_node;
13298 : 20 : gfc_add_modify_loc (input_location, &block, to_len,
13299 : 20 : fold_convert (TREE_TYPE (to_len), tmp));
13300 : : }
13301 : : }
13302 : :
13303 : 163 : if (from_is_scalar)
13304 : : {
13305 : 115 : if (to_expr->ts.type == BT_CHARACTER && to_expr->ts.deferred)
13306 : : {
13307 : 6 : gfc_add_modify_loc (input_location, &block, to_se.string_length,
13308 : 6 : fold_convert (TREE_TYPE (to_se.string_length),
13309 : : from_se.string_length));
13310 : 6 : if (from_expr->ts.deferred)
13311 : 6 : gfc_add_modify_loc (
13312 : : input_location, &block, from_se.string_length,
13313 : 6 : build_int_cst (TREE_TYPE (from_se.string_length), 0));
13314 : : }
13315 : 115 : if (UNLIMITED_POLY (from_expr))
13316 : 2 : gfc_reset_len (&block, from_expr);
13317 : :
13318 : 115 : return gfc_finish_block (&block);
13319 : : }
13320 : :
13321 : 48 : gfc_init_se (&to_se, NULL);
13322 : 48 : gfc_init_se (&from_se, NULL);
13323 : : }
13324 : :
13325 : : /* Deallocate "to". */
13326 : 121 : if (from_expr->rank == 0)
13327 : : {
13328 : 3 : to_se.want_coarray = 1;
13329 : 3 : from_se.want_coarray = 1;
13330 : : }
13331 : 121 : gfc_conv_expr_descriptor (&to_se, to_expr);
13332 : 121 : gfc_conv_expr_descriptor (&from_se, from_expr);
13333 : :
13334 : : /* For coarrays, call SYNC ALL if TO is already deallocated as MOVE_ALLOC
13335 : : is an image control "statement", cf. IR F08/0040 in 12-006A. */
13336 : 121 : if (coarray && flag_coarray == GFC_FCOARRAY_LIB)
13337 : : {
13338 : 4 : tree cond;
13339 : :
13340 : 4 : tmp = gfc_deallocate_with_status (to_se.expr, NULL_TREE, NULL_TREE,
13341 : : NULL_TREE, NULL_TREE, true, to_expr,
13342 : : GFC_CAF_COARRAY_DEALLOCATE_ONLY);
13343 : 4 : gfc_add_expr_to_block (&block, tmp);
13344 : :
13345 : 4 : tmp = gfc_conv_descriptor_data_get (to_se.expr);
13346 : 4 : cond = fold_build2_loc (input_location, EQ_EXPR,
13347 : : logical_type_node, tmp,
13348 : 4 : fold_convert (TREE_TYPE (tmp),
13349 : : null_pointer_node));
13350 : 4 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_all,
13351 : : 3, null_pointer_node, null_pointer_node,
13352 : : integer_zero_node);
13353 : :
13354 : 4 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
13355 : : tmp, build_empty_stmt (input_location));
13356 : 4 : gfc_add_expr_to_block (&block, tmp);
13357 : 4 : }
13358 : : else
13359 : : {
13360 : 117 : if (to_expr->ts.type == BT_DERIVED
13361 : 25 : && to_expr->ts.u.derived->attr.alloc_comp)
13362 : : {
13363 : 19 : tmp = gfc_deallocate_alloc_comp (to_expr->ts.u.derived,
13364 : : to_se.expr, to_expr->rank);
13365 : 19 : gfc_add_expr_to_block (&block, tmp);
13366 : : }
13367 : :
13368 : 117 : tmp = gfc_deallocate_with_status (to_se.expr, NULL_TREE, NULL_TREE,
13369 : : NULL_TREE, NULL_TREE, true, to_expr,
13370 : : GFC_CAF_COARRAY_NOCOARRAY);
13371 : 117 : gfc_add_expr_to_block (&block, tmp);
13372 : : }
13373 : :
13374 : : /* Copy the array descriptor data. */
13375 : 121 : gfc_add_modify_loc (input_location, &block, to_se.expr, from_se.expr);
13376 : :
13377 : : /* Set "from" to NULL. */
13378 : 121 : tmp = gfc_conv_descriptor_data_get (from_se.expr);
13379 : 121 : gfc_add_modify_loc (input_location, &block, tmp,
13380 : 121 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
13381 : :
13382 : :
13383 : 121 : if (to_expr->ts.type == BT_CHARACTER && to_expr->ts.deferred)
13384 : : {
13385 : 7 : gfc_add_modify_loc (input_location, &block, to_se.string_length,
13386 : 7 : fold_convert (TREE_TYPE (to_se.string_length),
13387 : : from_se.string_length));
13388 : 7 : if (from_expr->ts.deferred)
13389 : 6 : gfc_add_modify_loc (input_location, &block, from_se.string_length,
13390 : 6 : build_int_cst (TREE_TYPE (from_se.string_length), 0));
13391 : : }
13392 : :
13393 : 121 : return gfc_finish_block (&block);
13394 : : }
13395 : :
13396 : :
13397 : : tree
13398 : 5866 : gfc_conv_intrinsic_subroutine (gfc_code *code)
13399 : : {
13400 : 5866 : tree res;
13401 : :
13402 : 5866 : gcc_assert (code->resolved_isym);
13403 : :
13404 : 5866 : switch (code->resolved_isym->id)
13405 : : {
13406 : 236 : case GFC_ISYM_MOVE_ALLOC:
13407 : 236 : res = conv_intrinsic_move_alloc (code);
13408 : 236 : break;
13409 : :
13410 : 10 : case GFC_ISYM_ATOMIC_CAS:
13411 : 10 : res = conv_intrinsic_atomic_cas (code);
13412 : 10 : break;
13413 : :
13414 : 68 : case GFC_ISYM_ATOMIC_ADD:
13415 : 68 : case GFC_ISYM_ATOMIC_AND:
13416 : 68 : case GFC_ISYM_ATOMIC_DEF:
13417 : 68 : case GFC_ISYM_ATOMIC_OR:
13418 : 68 : case GFC_ISYM_ATOMIC_XOR:
13419 : 68 : case GFC_ISYM_ATOMIC_FETCH_ADD:
13420 : 68 : case GFC_ISYM_ATOMIC_FETCH_AND:
13421 : 68 : case GFC_ISYM_ATOMIC_FETCH_OR:
13422 : 68 : case GFC_ISYM_ATOMIC_FETCH_XOR:
13423 : 68 : res = conv_intrinsic_atomic_op (code);
13424 : 68 : break;
13425 : :
13426 : 119 : case GFC_ISYM_ATOMIC_REF:
13427 : 119 : res = conv_intrinsic_atomic_ref (code);
13428 : 119 : break;
13429 : :
13430 : 70 : case GFC_ISYM_EVENT_QUERY:
13431 : 70 : res = conv_intrinsic_event_query (code);
13432 : 70 : break;
13433 : :
13434 : 2622 : case GFC_ISYM_C_F_POINTER:
13435 : 2622 : case GFC_ISYM_C_F_PROCPOINTER:
13436 : 2622 : res = conv_isocbinding_subroutine (code);
13437 : 2622 : break;
13438 : :
13439 : 459 : case GFC_ISYM_CAF_SEND:
13440 : 459 : res = conv_caf_send (code);
13441 : 459 : break;
13442 : :
13443 : 63 : case GFC_ISYM_CO_BROADCAST:
13444 : 63 : case GFC_ISYM_CO_MIN:
13445 : 63 : case GFC_ISYM_CO_MAX:
13446 : 63 : case GFC_ISYM_CO_REDUCE:
13447 : 63 : case GFC_ISYM_CO_SUM:
13448 : 63 : res = conv_co_collective (code);
13449 : 63 : break;
13450 : :
13451 : 10 : case GFC_ISYM_FREE:
13452 : 10 : res = conv_intrinsic_free (code);
13453 : 10 : break;
13454 : :
13455 : 90 : case GFC_ISYM_RANDOM_INIT:
13456 : 90 : res = conv_intrinsic_random_init (code);
13457 : 90 : break;
13458 : :
13459 : 15 : case GFC_ISYM_KILL:
13460 : 15 : res = conv_intrinsic_kill_sub (code);
13461 : 15 : break;
13462 : :
13463 : : case GFC_ISYM_MVBITS:
13464 : : res = NULL_TREE;
13465 : : break;
13466 : :
13467 : 194 : case GFC_ISYM_SYSTEM_CLOCK:
13468 : 194 : res = conv_intrinsic_system_clock (code);
13469 : 194 : break;
13470 : :
13471 : : default:
13472 : : res = NULL_TREE;
13473 : : break;
13474 : : }
13475 : :
13476 : 5866 : return res;
13477 : : }
13478 : :
13479 : : #include "gt-fortran-trans-intrinsic.h"
|