Branch data Line data Source code
1 : : /* Statement translation -- generate GCC trees from gfc_code.
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 : :
23 : : #include "config.h"
24 : : #include "system.h"
25 : : #include "coretypes.h"
26 : : #include "options.h"
27 : : #include "tree.h"
28 : : #include "gfortran.h"
29 : : #include "trans.h"
30 : : #include "stringpool.h"
31 : : #include "fold-const.h"
32 : : #include "trans-stmt.h"
33 : : #include "trans-types.h"
34 : : #include "trans-array.h"
35 : : #include "trans-const.h"
36 : : #include "dependency.h"
37 : :
38 : : typedef struct iter_info
39 : : {
40 : : tree var;
41 : : tree start;
42 : : tree end;
43 : : tree step;
44 : : gfc_loop_annot annot;
45 : : struct iter_info *next;
46 : : }
47 : : iter_info;
48 : :
49 : : typedef struct forall_info
50 : : {
51 : : iter_info *this_loop;
52 : : tree mask;
53 : : tree maskindex;
54 : : int nvar;
55 : : tree size;
56 : : struct forall_info *prev_nest;
57 : : bool do_concurrent;
58 : : }
59 : : forall_info;
60 : :
61 : : static void gfc_trans_where_2 (gfc_code *, tree, bool,
62 : : forall_info *, stmtblock_t *);
63 : :
64 : : /* Translate a F95 label number to a LABEL_EXPR. */
65 : :
66 : : tree
67 : 3496 : gfc_trans_label_here (gfc_code * code)
68 : : {
69 : 3496 : return build1_v (LABEL_EXPR, gfc_get_label_decl (code->here));
70 : : }
71 : :
72 : :
73 : : /* Given a variable expression which has been ASSIGNed to, find the decl
74 : : containing the auxiliary variables. For variables in common blocks this
75 : : is a field_decl. */
76 : :
77 : : void
78 : 187 : gfc_conv_label_variable (gfc_se * se, gfc_expr * expr)
79 : : {
80 : 187 : gcc_assert (expr->symtree->n.sym->attr.assign == 1);
81 : 187 : gfc_conv_expr (se, expr);
82 : : /* Deals with variable in common block. Get the field declaration. */
83 : 187 : if (TREE_CODE (se->expr) == COMPONENT_REF)
84 : 0 : se->expr = TREE_OPERAND (se->expr, 1);
85 : : /* Deals with dummy argument. Get the parameter declaration. */
86 : 187 : else if (INDIRECT_REF_P (se->expr))
87 : 12 : se->expr = TREE_OPERAND (se->expr, 0);
88 : 187 : }
89 : :
90 : : /* Translate a label assignment statement. */
91 : :
92 : : tree
93 : 116 : gfc_trans_label_assign (gfc_code * code)
94 : : {
95 : 116 : tree label_tree;
96 : 116 : gfc_se se;
97 : 116 : tree len;
98 : 116 : tree addr;
99 : 116 : tree len_tree;
100 : 116 : int label_len;
101 : :
102 : : /* Start a new block. */
103 : 116 : gfc_init_se (&se, NULL);
104 : 116 : gfc_start_block (&se.pre);
105 : 116 : gfc_conv_label_variable (&se, code->expr1);
106 : :
107 : 116 : len = GFC_DECL_STRING_LEN (se.expr);
108 : 116 : addr = GFC_DECL_ASSIGN_ADDR (se.expr);
109 : :
110 : 116 : label_tree = gfc_get_label_decl (code->label1);
111 : :
112 : 116 : if (code->label1->defined == ST_LABEL_TARGET
113 : 116 : || code->label1->defined == ST_LABEL_DO_TARGET)
114 : : {
115 : 115 : label_tree = gfc_build_addr_expr (pvoid_type_node, label_tree);
116 : 115 : len_tree = build_int_cst (gfc_charlen_type_node, -1);
117 : : }
118 : : else
119 : : {
120 : 1 : gfc_expr *format = code->label1->format;
121 : :
122 : 1 : label_len = format->value.character.length;
123 : 1 : len_tree = build_int_cst (gfc_charlen_type_node, label_len);
124 : 2 : label_tree = gfc_build_wide_string_const (format->ts.kind, label_len + 1,
125 : 1 : format->value.character.string);
126 : 1 : label_tree = gfc_build_addr_expr (pvoid_type_node, label_tree);
127 : : }
128 : :
129 : 116 : gfc_add_modify (&se.pre, len, fold_convert (TREE_TYPE (len), len_tree));
130 : 116 : gfc_add_modify (&se.pre, addr, label_tree);
131 : :
132 : 116 : return gfc_finish_block (&se.pre);
133 : : }
134 : :
135 : : /* Translate a GOTO statement. */
136 : :
137 : : tree
138 : 1185 : gfc_trans_goto (gfc_code * code)
139 : : {
140 : 1185 : locus loc = code->loc;
141 : 1185 : tree assigned_goto;
142 : 1185 : tree target;
143 : 1185 : tree tmp;
144 : 1185 : gfc_se se;
145 : :
146 : 1185 : if (code->label1 != NULL)
147 : 1115 : return build1_v (GOTO_EXPR, gfc_get_label_decl (code->label1));
148 : :
149 : : /* ASSIGNED GOTO. */
150 : 70 : gfc_init_se (&se, NULL);
151 : 70 : gfc_start_block (&se.pre);
152 : 70 : gfc_conv_label_variable (&se, code->expr1);
153 : 70 : tmp = GFC_DECL_STRING_LEN (se.expr);
154 : 70 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node, tmp,
155 : 70 : build_int_cst (TREE_TYPE (tmp), -1));
156 : 70 : gfc_trans_runtime_check (true, false, tmp, &se.pre, &loc,
157 : : "Assigned label is not a target label");
158 : :
159 : 70 : assigned_goto = GFC_DECL_ASSIGN_ADDR (se.expr);
160 : :
161 : : /* We're going to ignore a label list. It does not really change the
162 : : statement's semantics (because it is just a further restriction on
163 : : what's legal code); before, we were comparing label addresses here, but
164 : : that's a very fragile business and may break with optimization. So
165 : : just ignore it. */
166 : :
167 : 70 : target = fold_build1_loc (input_location, GOTO_EXPR, void_type_node,
168 : : assigned_goto);
169 : 70 : gfc_add_expr_to_block (&se.pre, target);
170 : 70 : return gfc_finish_block (&se.pre);
171 : : }
172 : :
173 : :
174 : : /* Translate an ENTRY statement. Just adds a label for this entry point. */
175 : : tree
176 : 1341 : gfc_trans_entry (gfc_code * code)
177 : : {
178 : 1341 : return build1_v (LABEL_EXPR, code->ext.entry->label);
179 : : }
180 : :
181 : :
182 : : /* Replace a gfc_ss structure by another both in the gfc_se struct
183 : : and the gfc_loopinfo struct. This is used in gfc_conv_elemental_dependencies
184 : : to replace a variable ss by the corresponding temporary. */
185 : :
186 : : static void
187 : 343 : replace_ss (gfc_se *se, gfc_ss *old_ss, gfc_ss *new_ss)
188 : : {
189 : 343 : gfc_ss **sess, **loopss;
190 : :
191 : : /* The old_ss is a ss for a single variable. */
192 : 343 : gcc_assert (old_ss->info->type == GFC_SS_SECTION);
193 : :
194 : 490 : for (sess = &(se->ss); *sess != gfc_ss_terminator; sess = &((*sess)->next))
195 : 490 : if (*sess == old_ss)
196 : : break;
197 : 343 : gcc_assert (*sess != gfc_ss_terminator);
198 : :
199 : 343 : *sess = new_ss;
200 : 343 : new_ss->next = old_ss->next;
201 : :
202 : : /* Make sure that trailing references are not lost. */
203 : 343 : if (old_ss->info
204 : 343 : && old_ss->info->data.array.ref
205 : 343 : && old_ss->info->data.array.ref->next
206 : 25 : && !(new_ss->info->data.array.ref
207 : 0 : && new_ss->info->data.array.ref->next))
208 : 25 : new_ss->info->data.array.ref = old_ss->info->data.array.ref;
209 : :
210 : 490 : for (loopss = &(se->loop->ss); *loopss != gfc_ss_terminator;
211 : 147 : loopss = &((*loopss)->loop_chain))
212 : 490 : if (*loopss == old_ss)
213 : : break;
214 : 343 : gcc_assert (*loopss != gfc_ss_terminator);
215 : :
216 : 343 : *loopss = new_ss;
217 : 343 : new_ss->loop_chain = old_ss->loop_chain;
218 : 343 : new_ss->loop = old_ss->loop;
219 : :
220 : 343 : gfc_free_ss (old_ss);
221 : 343 : }
222 : :
223 : :
224 : : /* Check for dependencies between INTENT(IN) and INTENT(OUT) arguments of
225 : : elemental subroutines. Make temporaries for output arguments if any such
226 : : dependencies are found. Output arguments are chosen because internal_unpack
227 : : can be used, as is, to copy the result back to the variable. */
228 : : static void
229 : 2048 : gfc_conv_elemental_dependencies (gfc_se * se, gfc_se * loopse,
230 : : gfc_symbol * sym, gfc_actual_arglist * arg,
231 : : gfc_dep_check check_variable)
232 : : {
233 : 2048 : gfc_actual_arglist *arg0;
234 : 2048 : gfc_expr *e;
235 : 2048 : gfc_formal_arglist *formal;
236 : 2048 : gfc_se parmse;
237 : 2048 : gfc_ss *ss;
238 : 2048 : gfc_symbol *fsym;
239 : 2048 : tree data;
240 : 2048 : tree size;
241 : 2048 : tree tmp;
242 : :
243 : 2048 : if (loopse->ss == NULL)
244 : 0 : return;
245 : :
246 : 2048 : ss = loopse->ss;
247 : 2048 : arg0 = arg;
248 : 2048 : formal = gfc_sym_get_dummy_args (sym);
249 : :
250 : : /* Loop over all the arguments testing for dependencies. */
251 : 10838 : for (; arg != NULL; arg = arg->next, formal = formal ? formal->next : NULL)
252 : : {
253 : 4395 : e = arg->expr;
254 : 4395 : if (e == NULL)
255 : 12 : continue;
256 : :
257 : : /* Obtain the info structure for the current argument. */
258 : 7705 : for (ss = loopse->ss; ss && ss != gfc_ss_terminator; ss = ss->next)
259 : 7439 : if (ss->info->expr == e)
260 : : break;
261 : :
262 : : /* If there is a dependency, create a temporary and use it
263 : : instead of the variable. */
264 : 4383 : fsym = formal ? formal->sym : NULL;
265 : 4383 : if (e->expr_type == EXPR_VARIABLE
266 : 3364 : && e->rank && fsym
267 : 2855 : && fsym->attr.intent != INTENT_IN
268 : 1467 : && !fsym->attr.value
269 : 5790 : && gfc_check_fncall_dependency (e, fsym->attr.intent,
270 : : sym, arg0, check_variable))
271 : : {
272 : 343 : tree initial, temptype;
273 : 343 : stmtblock_t temp_post;
274 : 343 : gfc_ss *tmp_ss;
275 : :
276 : 343 : tmp_ss = gfc_get_array_ss (gfc_ss_terminator, NULL, ss->dimen,
277 : : GFC_SS_SECTION);
278 : 343 : gfc_mark_ss_chain_used (tmp_ss, 1);
279 : 343 : tmp_ss->info->expr = ss->info->expr;
280 : 343 : replace_ss (loopse, ss, tmp_ss);
281 : :
282 : : /* Obtain the argument descriptor for unpacking. */
283 : 343 : gfc_init_se (&parmse, NULL);
284 : 343 : parmse.want_pointer = 1;
285 : 343 : gfc_conv_expr_descriptor (&parmse, e);
286 : 343 : gfc_add_block_to_block (&se->pre, &parmse.pre);
287 : :
288 : : /* If we've got INTENT(INOUT) or a derived type with INTENT(OUT),
289 : : initialize the array temporary with a copy of the values. */
290 : 343 : if (fsym->attr.intent == INTENT_INOUT
291 : 299 : || (fsym->ts.type ==BT_DERIVED
292 : 51 : && fsym->attr.intent == INTENT_OUT))
293 : 95 : initial = parmse.expr;
294 : : /* For class expressions, we always initialize with the copy of
295 : : the values. */
296 : 248 : else if (e->ts.type == BT_CLASS)
297 : 6 : initial = parmse.expr;
298 : : else
299 : : initial = NULL_TREE;
300 : :
301 : 343 : if (e->ts.type != BT_CLASS)
302 : : {
303 : : /* Find the type of the temporary to create; we don't use the type
304 : : of e itself as this breaks for subcomponent-references in e
305 : : (where the type of e is that of the final reference, but
306 : : parmse.expr's type corresponds to the full derived-type). */
307 : : /* TODO: Fix this somehow so we don't need a temporary of the whole
308 : : array but instead only the components referenced. */
309 : 337 : temptype = TREE_TYPE (parmse.expr); /* Pointer to descriptor. */
310 : 337 : gcc_assert (TREE_CODE (temptype) == POINTER_TYPE);
311 : 337 : temptype = TREE_TYPE (temptype);
312 : 337 : temptype = gfc_get_element_type (temptype);
313 : : }
314 : :
315 : : else
316 : : /* For class arrays signal that the size of the dynamic type has to
317 : : be obtained from the vtable, using the 'initial' expression. */
318 : : temptype = NULL_TREE;
319 : :
320 : : /* Generate the temporary. Cleaning up the temporary should be the
321 : : very last thing done, so we add the code to a new block and add it
322 : : to se->post as last instructions. */
323 : 343 : size = gfc_create_var (gfc_array_index_type, NULL);
324 : 343 : data = gfc_create_var (pvoid_type_node, NULL);
325 : 343 : gfc_init_block (&temp_post);
326 : 686 : tmp = gfc_trans_create_temp_array (&se->pre, &temp_post, tmp_ss,
327 : : temptype, initial, false, true,
328 : 343 : false, &arg->expr->where);
329 : 343 : gfc_add_modify (&se->pre, size, tmp);
330 : 343 : tmp = fold_convert (pvoid_type_node, tmp_ss->info->data.array.data);
331 : 343 : gfc_add_modify (&se->pre, data, tmp);
332 : :
333 : : /* Update other ss' delta. */
334 : 343 : gfc_set_delta (loopse->loop);
335 : :
336 : : /* Copy the result back using unpack..... */
337 : 343 : if (e->ts.type != BT_CLASS)
338 : 337 : tmp = build_call_expr_loc (input_location,
339 : : gfor_fndecl_in_unpack, 2, parmse.expr, data);
340 : : else
341 : : {
342 : : /* ... except for class results where the copy is
343 : : unconditional. */
344 : 6 : tmp = build_fold_indirect_ref_loc (input_location, parmse.expr);
345 : 6 : tmp = gfc_conv_descriptor_data_get (tmp);
346 : 6 : tmp = build_call_expr_loc (input_location,
347 : : builtin_decl_explicit (BUILT_IN_MEMCPY),
348 : : 3, tmp, data,
349 : : fold_convert (size_type_node, size));
350 : : }
351 : 343 : gfc_add_expr_to_block (&se->post, tmp);
352 : :
353 : : /* parmse.pre is already added above. */
354 : 343 : gfc_add_block_to_block (&se->post, &parmse.post);
355 : 343 : gfc_add_block_to_block (&se->post, &temp_post);
356 : : }
357 : : }
358 : : }
359 : :
360 : :
361 : : /* Given an executable statement referring to an intrinsic function call,
362 : : returns the intrinsic symbol. */
363 : :
364 : : static gfc_intrinsic_sym *
365 : 5524 : get_intrinsic_for_code (gfc_code *code)
366 : : {
367 : 5524 : if (code->op == EXEC_CALL)
368 : : {
369 : 5181 : gfc_intrinsic_sym * const isym = code->resolved_isym;
370 : 5181 : if (isym)
371 : : return isym;
372 : : else
373 : 4984 : return gfc_get_intrinsic_for_expr (code->expr1);
374 : : }
375 : :
376 : : return NULL;
377 : : }
378 : :
379 : :
380 : : /* Translate the CALL statement. Builds a call to an F95 subroutine. */
381 : :
382 : : tree
383 : 75722 : gfc_trans_call (gfc_code * code, bool dependency_check,
384 : : tree mask, tree count1, bool invert)
385 : : {
386 : 75722 : gfc_se se;
387 : 75722 : gfc_ss * ss;
388 : 75722 : int has_alternate_specifier;
389 : 75722 : gfc_dep_check check_variable;
390 : 75722 : tree index = NULL_TREE;
391 : 75722 : tree maskexpr = NULL_TREE;
392 : 75722 : tree tmp;
393 : 75722 : bool is_intrinsic_mvbits;
394 : :
395 : : /* A CALL starts a new block because the actual arguments may have to
396 : : be evaluated first. */
397 : 75722 : gfc_init_se (&se, NULL);
398 : 75722 : gfc_start_block (&se.pre);
399 : :
400 : 75722 : gcc_assert (code->resolved_sym);
401 : :
402 : 75722 : ss = gfc_ss_terminator;
403 : 75722 : if (code->resolved_sym->attr.elemental)
404 : 5524 : ss = gfc_walk_elemental_function_args (ss, code->ext.actual,
405 : : get_intrinsic_for_code (code),
406 : : GFC_SS_REFERENCE);
407 : :
408 : : /* MVBITS is inlined but needs the dependency checking found here. */
409 : 151444 : is_intrinsic_mvbits = code->resolved_isym
410 : 75722 : && code->resolved_isym->id == GFC_ISYM_MVBITS;
411 : :
412 : : /* Is not an elemental subroutine call with array valued arguments. */
413 : 75722 : if (ss == gfc_ss_terminator)
414 : : {
415 : :
416 : 73674 : if (is_intrinsic_mvbits)
417 : : {
418 : 130 : has_alternate_specifier = 0;
419 : 130 : gfc_conv_intrinsic_mvbits (&se, code->ext.actual, NULL);
420 : : }
421 : : else
422 : : {
423 : : /* Translate the call. */
424 : 73544 : has_alternate_specifier =
425 : 73544 : gfc_conv_procedure_call (&se, code->resolved_sym,
426 : : code->ext.actual, code->expr1, NULL);
427 : :
428 : : /* A subroutine without side-effect, by definition, does nothing! */
429 : 73544 : TREE_SIDE_EFFECTS (se.expr) = 1;
430 : : }
431 : :
432 : : /* Chain the pieces together and return the block. */
433 : 73674 : if (has_alternate_specifier)
434 : : {
435 : 140 : gfc_code *select_code;
436 : 140 : gfc_symbol *sym;
437 : 140 : select_code = code->next;
438 : 140 : gcc_assert(select_code->op == EXEC_SELECT);
439 : 140 : sym = select_code->expr1->symtree->n.sym;
440 : 140 : se.expr = convert (gfc_typenode_for_spec (&sym->ts), se.expr);
441 : 140 : if (sym->backend_decl == NULL)
442 : 1 : sym->backend_decl = gfc_get_symbol_decl (sym);
443 : 140 : gfc_add_modify (&se.pre, sym->backend_decl, se.expr);
444 : : }
445 : : else
446 : 73534 : gfc_add_expr_to_block (&se.pre, se.expr);
447 : :
448 : 73674 : gfc_add_block_to_block (&se.finalblock, &se.post);
449 : 73674 : gfc_add_block_to_block (&se.pre, &se.finalblock);
450 : : }
451 : :
452 : : else
453 : : {
454 : : /* An elemental subroutine call with array valued arguments has
455 : : to be scalarized. */
456 : 2048 : gfc_loopinfo loop;
457 : 2048 : stmtblock_t body;
458 : 2048 : stmtblock_t block;
459 : 2048 : gfc_se loopse;
460 : 2048 : gfc_se depse;
461 : :
462 : : /* gfc_walk_elemental_function_args renders the ss chain in the
463 : : reverse order to the actual argument order. */
464 : 2048 : ss = gfc_reverse_ss (ss);
465 : :
466 : : /* Initialize the loop. */
467 : 2048 : gfc_init_se (&loopse, NULL);
468 : 2048 : gfc_init_loopinfo (&loop);
469 : 2048 : gfc_add_ss_to_loop (&loop, ss);
470 : :
471 : 2048 : gfc_conv_ss_startstride (&loop);
472 : : /* TODO: gfc_conv_loop_setup generates a temporary for vector
473 : : subscripts. This could be prevented in the elemental case
474 : : as temporaries are handled separately
475 : : (below in gfc_conv_elemental_dependencies). */
476 : 2048 : if (code->expr1)
477 : 237 : gfc_conv_loop_setup (&loop, &code->expr1->where);
478 : : else
479 : 1811 : gfc_conv_loop_setup (&loop, &code->loc);
480 : :
481 : 2048 : gfc_mark_ss_chain_used (ss, 1);
482 : :
483 : : /* Convert the arguments, checking for dependencies. */
484 : 2048 : gfc_copy_loopinfo_to_se (&loopse, &loop);
485 : 2048 : loopse.ss = ss;
486 : :
487 : : /* For operator assignment, do dependency checking. */
488 : 2048 : if (dependency_check)
489 : : check_variable = ELEM_CHECK_VARIABLE;
490 : : else
491 : 1724 : check_variable = ELEM_DONT_CHECK_VARIABLE;
492 : :
493 : 2048 : gfc_init_se (&depse, NULL);
494 : 2048 : gfc_conv_elemental_dependencies (&depse, &loopse, code->resolved_sym,
495 : : code->ext.actual, check_variable);
496 : :
497 : 2048 : gfc_add_block_to_block (&loop.pre, &depse.pre);
498 : 2048 : gfc_add_block_to_block (&loop.post, &depse.post);
499 : :
500 : : /* Generate the loop body. */
501 : 2048 : gfc_start_scalarized_body (&loop, &body);
502 : 2048 : gfc_init_block (&block);
503 : :
504 : 2048 : if (mask && count1)
505 : : {
506 : : /* Form the mask expression according to the mask. */
507 : 44 : index = count1;
508 : 44 : maskexpr = gfc_build_array_ref (mask, index, NULL);
509 : 44 : if (invert)
510 : 11 : maskexpr = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
511 : 11 : TREE_TYPE (maskexpr), maskexpr);
512 : : }
513 : :
514 : 2048 : if (is_intrinsic_mvbits)
515 : : {
516 : 67 : has_alternate_specifier = 0;
517 : 67 : gfc_conv_intrinsic_mvbits (&loopse, code->ext.actual, &loop);
518 : : }
519 : : else
520 : : {
521 : : /* Add the subroutine call to the block. */
522 : 1981 : gfc_conv_procedure_call (&loopse, code->resolved_sym,
523 : : code->ext.actual, code->expr1,
524 : : NULL);
525 : : }
526 : :
527 : 2048 : if (mask && count1)
528 : : {
529 : 44 : tmp = build3_v (COND_EXPR, maskexpr, loopse.expr,
530 : : build_empty_stmt (input_location));
531 : 44 : gfc_add_expr_to_block (&loopse.pre, tmp);
532 : 44 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
533 : : gfc_array_index_type,
534 : : count1, gfc_index_one_node);
535 : 44 : gfc_add_modify (&loopse.pre, count1, tmp);
536 : : }
537 : : else
538 : 2004 : gfc_add_expr_to_block (&loopse.pre, loopse.expr);
539 : :
540 : 2048 : gfc_add_block_to_block (&block, &loopse.pre);
541 : 2048 : gfc_add_block_to_block (&block, &loopse.post);
542 : :
543 : : /* Finish up the loop block and the loop. */
544 : 2048 : gfc_add_expr_to_block (&body, gfc_finish_block (&block));
545 : 2048 : gfc_trans_scalarizing_loops (&loop, &body);
546 : 2048 : gfc_add_block_to_block (&se.pre, &loop.pre);
547 : 2048 : gfc_add_block_to_block (&se.pre, &loop.post);
548 : 2048 : gfc_add_block_to_block (&se.pre, &loopse.finalblock);
549 : 2048 : gfc_add_block_to_block (&se.pre, &se.post);
550 : 2048 : gfc_cleanup_loop (&loop);
551 : : }
552 : :
553 : 75722 : return gfc_finish_block (&se.pre);
554 : : }
555 : :
556 : :
557 : : /* Translate the RETURN statement. */
558 : :
559 : : tree
560 : 3031 : gfc_trans_return (gfc_code * code)
561 : : {
562 : 3031 : if (code->expr1)
563 : : {
564 : 50 : gfc_se se;
565 : 50 : tree tmp;
566 : 50 : tree result;
567 : :
568 : : /* If code->expr is not NULL, this return statement must appear
569 : : in a subroutine and current_fake_result_decl has already
570 : : been generated. */
571 : :
572 : 50 : result = gfc_get_fake_result_decl (NULL, 0);
573 : 50 : if (!result)
574 : : {
575 : 0 : gfc_warning (0,
576 : : "An alternate return at %L without a * dummy argument",
577 : 0 : &code->expr1->where);
578 : 0 : return gfc_generate_return ();
579 : : }
580 : :
581 : : /* Start a new block for this statement. */
582 : 50 : gfc_init_se (&se, NULL);
583 : 50 : gfc_start_block (&se.pre);
584 : :
585 : 50 : gfc_conv_expr (&se, code->expr1);
586 : :
587 : : /* Note that the actually returned expression is a simple value and
588 : : does not depend on any pointers or such; thus we can clean-up with
589 : : se.post before returning. */
590 : 50 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, TREE_TYPE (result),
591 : 50 : result, fold_convert (TREE_TYPE (result),
592 : : se.expr));
593 : 50 : gfc_add_expr_to_block (&se.pre, tmp);
594 : 50 : gfc_add_block_to_block (&se.pre, &se.post);
595 : :
596 : 50 : tmp = gfc_generate_return ();
597 : 50 : gfc_add_expr_to_block (&se.pre, tmp);
598 : 50 : return gfc_finish_block (&se.pre);
599 : : }
600 : :
601 : 2981 : return gfc_generate_return ();
602 : : }
603 : :
604 : :
605 : : /* Translate the PAUSE statement. We have to translate this statement
606 : : to a runtime library call. */
607 : :
608 : : tree
609 : 28 : gfc_trans_pause (gfc_code * code)
610 : : {
611 : 28 : tree gfc_int8_type_node = gfc_get_int_type (8);
612 : 28 : gfc_se se;
613 : 28 : tree tmp;
614 : :
615 : : /* Start a new block for this statement. */
616 : 28 : gfc_init_se (&se, NULL);
617 : 28 : gfc_start_block (&se.pre);
618 : :
619 : :
620 : 28 : if (code->expr1 == NULL)
621 : : {
622 : 10 : tmp = build_int_cst (size_type_node, 0);
623 : 10 : tmp = build_call_expr_loc (input_location,
624 : : gfor_fndecl_pause_string, 2,
625 : 10 : build_int_cst (pchar_type_node, 0), tmp);
626 : : }
627 : 18 : else if (code->expr1->ts.type == BT_INTEGER)
628 : : {
629 : 9 : gfc_conv_expr (&se, code->expr1);
630 : 9 : tmp = build_call_expr_loc (input_location,
631 : : gfor_fndecl_pause_numeric, 1,
632 : : fold_convert (gfc_int8_type_node, se.expr));
633 : : }
634 : : else
635 : : {
636 : 9 : gfc_conv_expr_reference (&se, code->expr1);
637 : 9 : tmp = build_call_expr_loc (input_location,
638 : : gfor_fndecl_pause_string, 2,
639 : : se.expr, fold_convert (size_type_node,
640 : : se.string_length));
641 : : }
642 : :
643 : 28 : gfc_add_expr_to_block (&se.pre, tmp);
644 : :
645 : 28 : gfc_add_block_to_block (&se.pre, &se.post);
646 : :
647 : 28 : return gfc_finish_block (&se.pre);
648 : : }
649 : :
650 : :
651 : : /* Translate the STOP statement. We have to translate this statement
652 : : to a runtime library call. */
653 : :
654 : : tree
655 : 190360 : gfc_trans_stop (gfc_code *code, bool error_stop)
656 : : {
657 : 190360 : gfc_se se;
658 : 190360 : tree tmp;
659 : 190360 : tree quiet;
660 : :
661 : : /* Start a new block for this statement. */
662 : 190360 : gfc_init_se (&se, NULL);
663 : 190360 : gfc_start_block (&se.pre);
664 : :
665 : 190360 : if (code->expr2)
666 : : {
667 : 25 : gfc_conv_expr_val (&se, code->expr2);
668 : 25 : quiet = fold_convert (boolean_type_node, se.expr);
669 : : }
670 : : else
671 : 190335 : quiet = boolean_false_node;
672 : :
673 : 190360 : if (code->expr1 == NULL)
674 : : {
675 : 4979 : tmp = build_int_cst (size_type_node, 0);
676 : 9958 : tmp = build_call_expr_loc (input_location,
677 : : error_stop
678 : 4031 : ? (flag_coarray == GFC_FCOARRAY_LIB
679 : 4031 : ? gfor_fndecl_caf_error_stop_str
680 : : : gfor_fndecl_error_stop_string)
681 : 948 : : (flag_coarray == GFC_FCOARRAY_LIB
682 : 948 : ? gfor_fndecl_caf_stop_str
683 : : : gfor_fndecl_stop_string),
684 : 4979 : 3, build_int_cst (pchar_type_node, 0), tmp,
685 : : quiet);
686 : : }
687 : 185381 : else if (code->expr1->ts.type == BT_INTEGER)
688 : : {
689 : 184988 : gfc_conv_expr (&se, code->expr1);
690 : 369976 : tmp = build_call_expr_loc (input_location,
691 : : error_stop
692 : 18870 : ? (flag_coarray == GFC_FCOARRAY_LIB
693 : 18870 : ? gfor_fndecl_caf_error_stop
694 : : : gfor_fndecl_error_stop_numeric)
695 : 166118 : : (flag_coarray == GFC_FCOARRAY_LIB
696 : 166118 : ? gfor_fndecl_caf_stop_numeric
697 : : : gfor_fndecl_stop_numeric), 2,
698 : : fold_convert (integer_type_node, se.expr),
699 : : quiet);
700 : : }
701 : : else
702 : : {
703 : 393 : gfc_conv_expr_reference (&se, code->expr1);
704 : 786 : tmp = build_call_expr_loc (input_location,
705 : : error_stop
706 : 285 : ? (flag_coarray == GFC_FCOARRAY_LIB
707 : 285 : ? gfor_fndecl_caf_error_stop_str
708 : : : gfor_fndecl_error_stop_string)
709 : 108 : : (flag_coarray == GFC_FCOARRAY_LIB
710 : 108 : ? gfor_fndecl_caf_stop_str
711 : : : gfor_fndecl_stop_string),
712 : : 3, se.expr, fold_convert (size_type_node,
713 : : se.string_length),
714 : : quiet);
715 : : }
716 : :
717 : 190360 : gfc_add_expr_to_block (&se.pre, tmp);
718 : :
719 : 190360 : gfc_add_block_to_block (&se.pre, &se.post);
720 : :
721 : 190360 : return gfc_finish_block (&se.pre);
722 : : }
723 : :
724 : : /* Translate the FAIL IMAGE statement. */
725 : :
726 : : tree
727 : 3 : gfc_trans_fail_image (gfc_code *code ATTRIBUTE_UNUSED)
728 : : {
729 : 3 : if (flag_coarray == GFC_FCOARRAY_LIB)
730 : 2 : return build_call_expr_loc (input_location,
731 : 2 : gfor_fndecl_caf_fail_image, 0);
732 : : else
733 : : {
734 : 1 : const char *name = gfc_get_string (PREFIX ("exit_i%d"), 4);
735 : 1 : gfc_symbol *exsym = gfc_get_intrinsic_sub_symbol (name);
736 : 1 : tree tmp = gfc_get_symbol_decl (exsym);
737 : 1 : return build_call_expr_loc (input_location, tmp, 1, integer_zero_node);
738 : : }
739 : : }
740 : :
741 : : /* Translate the FORM TEAM statement. */
742 : :
743 : : tree
744 : 25 : gfc_trans_form_team (gfc_code *code)
745 : : {
746 : 25 : if (flag_coarray == GFC_FCOARRAY_LIB)
747 : : {
748 : 1 : gfc_se se;
749 : 1 : gfc_se argse1, argse2;
750 : 1 : tree team_id, team_type, tmp;
751 : :
752 : 1 : gfc_init_se (&se, NULL);
753 : 1 : gfc_init_se (&argse1, NULL);
754 : 1 : gfc_init_se (&argse2, NULL);
755 : 1 : gfc_start_block (&se.pre);
756 : :
757 : 1 : gfc_conv_expr_val (&argse1, code->expr1);
758 : 1 : gfc_conv_expr_val (&argse2, code->expr2);
759 : 1 : team_id = fold_convert (integer_type_node, argse1.expr);
760 : 1 : team_type = gfc_build_addr_expr (ppvoid_type_node, argse2.expr);
761 : :
762 : 1 : gfc_add_block_to_block (&se.pre, &argse1.pre);
763 : 1 : gfc_add_block_to_block (&se.pre, &argse2.pre);
764 : 1 : tmp = build_call_expr_loc (input_location,
765 : : gfor_fndecl_caf_form_team, 3,
766 : : team_id, team_type,
767 : : integer_zero_node);
768 : 1 : gfc_add_expr_to_block (&se.pre, tmp);
769 : 1 : gfc_add_block_to_block (&se.pre, &argse1.post);
770 : 1 : gfc_add_block_to_block (&se.pre, &argse2.post);
771 : 1 : return gfc_finish_block (&se.pre);
772 : : }
773 : : else
774 : : {
775 : 24 : const char *name = gfc_get_string (PREFIX ("exit_i%d"), 4);
776 : 24 : gfc_symbol *exsym = gfc_get_intrinsic_sub_symbol (name);
777 : 24 : tree tmp = gfc_get_symbol_decl (exsym);
778 : 24 : return build_call_expr_loc (input_location, tmp, 1, integer_zero_node);
779 : : }
780 : : }
781 : :
782 : : /* Translate the CHANGE TEAM statement. */
783 : :
784 : : tree
785 : 19 : gfc_trans_change_team (gfc_code *code)
786 : : {
787 : 19 : if (flag_coarray == GFC_FCOARRAY_LIB)
788 : : {
789 : 1 : gfc_se argse;
790 : 1 : tree team_type, tmp;
791 : :
792 : 1 : gfc_init_se (&argse, NULL);
793 : 1 : gfc_conv_expr_val (&argse, code->expr1);
794 : 1 : team_type = gfc_build_addr_expr (ppvoid_type_node, argse.expr);
795 : :
796 : 1 : tmp = build_call_expr_loc (input_location,
797 : : gfor_fndecl_caf_change_team, 2, team_type,
798 : : integer_zero_node);
799 : 1 : gfc_add_expr_to_block (&argse.pre, tmp);
800 : 1 : gfc_add_block_to_block (&argse.pre, &argse.post);
801 : 1 : return gfc_finish_block (&argse.pre);
802 : : }
803 : : else
804 : : {
805 : 18 : const char *name = gfc_get_string (PREFIX ("exit_i%d"), 4);
806 : 18 : gfc_symbol *exsym = gfc_get_intrinsic_sub_symbol (name);
807 : 18 : tree tmp = gfc_get_symbol_decl (exsym);
808 : 18 : return build_call_expr_loc (input_location, tmp, 1, integer_zero_node);
809 : : }
810 : : }
811 : :
812 : : /* Translate the END TEAM statement. */
813 : :
814 : : tree
815 : 19 : gfc_trans_end_team (gfc_code *code ATTRIBUTE_UNUSED)
816 : : {
817 : 19 : if (flag_coarray == GFC_FCOARRAY_LIB)
818 : : {
819 : 1 : return build_call_expr_loc (input_location,
820 : : gfor_fndecl_caf_end_team, 1,
821 : 1 : build_int_cst (pchar_type_node, 0));
822 : : }
823 : : else
824 : : {
825 : 18 : const char *name = gfc_get_string (PREFIX ("exit_i%d"), 4);
826 : 18 : gfc_symbol *exsym = gfc_get_intrinsic_sub_symbol (name);
827 : 18 : tree tmp = gfc_get_symbol_decl (exsym);
828 : 18 : return build_call_expr_loc (input_location, tmp, 1, integer_zero_node);
829 : : }
830 : : }
831 : :
832 : : /* Translate the SYNC TEAM statement. */
833 : :
834 : : tree
835 : 0 : gfc_trans_sync_team (gfc_code *code)
836 : : {
837 : 0 : if (flag_coarray == GFC_FCOARRAY_LIB)
838 : : {
839 : 0 : gfc_se argse;
840 : 0 : tree team_type, tmp;
841 : :
842 : 0 : gfc_init_se (&argse, NULL);
843 : 0 : gfc_conv_expr_val (&argse, code->expr1);
844 : 0 : team_type = gfc_build_addr_expr (ppvoid_type_node, argse.expr);
845 : :
846 : 0 : tmp = build_call_expr_loc (input_location,
847 : : gfor_fndecl_caf_sync_team, 2,
848 : : team_type,
849 : : integer_zero_node);
850 : 0 : gfc_add_expr_to_block (&argse.pre, tmp);
851 : 0 : gfc_add_block_to_block (&argse.pre, &argse.post);
852 : 0 : return gfc_finish_block (&argse.pre);
853 : : }
854 : : else
855 : : {
856 : 0 : const char *name = gfc_get_string (PREFIX ("exit_i%d"), 4);
857 : 0 : gfc_symbol *exsym = gfc_get_intrinsic_sub_symbol (name);
858 : 0 : tree tmp = gfc_get_symbol_decl (exsym);
859 : 0 : return build_call_expr_loc (input_location, tmp, 1, integer_zero_node);
860 : : }
861 : : }
862 : :
863 : : tree
864 : 84 : gfc_trans_lock_unlock (gfc_code *code, gfc_exec_op op)
865 : : {
866 : 84 : gfc_se se, argse;
867 : 84 : tree stat = NULL_TREE, stat2 = NULL_TREE;
868 : 84 : tree lock_acquired = NULL_TREE, lock_acquired2 = NULL_TREE;
869 : :
870 : : /* Short cut: For single images without STAT= or LOCK_ACQUIRED
871 : : return early. (ERRMSG= is always untouched for -fcoarray=single.) */
872 : 84 : if (!code->expr2 && !code->expr4 && flag_coarray != GFC_FCOARRAY_LIB)
873 : : return NULL_TREE;
874 : :
875 : 66 : if (code->expr2)
876 : : {
877 : 28 : gcc_assert (code->expr2->expr_type == EXPR_VARIABLE);
878 : 28 : gfc_init_se (&argse, NULL);
879 : 28 : gfc_conv_expr_val (&argse, code->expr2);
880 : 28 : stat = argse.expr;
881 : : }
882 : 38 : else if (flag_coarray == GFC_FCOARRAY_LIB)
883 : 32 : stat = null_pointer_node;
884 : :
885 : 66 : if (code->expr4)
886 : : {
887 : 14 : gcc_assert (code->expr4->expr_type == EXPR_VARIABLE);
888 : 14 : gfc_init_se (&argse, NULL);
889 : 14 : gfc_conv_expr_val (&argse, code->expr4);
890 : 14 : lock_acquired = argse.expr;
891 : : }
892 : 52 : else if (flag_coarray == GFC_FCOARRAY_LIB)
893 : 40 : lock_acquired = null_pointer_node;
894 : :
895 : 66 : gfc_start_block (&se.pre);
896 : 66 : if (flag_coarray == GFC_FCOARRAY_LIB)
897 : : {
898 : 48 : tree tmp, token, image_index, errmsg, errmsg_len;
899 : 48 : tree index = build_zero_cst (gfc_array_index_type);
900 : 48 : tree caf_decl = gfc_get_tree_for_caf_expr (code->expr1);
901 : :
902 : 48 : if (code->expr1->symtree->n.sym->ts.type != BT_DERIVED
903 : 48 : || code->expr1->symtree->n.sym->ts.u.derived->from_intmod
904 : : != INTMOD_ISO_FORTRAN_ENV
905 : 48 : || code->expr1->symtree->n.sym->ts.u.derived->intmod_sym_id
906 : : != ISOFORTRAN_LOCK_TYPE)
907 : : {
908 : 4 : gfc_error ("Sorry, the lock component of derived type at %L is not "
909 : : "yet supported", &code->expr1->where);
910 : 4 : return NULL_TREE;
911 : : }
912 : :
913 : 44 : gfc_get_caf_token_offset (&se, &token, NULL, caf_decl, NULL_TREE,
914 : : code->expr1);
915 : :
916 : 44 : if (gfc_is_coindexed (code->expr1))
917 : 16 : image_index = gfc_caf_get_image_index (&se.pre, code->expr1, caf_decl);
918 : : else
919 : 28 : image_index = integer_zero_node;
920 : :
921 : : /* For arrays, obtain the array index. */
922 : 44 : if (gfc_expr_attr (code->expr1).dimension)
923 : : {
924 : 28 : tree desc, tmp, extent, lbound, ubound;
925 : 28 : gfc_array_ref *ar, ar2;
926 : 28 : int i, rank;
927 : :
928 : : /* TODO: Extend this, once DT components are supported. */
929 : 28 : ar = &code->expr1->ref->u.ar;
930 : 28 : ar2 = *ar;
931 : 28 : memset (ar, '\0', sizeof (*ar));
932 : 28 : ar->as = ar2.as;
933 : 28 : ar->type = AR_FULL;
934 : 28 : rank = code->expr1->rank;
935 : 28 : code->expr1->rank = ar->as->rank;
936 : :
937 : 28 : gfc_init_se (&argse, NULL);
938 : 28 : argse.descriptor_only = 1;
939 : 28 : gfc_conv_expr_descriptor (&argse, code->expr1);
940 : 28 : gfc_add_block_to_block (&se.pre, &argse.pre);
941 : 28 : desc = argse.expr;
942 : 28 : *ar = ar2;
943 : 28 : code->expr1->rank = rank;
944 : :
945 : 28 : extent = build_one_cst (gfc_array_index_type);
946 : 98 : for (i = 0; i < ar->dimen; i++)
947 : : {
948 : 42 : gfc_init_se (&argse, NULL);
949 : 42 : gfc_conv_expr_type (&argse, ar->start[i], gfc_array_index_type);
950 : 42 : gfc_add_block_to_block (&argse.pre, &argse.pre);
951 : 42 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
952 : 42 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
953 : 42 : TREE_TYPE (lbound), argse.expr, lbound);
954 : 42 : tmp = fold_build2_loc (input_location, MULT_EXPR,
955 : 42 : TREE_TYPE (tmp), extent, tmp);
956 : 42 : index = fold_build2_loc (input_location, PLUS_EXPR,
957 : 42 : TREE_TYPE (tmp), index, tmp);
958 : 42 : if (i < ar->dimen - 1)
959 : : {
960 : 14 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
961 : 14 : tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
962 : 14 : extent = fold_build2_loc (input_location, MULT_EXPR,
963 : 14 : TREE_TYPE (tmp), extent, tmp);
964 : : }
965 : : }
966 : : }
967 : :
968 : : /* errmsg. */
969 : 44 : if (code->expr3)
970 : : {
971 : 0 : gfc_init_se (&argse, NULL);
972 : 0 : argse.want_pointer = 1;
973 : 0 : gfc_conv_expr (&argse, code->expr3);
974 : 0 : gfc_add_block_to_block (&se.pre, &argse.pre);
975 : 0 : errmsg = argse.expr;
976 : 0 : errmsg_len = fold_convert (size_type_node, argse.string_length);
977 : : }
978 : : else
979 : : {
980 : 44 : errmsg = null_pointer_node;
981 : 44 : errmsg_len = build_zero_cst (size_type_node);
982 : : }
983 : :
984 : 44 : if (stat != null_pointer_node && TREE_TYPE (stat) != integer_type_node)
985 : : {
986 : 0 : stat2 = stat;
987 : 0 : stat = gfc_create_var (integer_type_node, "stat");
988 : : }
989 : :
990 : 44 : if (lock_acquired != null_pointer_node
991 : 44 : && TREE_TYPE (lock_acquired) != integer_type_node)
992 : : {
993 : 8 : lock_acquired2 = lock_acquired;
994 : 8 : lock_acquired = gfc_create_var (integer_type_node, "acquired");
995 : : }
996 : :
997 : 44 : index = fold_convert (size_type_node, index);
998 : 44 : if (op == EXEC_LOCK)
999 : 22 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_lock, 7,
1000 : : token, index, image_index,
1001 : 22 : lock_acquired != null_pointer_node
1002 : 8 : ? gfc_build_addr_expr (NULL, lock_acquired)
1003 : : : lock_acquired,
1004 : 22 : stat != null_pointer_node
1005 : 8 : ? gfc_build_addr_expr (NULL, stat) : stat,
1006 : : errmsg, errmsg_len);
1007 : : else
1008 : 22 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_unlock, 6,
1009 : : token, index, image_index,
1010 : 22 : stat != null_pointer_node
1011 : 8 : ? gfc_build_addr_expr (NULL, stat) : stat,
1012 : : errmsg, errmsg_len);
1013 : 44 : gfc_add_expr_to_block (&se.pre, tmp);
1014 : :
1015 : : /* It guarantees memory consistency within the same segment */
1016 : 44 : tmp = gfc_build_string_const (strlen ("memory")+1, "memory"),
1017 : 44 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1018 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
1019 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
1020 : 44 : ASM_VOLATILE_P (tmp) = 1;
1021 : :
1022 : 44 : gfc_add_expr_to_block (&se.pre, tmp);
1023 : :
1024 : 44 : if (stat2 != NULL_TREE)
1025 : 0 : gfc_add_modify (&se.pre, stat2,
1026 : 0 : fold_convert (TREE_TYPE (stat2), stat));
1027 : :
1028 : 44 : if (lock_acquired2 != NULL_TREE)
1029 : 8 : gfc_add_modify (&se.pre, lock_acquired2,
1030 : 8 : fold_convert (TREE_TYPE (lock_acquired2),
1031 : : lock_acquired));
1032 : :
1033 : 44 : return gfc_finish_block (&se.pre);
1034 : : }
1035 : :
1036 : 18 : if (stat != NULL_TREE)
1037 : 12 : gfc_add_modify (&se.pre, stat, build_int_cst (TREE_TYPE (stat), 0));
1038 : :
1039 : 18 : if (lock_acquired != NULL_TREE)
1040 : 6 : gfc_add_modify (&se.pre, lock_acquired,
1041 : 6 : fold_convert (TREE_TYPE (lock_acquired),
1042 : : boolean_true_node));
1043 : :
1044 : 18 : return gfc_finish_block (&se.pre);
1045 : : }
1046 : :
1047 : : tree
1048 : 39 : gfc_trans_event_post_wait (gfc_code *code, gfc_exec_op op)
1049 : : {
1050 : 39 : gfc_se se, argse;
1051 : 39 : tree stat = NULL_TREE, stat2 = NULL_TREE;
1052 : 39 : tree until_count = NULL_TREE;
1053 : :
1054 : 39 : if (code->expr2)
1055 : : {
1056 : 8 : gcc_assert (code->expr2->expr_type == EXPR_VARIABLE);
1057 : 8 : gfc_init_se (&argse, NULL);
1058 : 8 : gfc_conv_expr_val (&argse, code->expr2);
1059 : 8 : stat = argse.expr;
1060 : : }
1061 : 31 : else if (flag_coarray == GFC_FCOARRAY_LIB)
1062 : 16 : stat = null_pointer_node;
1063 : :
1064 : 39 : if (code->expr4)
1065 : : {
1066 : 12 : gfc_init_se (&argse, NULL);
1067 : 12 : gfc_conv_expr_val (&argse, code->expr4);
1068 : 12 : until_count = fold_convert (integer_type_node, argse.expr);
1069 : : }
1070 : : else
1071 : 27 : until_count = integer_one_node;
1072 : :
1073 : 39 : if (flag_coarray != GFC_FCOARRAY_LIB)
1074 : : {
1075 : 19 : gfc_start_block (&se.pre);
1076 : 19 : gfc_init_se (&argse, NULL);
1077 : 19 : gfc_conv_expr_val (&argse, code->expr1);
1078 : :
1079 : 19 : if (op == EXEC_EVENT_POST)
1080 : 22 : gfc_add_modify (&se.pre, argse.expr,
1081 : : fold_build2_loc (input_location, PLUS_EXPR,
1082 : 11 : TREE_TYPE (argse.expr), argse.expr,
1083 : 11 : build_int_cst (TREE_TYPE (argse.expr), 1)));
1084 : : else
1085 : 16 : gfc_add_modify (&se.pre, argse.expr,
1086 : : fold_build2_loc (input_location, MINUS_EXPR,
1087 : 8 : TREE_TYPE (argse.expr), argse.expr,
1088 : 8 : fold_convert (TREE_TYPE (argse.expr),
1089 : : until_count)));
1090 : 19 : if (stat != NULL_TREE)
1091 : 4 : gfc_add_modify (&se.pre, stat, build_int_cst (TREE_TYPE (stat), 0));
1092 : :
1093 : 19 : return gfc_finish_block (&se.pre);
1094 : : }
1095 : :
1096 : 20 : gfc_start_block (&se.pre);
1097 : 20 : tree tmp, token, image_index, errmsg, errmsg_len;
1098 : 20 : tree index = build_zero_cst (gfc_array_index_type);
1099 : 20 : tree caf_decl = gfc_get_tree_for_caf_expr (code->expr1);
1100 : :
1101 : 20 : if (code->expr1->symtree->n.sym->ts.type != BT_DERIVED
1102 : 20 : || code->expr1->symtree->n.sym->ts.u.derived->from_intmod
1103 : : != INTMOD_ISO_FORTRAN_ENV
1104 : 20 : || code->expr1->symtree->n.sym->ts.u.derived->intmod_sym_id
1105 : : != ISOFORTRAN_EVENT_TYPE)
1106 : : {
1107 : 0 : gfc_error ("Sorry, the event component of derived type at %L is not "
1108 : : "yet supported", &code->expr1->where);
1109 : 0 : return NULL_TREE;
1110 : : }
1111 : :
1112 : 20 : gfc_init_se (&argse, NULL);
1113 : 20 : gfc_get_caf_token_offset (&argse, &token, NULL, caf_decl, NULL_TREE,
1114 : : code->expr1);
1115 : 20 : gfc_add_block_to_block (&se.pre, &argse.pre);
1116 : :
1117 : 20 : if (gfc_is_coindexed (code->expr1))
1118 : 6 : image_index = gfc_caf_get_image_index (&se.pre, code->expr1, caf_decl);
1119 : : else
1120 : 14 : image_index = integer_zero_node;
1121 : :
1122 : : /* For arrays, obtain the array index. */
1123 : 20 : if (gfc_expr_attr (code->expr1).dimension)
1124 : : {
1125 : 7 : tree desc, tmp, extent, lbound, ubound;
1126 : 7 : gfc_array_ref *ar, ar2;
1127 : 7 : int i;
1128 : :
1129 : : /* TODO: Extend this, once DT components are supported. */
1130 : 7 : ar = &code->expr1->ref->u.ar;
1131 : 7 : ar2 = *ar;
1132 : 7 : memset (ar, '\0', sizeof (*ar));
1133 : 7 : ar->as = ar2.as;
1134 : 7 : ar->type = AR_FULL;
1135 : :
1136 : 7 : gfc_init_se (&argse, NULL);
1137 : 7 : argse.descriptor_only = 1;
1138 : 7 : gfc_conv_expr_descriptor (&argse, code->expr1);
1139 : 7 : gfc_add_block_to_block (&se.pre, &argse.pre);
1140 : 7 : desc = argse.expr;
1141 : 7 : *ar = ar2;
1142 : :
1143 : 7 : extent = build_one_cst (gfc_array_index_type);
1144 : 21 : for (i = 0; i < ar->dimen; i++)
1145 : : {
1146 : 7 : gfc_init_se (&argse, NULL);
1147 : 7 : gfc_conv_expr_type (&argse, ar->start[i], gfc_array_index_type);
1148 : 7 : gfc_add_block_to_block (&argse.pre, &argse.pre);
1149 : 7 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
1150 : 7 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
1151 : 7 : TREE_TYPE (lbound), argse.expr, lbound);
1152 : 7 : tmp = fold_build2_loc (input_location, MULT_EXPR,
1153 : 7 : TREE_TYPE (tmp), extent, tmp);
1154 : 7 : index = fold_build2_loc (input_location, PLUS_EXPR,
1155 : 7 : TREE_TYPE (tmp), index, tmp);
1156 : 7 : if (i < ar->dimen - 1)
1157 : : {
1158 : 0 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
1159 : 0 : tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
1160 : 0 : extent = fold_build2_loc (input_location, MULT_EXPR,
1161 : 0 : TREE_TYPE (tmp), extent, tmp);
1162 : : }
1163 : : }
1164 : : }
1165 : :
1166 : : /* errmsg. */
1167 : 20 : if (code->expr3)
1168 : : {
1169 : 0 : gfc_init_se (&argse, NULL);
1170 : 0 : argse.want_pointer = 1;
1171 : 0 : gfc_conv_expr (&argse, code->expr3);
1172 : 0 : gfc_add_block_to_block (&se.pre, &argse.pre);
1173 : 0 : errmsg = argse.expr;
1174 : 0 : errmsg_len = fold_convert (size_type_node, argse.string_length);
1175 : : }
1176 : : else
1177 : : {
1178 : 20 : errmsg = null_pointer_node;
1179 : 20 : errmsg_len = build_zero_cst (size_type_node);
1180 : : }
1181 : :
1182 : 20 : if (stat != null_pointer_node && TREE_TYPE (stat) != integer_type_node)
1183 : : {
1184 : 0 : stat2 = stat;
1185 : 0 : stat = gfc_create_var (integer_type_node, "stat");
1186 : : }
1187 : :
1188 : 20 : index = fold_convert (size_type_node, index);
1189 : 20 : if (op == EXEC_EVENT_POST)
1190 : 12 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_event_post, 6,
1191 : : token, index, image_index,
1192 : 12 : stat != null_pointer_node
1193 : 2 : ? gfc_build_addr_expr (NULL, stat) : stat,
1194 : : errmsg, errmsg_len);
1195 : : else
1196 : 8 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_event_wait, 6,
1197 : : token, index, until_count,
1198 : 8 : stat != null_pointer_node
1199 : 2 : ? gfc_build_addr_expr (NULL, stat) : stat,
1200 : : errmsg, errmsg_len);
1201 : 20 : gfc_add_expr_to_block (&se.pre, tmp);
1202 : :
1203 : : /* It guarantees memory consistency within the same segment */
1204 : 20 : tmp = gfc_build_string_const (strlen ("memory")+1, "memory"),
1205 : 20 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1206 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
1207 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
1208 : 20 : ASM_VOLATILE_P (tmp) = 1;
1209 : 20 : gfc_add_expr_to_block (&se.pre, tmp);
1210 : :
1211 : 20 : if (stat2 != NULL_TREE)
1212 : 0 : gfc_add_modify (&se.pre, stat2, fold_convert (TREE_TYPE (stat2), stat));
1213 : :
1214 : 20 : return gfc_finish_block (&se.pre);
1215 : : }
1216 : :
1217 : : tree
1218 : 718 : gfc_trans_sync (gfc_code *code, gfc_exec_op type)
1219 : : {
1220 : 718 : gfc_se se, argse;
1221 : 718 : tree tmp;
1222 : 718 : tree images = NULL_TREE, stat = NULL_TREE,
1223 : 718 : errmsg = NULL_TREE, errmsglen = NULL_TREE;
1224 : :
1225 : : /* Short cut: For single images without bound checking or without STAT=,
1226 : : return early. (ERRMSG= is always untouched for -fcoarray=single.) */
1227 : 718 : if (!code->expr2 && !(gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
1228 : 620 : && flag_coarray != GFC_FCOARRAY_LIB)
1229 : : return NULL_TREE;
1230 : :
1231 : 392 : gfc_init_se (&se, NULL);
1232 : 392 : gfc_start_block (&se.pre);
1233 : :
1234 : 392 : if (code->expr1 && code->expr1->rank == 0)
1235 : : {
1236 : 13 : gfc_init_se (&argse, NULL);
1237 : 13 : gfc_conv_expr_val (&argse, code->expr1);
1238 : 13 : images = argse.expr;
1239 : : }
1240 : :
1241 : 392 : if (code->expr2)
1242 : : {
1243 : 71 : gcc_assert (code->expr2->expr_type == EXPR_VARIABLE
1244 : : || code->expr2->expr_type == EXPR_FUNCTION);
1245 : 71 : gfc_init_se (&argse, NULL);
1246 : 71 : gfc_conv_expr_val (&argse, code->expr2);
1247 : 71 : stat = argse.expr;
1248 : : }
1249 : : else
1250 : 321 : stat = null_pointer_node;
1251 : :
1252 : 392 : if (code->expr3 && flag_coarray == GFC_FCOARRAY_LIB)
1253 : : {
1254 : 14 : gcc_assert (code->expr3->expr_type == EXPR_VARIABLE
1255 : : || code->expr3->expr_type == EXPR_FUNCTION);
1256 : 14 : gfc_init_se (&argse, NULL);
1257 : 14 : argse.want_pointer = 1;
1258 : 14 : gfc_conv_expr (&argse, code->expr3);
1259 : 14 : gfc_conv_string_parameter (&argse);
1260 : 14 : errmsg = gfc_build_addr_expr (NULL, argse.expr);
1261 : 14 : errmsglen = fold_convert (size_type_node, argse.string_length);
1262 : : }
1263 : 378 : else if (flag_coarray == GFC_FCOARRAY_LIB)
1264 : : {
1265 : 318 : errmsg = null_pointer_node;
1266 : 318 : errmsglen = build_int_cst (size_type_node, 0);
1267 : : }
1268 : :
1269 : : /* Check SYNC IMAGES(imageset) for valid image index.
1270 : : FIXME: Add a check for image-set arrays. */
1271 : 392 : if (code->expr1 && (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
1272 : 13 : && code->expr1->rank == 0)
1273 : : {
1274 : 11 : tree images2 = fold_convert (integer_type_node, images);
1275 : 11 : tree cond;
1276 : 11 : if (flag_coarray != GFC_FCOARRAY_LIB)
1277 : 4 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
1278 : 4 : images, build_int_cst (TREE_TYPE (images), 1));
1279 : : else
1280 : : {
1281 : 7 : tree cond2;
1282 : 7 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_num_images,
1283 : : 2, integer_zero_node,
1284 : 7 : build_int_cst (integer_type_node, -1));
1285 : 7 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
1286 : : images2, tmp);
1287 : 7 : cond2 = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
1288 : : images,
1289 : 7 : build_int_cst (TREE_TYPE (images), 1));
1290 : 7 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
1291 : : logical_type_node, cond, cond2);
1292 : : }
1293 : 11 : gfc_trans_runtime_check (true, false, cond, &se.pre,
1294 : 11 : &code->expr1->where, "Invalid image number "
1295 : : "%d in SYNC IMAGES", images2);
1296 : : }
1297 : :
1298 : : /* Per F2008, 8.5.1, a SYNC MEMORY is implied by calling the
1299 : : image control statements SYNC IMAGES and SYNC ALL. */
1300 : 392 : if (flag_coarray == GFC_FCOARRAY_LIB)
1301 : : {
1302 : 332 : tmp = gfc_build_string_const (strlen ("memory")+1, "memory"),
1303 : 332 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1304 : : gfc_build_string_const (1, ""), NULL_TREE, NULL_TREE,
1305 : : tree_cons (NULL_TREE, tmp, NULL_TREE), NULL_TREE);
1306 : 332 : ASM_VOLATILE_P (tmp) = 1;
1307 : 332 : gfc_add_expr_to_block (&se.pre, tmp);
1308 : : }
1309 : :
1310 : 392 : if (flag_coarray != GFC_FCOARRAY_LIB)
1311 : : {
1312 : : /* Set STAT to zero. */
1313 : 60 : if (code->expr2)
1314 : 48 : gfc_add_modify (&se.pre, stat, build_int_cst (TREE_TYPE (stat), 0));
1315 : : }
1316 : 332 : else if (type == EXEC_SYNC_ALL || type == EXEC_SYNC_MEMORY)
1317 : : {
1318 : : /* SYNC ALL => stat == null_pointer_node
1319 : : SYNC ALL(stat=s) => stat has an integer type
1320 : :
1321 : : If "stat" has the wrong integer type, use a temp variable of
1322 : : the right type and later cast the result back into "stat". */
1323 : 315 : if (stat == null_pointer_node || TREE_TYPE (stat) == integer_type_node)
1324 : : {
1325 : 315 : if (TREE_TYPE (stat) == integer_type_node)
1326 : 19 : stat = gfc_build_addr_expr (NULL, stat);
1327 : :
1328 : 315 : if(type == EXEC_SYNC_MEMORY)
1329 : 14 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_memory,
1330 : : 3, stat, errmsg, errmsglen);
1331 : : else
1332 : 301 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_all,
1333 : : 3, stat, errmsg, errmsglen);
1334 : :
1335 : 315 : gfc_add_expr_to_block (&se.pre, tmp);
1336 : : }
1337 : : else
1338 : : {
1339 : 0 : tree tmp_stat = gfc_create_var (integer_type_node, "stat");
1340 : :
1341 : 0 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_all,
1342 : : 3, gfc_build_addr_expr (NULL, tmp_stat),
1343 : : errmsg, errmsglen);
1344 : 0 : gfc_add_expr_to_block (&se.pre, tmp);
1345 : :
1346 : 0 : gfc_add_modify (&se.pre, stat,
1347 : 0 : fold_convert (TREE_TYPE (stat), tmp_stat));
1348 : : }
1349 : : }
1350 : : else
1351 : : {
1352 : 17 : tree len;
1353 : :
1354 : 17 : gcc_assert (type == EXEC_SYNC_IMAGES);
1355 : :
1356 : 17 : if (!code->expr1)
1357 : : {
1358 : 6 : len = build_int_cst (integer_type_node, -1);
1359 : 6 : images = null_pointer_node;
1360 : : }
1361 : 11 : else if (code->expr1->rank == 0)
1362 : : {
1363 : 9 : len = integer_one_node;
1364 : 9 : images = gfc_build_addr_expr (NULL_TREE, images);
1365 : : }
1366 : : else
1367 : : {
1368 : : /* FIXME. */
1369 : 2 : if (code->expr1->ts.kind != gfc_c_int_kind)
1370 : 0 : gfc_fatal_error ("Sorry, only support for integer kind %d "
1371 : : "implemented for image-set at %L",
1372 : : gfc_c_int_kind, &code->expr1->where);
1373 : :
1374 : 2 : gfc_conv_array_parameter (&se, code->expr1, true, NULL, NULL, &len);
1375 : 2 : images = se.expr;
1376 : :
1377 : 2 : tmp = gfc_typenode_for_spec (&code->expr1->ts);
1378 : 2 : if (GFC_ARRAY_TYPE_P (tmp) || GFC_DESCRIPTOR_TYPE_P (tmp))
1379 : 0 : tmp = gfc_get_element_type (tmp);
1380 : :
1381 : 4 : len = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1382 : 2 : TREE_TYPE (len), len,
1383 : 2 : fold_convert (TREE_TYPE (len),
1384 : : TYPE_SIZE_UNIT (tmp)));
1385 : 2 : len = fold_convert (integer_type_node, len);
1386 : : }
1387 : :
1388 : : /* SYNC IMAGES(imgs) => stat == null_pointer_node
1389 : : SYNC IMAGES(imgs,stat=s) => stat has an integer type
1390 : :
1391 : : If "stat" has the wrong integer type, use a temp variable of
1392 : : the right type and later cast the result back into "stat". */
1393 : 17 : if (stat == null_pointer_node || TREE_TYPE (stat) == integer_type_node)
1394 : : {
1395 : 17 : if (TREE_TYPE (stat) == integer_type_node)
1396 : 4 : stat = gfc_build_addr_expr (NULL, stat);
1397 : :
1398 : 17 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_images,
1399 : : 5, fold_convert (integer_type_node, len),
1400 : : images, stat, errmsg, errmsglen);
1401 : 17 : gfc_add_expr_to_block (&se.pre, tmp);
1402 : : }
1403 : : else
1404 : : {
1405 : 0 : tree tmp_stat = gfc_create_var (integer_type_node, "stat");
1406 : :
1407 : 0 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_images,
1408 : : 5, fold_convert (integer_type_node, len),
1409 : : images, gfc_build_addr_expr (NULL, tmp_stat),
1410 : : errmsg, errmsglen);
1411 : 0 : gfc_add_expr_to_block (&se.pre, tmp);
1412 : :
1413 : 0 : gfc_add_modify (&se.pre, stat,
1414 : 0 : fold_convert (TREE_TYPE (stat), tmp_stat));
1415 : : }
1416 : : }
1417 : :
1418 : 392 : return gfc_finish_block (&se.pre);
1419 : : }
1420 : :
1421 : :
1422 : : /* Generate GENERIC for the IF construct. This function also deals with
1423 : : the simple IF statement, because the front end translates the IF
1424 : : statement into an IF construct.
1425 : :
1426 : : We translate:
1427 : :
1428 : : IF (cond) THEN
1429 : : then_clause
1430 : : ELSEIF (cond2)
1431 : : elseif_clause
1432 : : ELSE
1433 : : else_clause
1434 : : ENDIF
1435 : :
1436 : : into:
1437 : :
1438 : : pre_cond_s;
1439 : : if (cond_s)
1440 : : {
1441 : : then_clause;
1442 : : }
1443 : : else
1444 : : {
1445 : : pre_cond_s
1446 : : if (cond_s)
1447 : : {
1448 : : elseif_clause
1449 : : }
1450 : : else
1451 : : {
1452 : : else_clause;
1453 : : }
1454 : : }
1455 : :
1456 : : where COND_S is the simplified version of the predicate. PRE_COND_S
1457 : : are the pre side-effects produced by the translation of the
1458 : : conditional.
1459 : : We need to build the chain recursively otherwise we run into
1460 : : problems with folding incomplete statements. */
1461 : :
1462 : : static tree
1463 : 216786 : gfc_trans_if_1 (gfc_code * code)
1464 : : {
1465 : 216786 : gfc_se if_se;
1466 : 216786 : tree stmt, elsestmt;
1467 : 216786 : location_t loc, saved_loc = UNKNOWN_LOCATION;
1468 : :
1469 : : /* Check for an unconditional ELSE clause. */
1470 : 216786 : if (!code->expr1)
1471 : 6592 : return gfc_trans_code (code->next);
1472 : :
1473 : : /* Initialize a statement builder for each block. Puts in NULL_TREEs. */
1474 : 210194 : gfc_init_se (&if_se, NULL);
1475 : 210194 : gfc_start_block (&if_se.pre);
1476 : :
1477 : : /* Calculate the IF condition expression. */
1478 : 210194 : if (GFC_LOCUS_IS_SET (code->expr1->where))
1479 : : {
1480 : 210194 : saved_loc = input_location;
1481 : 210194 : input_location = gfc_get_location (&code->expr1->where);
1482 : : }
1483 : :
1484 : 210194 : gfc_conv_expr_val (&if_se, code->expr1);
1485 : :
1486 : 210194 : if (saved_loc != UNKNOWN_LOCATION)
1487 : 210194 : input_location = saved_loc;
1488 : :
1489 : : /* Translate the THEN clause. */
1490 : 210194 : stmt = gfc_trans_code (code->next);
1491 : :
1492 : : /* Translate the ELSE clause. */
1493 : 210194 : if (code->block)
1494 : 6834 : elsestmt = gfc_trans_if_1 (code->block);
1495 : : else
1496 : 203360 : elsestmt = build_empty_stmt (input_location);
1497 : :
1498 : : /* Build the condition expression and add it to the condition block. */
1499 : 209616 : loc = (GFC_LOCUS_IS_SET (code->expr1->where)
1500 : 419810 : ? gfc_get_location (&code->expr1->where) : input_location);
1501 : 210194 : stmt = fold_build3_loc (loc, COND_EXPR, void_type_node, if_se.expr, stmt,
1502 : : elsestmt);
1503 : :
1504 : 210194 : gfc_add_expr_to_block (&if_se.pre, stmt);
1505 : :
1506 : : /* Finish off this statement. */
1507 : 210194 : return gfc_finish_block (&if_se.pre);
1508 : : }
1509 : :
1510 : : tree
1511 : 209952 : gfc_trans_if (gfc_code * code)
1512 : : {
1513 : 209952 : stmtblock_t body;
1514 : 209952 : tree exit_label;
1515 : :
1516 : : /* Create exit label so it is available for trans'ing the body code. */
1517 : 209952 : exit_label = gfc_build_label_decl (NULL_TREE);
1518 : 209952 : code->exit_label = exit_label;
1519 : :
1520 : : /* Translate the actual code in code->block. */
1521 : 209952 : gfc_init_block (&body);
1522 : 209952 : gfc_add_expr_to_block (&body, gfc_trans_if_1 (code->block));
1523 : :
1524 : : /* Add exit label. */
1525 : 209952 : gfc_add_expr_to_block (&body, build1_v (LABEL_EXPR, exit_label));
1526 : :
1527 : 209952 : return gfc_finish_block (&body);
1528 : : }
1529 : :
1530 : :
1531 : : /* Translate an arithmetic IF expression.
1532 : :
1533 : : IF (cond) label1, label2, label3 translates to
1534 : :
1535 : : if (cond <= 0)
1536 : : {
1537 : : if (cond < 0)
1538 : : goto label1;
1539 : : else // cond == 0
1540 : : goto label2;
1541 : : }
1542 : : else // cond > 0
1543 : : goto label3;
1544 : :
1545 : : An optimized version can be generated in case of equal labels.
1546 : : E.g., if label1 is equal to label2, we can translate it to
1547 : :
1548 : : if (cond <= 0)
1549 : : goto label1;
1550 : : else
1551 : : goto label3;
1552 : : */
1553 : :
1554 : : tree
1555 : 64 : gfc_trans_arithmetic_if (gfc_code * code)
1556 : : {
1557 : 64 : gfc_se se;
1558 : 64 : tree tmp;
1559 : 64 : tree branch1;
1560 : 64 : tree branch2;
1561 : 64 : tree zero;
1562 : :
1563 : : /* Start a new block. */
1564 : 64 : gfc_init_se (&se, NULL);
1565 : 64 : gfc_start_block (&se.pre);
1566 : :
1567 : : /* Pre-evaluate COND. */
1568 : 64 : gfc_conv_expr_val (&se, code->expr1);
1569 : 64 : se.expr = gfc_evaluate_now (se.expr, &se.pre);
1570 : :
1571 : : /* Build something to compare with. */
1572 : 64 : zero = gfc_build_const (TREE_TYPE (se.expr), integer_zero_node);
1573 : :
1574 : 64 : if (code->label1->value != code->label2->value)
1575 : : {
1576 : : /* If (cond < 0) take branch1 else take branch2.
1577 : : First build jumps to the COND .LT. 0 and the COND .EQ. 0 cases. */
1578 : 49 : branch1 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label1));
1579 : 49 : branch2 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label2));
1580 : :
1581 : 49 : if (code->label1->value != code->label3->value)
1582 : 36 : tmp = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
1583 : : se.expr, zero);
1584 : : else
1585 : 13 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
1586 : : se.expr, zero);
1587 : :
1588 : 49 : branch1 = fold_build3_loc (input_location, COND_EXPR, void_type_node,
1589 : : tmp, branch1, branch2);
1590 : : }
1591 : : else
1592 : 15 : branch1 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label1));
1593 : :
1594 : 64 : if (code->label1->value != code->label3->value
1595 : 45 : && code->label2->value != code->label3->value)
1596 : : {
1597 : : /* if (cond <= 0) take branch1 else take branch2. */
1598 : 37 : branch2 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label3));
1599 : 37 : tmp = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
1600 : : se.expr, zero);
1601 : 37 : branch1 = fold_build3_loc (input_location, COND_EXPR, void_type_node,
1602 : : tmp, branch1, branch2);
1603 : : }
1604 : :
1605 : : /* Append the COND_EXPR to the evaluation of COND, and return. */
1606 : 64 : gfc_add_expr_to_block (&se.pre, branch1);
1607 : 64 : return gfc_finish_block (&se.pre);
1608 : : }
1609 : :
1610 : :
1611 : : /* Translate a CRITICAL block. */
1612 : : tree
1613 : 21 : gfc_trans_critical (gfc_code *code)
1614 : : {
1615 : 21 : stmtblock_t block;
1616 : 21 : tree tmp, token = NULL_TREE;
1617 : :
1618 : 21 : gfc_start_block (&block);
1619 : :
1620 : 21 : if (flag_coarray == GFC_FCOARRAY_LIB)
1621 : : {
1622 : 5 : tree zero_size = build_zero_cst (size_type_node);
1623 : 5 : token = gfc_get_symbol_decl (code->resolved_sym);
1624 : 5 : token = GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (token));
1625 : 5 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_lock, 7,
1626 : : token, zero_size, integer_one_node,
1627 : : null_pointer_node, null_pointer_node,
1628 : : null_pointer_node, zero_size);
1629 : 5 : gfc_add_expr_to_block (&block, tmp);
1630 : :
1631 : : /* It guarantees memory consistency within the same segment */
1632 : 5 : tmp = gfc_build_string_const (strlen ("memory")+1, "memory"),
1633 : 5 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1634 : : gfc_build_string_const (1, ""),
1635 : : NULL_TREE, NULL_TREE,
1636 : : tree_cons (NULL_TREE, tmp, NULL_TREE),
1637 : : NULL_TREE);
1638 : 5 : ASM_VOLATILE_P (tmp) = 1;
1639 : :
1640 : 5 : gfc_add_expr_to_block (&block, tmp);
1641 : : }
1642 : :
1643 : 21 : tmp = gfc_trans_code (code->block->next);
1644 : 21 : gfc_add_expr_to_block (&block, tmp);
1645 : :
1646 : 21 : if (flag_coarray == GFC_FCOARRAY_LIB)
1647 : : {
1648 : 5 : tree zero_size = build_zero_cst (size_type_node);
1649 : 5 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_unlock, 6,
1650 : : token, zero_size, integer_one_node,
1651 : : null_pointer_node, null_pointer_node,
1652 : : zero_size);
1653 : 5 : gfc_add_expr_to_block (&block, tmp);
1654 : :
1655 : : /* It guarantees memory consistency within the same segment */
1656 : 5 : tmp = gfc_build_string_const (strlen ("memory")+1, "memory"),
1657 : 5 : tmp = build5_loc (input_location, ASM_EXPR, void_type_node,
1658 : : gfc_build_string_const (1, ""),
1659 : : NULL_TREE, NULL_TREE,
1660 : : tree_cons (NULL_TREE, tmp, NULL_TREE),
1661 : : NULL_TREE);
1662 : 5 : ASM_VOLATILE_P (tmp) = 1;
1663 : :
1664 : 5 : gfc_add_expr_to_block (&block, tmp);
1665 : : }
1666 : :
1667 : 21 : return gfc_finish_block (&block);
1668 : : }
1669 : :
1670 : :
1671 : : /* Return true, when the class has a _len component. */
1672 : :
1673 : : static bool
1674 : 711 : class_has_len_component (gfc_symbol *sym)
1675 : : {
1676 : 711 : gfc_component *comp = sym->ts.u.derived->components;
1677 : 2040 : while (comp)
1678 : : {
1679 : 1746 : if (strcmp (comp->name, "_len") == 0)
1680 : : return true;
1681 : 1329 : comp = comp->next;
1682 : : }
1683 : : return false;
1684 : : }
1685 : :
1686 : :
1687 : : static void
1688 : 1720 : copy_descriptor (stmtblock_t *block, tree dst, tree src, int rank)
1689 : : {
1690 : 1720 : int n;
1691 : 1720 : tree dim;
1692 : 1720 : tree tmp;
1693 : 1720 : tree tmp2;
1694 : 1720 : tree size;
1695 : 1720 : tree offset;
1696 : :
1697 : 1720 : offset = gfc_index_zero_node;
1698 : :
1699 : : /* Use memcpy to copy the descriptor. The size is the minimum of
1700 : : the sizes of 'src' and 'dst'. This avoids a non-trivial conversion. */
1701 : 1720 : tmp = TYPE_SIZE_UNIT (TREE_TYPE (src));
1702 : 1720 : tmp2 = TYPE_SIZE_UNIT (TREE_TYPE (dst));
1703 : 1720 : size = fold_build2_loc (input_location, MIN_EXPR,
1704 : 1720 : TREE_TYPE (tmp), tmp, tmp2);
1705 : 1720 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
1706 : 1720 : tmp = build_call_expr_loc (input_location, tmp, 3,
1707 : : gfc_build_addr_expr (NULL_TREE, dst),
1708 : : gfc_build_addr_expr (NULL_TREE, src),
1709 : : fold_convert (size_type_node, size));
1710 : 1720 : gfc_add_expr_to_block (block, tmp);
1711 : :
1712 : : /* Set the offset correctly. */
1713 : 8592 : for (n = 0; n < rank; n++)
1714 : : {
1715 : 5152 : dim = gfc_rank_cst[n];
1716 : 5152 : tmp = gfc_conv_descriptor_lbound_get (src, dim);
1717 : 5152 : tmp2 = gfc_conv_descriptor_stride_get (src, dim);
1718 : 5152 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (tmp),
1719 : : tmp, tmp2);
1720 : 5152 : offset = fold_build2_loc (input_location, MINUS_EXPR,
1721 : 5152 : TREE_TYPE (offset), offset, tmp);
1722 : 5152 : offset = gfc_evaluate_now (offset, block);
1723 : : }
1724 : :
1725 : 1720 : gfc_conv_descriptor_offset_set (block, dst, offset);
1726 : 1720 : }
1727 : :
1728 : :
1729 : : /* Do proper initialization for ASSOCIATE names. */
1730 : :
1731 : : static void
1732 : 6827 : trans_associate_var (gfc_symbol *sym, gfc_wrapped_block *block)
1733 : : {
1734 : 6827 : gfc_expr *e;
1735 : 6827 : tree tmp;
1736 : 6827 : bool class_target;
1737 : 6827 : bool unlimited;
1738 : 6827 : tree desc;
1739 : 6827 : tree offset;
1740 : 6827 : tree dim;
1741 : 6827 : int n;
1742 : 6827 : tree charlen;
1743 : 6827 : bool need_len_assign;
1744 : 6827 : bool whole_array = true;
1745 : 6827 : bool same_class;
1746 : 6827 : gfc_ref *ref;
1747 : 6827 : gfc_symbol *sym2;
1748 : :
1749 : 6827 : gcc_assert (sym->assoc);
1750 : 6827 : e = sym->assoc->target;
1751 : :
1752 : 16041 : class_target = (e->expr_type == EXPR_VARIABLE)
1753 : 6205 : && e->ts.type == BT_CLASS
1754 : 9294 : && (gfc_is_class_scalar_expr (e)
1755 : 1963 : || gfc_is_class_array_ref (e, NULL));
1756 : 2387 : same_class = class_target && sym->ts.type == BT_CLASS
1757 : 1066 : && strcmp (sym->ts.u.derived->name, e->ts.u.derived->name) == 0;
1758 : :
1759 : 6827 : unlimited = UNLIMITED_POLY (e);
1760 : :
1761 : 15068 : for (ref = e->ref; ref; ref = ref->next)
1762 : 8289 : if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL
1763 : 3301 : && ref->u.ar.dimen != 0 && ref->next)
1764 : : {
1765 : : whole_array = false;
1766 : : break;
1767 : : }
1768 : :
1769 : : /* Assignments to the string length need to be generated, when
1770 : : ( sym is a char array or
1771 : : sym has a _len component)
1772 : : and the associated expression is unlimited polymorphic, which is
1773 : : not (yet) correctly in 'unlimited', because for an already associated
1774 : : BT_DERIVED the u-poly flag is not set, i.e.,
1775 : : __tmp_CHARACTER_0_1 => w => arg
1776 : : ^ generated temp ^ from code, the w does not have the u-poly
1777 : : flag set, where UNLIMITED_POLY(e) expects it. */
1778 : 5565 : need_len_assign = ((unlimited || (e->ts.type == BT_DERIVED
1779 : 2230 : && e->ts.u.derived->attr.unlimited_polymorphic))
1780 : 2051 : && (sym->ts.type == BT_CHARACTER
1781 : 1321 : || ((sym->ts.type == BT_CLASS || sym->ts.type == BT_DERIVED)
1782 : 711 : && class_has_len_component (sym)))
1783 : 7974 : && !sym->attr.select_rank_temporary);
1784 : :
1785 : : /* Do a `pointer assignment' with updated descriptor (or assign descriptor
1786 : : to array temporary) for arrays with either unknown shape or if associating
1787 : : to a variable. Select rank temporaries need somewhat different treatment
1788 : : to other associate names and case temporaries. This because the selector
1789 : : is assumed rank and so the offset in particular has to be changed. Also,
1790 : : the case temporaries carry both allocatable and target attributes if
1791 : : present in the selector. This means that an allocatation or change of
1792 : : association can occur and so has to be dealt with. */
1793 : 6827 : if (sym->attr.select_rank_temporary)
1794 : : {
1795 : 1362 : gfc_se se;
1796 : 1362 : tree class_decl = NULL_TREE;
1797 : 1362 : int rank = 0;
1798 : 1362 : bool class_ptr;
1799 : :
1800 : 1362 : sym2 = e->symtree->n.sym;
1801 : 1362 : gfc_init_se (&se, NULL);
1802 : 1362 : if (e->ts.type == BT_CLASS)
1803 : : {
1804 : : /* Go straight to the class data. */
1805 : 145 : if (sym2->attr.dummy && !sym2->attr.optional)
1806 : : {
1807 : 121 : class_decl = sym2->backend_decl;
1808 : 121 : if (DECL_LANG_SPECIFIC (class_decl)
1809 : 121 : && GFC_DECL_SAVED_DESCRIPTOR (class_decl))
1810 : 0 : class_decl = GFC_DECL_SAVED_DESCRIPTOR (class_decl);
1811 : 121 : if (POINTER_TYPE_P (TREE_TYPE (class_decl)))
1812 : 121 : class_decl = build_fold_indirect_ref_loc (input_location,
1813 : : class_decl);
1814 : 121 : gcc_assert (GFC_CLASS_TYPE_P (TREE_TYPE (class_decl)));
1815 : 121 : se.expr = gfc_class_data_get (class_decl);
1816 : : }
1817 : : else
1818 : : {
1819 : 24 : class_decl = sym2->backend_decl;
1820 : 24 : gfc_conv_expr_descriptor (&se, e);
1821 : 24 : if (POINTER_TYPE_P (TREE_TYPE (se.expr)))
1822 : 0 : se.expr = build_fold_indirect_ref_loc (input_location,
1823 : : se.expr);
1824 : : }
1825 : :
1826 : 145 : if (CLASS_DATA (sym)->as && CLASS_DATA (sym)->as->rank > 0)
1827 : 145 : rank = CLASS_DATA (sym)->as->rank;
1828 : : }
1829 : : else
1830 : : {
1831 : 1217 : gfc_conv_expr_descriptor (&se, e);
1832 : 1217 : if (sym->as && sym->as->rank > 0)
1833 : 1168 : rank = sym->as->rank;
1834 : : }
1835 : :
1836 : 1362 : desc = sym->backend_decl;
1837 : :
1838 : : /* The SELECT TYPE mechanisms turn class temporaries into pointers, which
1839 : : point to the selector. */
1840 : 1362 : class_ptr = class_decl != NULL_TREE && POINTER_TYPE_P (TREE_TYPE (desc));
1841 : 145 : if (class_ptr)
1842 : : {
1843 : 145 : tmp = gfc_create_var (TREE_TYPE (TREE_TYPE (desc)), "class");
1844 : 145 : tmp = gfc_build_addr_expr (NULL, tmp);
1845 : 145 : gfc_add_modify (&se.pre, desc, tmp);
1846 : :
1847 : 145 : tmp = gfc_class_vptr_get (class_decl);
1848 : 145 : gfc_add_modify (&se.pre, gfc_class_vptr_get (desc), tmp);
1849 : 145 : if (UNLIMITED_POLY (sym))
1850 : 101 : gfc_add_modify (&se.pre, gfc_class_len_get (desc),
1851 : : gfc_class_len_get (class_decl));
1852 : :
1853 : 145 : desc = gfc_class_data_get (desc);
1854 : : }
1855 : :
1856 : : /* SELECT RANK temporaries can carry the allocatable and pointer
1857 : : attributes so the selector descriptor must be copied in and
1858 : : copied out. */
1859 : 1362 : if (rank > 0)
1860 : 1282 : copy_descriptor (&se.pre, desc, se.expr, rank);
1861 : : else
1862 : : {
1863 : 80 : tmp = gfc_conv_descriptor_data_get (se.expr);
1864 : 80 : gfc_add_modify (&se.pre, desc,
1865 : 80 : fold_convert (TREE_TYPE (desc), tmp));
1866 : : }
1867 : :
1868 : : /* Deal with associate_name => selector. Class associate names are
1869 : : treated in the same way as in SELECT TYPE. */
1870 : 1362 : sym2 = sym->assoc->target->symtree->n.sym;
1871 : 1362 : if (sym2->assoc && sym->assoc->target && sym2->ts.type != BT_CLASS)
1872 : : {
1873 : 54 : sym2 = sym2->assoc->target->symtree->n.sym;
1874 : 54 : se.expr = sym2->backend_decl;
1875 : :
1876 : 54 : if (POINTER_TYPE_P (TREE_TYPE (se.expr)))
1877 : 54 : se.expr = build_fold_indirect_ref_loc (input_location,
1878 : : se.expr);
1879 : : }
1880 : :
1881 : : /* There could have been reallocation. Copy descriptor back to the
1882 : : selector and update the offset. */
1883 : 1362 : if (sym->attr.allocatable || sym->attr.pointer
1884 : 996 : || (sym->ts.type == BT_CLASS
1885 : 127 : && (CLASS_DATA (sym)->attr.allocatable
1886 : 127 : || CLASS_DATA (sym)->attr.pointer)))
1887 : : {
1888 : 493 : if (rank > 0)
1889 : 438 : copy_descriptor (&se.post, se.expr, desc, rank);
1890 : : else
1891 : 55 : gfc_conv_descriptor_data_set (&se.post, se.expr, desc);
1892 : :
1893 : : /* The dynamic type could have changed too. */
1894 : 493 : if (sym->ts.type == BT_CLASS)
1895 : : {
1896 : 145 : tmp = sym->backend_decl;
1897 : 145 : if (class_ptr)
1898 : 145 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
1899 : 145 : gfc_add_modify (&se.post, gfc_class_vptr_get (class_decl),
1900 : : gfc_class_vptr_get (tmp));
1901 : 145 : if (UNLIMITED_POLY (sym))
1902 : 101 : gfc_add_modify (&se.post, gfc_class_len_get (class_decl),
1903 : : gfc_class_len_get (tmp));
1904 : : }
1905 : : }
1906 : :
1907 : 1362 : tmp = gfc_finish_block (&se.post);
1908 : :
1909 : 1362 : gfc_add_init_cleanup (block, gfc_finish_block (&se.pre), tmp);
1910 : : }
1911 : :
1912 : : /* Now all the other kinds of associate variable. */
1913 : :
1914 : : /* First we do the F202y ASSOCIATE construct with an assumed rank selector.
1915 : : Since this requires rank remapping, the simplest implementation builds an
1916 : : array reference, using the array ref attached to the association_list,
1917 : : followed by gfc_trans_pointer_assignment. */
1918 : 5465 : else if (e->rank == -1 && sym->assoc->ar)
1919 : : {
1920 : 24 : gfc_array_ref *ar;
1921 : 24 : gfc_expr *expr1 = gfc_lval_expr_from_sym (sym);
1922 : 24 : stmtblock_t init;
1923 : 24 : gfc_init_block (&init);
1924 : :
1925 : : /* Build the array reference and add to expr1. */
1926 : 24 : gfc_free_ref_list (expr1->ref);
1927 : 24 : expr1->ref = gfc_get_ref();
1928 : 24 : expr1->ref->type = REF_ARRAY;
1929 : 24 : ar = gfc_copy_array_ref (sym->assoc->ar);
1930 : 24 : expr1->ref->u.ar = *ar;
1931 : 24 : expr1->ref->u.ar.type = AR_SECTION;
1932 : :
1933 : : /* For class objects, insert the _data component reference. Since the
1934 : : associate-name is a pointer, it needs a target, which is created using
1935 : : its typespec. If unlimited polymorphic, the _len field will be filled
1936 : : by the pointer assignment. */
1937 : 24 : if (expr1->ts.type == BT_CLASS)
1938 : : {
1939 : 12 : need_len_assign = false;
1940 : 12 : gfc_ref *ref;
1941 : 12 : gfc_find_component (expr1->ts.u.derived, "_data", true, true, &ref);
1942 : 12 : ref->next = expr1->ref;
1943 : 12 : expr1->ref = ref;
1944 : 12 : expr1->rank = CLASS_DATA (sym)->as->rank;
1945 : 12 : tmp = gfc_create_var (gfc_typenode_for_spec (&sym->ts), "class");
1946 : 12 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
1947 : 12 : gfc_add_modify (&init, sym->backend_decl, tmp);
1948 : : }
1949 : :
1950 : : /* Do the pointer assignment and clean up. */
1951 : 24 : gfc_expr *expr2 = gfc_copy_expr (e);
1952 : 24 : gfc_add_expr_to_block (&init,
1953 : : gfc_trans_pointer_assignment (expr1, expr2));
1954 : 24 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL);
1955 : 24 : gfc_free_expr (expr1);
1956 : 24 : gfc_free_expr (expr2);
1957 : 24 : }
1958 : 5441 : else if ((sym->attr.dimension || sym->attr.codimension) && !class_target
1959 : 605 : && (sym->as->type == AS_DEFERRED || sym->assoc->variable))
1960 : : {
1961 : 605 : gfc_se se;
1962 : 605 : tree desc;
1963 : 605 : bool cst_array_ctor;
1964 : 605 : stmtblock_t init;
1965 : 605 : gfc_init_block (&init);
1966 : :
1967 : 605 : desc = sym->backend_decl;
1968 : 1210 : cst_array_ctor = e->expr_type == EXPR_ARRAY
1969 : 97 : && gfc_constant_array_constructor_p (e->value.constructor)
1970 : 623 : && e->ts.type != BT_CHARACTER;
1971 : :
1972 : : /* If association is to an expression, evaluate it and create temporary.
1973 : : Otherwise, get descriptor of target for pointer assignment. */
1974 : 605 : gfc_init_se (&se, NULL);
1975 : :
1976 : 605 : if (sym->assoc->variable || cst_array_ctor)
1977 : : {
1978 : 387 : se.direct_byref = 1;
1979 : 387 : se.use_offset = 1;
1980 : 387 : se.expr = desc;
1981 : 387 : GFC_DECL_PTR_ARRAY_P (sym->backend_decl) = 1;
1982 : : }
1983 : :
1984 : 605 : if (sym->attr.codimension && !sym->attr.dimension)
1985 : 8 : se.want_coarray = 1;
1986 : :
1987 : 605 : gfc_conv_expr_descriptor (&se, e);
1988 : :
1989 : 605 : if (sym->ts.type == BT_CHARACTER
1990 : 266 : && !sym->attr.select_type_temporary
1991 : 266 : && sym->ts.u.cl->backend_decl
1992 : 266 : && VAR_P (sym->ts.u.cl->backend_decl)
1993 : 222 : && se.string_length
1994 : 222 : && se.string_length != sym->ts.u.cl->backend_decl)
1995 : : {
1996 : : /* When the target is a variable, its length is already known. */
1997 : 222 : tree len = fold_convert (TREE_TYPE (sym->ts.u.cl->backend_decl),
1998 : : se.string_length);
1999 : 222 : if (e->expr_type == EXPR_VARIABLE)
2000 : 130 : gfc_add_modify (&init, sym->ts.u.cl->backend_decl, len);
2001 : : else
2002 : 92 : gfc_add_modify (&se.pre, sym->ts.u.cl->backend_decl, len);
2003 : : }
2004 : :
2005 : : /* If we didn't already do the pointer assignment, set associate-name
2006 : : descriptor to the one generated for the temporary. */
2007 : 605 : if ((!sym->assoc->variable && !cst_array_ctor)
2008 : 387 : || !whole_array)
2009 : : {
2010 : 218 : int dim;
2011 : :
2012 : 218 : if (whole_array)
2013 : 218 : gfc_add_modify (&se.pre, desc, se.expr);
2014 : :
2015 : : /* The generated descriptor has lower bound zero (as array
2016 : : temporary), shift bounds so we get lower bounds of 1. */
2017 : 555 : for (dim = 0; dim < e->rank; ++dim)
2018 : 289 : gfc_conv_shift_descriptor_lbound (&se.pre, desc,
2019 : : dim, gfc_index_one_node);
2020 : : }
2021 : :
2022 : : /* If this is a subreference array pointer associate name use the
2023 : : associate variable element size for the value of 'span'. */
2024 : 605 : if (sym->attr.subref_array_pointer && !se.direct_byref)
2025 : : {
2026 : 6 : gcc_assert (e->expr_type == EXPR_VARIABLE);
2027 : 6 : tmp = gfc_get_array_span (se.expr, e);
2028 : :
2029 : 6 : gfc_conv_descriptor_span_set (&se.pre, desc, tmp);
2030 : : }
2031 : :
2032 : 605 : if (e->expr_type == EXPR_FUNCTION
2033 : 89 : && sym->ts.type == BT_DERIVED
2034 : 42 : && sym->ts.u.derived
2035 : 42 : && sym->ts.u.derived->attr.pdt_type)
2036 : : {
2037 : 0 : tmp = gfc_deallocate_pdt_comp (sym->ts.u.derived, se.expr,
2038 : 0 : sym->as->rank);
2039 : 0 : gfc_add_expr_to_block (&se.post, tmp);
2040 : : }
2041 : :
2042 : : /* Done, register stuff as init / cleanup code. */
2043 : 605 : gfc_add_block_to_block (&init, &se.pre);
2044 : 605 : gfc_add_init_cleanup (block, gfc_finish_block (&init),
2045 : : gfc_finish_block (&se.post));
2046 : 605 : }
2047 : :
2048 : : /* Temporaries, arising from TYPE IS, just need the descriptor of class
2049 : : arrays to be assigned directly. */
2050 : 4836 : else if (class_target && (sym->attr.dimension || sym->attr.codimension)
2051 : 1321 : && (sym->ts.type == BT_DERIVED || unlimited))
2052 : : {
2053 : 1321 : gfc_se se;
2054 : :
2055 : 1321 : gfc_init_se (&se, NULL);
2056 : 1321 : se.descriptor_only = 1;
2057 : : /* In a select type the (temporary) associate variable shall point to
2058 : : a standard fortran array (lower bound == 1), but conv_expr ()
2059 : : just maps to the input array in the class object, whose lbound may
2060 : : be arbitrary. conv_expr_descriptor solves this by inserting a
2061 : : temporary array descriptor. */
2062 : 1321 : gfc_conv_expr_descriptor (&se, e);
2063 : :
2064 : 1321 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se.expr))
2065 : : || GFC_ARRAY_TYPE_P (TREE_TYPE (se.expr)));
2066 : 1321 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (sym->backend_decl)));
2067 : :
2068 : 1321 : if (sym->ts.type == BT_CHARACTER)
2069 : : {
2070 : : /* Emit a DECL_EXPR for the variable sized array type in so the
2071 : : gimplification of its type sizes works correctly. */
2072 : 302 : tree arraytype;
2073 : 302 : tmp = TREE_TYPE (sym->backend_decl);
2074 : 302 : arraytype = TREE_TYPE (GFC_TYPE_ARRAY_DATAPTR_TYPE (tmp));
2075 : 302 : if (! TYPE_NAME (arraytype))
2076 : 51 : TYPE_NAME (arraytype) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
2077 : : NULL_TREE, arraytype);
2078 : 302 : gfc_add_expr_to_block (&se.pre, build1 (DECL_EXPR,
2079 : 302 : arraytype, TYPE_NAME (arraytype)));
2080 : : }
2081 : :
2082 : 1321 : if (GFC_ARRAY_TYPE_P (TREE_TYPE (se.expr)))
2083 : : {
2084 : 0 : if (INDIRECT_REF_P (se.expr))
2085 : 0 : tmp = TREE_OPERAND (se.expr, 0);
2086 : : else
2087 : : tmp = se.expr;
2088 : :
2089 : 0 : gfc_add_modify (&se.pre, sym->backend_decl,
2090 : 0 : gfc_class_data_get (GFC_DECL_SAVED_DESCRIPTOR (tmp)));
2091 : : }
2092 : : else
2093 : 1321 : gfc_add_modify (&se.pre, sym->backend_decl, se.expr);
2094 : :
2095 : 1321 : if (unlimited)
2096 : : {
2097 : : /* Recover the dtype, which has been overwritten by the
2098 : : assignment from an unlimited polymorphic object. */
2099 : 797 : tmp = gfc_conv_descriptor_dtype (sym->backend_decl);
2100 : 797 : gfc_add_modify (&se.pre, tmp,
2101 : 797 : gfc_get_dtype (TREE_TYPE (sym->backend_decl)));
2102 : : }
2103 : :
2104 : 1321 : gfc_add_init_cleanup (block, gfc_finish_block (&se.pre),
2105 : : gfc_finish_block (&se.post));
2106 : 1321 : }
2107 : :
2108 : : /* Do a scalar pointer assignment; this is for scalar variable targets. */
2109 : 3515 : else if (gfc_is_associate_pointer (sym))
2110 : : {
2111 : 3204 : gfc_se se;
2112 : :
2113 : 3204 : gcc_assert (!sym->attr.dimension && !sym->attr.codimension);
2114 : :
2115 : 3204 : gfc_init_se (&se, NULL);
2116 : :
2117 : : /* Class associate-names come this way because they are
2118 : : unconditionally associate pointers and the symbol is scalar. */
2119 : 3204 : if (sym->ts.type == BT_CLASS && e->expr_type == EXPR_FUNCTION)
2120 : : {
2121 : 99 : gfc_conv_expr (&se, e);
2122 : 99 : se.expr = gfc_evaluate_now (se.expr, &se.pre);
2123 : : /* Finalize the expression and free if it is allocatable. */
2124 : 99 : gfc_finalize_tree_expr (&se, NULL, gfc_expr_attr (e), e->rank);
2125 : 99 : gfc_add_block_to_block (&se.post, &se.finalblock);
2126 : 99 : need_len_assign = false;
2127 : : }
2128 : 3105 : else if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.dimension)
2129 : : {
2130 : 431 : tree target_expr;
2131 : : /* For a class array we need a descriptor for the selector. */
2132 : 431 : gfc_conv_expr_descriptor (&se, e);
2133 : : /* Needed to get/set the _len component below. */
2134 : 431 : target_expr = se.expr;
2135 : :
2136 : : /* Obtain a temporary class container for the result. */
2137 : 431 : gfc_conv_class_to_class (&se, e, sym->ts, false, true, false, false);
2138 : 431 : se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
2139 : :
2140 : 431 : desc = gfc_class_data_get (se.expr);
2141 : :
2142 : : /* Set the offset. */
2143 : 431 : offset = gfc_index_zero_node;
2144 : 912 : for (n = 0; n < e->rank; n++)
2145 : : {
2146 : 481 : dim = gfc_rank_cst[n];
2147 : 481 : tmp = fold_build2_loc (input_location, MULT_EXPR,
2148 : : gfc_array_index_type,
2149 : : gfc_conv_descriptor_stride_get (desc, dim),
2150 : : gfc_conv_descriptor_lbound_get (desc, dim));
2151 : 481 : offset = fold_build2_loc (input_location, MINUS_EXPR,
2152 : : gfc_array_index_type,
2153 : : offset, tmp);
2154 : : }
2155 : 431 : gfc_conv_descriptor_offset_set (&se.pre, desc, offset);
2156 : :
2157 : 431 : if (need_len_assign)
2158 : : {
2159 : 175 : if (e->symtree
2160 : 175 : && DECL_LANG_SPECIFIC (e->symtree->n.sym->backend_decl)
2161 : 84 : && GFC_DECL_SAVED_DESCRIPTOR (e->symtree->n.sym->backend_decl)
2162 : 205 : && TREE_CODE (target_expr) != COMPONENT_REF)
2163 : : /* Use the original class descriptor stored in the saved
2164 : : descriptor to get the target_expr. */
2165 : 36 : target_expr =
2166 : 18 : GFC_DECL_SAVED_DESCRIPTOR (e->symtree->n.sym->backend_decl);
2167 : : else
2168 : : /* Strip the _data component from the target_expr. */
2169 : 157 : target_expr = TREE_OPERAND (target_expr, 0);
2170 : : /* Add a reference to the _len comp to the target expr. */
2171 : 175 : tmp = gfc_class_len_get (target_expr);
2172 : : /* Get the component-ref for the temp structure's _len comp. */
2173 : 175 : charlen = gfc_class_len_get (se.expr);
2174 : : /* Add the assign to the beginning of the block... */
2175 : 175 : gfc_add_modify (&se.pre, charlen,
2176 : 175 : fold_convert (TREE_TYPE (charlen), tmp));
2177 : : /* and the oposite way at the end of the block, to hand changes
2178 : : on the string length back. */
2179 : 175 : gfc_add_modify (&se.post, tmp,
2180 : 175 : fold_convert (TREE_TYPE (tmp), charlen));
2181 : : /* Length assignment done, prevent adding it again below. */
2182 : 175 : need_len_assign = false;
2183 : : }
2184 : : }
2185 : 2674 : else if (sym->ts.type == BT_CLASS && e->ts.type == BT_CLASS
2186 : 570 : && CLASS_DATA (e)->attr.dimension)
2187 : : {
2188 : : /* This is bound to be a class array element. */
2189 : 80 : gfc_conv_expr_reference (&se, e);
2190 : : /* Obtain a temporary class container for the result. */
2191 : 80 : gfc_conv_derived_to_class (&se, e, sym, se.expr, false, false,
2192 : 80 : e->symtree->name);
2193 : 80 : need_len_assign = false;
2194 : : }
2195 : 2594 : else if (whole_array && (same_class || unlimited)
2196 : 249 : && e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.codimension)
2197 : : {
2198 : 9 : gfc_expr *class_e = gfc_find_and_cut_at_last_class_ref (e);
2199 : 9 : gfc_conv_expr (&se, class_e);
2200 : 9 : gfc_free_expr (class_e);
2201 : 9 : need_len_assign = false;
2202 : 9 : }
2203 : : else
2204 : : {
2205 : : /* For BT_CLASS and BT_DERIVED, this boils down to a pointer assign,
2206 : : which has the string length included. For CHARACTERS it is still
2207 : : needed and will be done at the end of this routine. */
2208 : 2585 : gfc_conv_expr (&se, e);
2209 : 2585 : need_len_assign = need_len_assign && sym->ts.type == BT_CHARACTER;
2210 : : }
2211 : :
2212 : 3204 : if (sym->ts.type == BT_CHARACTER
2213 : 519 : && !sym->attr.select_type_temporary
2214 : 91 : && VAR_P (sym->ts.u.cl->backend_decl)
2215 : 55 : && se.string_length != sym->ts.u.cl->backend_decl)
2216 : : {
2217 : 55 : gfc_add_modify (&se.pre, sym->ts.u.cl->backend_decl,
2218 : 55 : fold_convert (TREE_TYPE (sym->ts.u.cl->backend_decl),
2219 : : se.string_length));
2220 : 55 : if (e->expr_type == EXPR_FUNCTION)
2221 : : {
2222 : 6 : tmp = gfc_call_free (sym->backend_decl);
2223 : 6 : gfc_add_expr_to_block (&se.post, tmp);
2224 : : }
2225 : : }
2226 : :
2227 : 519 : if (sym->ts.type == BT_CHARACTER && e->ts.type == BT_CHARACTER
2228 : 3295 : && POINTER_TYPE_P (TREE_TYPE (se.expr)))
2229 : : {
2230 : : /* These are pointer types already. */
2231 : 73 : tmp = fold_convert (TREE_TYPE (sym->backend_decl), se.expr);
2232 : : }
2233 : : else
2234 : : {
2235 : 3131 : tree ctree = gfc_get_class_from_expr (se.expr);
2236 : 3131 : tmp = TREE_TYPE (sym->backend_decl);
2237 : :
2238 : 3131 : if (sym->ts.type == BT_CLASS && e->ts.type == BT_CLASS)
2239 : : {
2240 : : /* F2018:19.5.1.6 "If a selector has the POINTER attribute,
2241 : : it shall be associated; the associate name is associated
2242 : : with the target of the pointer and does not have the
2243 : : POINTER attribute." */
2244 : 615 : if (e->rank == 0 && ctree
2245 : 1703 : && (!GFC_CLASS_TYPE_P (TREE_TYPE (se.expr))
2246 : 533 : || CLASS_DATA (e)->attr.class_pointer))
2247 : : {
2248 : 284 : tree stmp;
2249 : 284 : tree dtmp;
2250 : 284 : tree ctmp;
2251 : :
2252 : 284 : ctmp = ctree;
2253 : 284 : dtmp = TREE_TYPE (TREE_TYPE (sym->backend_decl));
2254 : 284 : ctree = gfc_create_var (dtmp, "class");
2255 : :
2256 : 284 : if (IS_INFERRED_TYPE (e)
2257 : 6 : && !GFC_CLASS_TYPE_P (TREE_TYPE (se.expr)))
2258 : : stmp = se.expr;
2259 : : else
2260 : 284 : stmp = gfc_class_data_get (ctmp);
2261 : :
2262 : 284 : if (!CLASS_DATA (sym)->attr.codimension
2263 : 284 : && !POINTER_TYPE_P (TREE_TYPE (stmp)))
2264 : 0 : stmp = gfc_build_addr_expr (NULL, stmp);
2265 : :
2266 : 284 : dtmp = gfc_class_data_get (ctree);
2267 : 284 : stmp = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (dtmp), stmp);
2268 : 284 : gfc_add_modify (&se.pre, dtmp, stmp);
2269 : 284 : stmp = gfc_class_vptr_get (ctmp);
2270 : 284 : dtmp = gfc_class_vptr_get (ctree);
2271 : 284 : stmp = fold_convert (TREE_TYPE (dtmp), stmp);
2272 : 284 : gfc_add_modify (&se.pre, dtmp, stmp);
2273 : 284 : if (UNLIMITED_POLY (sym))
2274 : : {
2275 : 66 : stmp = gfc_class_len_get (ctmp);
2276 : 66 : dtmp = gfc_class_len_get (ctree);
2277 : 66 : stmp = fold_convert (TREE_TYPE (dtmp), stmp);
2278 : 66 : gfc_add_modify (&se.pre, dtmp, stmp);
2279 : 66 : need_len_assign = false;
2280 : : }
2281 : 284 : se.expr = ctree;
2282 : : }
2283 : 804 : else if (CLASS_DATA (sym)->attr.codimension)
2284 : : {
2285 : 27 : gfc_conv_class_to_class (&se, e, sym->ts, false, false, false,
2286 : : false);
2287 : 27 : tmp = se.expr;
2288 : : }
2289 : : }
2290 : 3131 : if (!POINTER_TYPE_P (TREE_TYPE (se.expr)))
2291 : 3104 : tmp = gfc_build_addr_expr (tmp, se.expr);
2292 : : }
2293 : :
2294 : 3204 : gfc_add_modify (&se.pre, sym->backend_decl, tmp);
2295 : :
2296 : 3204 : gfc_add_init_cleanup (block, gfc_finish_block( &se.pre),
2297 : : gfc_finish_block (&se.post));
2298 : : }
2299 : :
2300 : : /* Do a simple assignment. This is for scalar expressions, where we
2301 : : can simply use expression assignment. */
2302 : : else
2303 : : {
2304 : 311 : gfc_expr *lhs;
2305 : 311 : tree res;
2306 : 311 : gfc_se se;
2307 : 311 : stmtblock_t final_block;
2308 : :
2309 : 311 : gfc_init_se (&se, NULL);
2310 : :
2311 : : /* resolve.cc converts some associate names to allocatable so that
2312 : : allocation can take place automatically in gfc_trans_assignment.
2313 : : The frontend prevents them from being either allocated,
2314 : : deallocated or reallocated. */
2315 : 311 : if (sym->ts.type == BT_DERIVED
2316 : 67 : && sym->ts.u.derived->attr.alloc_comp)
2317 : : {
2318 : 6 : tmp = sym->backend_decl;
2319 : 6 : tmp = gfc_nullify_alloc_comp (sym->ts.u.derived, tmp,
2320 : 6 : sym->attr.dimension ? sym->as->rank : 0);
2321 : 6 : gfc_add_expr_to_block (&se.pre, tmp);
2322 : : }
2323 : :
2324 : 311 : if (sym->attr.allocatable)
2325 : : {
2326 : 12 : tmp = sym->backend_decl;
2327 : 12 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
2328 : 0 : tmp = gfc_conv_descriptor_data_get (tmp);
2329 : 12 : gfc_add_modify (&se.pre, tmp, fold_convert (TREE_TYPE (tmp),
2330 : : null_pointer_node));
2331 : : }
2332 : :
2333 : 311 : lhs = gfc_lval_expr_from_sym (sym);
2334 : 311 : lhs->must_finalize = 0;
2335 : 311 : res = gfc_trans_assignment (lhs, e, false, true);
2336 : 311 : gfc_add_expr_to_block (&se.pre, res);
2337 : :
2338 : 311 : gfc_init_block (&final_block);
2339 : :
2340 : 311 : if (sym->attr.associate_var
2341 : 311 : && sym->ts.type == BT_DERIVED
2342 : 67 : && sym->ts.u.derived->attr.defined_assign_comp
2343 : 0 : && gfc_may_be_finalized (sym->ts)
2344 : 311 : && e->expr_type == EXPR_FUNCTION)
2345 : : {
2346 : 0 : gfc_expr *ef;
2347 : 0 : ef = gfc_lval_expr_from_sym (sym);
2348 : 0 : gfc_add_finalizer_call (&final_block, ef);
2349 : 0 : gfc_free_expr (ef);
2350 : : }
2351 : :
2352 : 311 : if (sym->ts.type == BT_DERIVED
2353 : 67 : && sym->ts.u.derived->attr.alloc_comp)
2354 : : {
2355 : 6 : tmp = sym->backend_decl;
2356 : 6 : tmp = gfc_deallocate_alloc_comp (sym->ts.u.derived,
2357 : : tmp, 0);
2358 : 6 : gfc_add_expr_to_block (&final_block, tmp);
2359 : : }
2360 : :
2361 : 311 : tmp = sym->backend_decl;
2362 : 311 : if (e->expr_type == EXPR_FUNCTION
2363 : 70 : && sym->ts.type == BT_DERIVED
2364 : 39 : && sym->ts.u.derived
2365 : 39 : && sym->ts.u.derived->attr.pdt_type)
2366 : : {
2367 : 6 : tmp = gfc_deallocate_pdt_comp (sym->ts.u.derived, tmp,
2368 : : 0);
2369 : : }
2370 : 305 : else if (e->expr_type == EXPR_FUNCTION
2371 : 64 : && sym->ts.type == BT_CLASS
2372 : 0 : && CLASS_DATA (sym)->ts.u.derived
2373 : 0 : && CLASS_DATA (sym)->ts.u.derived->attr.pdt_type)
2374 : : {
2375 : 0 : tmp = gfc_class_data_get (tmp);
2376 : 0 : tmp = gfc_deallocate_pdt_comp (CLASS_DATA (sym)->ts.u.derived,
2377 : : tmp, 0);
2378 : : }
2379 : 305 : else if (sym->attr.allocatable)
2380 : : {
2381 : 12 : tmp = sym->backend_decl;
2382 : :
2383 : 12 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
2384 : 0 : tmp = gfc_conv_descriptor_data_get (tmp);
2385 : :
2386 : : /* A simple call to free suffices here. */
2387 : 12 : tmp = gfc_call_free (tmp);
2388 : :
2389 : : /* Make sure that reallocation on assignment cannot occur. */
2390 : 12 : sym->attr.allocatable = 0;
2391 : : }
2392 : : else
2393 : : tmp = NULL_TREE;
2394 : :
2395 : 311 : gfc_add_expr_to_block (&final_block, tmp);
2396 : 311 : tmp = gfc_finish_block (&final_block);
2397 : 311 : res = gfc_finish_block (&se.pre);
2398 : 311 : gfc_add_init_cleanup (block, res, tmp);
2399 : 311 : gfc_free_expr (lhs);
2400 : : }
2401 : :
2402 : : /* Set the stringlength, when needed. */
2403 : 6827 : if (need_len_assign)
2404 : : {
2405 : 730 : gfc_se se;
2406 : 730 : gfc_init_se (&se, NULL);
2407 : 730 : if (e->symtree->n.sym->ts.type == BT_CHARACTER)
2408 : : {
2409 : : /* Deferred strings are dealt with in the preceding. */
2410 : 0 : gcc_assert (!e->symtree->n.sym->ts.deferred);
2411 : 0 : tmp = e->symtree->n.sym->ts.u.cl->backend_decl;
2412 : : }
2413 : 730 : else if (e->symtree->n.sym->attr.function
2414 : 12 : && e->symtree->n.sym == e->symtree->n.sym->result)
2415 : : {
2416 : 12 : tmp = gfc_get_fake_result_decl (e->symtree->n.sym, 0);
2417 : 12 : tmp = gfc_class_len_get (tmp);
2418 : : }
2419 : : else
2420 : 718 : tmp = gfc_class_len_get (gfc_get_symbol_decl (e->symtree->n.sym));
2421 : 730 : gfc_get_symbol_decl (sym);
2422 : 730 : charlen = sym->ts.type == BT_CHARACTER ? sym->ts.u.cl->backend_decl
2423 : 0 : : gfc_class_len_get (sym->backend_decl);
2424 : : /* Prevent adding a noop len= len. */
2425 : 730 : if (tmp != charlen)
2426 : : {
2427 : 730 : gfc_add_modify (&se.pre, charlen,
2428 : 730 : fold_convert (TREE_TYPE (charlen), tmp));
2429 : 730 : gfc_add_init_cleanup (block, gfc_finish_block (&se.pre),
2430 : : gfc_finish_block (&se.post));
2431 : : }
2432 : : }
2433 : 6827 : }
2434 : :
2435 : :
2436 : : /* Translate a BLOCK construct. This is basically what we would do for a
2437 : : procedure body. */
2438 : :
2439 : : tree
2440 : 13284 : gfc_trans_block_construct (gfc_code* code)
2441 : : {
2442 : 13284 : gfc_namespace* ns;
2443 : 13284 : gfc_symbol* sym;
2444 : 13284 : gfc_wrapped_block block;
2445 : 13284 : tree exit_label;
2446 : 13284 : stmtblock_t body;
2447 : 13284 : gfc_association_list *ass;
2448 : 13284 : tree translated_body;
2449 : :
2450 : 13284 : ns = code->ext.block.ns;
2451 : 13284 : gcc_assert (ns);
2452 : 13284 : sym = ns->proc_name;
2453 : 13284 : gcc_assert (sym);
2454 : :
2455 : : /* Process local variables. */
2456 : 13284 : gcc_assert (!sym->tlink);
2457 : 13284 : sym->tlink = sym;
2458 : 13284 : gfc_process_block_locals (ns);
2459 : :
2460 : : /* Generate code including exit-label. */
2461 : 13284 : gfc_init_block (&body);
2462 : 13284 : exit_label = gfc_build_label_decl (NULL_TREE);
2463 : 13284 : code->exit_label = exit_label;
2464 : :
2465 : 13284 : finish_oacc_declare (ns, sym, true);
2466 : :
2467 : 13284 : translated_body = gfc_trans_code (ns->code);
2468 : 13284 : if (ns->omp_structured_block)
2469 : 452 : translated_body = build1 (OMP_STRUCTURED_BLOCK, void_type_node,
2470 : : translated_body);
2471 : 13284 : gfc_add_expr_to_block (&body, translated_body);
2472 : 13284 : gfc_add_expr_to_block (&body, build1_v (LABEL_EXPR, exit_label));
2473 : :
2474 : : /* Finish everything. */
2475 : 13284 : gfc_start_wrapped_block (&block, gfc_finish_block (&body));
2476 : 13284 : gfc_trans_deferred_vars (sym, &block);
2477 : 20111 : for (ass = code->ext.block.assoc; ass; ass = ass->next)
2478 : 6827 : trans_associate_var (ass->st->n.sym, &block);
2479 : :
2480 : 13284 : return gfc_finish_wrapped_block (&block);
2481 : : }
2482 : :
2483 : : /* Translate the simple DO construct in a C-style manner.
2484 : : This is where the loop variable has integer type and step +-1.
2485 : : Following code will generate infinite loop in case where TO is INT_MAX
2486 : : (for +1 step) or INT_MIN (for -1 step)
2487 : :
2488 : : We translate a do loop from:
2489 : :
2490 : : DO dovar = from, to, step
2491 : : body
2492 : : END DO
2493 : :
2494 : : to:
2495 : :
2496 : : [Evaluate loop bounds and step]
2497 : : dovar = from;
2498 : : for (;;)
2499 : : {
2500 : : if (dovar > to)
2501 : : goto end_label;
2502 : : body;
2503 : : cycle_label:
2504 : : dovar += step;
2505 : : }
2506 : : end_label:
2507 : :
2508 : : This helps the optimizers by avoiding the extra pre-header condition and
2509 : : we save a register as we just compare the updated IV (not a value in
2510 : : previous step). */
2511 : :
2512 : : static tree
2513 : 24907 : gfc_trans_simple_do (gfc_code * code, stmtblock_t *pblock, tree dovar,
2514 : : tree from, tree to, tree step, tree exit_cond)
2515 : : {
2516 : 24907 : stmtblock_t body;
2517 : 24907 : tree type;
2518 : 24907 : tree cond;
2519 : 24907 : tree tmp;
2520 : 24907 : tree saved_dovar = NULL;
2521 : 24907 : tree cycle_label;
2522 : 24907 : tree exit_label;
2523 : 24907 : location_t loc;
2524 : 24907 : type = TREE_TYPE (dovar);
2525 : 24907 : bool is_step_positive = tree_int_cst_sgn (step) > 0;
2526 : :
2527 : 24907 : loc = gfc_get_location (&code->ext.iterator->start->where);
2528 : :
2529 : : /* Initialize the DO variable: dovar = from. */
2530 : 24907 : gfc_add_modify_loc (loc, pblock, dovar,
2531 : 24907 : fold_convert (TREE_TYPE (dovar), from));
2532 : :
2533 : : /* Save value for do-tinkering checking. */
2534 : 24907 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2535 : : {
2536 : 201 : saved_dovar = gfc_create_var (type, ".saved_dovar");
2537 : 201 : gfc_add_modify_loc (loc, pblock, saved_dovar, dovar);
2538 : : }
2539 : :
2540 : : /* Cycle and exit statements are implemented with gotos. */
2541 : 24907 : cycle_label = gfc_build_label_decl (NULL_TREE);
2542 : 24907 : exit_label = gfc_build_label_decl (NULL_TREE);
2543 : :
2544 : : /* Put the labels where they can be found later. See gfc_trans_do(). */
2545 : 24907 : code->cycle_label = cycle_label;
2546 : 24907 : code->exit_label = exit_label;
2547 : :
2548 : : /* Loop body. */
2549 : 24907 : gfc_start_block (&body);
2550 : :
2551 : : /* Exit the loop if there is an I/O result condition or error. */
2552 : 24907 : if (exit_cond)
2553 : : {
2554 : 350 : tmp = build1_v (GOTO_EXPR, exit_label);
2555 : 350 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node,
2556 : : exit_cond, tmp,
2557 : : build_empty_stmt (loc));
2558 : 350 : gfc_add_expr_to_block (&body, tmp);
2559 : : }
2560 : :
2561 : : /* Evaluate the loop condition. */
2562 : 24907 : if (is_step_positive)
2563 : 24792 : cond = fold_build2_loc (loc, GT_EXPR, logical_type_node, dovar,
2564 : : fold_convert (type, to));
2565 : : else
2566 : 115 : cond = fold_build2_loc (loc, LT_EXPR, logical_type_node, dovar,
2567 : : fold_convert (type, to));
2568 : :
2569 : 24907 : cond = gfc_evaluate_now_loc (loc, cond, &body);
2570 : 24907 : if (code->ext.iterator->annot.unroll && cond != error_mark_node)
2571 : 12 : cond
2572 : 12 : = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2573 : 12 : build_int_cst (integer_type_node, annot_expr_unroll_kind),
2574 : 12 : build_int_cst (integer_type_node,
2575 : 12 : code->ext.iterator->annot.unroll));
2576 : :
2577 : 24907 : if (code->ext.iterator->annot.ivdep && cond != error_mark_node)
2578 : 2 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2579 : 2 : build_int_cst (integer_type_node, annot_expr_ivdep_kind),
2580 : : integer_zero_node);
2581 : 24907 : if (code->ext.iterator->annot.vector && cond != error_mark_node)
2582 : 2 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2583 : 2 : build_int_cst (integer_type_node, annot_expr_vector_kind),
2584 : : integer_zero_node);
2585 : 24907 : if (code->ext.iterator->annot.novector && cond != error_mark_node)
2586 : 1 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2587 : 1 : build_int_cst (integer_type_node, annot_expr_no_vector_kind),
2588 : : integer_zero_node);
2589 : :
2590 : : /* The loop exit. */
2591 : 24907 : tmp = fold_build1_loc (loc, GOTO_EXPR, void_type_node, exit_label);
2592 : 24907 : TREE_USED (exit_label) = 1;
2593 : 24907 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node,
2594 : : cond, tmp, build_empty_stmt (loc));
2595 : 24907 : gfc_add_expr_to_block (&body, tmp);
2596 : :
2597 : : /* Check whether the induction variable is equal to INT_MAX
2598 : : (respectively to INT_MIN). */
2599 : 24907 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2600 : : {
2601 : 207 : tree boundary = is_step_positive ? TYPE_MAX_VALUE (type)
2602 : 6 : : TYPE_MIN_VALUE (type);
2603 : :
2604 : 201 : tmp = fold_build2_loc (loc, EQ_EXPR, logical_type_node,
2605 : : dovar, boundary);
2606 : 201 : gfc_trans_runtime_check (true, false, tmp, &body, &code->loc,
2607 : : "Loop iterates infinitely");
2608 : : }
2609 : :
2610 : : /* Main loop body. */
2611 : 24907 : tmp = gfc_trans_code_cond (code->block->next, exit_cond);
2612 : 24907 : gfc_add_expr_to_block (&body, tmp);
2613 : :
2614 : : /* Label for cycle statements (if needed). */
2615 : 24907 : if (TREE_USED (cycle_label))
2616 : : {
2617 : 24907 : tmp = build1_v (LABEL_EXPR, cycle_label);
2618 : 24907 : gfc_add_expr_to_block (&body, tmp);
2619 : : }
2620 : :
2621 : : /* Check whether someone has modified the loop variable. */
2622 : 24907 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2623 : : {
2624 : 201 : tmp = fold_build2_loc (loc, NE_EXPR, logical_type_node,
2625 : : dovar, saved_dovar);
2626 : 201 : gfc_trans_runtime_check (true, false, tmp, &body, &code->loc,
2627 : : "Loop variable has been modified");
2628 : : }
2629 : :
2630 : : /* Increment the loop variable. */
2631 : 24907 : tmp = fold_build2_loc (loc, PLUS_EXPR, type, dovar, step);
2632 : 24907 : gfc_add_modify_loc (loc, &body, dovar, tmp);
2633 : :
2634 : 24907 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2635 : 201 : gfc_add_modify_loc (loc, &body, saved_dovar, dovar);
2636 : :
2637 : : /* Finish the loop body. */
2638 : 24907 : tmp = gfc_finish_block (&body);
2639 : 24907 : tmp = fold_build1_loc (loc, LOOP_EXPR, void_type_node, tmp);
2640 : :
2641 : 24907 : gfc_add_expr_to_block (pblock, tmp);
2642 : :
2643 : : /* Add the exit label. */
2644 : 24907 : tmp = build1_v (LABEL_EXPR, exit_label);
2645 : 24907 : gfc_add_expr_to_block (pblock, tmp);
2646 : :
2647 : 24907 : return gfc_finish_block (pblock);
2648 : : }
2649 : :
2650 : : /* Translate the DO construct. This obviously is one of the most
2651 : : important ones to get right with any compiler, but especially
2652 : : so for Fortran.
2653 : :
2654 : : We special case some loop forms as described in gfc_trans_simple_do.
2655 : : For other cases we implement them with a separate loop count,
2656 : : as described in the standard.
2657 : :
2658 : : We translate a do loop from:
2659 : :
2660 : : DO dovar = from, to, step
2661 : : body
2662 : : END DO
2663 : :
2664 : : to:
2665 : :
2666 : : [evaluate loop bounds and step]
2667 : : empty = (step > 0 ? to < from : to > from);
2668 : : countm1 = (to - from) / step;
2669 : : dovar = from;
2670 : : if (empty) goto exit_label;
2671 : : for (;;)
2672 : : {
2673 : : body;
2674 : : cycle_label:
2675 : : dovar += step
2676 : : countm1t = countm1;
2677 : : countm1--;
2678 : : if (countm1t == 0) goto exit_label;
2679 : : }
2680 : : exit_label:
2681 : :
2682 : : countm1 is an unsigned integer. It is equal to the loop count minus one,
2683 : : because the loop count itself can overflow. */
2684 : :
2685 : : tree
2686 : 25952 : gfc_trans_do (gfc_code * code, tree exit_cond)
2687 : : {
2688 : 25952 : gfc_se se;
2689 : 25952 : tree dovar;
2690 : 25952 : tree saved_dovar = NULL;
2691 : 25952 : tree from;
2692 : 25952 : tree to;
2693 : 25952 : tree step;
2694 : 25952 : tree countm1;
2695 : 25952 : tree type;
2696 : 25952 : tree utype;
2697 : 25952 : tree cond;
2698 : 25952 : tree cycle_label;
2699 : 25952 : tree exit_label;
2700 : 25952 : tree tmp;
2701 : 25952 : stmtblock_t block;
2702 : 25952 : stmtblock_t body;
2703 : 25952 : location_t loc;
2704 : :
2705 : 25952 : gfc_start_block (&block);
2706 : :
2707 : 25952 : loc = gfc_get_location (&code->ext.iterator->start->where);
2708 : :
2709 : : /* Evaluate all the expressions in the iterator. */
2710 : 25952 : gfc_init_se (&se, NULL);
2711 : 25952 : gfc_conv_expr_lhs (&se, code->ext.iterator->var);
2712 : 25952 : gfc_add_block_to_block (&block, &se.pre);
2713 : 25952 : dovar = se.expr;
2714 : 25952 : type = TREE_TYPE (dovar);
2715 : :
2716 : 25952 : gfc_init_se (&se, NULL);
2717 : 25952 : gfc_conv_expr_val (&se, code->ext.iterator->start);
2718 : 25952 : gfc_add_block_to_block (&block, &se.pre);
2719 : 25952 : from = gfc_evaluate_now (se.expr, &block);
2720 : :
2721 : 25952 : gfc_init_se (&se, NULL);
2722 : 25952 : gfc_conv_expr_val (&se, code->ext.iterator->end);
2723 : 25952 : gfc_add_block_to_block (&block, &se.pre);
2724 : 25952 : to = gfc_evaluate_now (se.expr, &block);
2725 : :
2726 : 25952 : gfc_init_se (&se, NULL);
2727 : 25952 : gfc_conv_expr_val (&se, code->ext.iterator->step);
2728 : 25952 : gfc_add_block_to_block (&block, &se.pre);
2729 : 25952 : step = gfc_evaluate_now (se.expr, &block);
2730 : :
2731 : 25952 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2732 : : {
2733 : 213 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, step,
2734 : : build_zero_cst (type));
2735 : 213 : gfc_trans_runtime_check (true, false, tmp, &block, &code->loc,
2736 : : "DO step value is zero");
2737 : : }
2738 : :
2739 : : /* Special case simple loops. */
2740 : 25952 : if (TREE_CODE (type) == INTEGER_TYPE
2741 : 25952 : && (integer_onep (step)
2742 : 1078 : || tree_int_cst_equal (step, integer_minus_one_node)))
2743 : 24907 : return gfc_trans_simple_do (code, &block, dovar, from, to, step,
2744 : 24907 : exit_cond);
2745 : :
2746 : 1045 : if (TREE_CODE (type) == INTEGER_TYPE)
2747 : 963 : utype = unsigned_type_for (type);
2748 : : else
2749 : 82 : utype = unsigned_type_for (gfc_array_index_type);
2750 : 1045 : countm1 = gfc_create_var (utype, "countm1");
2751 : :
2752 : : /* Cycle and exit statements are implemented with gotos. */
2753 : 1045 : cycle_label = gfc_build_label_decl (NULL_TREE);
2754 : 1045 : exit_label = gfc_build_label_decl (NULL_TREE);
2755 : 1045 : TREE_USED (exit_label) = 1;
2756 : :
2757 : : /* Put these labels where they can be found later. */
2758 : 1045 : code->cycle_label = cycle_label;
2759 : 1045 : code->exit_label = exit_label;
2760 : :
2761 : : /* Initialize the DO variable: dovar = from. */
2762 : 1045 : gfc_add_modify (&block, dovar, from);
2763 : :
2764 : : /* Save value for do-tinkering checking. */
2765 : 1045 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2766 : : {
2767 : 12 : saved_dovar = gfc_create_var (type, ".saved_dovar");
2768 : 12 : gfc_add_modify_loc (loc, &block, saved_dovar, dovar);
2769 : : }
2770 : :
2771 : : /* Initialize loop count and jump to exit label if the loop is empty.
2772 : : This code is executed before we enter the loop body. We generate:
2773 : : if (step > 0)
2774 : : {
2775 : : countm1 = (to - from) / step;
2776 : : if (to < from)
2777 : : goto exit_label;
2778 : : }
2779 : : else
2780 : : {
2781 : : countm1 = (from - to) / -step;
2782 : : if (to > from)
2783 : : goto exit_label;
2784 : : }
2785 : : */
2786 : :
2787 : 1045 : if (TREE_CODE (type) == INTEGER_TYPE)
2788 : : {
2789 : 963 : tree pos, neg, tou, fromu, stepu, tmp2;
2790 : :
2791 : : /* The distance from FROM to TO cannot always be represented in a signed
2792 : : type, thus use unsigned arithmetic, also to avoid any undefined
2793 : : overflow issues. */
2794 : 963 : tou = fold_convert (utype, to);
2795 : 963 : fromu = fold_convert (utype, from);
2796 : 963 : stepu = fold_convert (utype, step);
2797 : :
2798 : : /* For a positive step, when to < from, exit, otherwise compute
2799 : : countm1 = ((unsigned)to - (unsigned)from) / (unsigned)step */
2800 : 963 : tmp = fold_build2_loc (loc, LT_EXPR, logical_type_node, to, from);
2801 : 963 : tmp2 = fold_build2_loc (loc, TRUNC_DIV_EXPR, utype,
2802 : : fold_build2_loc (loc, MINUS_EXPR, utype,
2803 : : tou, fromu),
2804 : : stepu);
2805 : 963 : pos = build2 (COMPOUND_EXPR, void_type_node,
2806 : : fold_build2 (MODIFY_EXPR, void_type_node,
2807 : : countm1, tmp2),
2808 : : build3_loc (loc, COND_EXPR, void_type_node,
2809 : : gfc_unlikely (tmp, PRED_FORTRAN_LOOP_PREHEADER),
2810 : : build1_loc (loc, GOTO_EXPR, void_type_node,
2811 : : exit_label), NULL_TREE));
2812 : :
2813 : : /* For a negative step, when to > from, exit, otherwise compute
2814 : : countm1 = ((unsigned)from - (unsigned)to) / -(unsigned)step */
2815 : 963 : tmp = fold_build2_loc (loc, GT_EXPR, logical_type_node, to, from);
2816 : 963 : tmp2 = fold_build2_loc (loc, TRUNC_DIV_EXPR, utype,
2817 : : fold_build2_loc (loc, MINUS_EXPR, utype,
2818 : : fromu, tou),
2819 : : fold_build1_loc (loc, NEGATE_EXPR, utype, stepu));
2820 : 963 : neg = build2 (COMPOUND_EXPR, void_type_node,
2821 : : fold_build2 (MODIFY_EXPR, void_type_node,
2822 : : countm1, tmp2),
2823 : : build3_loc (loc, COND_EXPR, void_type_node,
2824 : : gfc_unlikely (tmp, PRED_FORTRAN_LOOP_PREHEADER),
2825 : : build1_loc (loc, GOTO_EXPR, void_type_node,
2826 : : exit_label), NULL_TREE));
2827 : :
2828 : 963 : tmp = fold_build2_loc (loc, LT_EXPR, logical_type_node, step,
2829 : 963 : build_int_cst (TREE_TYPE (step), 0));
2830 : 963 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node, tmp, neg, pos);
2831 : :
2832 : 963 : gfc_add_expr_to_block (&block, tmp);
2833 : : }
2834 : : else
2835 : : {
2836 : 82 : tree pos_step;
2837 : :
2838 : : /* TODO: We could use the same width as the real type.
2839 : : This would probably cause more problems that it solves
2840 : : when we implement "long double" types. */
2841 : :
2842 : 82 : tmp = fold_build2_loc (loc, MINUS_EXPR, type, to, from);
2843 : 82 : tmp = fold_build2_loc (loc, RDIV_EXPR, type, tmp, step);
2844 : 82 : tmp = fold_build1_loc (loc, FIX_TRUNC_EXPR, utype, tmp);
2845 : 82 : gfc_add_modify (&block, countm1, tmp);
2846 : :
2847 : : /* We need a special check for empty loops:
2848 : : empty = (step > 0 ? to < from : to > from); */
2849 : 82 : pos_step = fold_build2_loc (loc, GT_EXPR, logical_type_node, step,
2850 : : build_zero_cst (type));
2851 : 82 : tmp = fold_build3_loc (loc, COND_EXPR, logical_type_node, pos_step,
2852 : : fold_build2_loc (loc, LT_EXPR,
2853 : : logical_type_node, to, from),
2854 : : fold_build2_loc (loc, GT_EXPR,
2855 : : logical_type_node, to, from));
2856 : : /* If the loop is empty, go directly to the exit label. */
2857 : 82 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node, tmp,
2858 : : build1_v (GOTO_EXPR, exit_label),
2859 : : build_empty_stmt (input_location));
2860 : 82 : gfc_add_expr_to_block (&block, tmp);
2861 : : }
2862 : :
2863 : : /* Loop body. */
2864 : 1045 : gfc_start_block (&body);
2865 : :
2866 : : /* Main loop body. */
2867 : 1045 : tmp = gfc_trans_code_cond (code->block->next, exit_cond);
2868 : 1045 : gfc_add_expr_to_block (&body, tmp);
2869 : :
2870 : : /* Label for cycle statements (if needed). */
2871 : 1045 : if (TREE_USED (cycle_label))
2872 : : {
2873 : 1045 : tmp = build1_v (LABEL_EXPR, cycle_label);
2874 : 1045 : gfc_add_expr_to_block (&body, tmp);
2875 : : }
2876 : :
2877 : : /* Check whether someone has modified the loop variable. */
2878 : 1045 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2879 : : {
2880 : 12 : tmp = fold_build2_loc (loc, NE_EXPR, logical_type_node, dovar,
2881 : : saved_dovar);
2882 : 12 : gfc_trans_runtime_check (true, false, tmp, &body, &code->loc,
2883 : : "Loop variable has been modified");
2884 : : }
2885 : :
2886 : : /* Exit the loop if there is an I/O result condition or error. */
2887 : 1045 : if (exit_cond)
2888 : : {
2889 : 1 : tmp = build1_v (GOTO_EXPR, exit_label);
2890 : 1 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node,
2891 : : exit_cond, tmp,
2892 : : build_empty_stmt (input_location));
2893 : 1 : gfc_add_expr_to_block (&body, tmp);
2894 : : }
2895 : :
2896 : : /* Increment the loop variable. */
2897 : 1045 : tmp = fold_build2_loc (loc, PLUS_EXPR, type, dovar, step);
2898 : 1045 : gfc_add_modify_loc (loc, &body, dovar, tmp);
2899 : :
2900 : 1045 : if (gfc_option.rtcheck & GFC_RTCHECK_DO)
2901 : 12 : gfc_add_modify_loc (loc, &body, saved_dovar, dovar);
2902 : :
2903 : : /* Initialize countm1t. */
2904 : 1045 : tree countm1t = gfc_create_var (utype, "countm1t");
2905 : 1045 : gfc_add_modify_loc (loc, &body, countm1t, countm1);
2906 : :
2907 : : /* Decrement the loop count. */
2908 : 1045 : tmp = fold_build2_loc (loc, MINUS_EXPR, utype, countm1,
2909 : 1045 : build_int_cst (utype, 1));
2910 : 1045 : gfc_add_modify_loc (loc, &body, countm1, tmp);
2911 : :
2912 : : /* End with the loop condition. Loop until countm1t == 0. */
2913 : 1045 : cond = fold_build2_loc (loc, EQ_EXPR, logical_type_node, countm1t,
2914 : 1045 : build_int_cst (utype, 0));
2915 : 1045 : if (code->ext.iterator->annot.unroll && cond != error_mark_node)
2916 : 3 : cond
2917 : 3 : = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2918 : 3 : build_int_cst (integer_type_node, annot_expr_unroll_kind),
2919 : 3 : build_int_cst (integer_type_node,
2920 : 3 : code->ext.iterator->annot.unroll));
2921 : :
2922 : 1045 : if (code->ext.iterator->annot.ivdep && cond != error_mark_node)
2923 : 0 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2924 : 0 : build_int_cst (integer_type_node, annot_expr_ivdep_kind),
2925 : : integer_zero_node);
2926 : 1045 : if (code->ext.iterator->annot.vector && cond != error_mark_node)
2927 : 0 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2928 : 0 : build_int_cst (integer_type_node, annot_expr_vector_kind),
2929 : : integer_zero_node);
2930 : 1045 : if (code->ext.iterator->annot.novector && cond != error_mark_node)
2931 : 0 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
2932 : 0 : build_int_cst (integer_type_node, annot_expr_no_vector_kind),
2933 : : integer_zero_node);
2934 : :
2935 : 1045 : tmp = fold_build1_loc (loc, GOTO_EXPR, void_type_node, exit_label);
2936 : 1045 : tmp = fold_build3_loc (loc, COND_EXPR, void_type_node,
2937 : : cond, tmp, build_empty_stmt (loc));
2938 : 1045 : gfc_add_expr_to_block (&body, tmp);
2939 : :
2940 : : /* End of loop body. */
2941 : 1045 : tmp = gfc_finish_block (&body);
2942 : :
2943 : : /* The for loop itself. */
2944 : 1045 : tmp = fold_build1_loc (loc, LOOP_EXPR, void_type_node, tmp);
2945 : 1045 : gfc_add_expr_to_block (&block, tmp);
2946 : :
2947 : : /* Add the exit label. */
2948 : 1045 : tmp = build1_v (LABEL_EXPR, exit_label);
2949 : 1045 : gfc_add_expr_to_block (&block, tmp);
2950 : :
2951 : 1045 : return gfc_finish_block (&block);
2952 : : }
2953 : :
2954 : :
2955 : : /* Translate the DO WHILE construct.
2956 : :
2957 : : We translate
2958 : :
2959 : : DO WHILE (cond)
2960 : : body
2961 : : END DO
2962 : :
2963 : : to:
2964 : :
2965 : : for ( ; ; )
2966 : : {
2967 : : pre_cond;
2968 : : if (! cond) goto exit_label;
2969 : : body;
2970 : : cycle_label:
2971 : : }
2972 : : exit_label:
2973 : :
2974 : : Because the evaluation of the exit condition `cond' may have side
2975 : : effects, we can't do much for empty loop bodies. The backend optimizers
2976 : : should be smart enough to eliminate any dead loops. */
2977 : :
2978 : : tree
2979 : 494 : gfc_trans_do_while (gfc_code * code)
2980 : : {
2981 : 494 : gfc_se cond;
2982 : 494 : tree tmp;
2983 : 494 : tree cycle_label;
2984 : 494 : tree exit_label;
2985 : 494 : stmtblock_t block;
2986 : :
2987 : : /* Everything we build here is part of the loop body. */
2988 : 494 : gfc_start_block (&block);
2989 : :
2990 : : /* Cycle and exit statements are implemented with gotos. */
2991 : 494 : cycle_label = gfc_build_label_decl (NULL_TREE);
2992 : 494 : exit_label = gfc_build_label_decl (NULL_TREE);
2993 : :
2994 : : /* Put the labels where they can be found later. See gfc_trans_do(). */
2995 : 494 : code->cycle_label = cycle_label;
2996 : 494 : code->exit_label = exit_label;
2997 : :
2998 : : /* Create a GIMPLE version of the exit condition. */
2999 : 494 : gfc_init_se (&cond, NULL);
3000 : 494 : gfc_conv_expr_val (&cond, code->expr1);
3001 : 494 : gfc_add_block_to_block (&block, &cond.pre);
3002 : 494 : cond.expr = fold_build1_loc (gfc_get_location (&code->expr1->where),
3003 : 494 : TRUTH_NOT_EXPR, TREE_TYPE (cond.expr),
3004 : : cond.expr);
3005 : :
3006 : : /* Build "IF (! cond) GOTO exit_label". */
3007 : 494 : tmp = build1_v (GOTO_EXPR, exit_label);
3008 : 494 : TREE_USED (exit_label) = 1;
3009 : 494 : tmp = fold_build3_loc (gfc_get_location (&code->expr1->where), COND_EXPR,
3010 : : void_type_node, cond.expr, tmp,
3011 : : build_empty_stmt (gfc_get_location (
3012 : 494 : &code->expr1->where)));
3013 : 494 : gfc_add_expr_to_block (&block, tmp);
3014 : :
3015 : : /* The main body of the loop. */
3016 : 494 : tmp = gfc_trans_code (code->block->next);
3017 : 494 : gfc_add_expr_to_block (&block, tmp);
3018 : :
3019 : : /* Label for cycle statements (if needed). */
3020 : 494 : if (TREE_USED (cycle_label))
3021 : : {
3022 : 494 : tmp = build1_v (LABEL_EXPR, cycle_label);
3023 : 494 : gfc_add_expr_to_block (&block, tmp);
3024 : : }
3025 : :
3026 : : /* End of loop body. */
3027 : 494 : tmp = gfc_finish_block (&block);
3028 : :
3029 : 494 : gfc_init_block (&block);
3030 : : /* Build the loop. */
3031 : 494 : tmp = fold_build1_loc (gfc_get_location (&code->expr1->where), LOOP_EXPR,
3032 : : void_type_node, tmp);
3033 : 494 : gfc_add_expr_to_block (&block, tmp);
3034 : :
3035 : : /* Add the exit label. */
3036 : 494 : tmp = build1_v (LABEL_EXPR, exit_label);
3037 : 494 : gfc_add_expr_to_block (&block, tmp);
3038 : :
3039 : 494 : return gfc_finish_block (&block);
3040 : : }
3041 : :
3042 : :
3043 : : /* Deal with the particular case of SELECT_TYPE, where the vtable
3044 : : addresses are used for the selection. Since these are not sorted,
3045 : : the selection has to be made by a series of if statements. */
3046 : :
3047 : : static tree
3048 : 2787 : gfc_trans_select_type_cases (gfc_code * code)
3049 : : {
3050 : 2787 : gfc_code *c;
3051 : 2787 : gfc_case *cp;
3052 : 2787 : tree tmp;
3053 : 2787 : tree cond;
3054 : 2787 : tree low;
3055 : 2787 : tree high;
3056 : 2787 : gfc_se se;
3057 : 2787 : gfc_se cse;
3058 : 2787 : stmtblock_t block;
3059 : 2787 : stmtblock_t body;
3060 : 2787 : bool def = false;
3061 : 2787 : gfc_expr *e;
3062 : 2787 : gfc_start_block (&block);
3063 : :
3064 : : /* Calculate the switch expression. */
3065 : 2787 : gfc_init_se (&se, NULL);
3066 : 2787 : gfc_conv_expr_val (&se, code->expr1);
3067 : 2787 : gfc_add_block_to_block (&block, &se.pre);
3068 : :
3069 : : /* Generate an expression for the selector hash value, for
3070 : : use to resolve character cases. */
3071 : 2787 : e = gfc_copy_expr (code->expr1->value.function.actual->expr);
3072 : 2787 : gfc_add_hash_component (e);
3073 : :
3074 : 2787 : TREE_USED (code->exit_label) = 0;
3075 : :
3076 : 5574 : repeat:
3077 : 15420 : for (c = code->block; c; c = c->block)
3078 : : {
3079 : 9846 : cp = c->ext.block.case_list;
3080 : :
3081 : : /* Assume it's the default case. */
3082 : 9846 : low = NULL_TREE;
3083 : 9846 : high = NULL_TREE;
3084 : 9846 : tmp = NULL_TREE;
3085 : :
3086 : : /* Put the default case at the end. */
3087 : 9846 : if ((!def && !cp->low) || (def && cp->low))
3088 : 4923 : continue;
3089 : :
3090 : 4923 : if (cp->low && (cp->ts.type == BT_CLASS
3091 : 3211 : || cp->ts.type == BT_DERIVED))
3092 : : {
3093 : 1871 : gfc_init_se (&cse, NULL);
3094 : 1871 : gfc_conv_expr_val (&cse, cp->low);
3095 : 1871 : gfc_add_block_to_block (&block, &cse.pre);
3096 : 1871 : low = cse.expr;
3097 : : }
3098 : 3052 : else if (cp->ts.type != BT_UNKNOWN)
3099 : : {
3100 : 1340 : gcc_assert (cp->high);
3101 : 1340 : gfc_init_se (&cse, NULL);
3102 : 1340 : gfc_conv_expr_val (&cse, cp->high);
3103 : 1340 : gfc_add_block_to_block (&block, &cse.pre);
3104 : 1340 : high = cse.expr;
3105 : : }
3106 : :
3107 : 4923 : gfc_init_block (&body);
3108 : :
3109 : : /* Add the statements for this case. */
3110 : 4923 : tmp = gfc_trans_code (c->next);
3111 : 4923 : gfc_add_expr_to_block (&body, tmp);
3112 : :
3113 : : /* Break to the end of the SELECT TYPE construct. The default
3114 : : case just falls through. */
3115 : 4923 : if (!def)
3116 : : {
3117 : 3211 : TREE_USED (code->exit_label) = 1;
3118 : 3211 : tmp = build1_v (GOTO_EXPR, code->exit_label);
3119 : 3211 : gfc_add_expr_to_block (&body, tmp);
3120 : : }
3121 : :
3122 : 4923 : tmp = gfc_finish_block (&body);
3123 : :
3124 : 4923 : if (low != NULL_TREE)
3125 : : {
3126 : : /* Compare vtable pointers. */
3127 : 1871 : cond = fold_build2_loc (input_location, EQ_EXPR,
3128 : 1871 : TREE_TYPE (se.expr), se.expr, low);
3129 : 1871 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
3130 : : cond, tmp,
3131 : : build_empty_stmt (input_location));
3132 : : }
3133 : 3052 : else if (high != NULL_TREE)
3134 : : {
3135 : : /* Compare hash values for character cases. */
3136 : 1340 : gfc_init_se (&cse, NULL);
3137 : 1340 : gfc_conv_expr_val (&cse, e);
3138 : 1340 : gfc_add_block_to_block (&block, &cse.pre);
3139 : :
3140 : 1340 : cond = fold_build2_loc (input_location, EQ_EXPR,
3141 : 1340 : TREE_TYPE (se.expr), high, cse.expr);
3142 : 1340 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
3143 : : cond, tmp,
3144 : : build_empty_stmt (input_location));
3145 : : }
3146 : :
3147 : 4923 : gfc_add_expr_to_block (&block, tmp);
3148 : : }
3149 : :
3150 : 5574 : if (!def)
3151 : : {
3152 : 2787 : def = true;
3153 : 2787 : goto repeat;
3154 : : }
3155 : :
3156 : 2787 : gfc_free_expr (e);
3157 : :
3158 : 2787 : return gfc_finish_block (&block);
3159 : : }
3160 : :
3161 : :
3162 : : /* Translate the SELECT CASE construct for INTEGER case expressions,
3163 : : without killing all potential optimizations. The problem is that
3164 : : Fortran allows unbounded cases, but the back-end does not, so we
3165 : : need to intercept those before we enter the equivalent SWITCH_EXPR
3166 : : we can build.
3167 : :
3168 : : For example, we translate this,
3169 : :
3170 : : SELECT CASE (expr)
3171 : : CASE (:100,101,105:115)
3172 : : block_1
3173 : : CASE (190:199,200:)
3174 : : block_2
3175 : : CASE (300)
3176 : : block_3
3177 : : CASE DEFAULT
3178 : : block_4
3179 : : END SELECT
3180 : :
3181 : : to the GENERIC equivalent,
3182 : :
3183 : : switch (expr)
3184 : : {
3185 : : case (minimum value for typeof(expr) ... 100:
3186 : : case 101:
3187 : : case 105 ... 114:
3188 : : block1:
3189 : : goto end_label;
3190 : :
3191 : : case 200 ... (maximum value for typeof(expr):
3192 : : case 190 ... 199:
3193 : : block2;
3194 : : goto end_label;
3195 : :
3196 : : case 300:
3197 : : block_3;
3198 : : goto end_label;
3199 : :
3200 : : default:
3201 : : block_4;
3202 : : goto end_label;
3203 : : }
3204 : :
3205 : : end_label: */
3206 : :
3207 : : static tree
3208 : 875 : gfc_trans_integer_select (gfc_code * code)
3209 : : {
3210 : 875 : gfc_code *c;
3211 : 875 : gfc_case *cp;
3212 : 875 : tree end_label;
3213 : 875 : tree tmp;
3214 : 875 : gfc_se se;
3215 : 875 : stmtblock_t block;
3216 : 875 : stmtblock_t body;
3217 : :
3218 : 875 : gfc_start_block (&block);
3219 : :
3220 : : /* Calculate the switch expression. */
3221 : 875 : gfc_init_se (&se, NULL);
3222 : 875 : gfc_conv_expr_val (&se, code->expr1);
3223 : 875 : gfc_add_block_to_block (&block, &se.pre);
3224 : :
3225 : 875 : end_label = gfc_build_label_decl (NULL_TREE);
3226 : :
3227 : 875 : gfc_init_block (&body);
3228 : :
3229 : 2697 : for (c = code->block; c; c = c->block)
3230 : : {
3231 : 3716 : for (cp = c->ext.block.case_list; cp; cp = cp->next)
3232 : : {
3233 : 1894 : tree low, high;
3234 : 1894 : tree label;
3235 : :
3236 : : /* Assume it's the default case. */
3237 : 1894 : low = high = NULL_TREE;
3238 : :
3239 : 1894 : if (cp->low)
3240 : : {
3241 : 1491 : if (cp->low->ts.type == BT_INTEGER)
3242 : 1449 : low = gfc_conv_mpz_to_tree (cp->low->value.integer,
3243 : : cp->low->ts.kind);
3244 : : else
3245 : 42 : low = gfc_conv_mpz_unsigned_to_tree (cp->low->value.integer,
3246 : : cp->low->ts.kind);
3247 : :
3248 : : /* If there's only a lower bound, set the high bound to the
3249 : : maximum value of the case expression. */
3250 : 1491 : if (!cp->high)
3251 : 45 : high = TYPE_MAX_VALUE (TREE_TYPE (se.expr));
3252 : : }
3253 : :
3254 : 1894 : if (cp->high)
3255 : : {
3256 : : /* Three cases are possible here:
3257 : :
3258 : : 1) There is no lower bound, e.g. CASE (:N).
3259 : : 2) There is a lower bound .NE. high bound, that is
3260 : : a case range, e.g. CASE (N:M) where M>N (we make
3261 : : sure that M>N during type resolution).
3262 : : 3) There is a lower bound, and it has the same value
3263 : : as the high bound, e.g. CASE (N:N). This is our
3264 : : internal representation of CASE(N).
3265 : :
3266 : : In the first and second case, we need to set a value for
3267 : : high. In the third case, we don't because the GCC middle
3268 : : end represents a single case value by just letting high be
3269 : : a NULL_TREE. We can't do that because we need to be able
3270 : : to represent unbounded cases. */
3271 : :
3272 : 1490 : if (!cp->low
3273 : 1446 : || (mpz_cmp (cp->low->value.integer,
3274 : 1446 : cp->high->value.integer) != 0))
3275 : : {
3276 : 73 : if (cp->high->ts.type == BT_INTEGER)
3277 : 73 : high = gfc_conv_mpz_to_tree (cp->high->value.integer,
3278 : : cp->high->ts.kind);
3279 : : else
3280 : 0 : high
3281 : 0 : = gfc_conv_mpz_unsigned_to_tree (cp->high->value.integer,
3282 : : cp->high->ts.kind);
3283 : : }
3284 : :
3285 : : /* Unbounded case. */
3286 : 1490 : if (!cp->low)
3287 : 44 : low = TYPE_MIN_VALUE (TREE_TYPE (se.expr));
3288 : : }
3289 : :
3290 : : /* Build a label. */
3291 : 1894 : label = gfc_build_label_decl (NULL_TREE);
3292 : :
3293 : : /* Add this case label.
3294 : : Add parameter 'label', make it match GCC backend. */
3295 : 1894 : tmp = build_case_label (low, high, label);
3296 : 1894 : gfc_add_expr_to_block (&body, tmp);
3297 : : }
3298 : :
3299 : : /* Add the statements for this case. */
3300 : 1822 : tmp = gfc_trans_code (c->next);
3301 : 1822 : gfc_add_expr_to_block (&body, tmp);
3302 : :
3303 : : /* Break to the end of the construct. */
3304 : 1822 : tmp = build1_v (GOTO_EXPR, end_label);
3305 : 1822 : gfc_add_expr_to_block (&body, tmp);
3306 : : }
3307 : :
3308 : 875 : tmp = gfc_finish_block (&body);
3309 : 875 : tmp = fold_build2_loc (input_location, SWITCH_EXPR, NULL_TREE, se.expr, tmp);
3310 : 875 : gfc_add_expr_to_block (&block, tmp);
3311 : :
3312 : 875 : tmp = build1_v (LABEL_EXPR, end_label);
3313 : 875 : gfc_add_expr_to_block (&block, tmp);
3314 : :
3315 : 875 : return gfc_finish_block (&block);
3316 : : }
3317 : :
3318 : :
3319 : : /* Translate the SELECT CASE construct for LOGICAL case expressions.
3320 : :
3321 : : There are only two cases possible here, even though the standard
3322 : : does allow three cases in a LOGICAL SELECT CASE construct: .TRUE.,
3323 : : .FALSE., and DEFAULT.
3324 : :
3325 : : We never generate more than two blocks here. Instead, we always
3326 : : try to eliminate the DEFAULT case. This way, we can translate this
3327 : : kind of SELECT construct to a simple
3328 : :
3329 : : if {} else {};
3330 : :
3331 : : expression in GENERIC. */
3332 : :
3333 : : static tree
3334 : 54 : gfc_trans_logical_select (gfc_code * code)
3335 : : {
3336 : 54 : gfc_code *c;
3337 : 54 : gfc_code *t, *f, *d;
3338 : 54 : gfc_case *cp;
3339 : 54 : gfc_se se;
3340 : 54 : stmtblock_t block;
3341 : :
3342 : : /* Assume we don't have any cases at all. */
3343 : 54 : t = f = d = NULL;
3344 : :
3345 : : /* Now see which ones we actually do have. We can have at most two
3346 : : cases in a single case list: one for .TRUE. and one for .FALSE.
3347 : : The default case is always separate. If the cases for .TRUE. and
3348 : : .FALSE. are in the same case list, the block for that case list
3349 : : always executed, and we don't generate code a COND_EXPR. */
3350 : 171 : for (c = code->block; c; c = c->block)
3351 : : {
3352 : 243 : for (cp = c->ext.block.case_list; cp; cp = cp->next)
3353 : : {
3354 : 126 : if (cp->low)
3355 : : {
3356 : 72 : if (cp->low->value.logical == 0) /* .FALSE. */
3357 : : f = c;
3358 : : else /* if (cp->value.logical != 0), thus .TRUE. */
3359 : 36 : t = c;
3360 : : }
3361 : : else
3362 : : d = c;
3363 : : }
3364 : : }
3365 : :
3366 : : /* Start a new block. */
3367 : 54 : gfc_start_block (&block);
3368 : :
3369 : : /* Calculate the switch expression. We always need to do this
3370 : : because it may have side effects. */
3371 : 54 : gfc_init_se (&se, NULL);
3372 : 54 : gfc_conv_expr_val (&se, code->expr1);
3373 : 54 : gfc_add_block_to_block (&block, &se.pre);
3374 : :
3375 : 54 : if (t == f && t != NULL)
3376 : : {
3377 : : /* Cases for .TRUE. and .FALSE. are in the same block. Just
3378 : : translate the code for these cases, append it to the current
3379 : : block. */
3380 : 9 : gfc_add_expr_to_block (&block, gfc_trans_code (t->next));
3381 : : }
3382 : : else
3383 : : {
3384 : 45 : tree true_tree, false_tree, stmt;
3385 : :
3386 : 45 : true_tree = build_empty_stmt (input_location);
3387 : 45 : false_tree = build_empty_stmt (input_location);
3388 : :
3389 : : /* If we have a case for .TRUE. and for .FALSE., discard the default case.
3390 : : Otherwise, if .TRUE. or .FALSE. is missing and there is a default case,
3391 : : make the missing case the default case. */
3392 : 45 : if (t != NULL && f != NULL)
3393 : 63 : d = NULL;
3394 : 36 : else if (d != NULL)
3395 : : {
3396 : 36 : if (t == NULL)
3397 : : t = d;
3398 : : else
3399 : : f = d;
3400 : : }
3401 : :
3402 : : /* Translate the code for each of these blocks, and append it to
3403 : : the current block. */
3404 : 18 : if (t != NULL)
3405 : 45 : true_tree = gfc_trans_code (t->next);
3406 : :
3407 : 45 : if (f != NULL)
3408 : 45 : false_tree = gfc_trans_code (f->next);
3409 : :
3410 : 45 : stmt = fold_build3_loc (input_location, COND_EXPR, void_type_node,
3411 : : se.expr, true_tree, false_tree);
3412 : 45 : gfc_add_expr_to_block (&block, stmt);
3413 : : }
3414 : :
3415 : 54 : return gfc_finish_block (&block);
3416 : : }
3417 : :
3418 : :
3419 : : /* The jump table types are stored in static variables to avoid
3420 : : constructing them from scratch every single time. */
3421 : : static GTY(()) tree select_struct[2];
3422 : :
3423 : : /* Translate the SELECT CASE construct for CHARACTER case expressions.
3424 : : Instead of generating compares and jumps, it is far simpler to
3425 : : generate a data structure describing the cases in order and call a
3426 : : library subroutine that locates the right case.
3427 : : This is particularly true because this is the only case where we
3428 : : might have to dispose of a temporary.
3429 : : The library subroutine returns a pointer to jump to or NULL if no
3430 : : branches are to be taken. */
3431 : :
3432 : : static tree
3433 : 85 : gfc_trans_character_select (gfc_code *code)
3434 : : {
3435 : 85 : tree init, end_label, tmp, type, case_num, label, fndecl;
3436 : 85 : stmtblock_t block, body;
3437 : 85 : gfc_case *cp, *d;
3438 : 85 : gfc_code *c;
3439 : 85 : gfc_se se, expr1se;
3440 : 85 : int n, k;
3441 : 85 : vec<constructor_elt, va_gc> *inits = NULL;
3442 : :
3443 : 85 : tree pchartype = gfc_get_pchar_type (code->expr1->ts.kind);
3444 : :
3445 : : /* The jump table types are stored in static variables to avoid
3446 : : constructing them from scratch every single time. */
3447 : 85 : static tree ss_string1[2], ss_string1_len[2];
3448 : 85 : static tree ss_string2[2], ss_string2_len[2];
3449 : 85 : static tree ss_target[2];
3450 : :
3451 : 85 : cp = code->block->ext.block.case_list;
3452 : 271 : while (cp->left != NULL)
3453 : : cp = cp->left;
3454 : :
3455 : : /* Generate the body */
3456 : 85 : gfc_start_block (&block);
3457 : 85 : gfc_init_se (&expr1se, NULL);
3458 : 85 : gfc_conv_expr_reference (&expr1se, code->expr1);
3459 : :
3460 : 85 : gfc_add_block_to_block (&block, &expr1se.pre);
3461 : :
3462 : 85 : end_label = gfc_build_label_decl (NULL_TREE);
3463 : :
3464 : 85 : gfc_init_block (&body);
3465 : :
3466 : : /* Attempt to optimize length 1 selects. */
3467 : 85 : if (integer_onep (expr1se.string_length))
3468 : : {
3469 : 181 : for (d = cp; d; d = d->right)
3470 : : {
3471 : 155 : gfc_charlen_t i;
3472 : 155 : if (d->low)
3473 : : {
3474 : 135 : gcc_assert (d->low->expr_type == EXPR_CONSTANT
3475 : : && d->low->ts.type == BT_CHARACTER);
3476 : 135 : if (d->low->value.character.length > 1)
3477 : : {
3478 : 12 : for (i = 1; i < d->low->value.character.length; i++)
3479 : 12 : if (d->low->value.character.string[i] != ' ')
3480 : : break;
3481 : 12 : if (i != d->low->value.character.length)
3482 : : {
3483 : 12 : if (optimize && d->high && i == 1)
3484 : : {
3485 : 12 : gcc_assert (d->high->expr_type == EXPR_CONSTANT
3486 : : && d->high->ts.type == BT_CHARACTER);
3487 : 12 : if (d->high->value.character.length > 1
3488 : 12 : && (d->low->value.character.string[0]
3489 : 12 : == d->high->value.character.string[0])
3490 : 12 : && d->high->value.character.string[1] != ' '
3491 : 24 : && ((d->low->value.character.string[1] < ' ')
3492 : : == (d->high->value.character.string[1]
3493 : 12 : < ' ')))
3494 : 12 : continue;
3495 : : }
3496 : : break;
3497 : : }
3498 : : }
3499 : : }
3500 : 143 : if (d->high)
3501 : : {
3502 : 123 : gcc_assert (d->high->expr_type == EXPR_CONSTANT
3503 : : && d->high->ts.type == BT_CHARACTER);
3504 : 123 : if (d->high->value.character.length > 1)
3505 : : {
3506 : 18 : for (i = 1; i < d->high->value.character.length; i++)
3507 : 12 : if (d->high->value.character.string[i] != ' ')
3508 : : break;
3509 : 6 : if (i != d->high->value.character.length)
3510 : : break;
3511 : : }
3512 : : }
3513 : : }
3514 : 26 : if (d == NULL)
3515 : : {
3516 : 26 : tree ctype = gfc_get_char_type (code->expr1->ts.kind);
3517 : :
3518 : 108 : for (c = code->block; c; c = c->block)
3519 : : {
3520 : 237 : for (cp = c->ext.block.case_list; cp; cp = cp->next)
3521 : : {
3522 : 155 : tree low, high;
3523 : 155 : tree label;
3524 : 155 : gfc_char_t r;
3525 : :
3526 : : /* Assume it's the default case. */
3527 : 155 : low = high = NULL_TREE;
3528 : :
3529 : 155 : if (cp->low)
3530 : : {
3531 : : /* CASE ('ab') or CASE ('ab':'az') will never match
3532 : : any length 1 character. */
3533 : 135 : if (cp->low->value.character.length > 1
3534 : 12 : && cp->low->value.character.string[1] != ' ')
3535 : 12 : continue;
3536 : :
3537 : 123 : if (cp->low->value.character.length > 0)
3538 : 117 : r = cp->low->value.character.string[0];
3539 : : else
3540 : : r = ' ';
3541 : 123 : low = build_int_cst (ctype, r);
3542 : :
3543 : : /* If there's only a lower bound, set the high bound
3544 : : to the maximum value of the case expression. */
3545 : 123 : if (!cp->high)
3546 : 0 : high = TYPE_MAX_VALUE (ctype);
3547 : : }
3548 : :
3549 : 143 : if (cp->high)
3550 : : {
3551 : 123 : if (!cp->low
3552 : 123 : || (cp->low->value.character.string[0]
3553 : 123 : != cp->high->value.character.string[0]))
3554 : : {
3555 : 7 : if (cp->high->value.character.length > 0)
3556 : 7 : r = cp->high->value.character.string[0];
3557 : : else
3558 : : r = ' ';
3559 : 7 : high = build_int_cst (ctype, r);
3560 : : }
3561 : :
3562 : : /* Unbounded case. */
3563 : 123 : if (!cp->low)
3564 : 0 : low = TYPE_MIN_VALUE (ctype);
3565 : : }
3566 : :
3567 : : /* Build a label. */
3568 : 143 : label = gfc_build_label_decl (NULL_TREE);
3569 : :
3570 : : /* Add this case label.
3571 : : Add parameter 'label', make it match GCC backend. */
3572 : 143 : tmp = build_case_label (low, high, label);
3573 : 143 : gfc_add_expr_to_block (&body, tmp);
3574 : : }
3575 : :
3576 : : /* Add the statements for this case. */
3577 : 82 : tmp = gfc_trans_code (c->next);
3578 : 82 : gfc_add_expr_to_block (&body, tmp);
3579 : :
3580 : : /* Break to the end of the construct. */
3581 : 82 : tmp = build1_v (GOTO_EXPR, end_label);
3582 : 82 : gfc_add_expr_to_block (&body, tmp);
3583 : : }
3584 : :
3585 : 52 : tmp = gfc_string_to_single_character (expr1se.string_length,
3586 : : expr1se.expr,
3587 : 26 : code->expr1->ts.kind);
3588 : 26 : case_num = gfc_create_var (ctype, "case_num");
3589 : 26 : gfc_add_modify (&block, case_num, tmp);
3590 : :
3591 : 26 : gfc_add_block_to_block (&block, &expr1se.post);
3592 : :
3593 : 26 : tmp = gfc_finish_block (&body);
3594 : 26 : tmp = fold_build2_loc (input_location, SWITCH_EXPR, NULL_TREE,
3595 : : case_num, tmp);
3596 : 26 : gfc_add_expr_to_block (&block, tmp);
3597 : :
3598 : 26 : tmp = build1_v (LABEL_EXPR, end_label);
3599 : 26 : gfc_add_expr_to_block (&block, tmp);
3600 : :
3601 : 26 : return gfc_finish_block (&block);
3602 : : }
3603 : : }
3604 : :
3605 : 59 : if (code->expr1->ts.kind == 1)
3606 : : k = 0;
3607 : 6 : else if (code->expr1->ts.kind == 4)
3608 : : k = 1;
3609 : : else
3610 : 0 : gcc_unreachable ();
3611 : :
3612 : 59 : if (select_struct[k] == NULL)
3613 : : {
3614 : 53 : tree *chain = NULL;
3615 : 53 : select_struct[k] = make_node (RECORD_TYPE);
3616 : :
3617 : 53 : if (code->expr1->ts.kind == 1)
3618 : 47 : TYPE_NAME (select_struct[k]) = get_identifier ("_jump_struct_char1");
3619 : 6 : else if (code->expr1->ts.kind == 4)
3620 : 6 : TYPE_NAME (select_struct[k]) = get_identifier ("_jump_struct_char4");
3621 : : else
3622 : 0 : gcc_unreachable ();
3623 : :
3624 : : #undef ADD_FIELD
3625 : : #define ADD_FIELD(NAME, TYPE) \
3626 : : ss_##NAME[k] = gfc_add_field_to_struct (select_struct[k], \
3627 : : get_identifier (stringize(NAME)), \
3628 : : TYPE, \
3629 : : &chain)
3630 : :
3631 : 53 : ADD_FIELD (string1, pchartype);
3632 : 53 : ADD_FIELD (string1_len, gfc_charlen_type_node);
3633 : :
3634 : 53 : ADD_FIELD (string2, pchartype);
3635 : 53 : ADD_FIELD (string2_len, gfc_charlen_type_node);
3636 : :
3637 : 53 : ADD_FIELD (target, integer_type_node);
3638 : : #undef ADD_FIELD
3639 : :
3640 : 53 : gfc_finish_type (select_struct[k]);
3641 : : }
3642 : :
3643 : : n = 0;
3644 : 311 : for (d = cp; d; d = d->right)
3645 : 252 : d->n = n++;
3646 : :
3647 : 263 : for (c = code->block; c; c = c->block)
3648 : : {
3649 : 456 : for (d = c->ext.block.case_list; d; d = d->next)
3650 : : {
3651 : 252 : label = gfc_build_label_decl (NULL_TREE);
3652 : 452 : tmp = build_case_label ((d->low == NULL && d->high == NULL)
3653 : : ? NULL
3654 : 200 : : build_int_cst (integer_type_node, d->n),
3655 : : NULL, label);
3656 : 252 : gfc_add_expr_to_block (&body, tmp);
3657 : : }
3658 : :
3659 : 204 : tmp = gfc_trans_code (c->next);
3660 : 204 : gfc_add_expr_to_block (&body, tmp);
3661 : :
3662 : 204 : tmp = build1_v (GOTO_EXPR, end_label);
3663 : 204 : gfc_add_expr_to_block (&body, tmp);
3664 : : }
3665 : :
3666 : : /* Generate the structure describing the branches */
3667 : 311 : for (d = cp; d; d = d->right)
3668 : : {
3669 : 252 : vec<constructor_elt, va_gc> *node = NULL;
3670 : :
3671 : 252 : gfc_init_se (&se, NULL);
3672 : :
3673 : 252 : if (d->low == NULL)
3674 : : {
3675 : 52 : CONSTRUCTOR_APPEND_ELT (node, ss_string1[k], null_pointer_node);
3676 : 52 : CONSTRUCTOR_APPEND_ELT (node, ss_string1_len[k], build_zero_cst (gfc_charlen_type_node));
3677 : : }
3678 : : else
3679 : : {
3680 : 200 : gfc_conv_expr_reference (&se, d->low);
3681 : :
3682 : 200 : CONSTRUCTOR_APPEND_ELT (node, ss_string1[k], se.expr);
3683 : 200 : CONSTRUCTOR_APPEND_ELT (node, ss_string1_len[k], se.string_length);
3684 : : }
3685 : :
3686 : 252 : if (d->high == NULL)
3687 : : {
3688 : 52 : CONSTRUCTOR_APPEND_ELT (node, ss_string2[k], null_pointer_node);
3689 : 52 : CONSTRUCTOR_APPEND_ELT (node, ss_string2_len[k], build_zero_cst (gfc_charlen_type_node));
3690 : : }
3691 : : else
3692 : : {
3693 : 200 : gfc_init_se (&se, NULL);
3694 : 200 : gfc_conv_expr_reference (&se, d->high);
3695 : :
3696 : 200 : CONSTRUCTOR_APPEND_ELT (node, ss_string2[k], se.expr);
3697 : 200 : CONSTRUCTOR_APPEND_ELT (node, ss_string2_len[k], se.string_length);
3698 : : }
3699 : :
3700 : 252 : CONSTRUCTOR_APPEND_ELT (node, ss_target[k],
3701 : : build_int_cst (integer_type_node, d->n));
3702 : :
3703 : 252 : tmp = build_constructor (select_struct[k], node);
3704 : 252 : CONSTRUCTOR_APPEND_ELT (inits, NULL_TREE, tmp);
3705 : : }
3706 : :
3707 : 59 : type = build_array_type (select_struct[k],
3708 : 59 : build_index_type (size_int (n-1)));
3709 : :
3710 : 59 : init = build_constructor (type, inits);
3711 : 59 : TREE_CONSTANT (init) = 1;
3712 : 59 : TREE_STATIC (init) = 1;
3713 : : /* Create a static variable to hold the jump table. */
3714 : 59 : tmp = gfc_create_var (type, "jumptable");
3715 : 59 : TREE_CONSTANT (tmp) = 1;
3716 : 59 : TREE_STATIC (tmp) = 1;
3717 : 59 : TREE_READONLY (tmp) = 1;
3718 : 59 : DECL_INITIAL (tmp) = init;
3719 : 59 : init = tmp;
3720 : :
3721 : : /* Build the library call */
3722 : 59 : init = gfc_build_addr_expr (pvoid_type_node, init);
3723 : :
3724 : 59 : if (code->expr1->ts.kind == 1)
3725 : 53 : fndecl = gfor_fndecl_select_string;
3726 : 6 : else if (code->expr1->ts.kind == 4)
3727 : 6 : fndecl = gfor_fndecl_select_string_char4;
3728 : : else
3729 : 0 : gcc_unreachable ();
3730 : :
3731 : 59 : tmp = build_call_expr_loc (input_location,
3732 : : fndecl, 4, init,
3733 : 59 : build_int_cst (gfc_charlen_type_node, n),
3734 : : expr1se.expr, expr1se.string_length);
3735 : 59 : case_num = gfc_create_var (integer_type_node, "case_num");
3736 : 59 : gfc_add_modify (&block, case_num, tmp);
3737 : :
3738 : 59 : gfc_add_block_to_block (&block, &expr1se.post);
3739 : :
3740 : 59 : tmp = gfc_finish_block (&body);
3741 : 59 : tmp = fold_build2_loc (input_location, SWITCH_EXPR, NULL_TREE,
3742 : : case_num, tmp);
3743 : 59 : gfc_add_expr_to_block (&block, tmp);
3744 : :
3745 : 59 : tmp = build1_v (LABEL_EXPR, end_label);
3746 : 59 : gfc_add_expr_to_block (&block, tmp);
3747 : :
3748 : 59 : return gfc_finish_block (&block);
3749 : : }
3750 : :
3751 : :
3752 : : /* Translate the three variants of the SELECT CASE construct.
3753 : :
3754 : : SELECT CASEs with INTEGER case expressions can be translated to an
3755 : : equivalent GENERIC switch statement, and for LOGICAL case
3756 : : expressions we build one or two if-else compares.
3757 : :
3758 : : SELECT CASEs with CHARACTER case expressions are a whole different
3759 : : story, because they don't exist in GENERIC. So we sort them and
3760 : : do a binary search at runtime.
3761 : :
3762 : : Fortran has no BREAK statement, and it does not allow jumps from
3763 : : one case block to another. That makes things a lot easier for
3764 : : the optimizers. */
3765 : :
3766 : : tree
3767 : 1016 : gfc_trans_select (gfc_code * code)
3768 : : {
3769 : 1016 : stmtblock_t block;
3770 : 1016 : tree body;
3771 : 1016 : tree exit_label;
3772 : :
3773 : 1016 : gcc_assert (code && code->expr1);
3774 : 1016 : gfc_init_block (&block);
3775 : :
3776 : : /* Build the exit label and hang it in. */
3777 : 1016 : exit_label = gfc_build_label_decl (NULL_TREE);
3778 : 1016 : code->exit_label = exit_label;
3779 : :
3780 : : /* Empty SELECT constructs are legal. */
3781 : 1016 : if (code->block == NULL)
3782 : 2 : body = build_empty_stmt (input_location);
3783 : :
3784 : : /* Select the correct translation function. */
3785 : : else
3786 : 1014 : switch (code->expr1->ts.type)
3787 : : {
3788 : 54 : case BT_LOGICAL:
3789 : 54 : body = gfc_trans_logical_select (code);
3790 : 54 : break;
3791 : :
3792 : 875 : case BT_INTEGER:
3793 : 875 : case BT_UNSIGNED:
3794 : 875 : body = gfc_trans_integer_select (code);
3795 : 875 : break;
3796 : :
3797 : 85 : case BT_CHARACTER:
3798 : 85 : body = gfc_trans_character_select (code);
3799 : 85 : break;
3800 : :
3801 : 0 : default:
3802 : 0 : gfc_internal_error ("gfc_trans_select(): Bad type for case expr.");
3803 : : /* Not reached */
3804 : : }
3805 : :
3806 : : /* Build everything together. */
3807 : 1016 : gfc_add_expr_to_block (&block, body);
3808 : 1016 : gfc_add_expr_to_block (&block, build1_v (LABEL_EXPR, exit_label));
3809 : :
3810 : 1016 : return gfc_finish_block (&block);
3811 : : }
3812 : :
3813 : : tree
3814 : 2787 : gfc_trans_select_type (gfc_code * code)
3815 : : {
3816 : 2787 : stmtblock_t block;
3817 : 2787 : tree body;
3818 : 2787 : tree exit_label;
3819 : :
3820 : 2787 : gcc_assert (code && code->expr1);
3821 : 2787 : gfc_init_block (&block);
3822 : :
3823 : : /* Build the exit label and hang it in. */
3824 : 2787 : exit_label = gfc_build_label_decl (NULL_TREE);
3825 : 2787 : code->exit_label = exit_label;
3826 : :
3827 : : /* Empty SELECT constructs are legal. */
3828 : 2787 : if (code->block == NULL)
3829 : 0 : body = build_empty_stmt (input_location);
3830 : : else
3831 : 2787 : body = gfc_trans_select_type_cases (code);
3832 : :
3833 : : /* Build everything together. */
3834 : 2787 : gfc_add_expr_to_block (&block, body);
3835 : :
3836 : 2787 : if (TREE_USED (exit_label))
3837 : 2600 : gfc_add_expr_to_block (&block, build1_v (LABEL_EXPR, exit_label));
3838 : :
3839 : 2787 : return gfc_finish_block (&block);
3840 : : }
3841 : :
3842 : :
3843 : : static tree
3844 : 1000 : gfc_trans_select_rank_cases (gfc_code * code)
3845 : : {
3846 : 1000 : gfc_code *c;
3847 : 1000 : gfc_case *cp;
3848 : 1000 : tree tmp;
3849 : 1000 : tree cond;
3850 : 1000 : tree low;
3851 : 1000 : tree rank;
3852 : 1000 : gfc_se se;
3853 : 1000 : gfc_se cse;
3854 : 1000 : stmtblock_t block;
3855 : 1000 : stmtblock_t body;
3856 : 1000 : bool def = false;
3857 : :
3858 : 1000 : gfc_start_block (&block);
3859 : :
3860 : : /* Calculate the switch expression. */
3861 : 1000 : gfc_init_se (&se, NULL);
3862 : 1000 : gfc_conv_expr_descriptor (&se, code->expr1);
3863 : 1000 : rank = gfc_conv_descriptor_rank (se.expr);
3864 : 1000 : rank = gfc_evaluate_now (rank, &block);
3865 : 1000 : symbol_attribute attr = gfc_expr_attr (code->expr1);
3866 : 1000 : if (!attr.pointer && !attr.allocatable)
3867 : : {
3868 : : /* Special case for assumed-rank ('rank(*)', internally -1):
3869 : : rank = (rank == 0 || ubound[rank-1] != -1) ? rank : -1. */
3870 : 766 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
3871 : 766 : rank, build_int_cst (TREE_TYPE (rank), 0));
3872 : 766 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
3873 : : fold_convert (gfc_array_index_type, rank),
3874 : : gfc_index_one_node);
3875 : 766 : tmp = gfc_conv_descriptor_ubound_get (se.expr, tmp);
3876 : 766 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
3877 : 766 : tmp, build_int_cst (TREE_TYPE (tmp), -1));
3878 : 766 : cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
3879 : : logical_type_node, cond, tmp);
3880 : 766 : tmp = fold_build3_loc (input_location, COND_EXPR, TREE_TYPE (rank),
3881 : 766 : cond, rank, build_int_cst (TREE_TYPE (rank), -1));
3882 : 766 : rank = gfc_evaluate_now (tmp, &block);
3883 : : }
3884 : 1000 : TREE_USED (code->exit_label) = 0;
3885 : :
3886 : 2000 : repeat:
3887 : 6554 : for (c = code->block; c; c = c->block)
3888 : : {
3889 : 4554 : cp = c->ext.block.case_list;
3890 : :
3891 : : /* Assume it's the default case. */
3892 : 4554 : low = NULL_TREE;
3893 : 4554 : tmp = NULL_TREE;
3894 : :
3895 : : /* Put the default case at the end. */
3896 : 4554 : if ((!def && !cp->low) || (def && cp->low))
3897 : 2277 : continue;
3898 : :
3899 : 2277 : if (cp->low)
3900 : : {
3901 : 1362 : gfc_init_se (&cse, NULL);
3902 : 1362 : gfc_conv_expr_val (&cse, cp->low);
3903 : 1362 : gfc_add_block_to_block (&block, &cse.pre);
3904 : 1362 : low = cse.expr;
3905 : : }
3906 : :
3907 : 2277 : gfc_init_block (&body);
3908 : :
3909 : : /* Add the statements for this case. */
3910 : 2277 : tmp = gfc_trans_code (c->next);
3911 : 2277 : gfc_add_expr_to_block (&body, tmp);
3912 : :
3913 : : /* Break to the end of the SELECT RANK construct. The default
3914 : : case just falls through. */
3915 : 2277 : if (!def)
3916 : : {
3917 : 1362 : TREE_USED (code->exit_label) = 1;
3918 : 1362 : tmp = build1_v (GOTO_EXPR, code->exit_label);
3919 : 1362 : gfc_add_expr_to_block (&body, tmp);
3920 : : }
3921 : :
3922 : 2277 : tmp = gfc_finish_block (&body);
3923 : :
3924 : 2277 : if (low != NULL_TREE)
3925 : : {
3926 : 2724 : cond = fold_build2_loc (input_location, EQ_EXPR,
3927 : 1362 : TREE_TYPE (rank), rank,
3928 : 1362 : fold_convert (TREE_TYPE (rank), low));
3929 : 1362 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
3930 : : cond, tmp,
3931 : : build_empty_stmt (input_location));
3932 : : }
3933 : :
3934 : 2277 : gfc_add_expr_to_block (&block, tmp);
3935 : : }
3936 : :
3937 : 2000 : if (!def)
3938 : : {
3939 : 1000 : def = true;
3940 : 1000 : goto repeat;
3941 : : }
3942 : :
3943 : 1000 : return gfc_finish_block (&block);
3944 : : }
3945 : :
3946 : :
3947 : : tree
3948 : 1001 : gfc_trans_select_rank (gfc_code * code)
3949 : : {
3950 : 1001 : stmtblock_t block;
3951 : 1001 : tree body;
3952 : 1001 : tree exit_label;
3953 : :
3954 : 1001 : gcc_assert (code && code->expr1);
3955 : 1001 : gfc_init_block (&block);
3956 : :
3957 : : /* Build the exit label and hang it in. */
3958 : 1001 : exit_label = gfc_build_label_decl (NULL_TREE);
3959 : 1001 : code->exit_label = exit_label;
3960 : :
3961 : : /* Empty SELECT constructs are legal. */
3962 : 1001 : if (code->block == NULL)
3963 : 1 : body = build_empty_stmt (input_location);
3964 : : else
3965 : 1000 : body = gfc_trans_select_rank_cases (code);
3966 : :
3967 : : /* Build everything together. */
3968 : 1001 : gfc_add_expr_to_block (&block, body);
3969 : :
3970 : 1001 : if (TREE_USED (exit_label))
3971 : 1001 : gfc_add_expr_to_block (&block, build1_v (LABEL_EXPR, exit_label));
3972 : :
3973 : 1001 : return gfc_finish_block (&block);
3974 : : }
3975 : :
3976 : :
3977 : : /* Traversal function to substitute a replacement symtree if the symbol
3978 : : in the expression is the same as that passed. f == 2 signals that
3979 : : that variable itself is not to be checked - only the references.
3980 : : This group of functions is used when the variable expression in a
3981 : : FORALL assignment has internal references. For example:
3982 : : FORALL (i = 1:4) p(p(i)) = i
3983 : : The only recourse here is to store a copy of 'p' for the index
3984 : : expression. */
3985 : :
3986 : : static gfc_symtree *new_symtree;
3987 : : static gfc_symtree *old_symtree;
3988 : :
3989 : : static bool
3990 : 710 : forall_replace (gfc_expr *expr, gfc_symbol *sym, int *f)
3991 : : {
3992 : 710 : if (expr->expr_type != EXPR_VARIABLE)
3993 : : return false;
3994 : :
3995 : 406 : if (*f == 2)
3996 : 62 : *f = 1;
3997 : 344 : else if (expr->symtree->n.sym == sym)
3998 : 72 : expr->symtree = new_symtree;
3999 : :
4000 : : return false;
4001 : : }
4002 : :
4003 : : static void
4004 : 124 : forall_replace_symtree (gfc_expr *e, gfc_symbol *sym, int f)
4005 : : {
4006 : 0 : gfc_traverse_expr (e, sym, forall_replace, f);
4007 : 0 : }
4008 : :
4009 : : static bool
4010 : 710 : forall_restore (gfc_expr *expr,
4011 : : gfc_symbol *sym ATTRIBUTE_UNUSED,
4012 : : int *f ATTRIBUTE_UNUSED)
4013 : : {
4014 : 710 : if (expr->expr_type != EXPR_VARIABLE)
4015 : : return false;
4016 : :
4017 : 406 : if (expr->symtree == new_symtree)
4018 : 72 : expr->symtree = old_symtree;
4019 : :
4020 : : return false;
4021 : : }
4022 : :
4023 : : static void
4024 : 124 : forall_restore_symtree (gfc_expr *e)
4025 : : {
4026 : 0 : gfc_traverse_expr (e, NULL, forall_restore, 0);
4027 : 0 : }
4028 : :
4029 : : static void
4030 : 62 : forall_make_variable_temp (gfc_code *c, stmtblock_t *pre, stmtblock_t *post)
4031 : : {
4032 : 62 : gfc_se tse;
4033 : 62 : gfc_se rse;
4034 : 62 : gfc_expr *e;
4035 : 62 : gfc_symbol *new_sym;
4036 : 62 : gfc_symbol *old_sym;
4037 : 62 : gfc_symtree *root;
4038 : 62 : tree tmp;
4039 : :
4040 : : /* Build a copy of the lvalue. */
4041 : 62 : old_symtree = c->expr1->symtree;
4042 : 62 : old_sym = old_symtree->n.sym;
4043 : 62 : e = gfc_lval_expr_from_sym (old_sym);
4044 : 62 : if (old_sym->attr.dimension)
4045 : : {
4046 : 30 : gfc_init_se (&tse, NULL);
4047 : 30 : gfc_conv_subref_array_arg (&tse, e, 0, INTENT_IN, false);
4048 : 30 : gfc_add_block_to_block (pre, &tse.pre);
4049 : 30 : gfc_add_block_to_block (post, &tse.post);
4050 : 30 : tse.expr = build_fold_indirect_ref_loc (input_location, tse.expr);
4051 : :
4052 : 30 : if (c->expr1->ref->u.ar.type != AR_SECTION)
4053 : : {
4054 : : /* Use the variable offset for the temporary. */
4055 : 24 : tmp = gfc_conv_array_offset (old_sym->backend_decl);
4056 : 24 : gfc_conv_descriptor_offset_set (pre, tse.expr, tmp);
4057 : : }
4058 : : }
4059 : : else
4060 : : {
4061 : 32 : gfc_init_se (&tse, NULL);
4062 : 32 : gfc_init_se (&rse, NULL);
4063 : 32 : gfc_conv_expr (&rse, e);
4064 : 32 : if (e->ts.type == BT_CHARACTER)
4065 : : {
4066 : 32 : tse.string_length = rse.string_length;
4067 : 32 : tmp = gfc_get_character_type_len (gfc_default_character_kind,
4068 : : tse.string_length);
4069 : 32 : tse.expr = gfc_conv_string_tmp (&tse, build_pointer_type (tmp),
4070 : : rse.string_length);
4071 : 32 : gfc_add_block_to_block (pre, &tse.pre);
4072 : 32 : gfc_add_block_to_block (post, &tse.post);
4073 : : }
4074 : : else
4075 : : {
4076 : 0 : tmp = gfc_typenode_for_spec (&e->ts);
4077 : 0 : tse.expr = gfc_create_var (tmp, "temp");
4078 : : }
4079 : :
4080 : 64 : tmp = gfc_trans_scalar_assign (&tse, &rse, e->ts,
4081 : 32 : e->expr_type == EXPR_VARIABLE, false);
4082 : 32 : gfc_add_expr_to_block (pre, tmp);
4083 : : }
4084 : 62 : gfc_free_expr (e);
4085 : :
4086 : : /* Create a new symbol to represent the lvalue. */
4087 : 62 : new_sym = gfc_new_symbol (old_sym->name, NULL);
4088 : 62 : new_sym->ts = old_sym->ts;
4089 : 62 : new_sym->attr.referenced = 1;
4090 : 62 : new_sym->attr.temporary = 1;
4091 : 62 : new_sym->attr.dimension = old_sym->attr.dimension;
4092 : 62 : new_sym->attr.flavor = old_sym->attr.flavor;
4093 : :
4094 : : /* Use the temporary as the backend_decl. */
4095 : 62 : new_sym->backend_decl = tse.expr;
4096 : :
4097 : : /* Create a fake symtree for it. */
4098 : 62 : root = NULL;
4099 : 62 : new_symtree = gfc_new_symtree (&root, old_sym->name);
4100 : 62 : new_symtree->n.sym = new_sym;
4101 : 62 : gcc_assert (new_symtree == root);
4102 : :
4103 : : /* Go through the expression reference replacing the old_symtree
4104 : : with the new. */
4105 : 62 : forall_replace_symtree (c->expr1, old_sym, 2);
4106 : :
4107 : : /* Now we have made this temporary, we might as well use it for
4108 : : the right hand side. */
4109 : 62 : forall_replace_symtree (c->expr2, old_sym, 1);
4110 : 62 : }
4111 : :
4112 : :
4113 : : /* Handles dependencies in forall assignments. */
4114 : : static int
4115 : 1840 : check_forall_dependencies (gfc_code *c, stmtblock_t *pre, stmtblock_t *post)
4116 : : {
4117 : 1840 : gfc_ref *lref;
4118 : 1840 : gfc_ref *rref;
4119 : 1840 : int need_temp;
4120 : 1840 : gfc_symbol *lsym;
4121 : :
4122 : 1840 : lsym = c->expr1->symtree->n.sym;
4123 : 1840 : need_temp = gfc_check_dependency (c->expr1, c->expr2, 0);
4124 : :
4125 : : /* Now check for dependencies within the 'variable'
4126 : : expression itself. These are treated by making a complete
4127 : : copy of variable and changing all the references to it
4128 : : point to the copy instead. Note that the shallow copy of
4129 : : the variable will not suffice for derived types with
4130 : : pointer components. We therefore leave these to their
4131 : : own devices. Likewise for allocatable components. */
4132 : 1840 : if (lsym->ts.type == BT_DERIVED
4133 : 149 : && (lsym->ts.u.derived->attr.pointer_comp
4134 : 149 : || lsym->ts.u.derived->attr.alloc_comp))
4135 : : return need_temp;
4136 : :
4137 : 1745 : new_symtree = NULL;
4138 : 1745 : if (find_forall_index (c->expr1, lsym, 2))
4139 : : {
4140 : 12 : forall_make_variable_temp (c, pre, post);
4141 : 12 : need_temp = 0;
4142 : : }
4143 : :
4144 : : /* Substrings with dependencies are treated in the same
4145 : : way. */
4146 : 1745 : if (c->expr1->ts.type == BT_CHARACTER
4147 : 685 : && c->expr1->ref
4148 : 685 : && c->expr2->expr_type == EXPR_VARIABLE
4149 : 492 : && lsym == c->expr2->symtree->n.sym)
4150 : : {
4151 : 124 : for (lref = c->expr1->ref; lref; lref = lref->next)
4152 : 117 : if (lref->type == REF_SUBSTRING)
4153 : : break;
4154 : 124 : for (rref = c->expr2->ref; rref; rref = rref->next)
4155 : 117 : if (rref->type == REF_SUBSTRING)
4156 : : break;
4157 : :
4158 : 81 : if (rref && lref
4159 : 81 : && gfc_dep_compare_expr (rref->u.ss.start, lref->u.ss.start) < 0)
4160 : : {
4161 : 50 : forall_make_variable_temp (c, pre, post);
4162 : 50 : need_temp = 0;
4163 : : }
4164 : : }
4165 : : return need_temp;
4166 : : }
4167 : :
4168 : :
4169 : : static void
4170 : 62 : cleanup_forall_symtrees (gfc_code *c)
4171 : : {
4172 : 62 : forall_restore_symtree (c->expr1);
4173 : 62 : forall_restore_symtree (c->expr2);
4174 : 62 : free (new_symtree->n.sym);
4175 : 62 : free (new_symtree);
4176 : 62 : }
4177 : :
4178 : :
4179 : : /* Generate the loops for a FORALL block, specified by FORALL_TMP. BODY
4180 : : is the contents of the FORALL block/stmt to be iterated. MASK_FLAG
4181 : : indicates whether we should generate code to test the FORALLs mask
4182 : : array. OUTER is the loop header to be used for initializing mask
4183 : : indices.
4184 : :
4185 : : The generated loop format is:
4186 : : count = (end - start + step) / step
4187 : : loopvar = start
4188 : : while (1)
4189 : : {
4190 : : if (count <=0 )
4191 : : goto end_of_loop
4192 : : <body>
4193 : : loopvar += step
4194 : : count --
4195 : : }
4196 : : end_of_loop: */
4197 : :
4198 : : static tree
4199 : 3472 : gfc_trans_forall_loop (forall_info *forall_tmp, tree body,
4200 : : int mask_flag, stmtblock_t *outer)
4201 : : {
4202 : 3472 : int n, nvar;
4203 : 3472 : tree tmp;
4204 : 3472 : tree cond;
4205 : 3472 : stmtblock_t block;
4206 : 3472 : tree exit_label;
4207 : 3472 : tree count;
4208 : 3472 : tree var, start, end, step;
4209 : 3472 : iter_info *iter;
4210 : :
4211 : : /* Initialize the mask index outside the FORALL nest. */
4212 : 3472 : if (mask_flag && forall_tmp->mask)
4213 : 1097 : gfc_add_modify (outer, forall_tmp->maskindex, gfc_index_zero_node);
4214 : :
4215 : 3472 : iter = forall_tmp->this_loop;
4216 : 3472 : nvar = forall_tmp->nvar;
4217 : 9663 : for (n = 0; n < nvar; n++)
4218 : : {
4219 : 6191 : var = iter->var;
4220 : 6191 : start = iter->start;
4221 : 6191 : end = iter->end;
4222 : 6191 : step = iter->step;
4223 : :
4224 : 6191 : exit_label = gfc_build_label_decl (NULL_TREE);
4225 : 6191 : TREE_USED (exit_label) = 1;
4226 : :
4227 : : /* The loop counter. */
4228 : 6191 : count = gfc_create_var (TREE_TYPE (var), "count");
4229 : :
4230 : : /* The body of the loop. */
4231 : 6191 : gfc_init_block (&block);
4232 : :
4233 : : /* The exit condition. */
4234 : 6191 : cond = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
4235 : 6191 : count, build_int_cst (TREE_TYPE (count), 0));
4236 : :
4237 : : /* PR 83064 means that we cannot use annot_expr_parallel_kind until
4238 : : the autoparallelizer can handle this. */
4239 : 6191 : if (forall_tmp->do_concurrent || iter->annot.ivdep)
4240 : 70 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
4241 : 70 : build_int_cst (integer_type_node,
4242 : 70 : annot_expr_ivdep_kind),
4243 : : integer_zero_node);
4244 : :
4245 : 6191 : if (iter->annot.unroll && cond != error_mark_node)
4246 : 1 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
4247 : 1 : build_int_cst (integer_type_node,
4248 : 1 : annot_expr_unroll_kind),
4249 : 1 : build_int_cst (integer_type_node, iter->annot.unroll));
4250 : :
4251 : 6191 : if (iter->annot.vector && cond != error_mark_node)
4252 : 1 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
4253 : 1 : build_int_cst (integer_type_node,
4254 : 1 : annot_expr_vector_kind),
4255 : : integer_zero_node);
4256 : :
4257 : 6191 : if (iter->annot.novector && cond != error_mark_node)
4258 : 2 : cond = build3 (ANNOTATE_EXPR, TREE_TYPE (cond), cond,
4259 : 2 : build_int_cst (integer_type_node,
4260 : 2 : annot_expr_no_vector_kind),
4261 : : integer_zero_node);
4262 : :
4263 : 6191 : tmp = build1_v (GOTO_EXPR, exit_label);
4264 : 6191 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
4265 : : cond, tmp, build_empty_stmt (input_location));
4266 : 6191 : gfc_add_expr_to_block (&block, tmp);
4267 : :
4268 : : /* The main loop body. */
4269 : 6191 : gfc_add_expr_to_block (&block, body);
4270 : :
4271 : : /* Increment the loop variable. */
4272 : 6191 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (var), var,
4273 : : step);
4274 : 6191 : gfc_add_modify (&block, var, tmp);
4275 : :
4276 : : /* Advance to the next mask element. Only do this for the
4277 : : innermost loop. */
4278 : 6191 : if (n == 0 && mask_flag && forall_tmp->mask)
4279 : : {
4280 : 1097 : tree maskindex = forall_tmp->maskindex;
4281 : 1097 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4282 : : maskindex, gfc_index_one_node);
4283 : 1097 : gfc_add_modify (&block, maskindex, tmp);
4284 : : }
4285 : :
4286 : : /* Decrement the loop counter. */
4287 : 6191 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (var), count,
4288 : 6191 : build_int_cst (TREE_TYPE (var), 1));
4289 : 6191 : gfc_add_modify (&block, count, tmp);
4290 : :
4291 : 6191 : body = gfc_finish_block (&block);
4292 : :
4293 : : /* Loop var initialization. */
4294 : 6191 : gfc_init_block (&block);
4295 : 6191 : gfc_add_modify (&block, var, start);
4296 : :
4297 : :
4298 : : /* Initialize the loop counter. */
4299 : 6191 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (var), step,
4300 : : start);
4301 : 6191 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (var), end,
4302 : : tmp);
4303 : 6191 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR, TREE_TYPE (var),
4304 : : tmp, step);
4305 : 6191 : gfc_add_modify (&block, count, tmp);
4306 : :
4307 : : /* The loop expression. */
4308 : 6191 : tmp = build1_v (LOOP_EXPR, body);
4309 : 6191 : gfc_add_expr_to_block (&block, tmp);
4310 : :
4311 : : /* The exit label. */
4312 : 6191 : tmp = build1_v (LABEL_EXPR, exit_label);
4313 : 6191 : gfc_add_expr_to_block (&block, tmp);
4314 : :
4315 : 6191 : body = gfc_finish_block (&block);
4316 : 6191 : iter = iter->next;
4317 : : }
4318 : 3472 : return body;
4319 : : }
4320 : :
4321 : :
4322 : : /* Generate the body and loops according to MASK_FLAG. If MASK_FLAG
4323 : : is nonzero, the body is controlled by all masks in the forall nest.
4324 : : Otherwise, the innermost loop is not controlled by it's mask. This
4325 : : is used for initializing that mask. */
4326 : :
4327 : : static tree
4328 : 3262 : gfc_trans_nested_forall_loop (forall_info * nested_forall_info, tree body,
4329 : : int mask_flag)
4330 : : {
4331 : 3262 : tree tmp;
4332 : 3262 : stmtblock_t header;
4333 : 3262 : forall_info *forall_tmp;
4334 : 3262 : tree mask, maskindex;
4335 : :
4336 : 3262 : gfc_start_block (&header);
4337 : :
4338 : 3262 : forall_tmp = nested_forall_info;
4339 : 9996 : while (forall_tmp != NULL)
4340 : : {
4341 : : /* Generate body with masks' control. */
4342 : 3472 : if (mask_flag)
4343 : : {
4344 : 2729 : mask = forall_tmp->mask;
4345 : 2729 : maskindex = forall_tmp->maskindex;
4346 : :
4347 : : /* If a mask was specified make the assignment conditional. */
4348 : 2729 : if (mask)
4349 : : {
4350 : 1097 : tmp = gfc_build_array_ref (mask, maskindex, NULL);
4351 : 1097 : body = build3_v (COND_EXPR, tmp, body,
4352 : : build_empty_stmt (input_location));
4353 : : }
4354 : : }
4355 : 3472 : body = gfc_trans_forall_loop (forall_tmp, body, mask_flag, &header);
4356 : 3472 : forall_tmp = forall_tmp->prev_nest;
4357 : 3472 : mask_flag = 1;
4358 : : }
4359 : :
4360 : 3262 : gfc_add_expr_to_block (&header, body);
4361 : 3262 : return gfc_finish_block (&header);
4362 : : }
4363 : :
4364 : :
4365 : : /* Allocate data for holding a temporary array. Returns either a local
4366 : : temporary array or a pointer variable. */
4367 : :
4368 : : static tree
4369 : 1401 : gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock,
4370 : : tree elem_type)
4371 : : {
4372 : 1401 : tree tmpvar;
4373 : 1401 : tree type;
4374 : 1401 : tree tmp;
4375 : :
4376 : 1401 : if (INTEGER_CST_P (size))
4377 : 1154 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
4378 : : size, gfc_index_one_node);
4379 : : else
4380 : : tmp = NULL_TREE;
4381 : :
4382 : 1401 : type = build_range_type (gfc_array_index_type, gfc_index_zero_node, tmp);
4383 : 1401 : type = build_array_type (elem_type, type);
4384 : 1401 : if (gfc_can_put_var_on_stack (bytesize) && INTEGER_CST_P (size))
4385 : : {
4386 : 1154 : tmpvar = gfc_create_var (type, "temp");
4387 : 1154 : *pdata = NULL_TREE;
4388 : : }
4389 : : else
4390 : : {
4391 : 247 : tmpvar = gfc_create_var (build_pointer_type (type), "temp");
4392 : 247 : *pdata = convert (pvoid_type_node, tmpvar);
4393 : :
4394 : 247 : tmp = gfc_call_malloc (pblock, TREE_TYPE (tmpvar), bytesize);
4395 : 247 : gfc_add_modify (pblock, tmpvar, tmp);
4396 : : }
4397 : 1401 : return tmpvar;
4398 : : }
4399 : :
4400 : :
4401 : : /* Generate codes to copy the temporary to the actual lhs. */
4402 : :
4403 : : static tree
4404 : 224 : generate_loop_for_temp_to_lhs (gfc_expr *expr, tree tmp1, tree count3,
4405 : : tree count1,
4406 : : gfc_ss *lss, gfc_ss *rss,
4407 : : tree wheremask, bool invert)
4408 : : {
4409 : 224 : stmtblock_t block, body1;
4410 : 224 : gfc_loopinfo loop;
4411 : 224 : gfc_se lse;
4412 : 224 : gfc_se rse;
4413 : 224 : tree tmp;
4414 : 224 : tree wheremaskexpr;
4415 : :
4416 : 224 : (void) rss; /* TODO: unused. */
4417 : :
4418 : 224 : gfc_start_block (&block);
4419 : :
4420 : 224 : gfc_init_se (&rse, NULL);
4421 : 224 : gfc_init_se (&lse, NULL);
4422 : :
4423 : 224 : if (lss == gfc_ss_terminator)
4424 : : {
4425 : 149 : gfc_init_block (&body1);
4426 : 149 : gfc_conv_expr (&lse, expr);
4427 : 149 : rse.expr = gfc_build_array_ref (tmp1, count1, NULL);
4428 : : }
4429 : : else
4430 : : {
4431 : : /* Initialize the loop. */
4432 : 75 : gfc_init_loopinfo (&loop);
4433 : :
4434 : : /* We may need LSS to determine the shape of the expression. */
4435 : 75 : gfc_add_ss_to_loop (&loop, lss);
4436 : :
4437 : 75 : gfc_conv_ss_startstride (&loop);
4438 : 75 : gfc_conv_loop_setup (&loop, &expr->where);
4439 : :
4440 : 75 : gfc_mark_ss_chain_used (lss, 1);
4441 : : /* Start the loop body. */
4442 : 75 : gfc_start_scalarized_body (&loop, &body1);
4443 : :
4444 : : /* Translate the expression. */
4445 : 75 : gfc_copy_loopinfo_to_se (&lse, &loop);
4446 : 75 : lse.ss = lss;
4447 : 75 : gfc_conv_expr (&lse, expr);
4448 : :
4449 : : /* Form the expression of the temporary. */
4450 : 75 : rse.expr = gfc_build_array_ref (tmp1, count1, NULL);
4451 : : }
4452 : :
4453 : : /* Use the scalar assignment. */
4454 : 224 : rse.string_length = lse.string_length;
4455 : 448 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts,
4456 : 224 : expr->expr_type == EXPR_VARIABLE, false);
4457 : :
4458 : : /* Form the mask expression according to the mask tree list. */
4459 : 224 : if (wheremask)
4460 : : {
4461 : 27 : wheremaskexpr = gfc_build_array_ref (wheremask, count3, NULL);
4462 : 27 : if (invert)
4463 : 0 : wheremaskexpr = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
4464 : 0 : TREE_TYPE (wheremaskexpr),
4465 : : wheremaskexpr);
4466 : 27 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
4467 : : wheremaskexpr, tmp,
4468 : : build_empty_stmt (input_location));
4469 : : }
4470 : :
4471 : 224 : gfc_add_expr_to_block (&body1, tmp);
4472 : :
4473 : 224 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (count1),
4474 : : count1, gfc_index_one_node);
4475 : 224 : gfc_add_modify (&body1, count1, tmp);
4476 : :
4477 : 224 : if (lss == gfc_ss_terminator)
4478 : 149 : gfc_add_block_to_block (&block, &body1);
4479 : : else
4480 : : {
4481 : : /* Increment count3. */
4482 : 75 : if (count3)
4483 : : {
4484 : 27 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
4485 : : gfc_array_index_type,
4486 : : count3, gfc_index_one_node);
4487 : 27 : gfc_add_modify (&body1, count3, tmp);
4488 : : }
4489 : :
4490 : : /* Generate the copying loops. */
4491 : 75 : gfc_trans_scalarizing_loops (&loop, &body1);
4492 : :
4493 : 75 : gfc_add_block_to_block (&block, &loop.pre);
4494 : 75 : gfc_add_block_to_block (&block, &loop.post);
4495 : :
4496 : 75 : gfc_cleanup_loop (&loop);
4497 : : /* TODO: Reuse lss and rss when copying temp->lhs. Need to be careful
4498 : : as tree nodes in SS may not be valid in different scope. */
4499 : : }
4500 : :
4501 : 224 : tmp = gfc_finish_block (&block);
4502 : 224 : return tmp;
4503 : : }
4504 : :
4505 : :
4506 : : /* Generate codes to copy rhs to the temporary. TMP1 is the address of
4507 : : temporary, LSS and RSS are formed in function compute_inner_temp_size(),
4508 : : and should not be freed. WHEREMASK is the conditional execution mask
4509 : : whose sense may be inverted by INVERT. */
4510 : :
4511 : : static tree
4512 : 224 : generate_loop_for_rhs_to_temp (gfc_expr *expr2, tree tmp1, tree count3,
4513 : : tree count1, gfc_ss *lss, gfc_ss *rss,
4514 : : tree wheremask, bool invert)
4515 : : {
4516 : 224 : stmtblock_t block, body1;
4517 : 224 : gfc_loopinfo loop;
4518 : 224 : gfc_se lse;
4519 : 224 : gfc_se rse;
4520 : 224 : tree tmp;
4521 : 224 : tree wheremaskexpr;
4522 : :
4523 : 224 : gfc_start_block (&block);
4524 : :
4525 : 224 : gfc_init_se (&rse, NULL);
4526 : 224 : gfc_init_se (&lse, NULL);
4527 : :
4528 : 224 : if (lss == gfc_ss_terminator)
4529 : : {
4530 : 149 : gfc_init_block (&body1);
4531 : 149 : gfc_conv_expr (&rse, expr2);
4532 : 149 : lse.expr = gfc_build_array_ref (tmp1, count1, NULL);
4533 : : }
4534 : : else
4535 : : {
4536 : : /* Initialize the loop. */
4537 : 75 : gfc_init_loopinfo (&loop);
4538 : :
4539 : : /* We may need LSS to determine the shape of the expression. */
4540 : 75 : gfc_add_ss_to_loop (&loop, lss);
4541 : 75 : gfc_add_ss_to_loop (&loop, rss);
4542 : :
4543 : 75 : gfc_conv_ss_startstride (&loop);
4544 : 75 : gfc_conv_loop_setup (&loop, &expr2->where);
4545 : :
4546 : 75 : gfc_mark_ss_chain_used (rss, 1);
4547 : : /* Start the loop body. */
4548 : 75 : gfc_start_scalarized_body (&loop, &body1);
4549 : :
4550 : : /* Translate the expression. */
4551 : 75 : gfc_copy_loopinfo_to_se (&rse, &loop);
4552 : 75 : rse.ss = rss;
4553 : 75 : gfc_conv_expr (&rse, expr2);
4554 : :
4555 : : /* Form the expression of the temporary. */
4556 : 75 : lse.expr = gfc_build_array_ref (tmp1, count1, NULL);
4557 : : }
4558 : :
4559 : : /* Use the scalar assignment. */
4560 : 224 : lse.string_length = rse.string_length;
4561 : 448 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr2->ts,
4562 : 224 : expr2->expr_type == EXPR_VARIABLE, false);
4563 : :
4564 : : /* Form the mask expression according to the mask tree list. */
4565 : 224 : if (wheremask)
4566 : : {
4567 : 27 : wheremaskexpr = gfc_build_array_ref (wheremask, count3, NULL);
4568 : 27 : if (invert)
4569 : 0 : wheremaskexpr = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
4570 : 0 : TREE_TYPE (wheremaskexpr),
4571 : : wheremaskexpr);
4572 : 27 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
4573 : : wheremaskexpr, tmp,
4574 : : build_empty_stmt (input_location));
4575 : : }
4576 : :
4577 : 224 : gfc_add_expr_to_block (&body1, tmp);
4578 : :
4579 : 224 : if (lss == gfc_ss_terminator)
4580 : : {
4581 : 149 : gfc_add_block_to_block (&block, &body1);
4582 : :
4583 : : /* Increment count1. */
4584 : 149 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (count1),
4585 : : count1, gfc_index_one_node);
4586 : 149 : gfc_add_modify (&block, count1, tmp);
4587 : : }
4588 : : else
4589 : : {
4590 : : /* Increment count1. */
4591 : 75 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4592 : : count1, gfc_index_one_node);
4593 : 75 : gfc_add_modify (&body1, count1, tmp);
4594 : :
4595 : : /* Increment count3. */
4596 : 75 : if (count3)
4597 : : {
4598 : 27 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
4599 : : gfc_array_index_type,
4600 : : count3, gfc_index_one_node);
4601 : 27 : gfc_add_modify (&body1, count3, tmp);
4602 : : }
4603 : :
4604 : : /* Generate the copying loops. */
4605 : 75 : gfc_trans_scalarizing_loops (&loop, &body1);
4606 : :
4607 : 75 : gfc_add_block_to_block (&block, &loop.pre);
4608 : 75 : gfc_add_block_to_block (&block, &loop.post);
4609 : :
4610 : 75 : gfc_cleanup_loop (&loop);
4611 : : /* TODO: Reuse lss and rss when copying temp->lhs. Need to be careful
4612 : : as tree nodes in SS may not be valid in different scope. */
4613 : : }
4614 : :
4615 : 224 : tmp = gfc_finish_block (&block);
4616 : 224 : return tmp;
4617 : : }
4618 : :
4619 : :
4620 : : /* Calculate the size of temporary needed in the assignment inside forall.
4621 : : LSS and RSS are filled in this function. */
4622 : :
4623 : : static tree
4624 : 779 : compute_inner_temp_size (gfc_expr *expr1, gfc_expr *expr2,
4625 : : stmtblock_t * pblock,
4626 : : gfc_ss **lss, gfc_ss **rss)
4627 : : {
4628 : 779 : gfc_loopinfo loop;
4629 : 779 : tree size;
4630 : 779 : int i;
4631 : 779 : int save_flag;
4632 : 779 : tree tmp;
4633 : :
4634 : 779 : *lss = gfc_walk_expr (expr1);
4635 : 779 : *rss = NULL;
4636 : :
4637 : 779 : size = gfc_index_one_node;
4638 : 779 : if (*lss != gfc_ss_terminator)
4639 : : {
4640 : 481 : gfc_init_loopinfo (&loop);
4641 : :
4642 : : /* Walk the RHS of the expression. */
4643 : 481 : *rss = gfc_walk_expr (expr2);
4644 : 481 : if (*rss == gfc_ss_terminator)
4645 : : /* The rhs is scalar. Add a ss for the expression. */
4646 : 0 : *rss = gfc_get_scalar_ss (gfc_ss_terminator, expr2);
4647 : :
4648 : : /* Associate the SS with the loop. */
4649 : 481 : gfc_add_ss_to_loop (&loop, *lss);
4650 : : /* We don't actually need to add the rhs at this point, but it might
4651 : : make guessing the loop bounds a bit easier. */
4652 : 481 : gfc_add_ss_to_loop (&loop, *rss);
4653 : :
4654 : : /* We only want the shape of the expression, not rest of the junk
4655 : : generated by the scalarizer. */
4656 : 481 : loop.array_parameter = 1;
4657 : :
4658 : : /* Calculate the bounds of the scalarization. */
4659 : 481 : save_flag = gfc_option.rtcheck;
4660 : 481 : gfc_option.rtcheck &= ~GFC_RTCHECK_BOUNDS;
4661 : 481 : gfc_conv_ss_startstride (&loop);
4662 : 481 : gfc_option.rtcheck = save_flag;
4663 : 481 : gfc_conv_loop_setup (&loop, &expr2->where);
4664 : :
4665 : : /* Figure out how many elements we need. */
4666 : 1473 : for (i = 0; i < loop.dimen; i++)
4667 : : {
4668 : 511 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
4669 : : gfc_array_index_type,
4670 : : gfc_index_one_node, loop.from[i]);
4671 : 511 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
4672 : : gfc_array_index_type, tmp, loop.to[i]);
4673 : 511 : size = fold_build2_loc (input_location, MULT_EXPR,
4674 : : gfc_array_index_type, size, tmp);
4675 : : }
4676 : 481 : gfc_add_block_to_block (pblock, &loop.pre);
4677 : 481 : size = gfc_evaluate_now (size, pblock);
4678 : 481 : gfc_add_block_to_block (pblock, &loop.post);
4679 : :
4680 : : /* TODO: write a function that cleans up a loopinfo without freeing
4681 : : the SS chains. Currently a NOP. */
4682 : : }
4683 : :
4684 : 779 : return size;
4685 : : }
4686 : :
4687 : :
4688 : : /* Calculate the overall iterator number of the nested forall construct.
4689 : : This routine actually calculates the number of times the body of the
4690 : : nested forall specified by NESTED_FORALL_INFO is executed and multiplies
4691 : : that by the expression INNER_SIZE. The BLOCK argument specifies the
4692 : : block in which to calculate the result, and the optional INNER_SIZE_BODY
4693 : : argument contains any statements that need to executed (inside the loop)
4694 : : to initialize or calculate INNER_SIZE. */
4695 : :
4696 : : static tree
4697 : 1318 : compute_overall_iter_number (forall_info *nested_forall_info, tree inner_size,
4698 : : stmtblock_t *inner_size_body, stmtblock_t *block)
4699 : : {
4700 : 1318 : forall_info *forall_tmp = nested_forall_info;
4701 : 1318 : tree tmp, number;
4702 : 1318 : stmtblock_t body;
4703 : :
4704 : : /* We can eliminate the innermost unconditional loops with constant
4705 : : array bounds. */
4706 : 1318 : if (INTEGER_CST_P (inner_size))
4707 : : {
4708 : : while (forall_tmp
4709 : 272 : && !forall_tmp->mask
4710 : 1526 : && INTEGER_CST_P (forall_tmp->size))
4711 : : {
4712 : 117 : inner_size = fold_build2_loc (input_location, MULT_EXPR,
4713 : : gfc_array_index_type,
4714 : : inner_size, forall_tmp->size);
4715 : 117 : forall_tmp = forall_tmp->prev_nest;
4716 : : }
4717 : :
4718 : : /* If there are no loops left, we have our constant result. */
4719 : 1227 : if (!forall_tmp)
4720 : : return inner_size;
4721 : : }
4722 : :
4723 : : /* Otherwise, create a temporary variable to compute the result. */
4724 : 246 : number = gfc_create_var (gfc_array_index_type, "num");
4725 : 246 : gfc_add_modify (block, number, gfc_index_zero_node);
4726 : :
4727 : 246 : gfc_start_block (&body);
4728 : 246 : if (inner_size_body)
4729 : 188 : gfc_add_block_to_block (&body, inner_size_body);
4730 : 246 : if (forall_tmp)
4731 : 230 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
4732 : : gfc_array_index_type, number, inner_size);
4733 : : else
4734 : : tmp = inner_size;
4735 : 246 : gfc_add_modify (&body, number, tmp);
4736 : 246 : tmp = gfc_finish_block (&body);
4737 : :
4738 : : /* Generate loops. */
4739 : 246 : if (forall_tmp != NULL)
4740 : 230 : tmp = gfc_trans_nested_forall_loop (forall_tmp, tmp, 1);
4741 : :
4742 : 246 : gfc_add_expr_to_block (block, tmp);
4743 : :
4744 : 246 : return number;
4745 : : }
4746 : :
4747 : :
4748 : : /* Allocate temporary for forall construct. SIZE is the size of temporary
4749 : : needed. PTEMP1 is returned for space free. */
4750 : :
4751 : : static tree
4752 : 1401 : allocate_temp_for_forall_nest_1 (tree type, tree size, stmtblock_t * block,
4753 : : tree * ptemp1)
4754 : : {
4755 : 1401 : tree bytesize;
4756 : 1401 : tree unit;
4757 : 1401 : tree tmp;
4758 : :
4759 : 1401 : unit = fold_convert (gfc_array_index_type, TYPE_SIZE_UNIT (type));
4760 : 1401 : if (!integer_onep (unit))
4761 : 166 : bytesize = fold_build2_loc (input_location, MULT_EXPR,
4762 : : gfc_array_index_type, size, unit);
4763 : : else
4764 : : bytesize = size;
4765 : :
4766 : 1401 : *ptemp1 = NULL;
4767 : 1401 : tmp = gfc_do_allocate (bytesize, size, ptemp1, block, type);
4768 : :
4769 : 1401 : if (*ptemp1)
4770 : 247 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
4771 : 1401 : return tmp;
4772 : : }
4773 : :
4774 : :
4775 : : /* Allocate temporary for forall construct according to the information in
4776 : : nested_forall_info. INNER_SIZE is the size of temporary needed in the
4777 : : assignment inside forall. PTEMP1 is returned for space free. */
4778 : :
4779 : : static tree
4780 : 987 : allocate_temp_for_forall_nest (forall_info * nested_forall_info, tree type,
4781 : : tree inner_size, stmtblock_t * inner_size_body,
4782 : : stmtblock_t * block, tree * ptemp1)
4783 : : {
4784 : 987 : tree size;
4785 : :
4786 : : /* Calculate the total size of temporary needed in forall construct. */
4787 : 987 : size = compute_overall_iter_number (nested_forall_info, inner_size,
4788 : : inner_size_body, block);
4789 : :
4790 : 987 : return allocate_temp_for_forall_nest_1 (type, size, block, ptemp1);
4791 : : }
4792 : :
4793 : :
4794 : : /* Handle assignments inside forall which need temporary.
4795 : :
4796 : : forall (i=start:end:stride; maskexpr)
4797 : : e<i> = f<i>
4798 : : end forall
4799 : : (where e,f<i> are arbitrary expressions possibly involving i
4800 : : and there is a dependency between e<i> and f<i>)
4801 : : Translates to:
4802 : : masktmp(:) = maskexpr(:)
4803 : :
4804 : : maskindex = 0;
4805 : : count1 = 0;
4806 : : num = 0;
4807 : : for (i = start; i <= end; i += stride)
4808 : : num += SIZE (f<i>)
4809 : : count1 = 0;
4810 : : ALLOCATE (tmp(num))
4811 : : for (i = start; i <= end; i += stride)
4812 : : {
4813 : : if (masktmp[maskindex++])
4814 : : tmp[count1++] = f<i>
4815 : : }
4816 : : maskindex = 0;
4817 : : count1 = 0;
4818 : : for (i = start; i <= end; i += stride)
4819 : : {
4820 : : if (masktmp[maskindex++])
4821 : : e<i> = tmp[count1++]
4822 : : }
4823 : : DEALLOCATE (tmp)
4824 : : */
4825 : : static void
4826 : 224 : gfc_trans_assign_need_temp (gfc_expr * expr1, gfc_expr * expr2,
4827 : : tree wheremask, bool invert,
4828 : : forall_info * nested_forall_info,
4829 : : stmtblock_t * block)
4830 : : {
4831 : 224 : tree type;
4832 : 224 : tree inner_size;
4833 : 224 : gfc_ss *lss, *rss;
4834 : 224 : tree count, count1;
4835 : 224 : tree tmp, tmp1;
4836 : 224 : tree ptemp1;
4837 : 224 : stmtblock_t inner_size_body;
4838 : :
4839 : : /* Create vars. count1 is the current iterator number of the nested
4840 : : forall. */
4841 : 224 : count1 = gfc_create_var (gfc_array_index_type, "count1");
4842 : :
4843 : : /* Count is the wheremask index. */
4844 : 224 : if (wheremask)
4845 : : {
4846 : 27 : count = gfc_create_var (gfc_array_index_type, "count");
4847 : 27 : gfc_add_modify (block, count, gfc_index_zero_node);
4848 : : }
4849 : : else
4850 : : count = NULL;
4851 : :
4852 : : /* Initialize count1. */
4853 : 224 : gfc_add_modify (block, count1, gfc_index_zero_node);
4854 : :
4855 : : /* Calculate the size of temporary needed in the assignment. Return loop, lss
4856 : : and rss which are used in function generate_loop_for_rhs_to_temp(). */
4857 : : /* The type of LHS. Used in function allocate_temp_for_forall_nest */
4858 : 224 : if (expr1->ts.type == BT_CHARACTER)
4859 : : {
4860 : 103 : type = NULL;
4861 : 103 : if (expr1->ref && expr1->ref->type == REF_SUBSTRING)
4862 : : {
4863 : 72 : gfc_se ssse;
4864 : 72 : gfc_init_se (&ssse, NULL);
4865 : 72 : gfc_conv_expr (&ssse, expr1);
4866 : 72 : type = gfc_get_character_type_len (gfc_default_character_kind,
4867 : : ssse.string_length);
4868 : 72 : }
4869 : : else
4870 : : {
4871 : 31 : if (!expr1->ts.u.cl->backend_decl)
4872 : : {
4873 : 6 : gfc_se tse;
4874 : 6 : gcc_assert (expr1->ts.u.cl->length);
4875 : 6 : gfc_init_se (&tse, NULL);
4876 : 6 : gfc_conv_expr (&tse, expr1->ts.u.cl->length);
4877 : 6 : expr1->ts.u.cl->backend_decl = tse.expr;
4878 : : }
4879 : 31 : type = gfc_get_character_type_len (gfc_default_character_kind,
4880 : 31 : expr1->ts.u.cl->backend_decl);
4881 : : }
4882 : : }
4883 : : else
4884 : 121 : type = gfc_typenode_for_spec (&expr1->ts);
4885 : :
4886 : 224 : gfc_init_block (&inner_size_body);
4887 : 224 : inner_size = compute_inner_temp_size (expr1, expr2, &inner_size_body,
4888 : : &lss, &rss);
4889 : :
4890 : : /* Allocate temporary for nested forall construct according to the
4891 : : information in nested_forall_info and inner_size. */
4892 : 224 : tmp1 = allocate_temp_for_forall_nest (nested_forall_info, type, inner_size,
4893 : : &inner_size_body, block, &ptemp1);
4894 : :
4895 : : /* Generate codes to copy rhs to the temporary . */
4896 : 224 : tmp = generate_loop_for_rhs_to_temp (expr2, tmp1, count, count1, lss, rss,
4897 : : wheremask, invert);
4898 : :
4899 : : /* Generate body and loops according to the information in
4900 : : nested_forall_info. */
4901 : 224 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
4902 : 224 : gfc_add_expr_to_block (block, tmp);
4903 : :
4904 : : /* Reset count1. */
4905 : 224 : gfc_add_modify (block, count1, gfc_index_zero_node);
4906 : :
4907 : : /* Reset count. */
4908 : 224 : if (wheremask)
4909 : 27 : gfc_add_modify (block, count, gfc_index_zero_node);
4910 : :
4911 : : /* TODO: Second call to compute_inner_temp_size to initialize lss and
4912 : : rss; there must be a better way. */
4913 : 224 : inner_size = compute_inner_temp_size (expr1, expr2, &inner_size_body,
4914 : : &lss, &rss);
4915 : :
4916 : : /* Generate codes to copy the temporary to lhs. */
4917 : 224 : tmp = generate_loop_for_temp_to_lhs (expr1, tmp1, count, count1,
4918 : : lss, rss,
4919 : : wheremask, invert);
4920 : :
4921 : : /* Generate body and loops according to the information in
4922 : : nested_forall_info. */
4923 : 224 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
4924 : 224 : gfc_add_expr_to_block (block, tmp);
4925 : :
4926 : 224 : if (ptemp1)
4927 : : {
4928 : : /* Free the temporary. */
4929 : 145 : tmp = gfc_call_free (ptemp1);
4930 : 145 : gfc_add_expr_to_block (block, tmp);
4931 : : }
4932 : 224 : }
4933 : :
4934 : :
4935 : : /* Translate pointer assignment inside FORALL which need temporary. */
4936 : :
4937 : : static void
4938 : 20 : gfc_trans_pointer_assign_need_temp (gfc_expr * expr1, gfc_expr * expr2,
4939 : : forall_info * nested_forall_info,
4940 : : stmtblock_t * block)
4941 : : {
4942 : 20 : tree type;
4943 : 20 : tree inner_size;
4944 : 20 : gfc_ss *lss, *rss;
4945 : 20 : gfc_se lse;
4946 : 20 : gfc_se rse;
4947 : 20 : gfc_array_info *info;
4948 : 20 : gfc_loopinfo loop;
4949 : 20 : tree desc;
4950 : 20 : tree parm;
4951 : 20 : tree parmtype;
4952 : 20 : stmtblock_t body;
4953 : 20 : tree count;
4954 : 20 : tree tmp, tmp1, ptemp1;
4955 : :
4956 : 20 : count = gfc_create_var (gfc_array_index_type, "count");
4957 : 20 : gfc_add_modify (block, count, gfc_index_zero_node);
4958 : :
4959 : 20 : inner_size = gfc_index_one_node;
4960 : 20 : lss = gfc_walk_expr (expr1);
4961 : 20 : rss = gfc_walk_expr (expr2);
4962 : 20 : if (lss == gfc_ss_terminator)
4963 : : {
4964 : 11 : type = gfc_typenode_for_spec (&expr1->ts);
4965 : 11 : type = build_pointer_type (type);
4966 : :
4967 : : /* Allocate temporary for nested forall construct according to the
4968 : : information in nested_forall_info and inner_size. */
4969 : 11 : tmp1 = allocate_temp_for_forall_nest (nested_forall_info, type,
4970 : : inner_size, NULL, block, &ptemp1);
4971 : 11 : gfc_start_block (&body);
4972 : 11 : gfc_init_se (&lse, NULL);
4973 : 11 : lse.expr = gfc_build_array_ref (tmp1, count, NULL);
4974 : 11 : gfc_init_se (&rse, NULL);
4975 : 11 : rse.want_pointer = 1;
4976 : 11 : gfc_conv_expr (&rse, expr2);
4977 : 11 : gfc_add_block_to_block (&body, &rse.pre);
4978 : 11 : gfc_add_modify (&body, lse.expr,
4979 : 11 : fold_convert (TREE_TYPE (lse.expr), rse.expr));
4980 : 11 : gfc_add_block_to_block (&body, &rse.post);
4981 : :
4982 : : /* Increment count. */
4983 : 11 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4984 : : count, gfc_index_one_node);
4985 : 11 : gfc_add_modify (&body, count, tmp);
4986 : :
4987 : 11 : tmp = gfc_finish_block (&body);
4988 : :
4989 : : /* Generate body and loops according to the information in
4990 : : nested_forall_info. */
4991 : 11 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
4992 : 11 : gfc_add_expr_to_block (block, tmp);
4993 : :
4994 : : /* Reset count. */
4995 : 11 : gfc_add_modify (block, count, gfc_index_zero_node);
4996 : :
4997 : 11 : gfc_start_block (&body);
4998 : 11 : gfc_init_se (&lse, NULL);
4999 : 11 : gfc_init_se (&rse, NULL);
5000 : 11 : rse.expr = gfc_build_array_ref (tmp1, count, NULL);
5001 : 11 : lse.want_pointer = 1;
5002 : 11 : gfc_conv_expr (&lse, expr1);
5003 : 11 : gfc_add_block_to_block (&body, &lse.pre);
5004 : 11 : gfc_add_modify (&body, lse.expr, rse.expr);
5005 : 11 : gfc_add_block_to_block (&body, &lse.post);
5006 : : /* Increment count. */
5007 : 11 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5008 : : count, gfc_index_one_node);
5009 : 11 : gfc_add_modify (&body, count, tmp);
5010 : 11 : tmp = gfc_finish_block (&body);
5011 : :
5012 : : /* Generate body and loops according to the information in
5013 : : nested_forall_info. */
5014 : 11 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
5015 : 11 : gfc_add_expr_to_block (block, tmp);
5016 : : }
5017 : : else
5018 : : {
5019 : 9 : gfc_init_loopinfo (&loop);
5020 : :
5021 : : /* Associate the SS with the loop. */
5022 : 9 : gfc_add_ss_to_loop (&loop, rss);
5023 : :
5024 : : /* Setup the scalarizing loops and bounds. */
5025 : 9 : gfc_conv_ss_startstride (&loop);
5026 : :
5027 : 9 : gfc_conv_loop_setup (&loop, &expr2->where);
5028 : :
5029 : 9 : info = &rss->info->data.array;
5030 : 9 : desc = info->descriptor;
5031 : :
5032 : : /* Make a new descriptor. */
5033 : 9 : parmtype = gfc_get_element_type (TREE_TYPE (desc));
5034 : 9 : parmtype = gfc_get_array_type_bounds (parmtype, loop.dimen, 0,
5035 : : loop.from, loop.to, 1,
5036 : : GFC_ARRAY_UNKNOWN, true);
5037 : :
5038 : : /* Allocate temporary for nested forall construct. */
5039 : 9 : tmp1 = allocate_temp_for_forall_nest (nested_forall_info, parmtype,
5040 : : inner_size, NULL, block, &ptemp1);
5041 : 9 : gfc_start_block (&body);
5042 : 9 : gfc_init_se (&lse, NULL);
5043 : 9 : lse.expr = gfc_build_array_ref (tmp1, count, NULL);
5044 : 9 : lse.direct_byref = 1;
5045 : 9 : gfc_conv_expr_descriptor (&lse, expr2);
5046 : :
5047 : 9 : gfc_add_block_to_block (&body, &lse.pre);
5048 : 9 : gfc_add_block_to_block (&body, &lse.post);
5049 : :
5050 : : /* Increment count. */
5051 : 9 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5052 : : count, gfc_index_one_node);
5053 : 9 : gfc_add_modify (&body, count, tmp);
5054 : :
5055 : 9 : tmp = gfc_finish_block (&body);
5056 : :
5057 : : /* Generate body and loops according to the information in
5058 : : nested_forall_info. */
5059 : 9 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
5060 : 9 : gfc_add_expr_to_block (block, tmp);
5061 : :
5062 : : /* Reset count. */
5063 : 9 : gfc_add_modify (block, count, gfc_index_zero_node);
5064 : :
5065 : 9 : parm = gfc_build_array_ref (tmp1, count, NULL);
5066 : 9 : gfc_init_se (&lse, NULL);
5067 : 9 : gfc_conv_expr_descriptor (&lse, expr1);
5068 : 9 : gfc_add_modify (&lse.pre, lse.expr, parm);
5069 : 9 : gfc_start_block (&body);
5070 : 9 : gfc_add_block_to_block (&body, &lse.pre);
5071 : 9 : gfc_add_block_to_block (&body, &lse.post);
5072 : :
5073 : : /* Increment count. */
5074 : 9 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5075 : : count, gfc_index_one_node);
5076 : 9 : gfc_add_modify (&body, count, tmp);
5077 : :
5078 : 9 : tmp = gfc_finish_block (&body);
5079 : :
5080 : 9 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
5081 : 9 : gfc_add_expr_to_block (block, tmp);
5082 : : }
5083 : : /* Free the temporary. */
5084 : 20 : if (ptemp1)
5085 : : {
5086 : 1 : tmp = gfc_call_free (ptemp1);
5087 : 1 : gfc_add_expr_to_block (block, tmp);
5088 : : }
5089 : 20 : }
5090 : :
5091 : :
5092 : : /* FORALL and WHERE statements are really nasty, especially when you nest
5093 : : them. All the rhs of a forall assignment must be evaluated before the
5094 : : actual assignments are performed. Presumably this also applies to all the
5095 : : assignments in an inner where statement. */
5096 : :
5097 : : /* Generate code for a FORALL statement. Any temporaries are allocated as a
5098 : : linear array, relying on the fact that we process in the same order in all
5099 : : loops.
5100 : :
5101 : : forall (i=start:end:stride; maskexpr)
5102 : : e<i> = f<i>
5103 : : g<i> = h<i>
5104 : : end forall
5105 : : (where e,f,g,h<i> are arbitrary expressions possibly involving i)
5106 : : Translates to:
5107 : : count = ((end + 1 - start) / stride)
5108 : : masktmp(:) = maskexpr(:)
5109 : :
5110 : : maskindex = 0;
5111 : : for (i = start; i <= end; i += stride)
5112 : : {
5113 : : if (masktmp[maskindex++])
5114 : : e<i> = f<i>
5115 : : }
5116 : : maskindex = 0;
5117 : : for (i = start; i <= end; i += stride)
5118 : : {
5119 : : if (masktmp[maskindex++])
5120 : : g<i> = h<i>
5121 : : }
5122 : :
5123 : : Note that this code only works when there are no dependencies.
5124 : : Forall loop with array assignments and data dependencies are a real pain,
5125 : : because the size of the temporary cannot always be determined before the
5126 : : loop is executed. This problem is compounded by the presence of nested
5127 : : FORALL constructs.
5128 : : */
5129 : :
5130 : : static tree
5131 : 2026 : gfc_trans_forall_1 (gfc_code * code, forall_info * nested_forall_info)
5132 : : {
5133 : 2026 : stmtblock_t pre;
5134 : 2026 : stmtblock_t post;
5135 : 2026 : stmtblock_t block;
5136 : 2026 : stmtblock_t body;
5137 : 2026 : tree *var;
5138 : 2026 : tree *start;
5139 : 2026 : tree *end;
5140 : 2026 : tree *step;
5141 : 2026 : gfc_expr **varexpr;
5142 : 2026 : tree tmp;
5143 : 2026 : tree assign;
5144 : 2026 : tree size;
5145 : 2026 : tree maskindex;
5146 : 2026 : tree mask;
5147 : 2026 : tree pmask;
5148 : 2026 : tree cycle_label = NULL_TREE;
5149 : 2026 : int n;
5150 : 2026 : int nvar;
5151 : 2026 : int need_temp;
5152 : 2026 : gfc_forall_iterator *fa;
5153 : 2026 : gfc_se se;
5154 : 2026 : gfc_code *c;
5155 : 2026 : gfc_saved_var *saved_vars;
5156 : 2026 : iter_info *this_forall;
5157 : 2026 : forall_info *info;
5158 : 2026 : bool need_mask;
5159 : :
5160 : : /* Do nothing if the mask is false. */
5161 : 2026 : if (code->expr1
5162 : 745 : && code->expr1->expr_type == EXPR_CONSTANT
5163 : 2 : && !code->expr1->value.logical)
5164 : 1 : return build_empty_stmt (input_location);
5165 : :
5166 : 2025 : n = 0;
5167 : : /* Count the FORALL index number. */
5168 : 5974 : for (fa = code->ext.forall_iterator; fa; fa = fa->next)
5169 : 3949 : n++;
5170 : 2025 : nvar = n;
5171 : :
5172 : : /* Allocate the space for var, start, end, step, varexpr. */
5173 : 2025 : var = XCNEWVEC (tree, nvar);
5174 : 2025 : start = XCNEWVEC (tree, nvar);
5175 : 2025 : end = XCNEWVEC (tree, nvar);
5176 : 2025 : step = XCNEWVEC (tree, nvar);
5177 : 2025 : varexpr = XCNEWVEC (gfc_expr *, nvar);
5178 : 2025 : saved_vars = XCNEWVEC (gfc_saved_var, nvar);
5179 : :
5180 : : /* Allocate the space for info. */
5181 : 2025 : info = XCNEW (forall_info);
5182 : :
5183 : 2025 : gfc_start_block (&pre);
5184 : 2025 : gfc_init_block (&post);
5185 : 2025 : gfc_init_block (&block);
5186 : :
5187 : 2025 : n = 0;
5188 : 5974 : for (fa = code->ext.forall_iterator; fa; fa = fa->next)
5189 : : {
5190 : 3949 : gfc_symbol *sym = fa->var->symtree->n.sym;
5191 : :
5192 : : /* Allocate space for this_forall. */
5193 : 3949 : this_forall = XCNEW (iter_info);
5194 : :
5195 : : /* Create a temporary variable for the FORALL index. */
5196 : 3949 : tmp = gfc_typenode_for_spec (&sym->ts);
5197 : 3949 : var[n] = gfc_create_var (tmp, sym->name);
5198 : 3949 : gfc_shadow_sym (sym, var[n], &saved_vars[n]);
5199 : :
5200 : : /* Record it in this_forall. */
5201 : 3949 : this_forall->var = var[n];
5202 : :
5203 : : /* Replace the index symbol's backend_decl with the temporary decl. */
5204 : 3949 : sym->backend_decl = var[n];
5205 : :
5206 : : /* Work out the start, end and stride for the loop. */
5207 : 3949 : gfc_init_se (&se, NULL);
5208 : 3949 : gfc_conv_expr_val (&se, fa->start);
5209 : : /* Record it in this_forall. */
5210 : 3949 : this_forall->start = se.expr;
5211 : 3949 : gfc_add_block_to_block (&block, &se.pre);
5212 : 3949 : start[n] = se.expr;
5213 : :
5214 : 3949 : gfc_init_se (&se, NULL);
5215 : 3949 : gfc_conv_expr_val (&se, fa->end);
5216 : : /* Record it in this_forall. */
5217 : 3949 : this_forall->end = se.expr;
5218 : 3949 : gfc_make_safe_expr (&se);
5219 : 3949 : gfc_add_block_to_block (&block, &se.pre);
5220 : 3949 : end[n] = se.expr;
5221 : :
5222 : 3949 : gfc_init_se (&se, NULL);
5223 : 3949 : gfc_conv_expr_val (&se, fa->stride);
5224 : : /* Record it in this_forall. */
5225 : 3949 : this_forall->step = se.expr;
5226 : 3949 : gfc_make_safe_expr (&se);
5227 : 3949 : gfc_add_block_to_block (&block, &se.pre);
5228 : 3949 : step[n] = se.expr;
5229 : :
5230 : : /* Copy loop annotations. */
5231 : 3949 : this_forall->annot = fa->annot;
5232 : :
5233 : : /* Set the NEXT field of this_forall to NULL. */
5234 : 3949 : this_forall->next = NULL;
5235 : : /* Link this_forall to the info construct. */
5236 : 3949 : if (info->this_loop)
5237 : : {
5238 : : iter_info *iter_tmp = info->this_loop;
5239 : 2855 : while (iter_tmp->next != NULL)
5240 : : iter_tmp = iter_tmp->next;
5241 : 1924 : iter_tmp->next = this_forall;
5242 : : }
5243 : : else
5244 : 2025 : info->this_loop = this_forall;
5245 : :
5246 : 3949 : n++;
5247 : : }
5248 : 2025 : nvar = n;
5249 : :
5250 : : /* Calculate the size needed for the current forall level. */
5251 : 2025 : size = gfc_index_one_node;
5252 : 5974 : for (n = 0; n < nvar; n++)
5253 : : {
5254 : : /* size = (end + step - start) / step. */
5255 : 3949 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (start[n]),
5256 : 3949 : step[n], start[n]);
5257 : 3949 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (end[n]),
5258 : 3949 : end[n], tmp);
5259 : 3949 : tmp = fold_build2_loc (input_location, FLOOR_DIV_EXPR, TREE_TYPE (tmp),
5260 : : tmp, step[n]);
5261 : 3949 : tmp = convert (gfc_array_index_type, tmp);
5262 : :
5263 : 3949 : size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
5264 : : size, tmp);
5265 : : }
5266 : :
5267 : : /* Record the nvar and size of current forall level. */
5268 : 2025 : info->nvar = nvar;
5269 : 2025 : info->size = size;
5270 : :
5271 : 2025 : if (code->expr1)
5272 : : {
5273 : : /* If the mask is .true., consider the FORALL unconditional. */
5274 : 744 : if (code->expr1->expr_type == EXPR_CONSTANT
5275 : 1 : && code->expr1->value.logical)
5276 : : need_mask = false;
5277 : : else
5278 : 743 : need_mask = true;
5279 : : }
5280 : : else
5281 : : need_mask = false;
5282 : :
5283 : : /* First we need to allocate the mask. */
5284 : 743 : if (need_mask)
5285 : : {
5286 : : /* As the mask array can be very big, prefer compact boolean types. */
5287 : 743 : tree mask_type = gfc_get_logical_type (gfc_logical_kinds[0].kind);
5288 : 743 : mask = allocate_temp_for_forall_nest (nested_forall_info, mask_type,
5289 : : size, NULL, &block, &pmask);
5290 : 743 : maskindex = gfc_create_var_np (gfc_array_index_type, "mi");
5291 : :
5292 : : /* Record them in the info structure. */
5293 : 743 : info->maskindex = maskindex;
5294 : 743 : info->mask = mask;
5295 : : }
5296 : : else
5297 : : {
5298 : : /* No mask was specified. */
5299 : 1282 : maskindex = NULL_TREE;
5300 : 1282 : mask = pmask = NULL_TREE;
5301 : : }
5302 : :
5303 : : /* Link the current forall level to nested_forall_info. */
5304 : 2025 : info->prev_nest = nested_forall_info;
5305 : 2025 : nested_forall_info = info;
5306 : :
5307 : : /* Copy the mask into a temporary variable if required.
5308 : : For now we assume a mask temporary is needed. */
5309 : 2025 : if (need_mask)
5310 : : {
5311 : : /* As the mask array can be very big, prefer compact boolean types. */
5312 : 743 : tree mask_type = gfc_get_logical_type (gfc_logical_kinds[0].kind);
5313 : :
5314 : 743 : gfc_add_modify (&block, maskindex, gfc_index_zero_node);
5315 : :
5316 : : /* Start of mask assignment loop body. */
5317 : 743 : gfc_start_block (&body);
5318 : :
5319 : : /* Evaluate the mask expression. */
5320 : 743 : gfc_init_se (&se, NULL);
5321 : 743 : gfc_conv_expr_val (&se, code->expr1);
5322 : 743 : gfc_add_block_to_block (&body, &se.pre);
5323 : :
5324 : : /* Store the mask. */
5325 : 743 : se.expr = convert (mask_type, se.expr);
5326 : :
5327 : 743 : tmp = gfc_build_array_ref (mask, maskindex, NULL);
5328 : 743 : gfc_add_modify (&body, tmp, se.expr);
5329 : :
5330 : : /* Advance to the next mask element. */
5331 : 743 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5332 : : maskindex, gfc_index_one_node);
5333 : 743 : gfc_add_modify (&body, maskindex, tmp);
5334 : :
5335 : : /* Generate the loops. */
5336 : 743 : tmp = gfc_finish_block (&body);
5337 : 743 : tmp = gfc_trans_nested_forall_loop (info, tmp, 0);
5338 : 743 : gfc_add_expr_to_block (&block, tmp);
5339 : : }
5340 : :
5341 : 2025 : if (code->op == EXEC_DO_CONCURRENT)
5342 : : {
5343 : 49 : gfc_init_block (&body);
5344 : 49 : cycle_label = gfc_build_label_decl (NULL_TREE);
5345 : 49 : code->cycle_label = cycle_label;
5346 : 49 : tmp = gfc_trans_code (code->block->next);
5347 : 49 : gfc_add_expr_to_block (&body, tmp);
5348 : :
5349 : 49 : if (TREE_USED (cycle_label))
5350 : : {
5351 : 49 : tmp = build1_v (LABEL_EXPR, cycle_label);
5352 : 49 : gfc_add_expr_to_block (&body, tmp);
5353 : : }
5354 : :
5355 : 49 : tmp = gfc_finish_block (&body);
5356 : 49 : nested_forall_info->do_concurrent = true;
5357 : 49 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1);
5358 : 49 : gfc_add_expr_to_block (&block, tmp);
5359 : 49 : goto done;
5360 : : }
5361 : :
5362 : 1976 : c = code->block->next;
5363 : :
5364 : : /* TODO: loop merging in FORALL statements. */
5365 : : /* Now that we've got a copy of the mask, generate the assignment loops. */
5366 : 3970 : while (c)
5367 : : {
5368 : 1994 : switch (c->op)
5369 : : {
5370 : 1840 : case EXEC_ASSIGN:
5371 : : /* A scalar or array assignment. DO the simple check for
5372 : : lhs to rhs dependencies. These make a temporary for the
5373 : : rhs and form a second forall block to copy to variable. */
5374 : 1840 : need_temp = check_forall_dependencies(c, &pre, &post);
5375 : :
5376 : : /* Temporaries due to array assignment data dependencies introduce
5377 : : no end of problems. */
5378 : 1840 : if (need_temp || flag_test_forall_temp)
5379 : 197 : gfc_trans_assign_need_temp (c->expr1, c->expr2, NULL, false,
5380 : : nested_forall_info, &block);
5381 : : else
5382 : : {
5383 : : /* Use the normal assignment copying routines. */
5384 : 1643 : assign = gfc_trans_assignment (c->expr1, c->expr2, false, true);
5385 : :
5386 : : /* Generate body and loops. */
5387 : 1643 : tmp = gfc_trans_nested_forall_loop (nested_forall_info,
5388 : : assign, 1);
5389 : 1643 : gfc_add_expr_to_block (&block, tmp);
5390 : : }
5391 : :
5392 : : /* Cleanup any temporary symtrees that have been made to deal
5393 : : with dependencies. */
5394 : 1840 : if (new_symtree)
5395 : 62 : cleanup_forall_symtrees (c);
5396 : :
5397 : : break;
5398 : :
5399 : 46 : case EXEC_WHERE:
5400 : : /* Translate WHERE or WHERE construct nested in FORALL. */
5401 : 46 : gfc_trans_where_2 (c, NULL, false, nested_forall_info, &block);
5402 : 46 : break;
5403 : :
5404 : : /* Pointer assignment inside FORALL. */
5405 : 21 : case EXEC_POINTER_ASSIGN:
5406 : 21 : need_temp = gfc_check_dependency (c->expr1, c->expr2, 0);
5407 : : /* Avoid cases where a temporary would never be needed and where
5408 : : the temp code is guaranteed to fail. */
5409 : 21 : if (need_temp
5410 : 1 : || (flag_test_forall_temp
5411 : 0 : && c->expr2->expr_type != EXPR_CONSTANT
5412 : 0 : && c->expr2->expr_type != EXPR_NULL))
5413 : 20 : gfc_trans_pointer_assign_need_temp (c->expr1, c->expr2,
5414 : : nested_forall_info, &block);
5415 : : else
5416 : : {
5417 : : /* Use the normal assignment copying routines. */
5418 : 1 : assign = gfc_trans_pointer_assignment (c->expr1, c->expr2);
5419 : :
5420 : : /* Generate body and loops. */
5421 : 1 : tmp = gfc_trans_nested_forall_loop (nested_forall_info,
5422 : : assign, 1);
5423 : 1 : gfc_add_expr_to_block (&block, tmp);
5424 : : }
5425 : : break;
5426 : :
5427 : 81 : case EXEC_FORALL:
5428 : 81 : tmp = gfc_trans_forall_1 (c, nested_forall_info);
5429 : 81 : gfc_add_expr_to_block (&block, tmp);
5430 : 81 : break;
5431 : :
5432 : : /* Explicit subroutine calls are prevented by the frontend but interface
5433 : : assignments can legitimately produce them. */
5434 : 6 : case EXEC_ASSIGN_CALL:
5435 : 6 : assign = gfc_trans_call (c, true, NULL_TREE, NULL_TREE, false);
5436 : 6 : tmp = gfc_trans_nested_forall_loop (nested_forall_info, assign, 1);
5437 : 6 : gfc_add_expr_to_block (&block, tmp);
5438 : 6 : break;
5439 : :
5440 : 0 : default:
5441 : 0 : gcc_unreachable ();
5442 : : }
5443 : :
5444 : 1994 : c = c->next;
5445 : : }
5446 : :
5447 : 1976 : done:
5448 : : /* Restore the original index variables. */
5449 : 5974 : for (fa = code->ext.forall_iterator, n = 0; fa; fa = fa->next, n++)
5450 : 3949 : gfc_restore_sym (fa->var->symtree->n.sym, &saved_vars[n]);
5451 : :
5452 : : /* Free the space for var, start, end, step, varexpr. */
5453 : 2025 : free (var);
5454 : 2025 : free (start);
5455 : 2025 : free (end);
5456 : 2025 : free (step);
5457 : 2025 : free (varexpr);
5458 : 2025 : free (saved_vars);
5459 : :
5460 : 5974 : for (this_forall = info->this_loop; this_forall;)
5461 : : {
5462 : 3949 : iter_info *next = this_forall->next;
5463 : 3949 : free (this_forall);
5464 : 3949 : this_forall = next;
5465 : : }
5466 : :
5467 : : /* Free the space for this forall_info. */
5468 : 2025 : free (info);
5469 : :
5470 : 2025 : if (pmask)
5471 : : {
5472 : : /* Free the temporary for the mask. */
5473 : 57 : tmp = gfc_call_free (pmask);
5474 : 57 : gfc_add_expr_to_block (&block, tmp);
5475 : : }
5476 : 2025 : if (maskindex)
5477 : 743 : pushdecl (maskindex);
5478 : :
5479 : 2025 : gfc_add_block_to_block (&pre, &block);
5480 : 2025 : gfc_add_block_to_block (&pre, &post);
5481 : :
5482 : 2025 : return gfc_finish_block (&pre);
5483 : : }
5484 : :
5485 : :
5486 : : /* Translate the FORALL statement or construct. */
5487 : :
5488 : 1896 : tree gfc_trans_forall (gfc_code * code)
5489 : : {
5490 : 1896 : return gfc_trans_forall_1 (code, NULL);
5491 : : }
5492 : :
5493 : :
5494 : : /* Translate the DO CONCURRENT construct. */
5495 : :
5496 : 49 : tree gfc_trans_do_concurrent (gfc_code * code)
5497 : : {
5498 : 49 : return gfc_trans_forall_1 (code, NULL);
5499 : : }
5500 : :
5501 : :
5502 : : /* Evaluate the WHERE mask expression, copy its value to a temporary.
5503 : : If the WHERE construct is nested in FORALL, compute the overall temporary
5504 : : needed by the WHERE mask expression multiplied by the iterator number of
5505 : : the nested forall.
5506 : : ME is the WHERE mask expression.
5507 : : MASK is the current execution mask upon input, whose sense may or may
5508 : : not be inverted as specified by the INVERT argument.
5509 : : CMASK is the updated execution mask on output, or NULL if not required.
5510 : : PMASK is the pending execution mask on output, or NULL if not required.
5511 : : BLOCK is the block in which to place the condition evaluation loops. */
5512 : :
5513 : : static void
5514 : 527 : gfc_evaluate_where_mask (gfc_expr * me, forall_info * nested_forall_info,
5515 : : tree mask, bool invert, tree cmask, tree pmask,
5516 : : tree mask_type, stmtblock_t * block)
5517 : : {
5518 : 527 : tree tmp, tmp1;
5519 : 527 : gfc_ss *lss, *rss;
5520 : 527 : gfc_loopinfo loop;
5521 : 527 : stmtblock_t body, body1;
5522 : 527 : tree count, cond, mtmp;
5523 : 527 : gfc_se lse, rse;
5524 : :
5525 : 527 : gfc_init_loopinfo (&loop);
5526 : :
5527 : 527 : lss = gfc_walk_expr (me);
5528 : 527 : rss = gfc_walk_expr (me);
5529 : :
5530 : : /* Variable to index the temporary. */
5531 : 527 : count = gfc_create_var (gfc_array_index_type, "count");
5532 : : /* Initialize count. */
5533 : 527 : gfc_add_modify (block, count, gfc_index_zero_node);
5534 : :
5535 : 527 : gfc_start_block (&body);
5536 : :
5537 : 527 : gfc_init_se (&rse, NULL);
5538 : 527 : gfc_init_se (&lse, NULL);
5539 : :
5540 : 527 : if (lss == gfc_ss_terminator)
5541 : : {
5542 : 0 : gfc_init_block (&body1);
5543 : : }
5544 : : else
5545 : : {
5546 : : /* Initialize the loop. */
5547 : 527 : gfc_init_loopinfo (&loop);
5548 : :
5549 : : /* We may need LSS to determine the shape of the expression. */
5550 : 527 : gfc_add_ss_to_loop (&loop, lss);
5551 : 527 : gfc_add_ss_to_loop (&loop, rss);
5552 : :
5553 : 527 : gfc_conv_ss_startstride (&loop);
5554 : 527 : gfc_conv_loop_setup (&loop, &me->where);
5555 : :
5556 : 527 : gfc_mark_ss_chain_used (rss, 1);
5557 : : /* Start the loop body. */
5558 : 527 : gfc_start_scalarized_body (&loop, &body1);
5559 : :
5560 : : /* Translate the expression. */
5561 : 527 : gfc_copy_loopinfo_to_se (&rse, &loop);
5562 : 527 : rse.ss = rss;
5563 : 527 : gfc_conv_expr (&rse, me);
5564 : : }
5565 : :
5566 : : /* Variable to evaluate mask condition. */
5567 : 527 : cond = gfc_create_var (mask_type, "cond");
5568 : 527 : if (mask && (cmask || pmask))
5569 : 234 : mtmp = gfc_create_var (mask_type, "mask");
5570 : : else mtmp = NULL_TREE;
5571 : :
5572 : 527 : gfc_add_block_to_block (&body1, &lse.pre);
5573 : 527 : gfc_add_block_to_block (&body1, &rse.pre);
5574 : :
5575 : 527 : gfc_add_modify (&body1, cond, fold_convert (mask_type, rse.expr));
5576 : :
5577 : 527 : if (mask && (cmask || pmask))
5578 : : {
5579 : 234 : tmp = gfc_build_array_ref (mask, count, NULL);
5580 : 234 : if (invert)
5581 : 99 : tmp = fold_build1_loc (input_location, TRUTH_NOT_EXPR, mask_type, tmp);
5582 : 234 : gfc_add_modify (&body1, mtmp, tmp);
5583 : : }
5584 : :
5585 : 527 : if (cmask)
5586 : : {
5587 : 509 : tmp1 = gfc_build_array_ref (cmask, count, NULL);
5588 : 509 : tmp = cond;
5589 : 509 : if (mask)
5590 : 234 : tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, mask_type,
5591 : : mtmp, tmp);
5592 : 509 : gfc_add_modify (&body1, tmp1, tmp);
5593 : : }
5594 : :
5595 : 527 : if (pmask)
5596 : : {
5597 : 146 : tmp1 = gfc_build_array_ref (pmask, count, NULL);
5598 : 146 : tmp = fold_build1_loc (input_location, TRUTH_NOT_EXPR, mask_type, cond);
5599 : 146 : if (mask)
5600 : 146 : tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, mask_type, mtmp,
5601 : : tmp);
5602 : 146 : gfc_add_modify (&body1, tmp1, tmp);
5603 : : }
5604 : :
5605 : 527 : gfc_add_block_to_block (&body1, &lse.post);
5606 : 527 : gfc_add_block_to_block (&body1, &rse.post);
5607 : :
5608 : 527 : if (lss == gfc_ss_terminator)
5609 : : {
5610 : 0 : gfc_add_block_to_block (&body, &body1);
5611 : : }
5612 : : else
5613 : : {
5614 : : /* Increment count. */
5615 : 527 : tmp1 = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5616 : : count, gfc_index_one_node);
5617 : 527 : gfc_add_modify (&body1, count, tmp1);
5618 : :
5619 : : /* Generate the copying loops. */
5620 : 527 : gfc_trans_scalarizing_loops (&loop, &body1);
5621 : :
5622 : 527 : gfc_add_block_to_block (&body, &loop.pre);
5623 : 527 : gfc_add_block_to_block (&body, &loop.post);
5624 : :
5625 : 527 : gfc_cleanup_loop (&loop);
5626 : : /* TODO: Reuse lss and rss when copying temp->lhs. Need to be careful
5627 : : as tree nodes in SS may not be valid in different scope. */
5628 : : }
5629 : :
5630 : 527 : tmp1 = gfc_finish_block (&body);
5631 : : /* If the WHERE construct is inside FORALL, fill the full temporary. */
5632 : 527 : if (nested_forall_info != NULL)
5633 : 64 : tmp1 = gfc_trans_nested_forall_loop (nested_forall_info, tmp1, 1);
5634 : :
5635 : 527 : gfc_add_expr_to_block (block, tmp1);
5636 : 527 : }
5637 : :
5638 : :
5639 : : /* Translate an assignment statement in a WHERE statement or construct
5640 : : statement. The MASK expression is used to control which elements
5641 : : of EXPR1 shall be assigned. The sense of MASK is specified by
5642 : : INVERT. */
5643 : :
5644 : : static tree
5645 : 544 : gfc_trans_where_assign (gfc_expr *expr1, gfc_expr *expr2,
5646 : : tree mask, bool invert,
5647 : : tree count1, tree count2,
5648 : : gfc_code *cnext)
5649 : : {
5650 : 544 : gfc_se lse;
5651 : 544 : gfc_se rse;
5652 : 544 : gfc_ss *lss;
5653 : 544 : gfc_ss *lss_section;
5654 : 544 : gfc_ss *rss;
5655 : :
5656 : 544 : gfc_loopinfo loop;
5657 : 544 : tree tmp;
5658 : 544 : stmtblock_t block;
5659 : 544 : stmtblock_t body;
5660 : 544 : tree index, maskexpr;
5661 : :
5662 : : /* A defined assignment. */
5663 : 544 : if (cnext && cnext->resolved_sym)
5664 : 44 : return gfc_trans_call (cnext, true, mask, count1, invert);
5665 : :
5666 : : #if 0
5667 : : /* TODO: handle this special case.
5668 : : Special case a single function returning an array. */
5669 : : if (expr2->expr_type == EXPR_FUNCTION && expr2->rank > 0)
5670 : : {
5671 : : tmp = gfc_trans_arrayfunc_assign (expr1, expr2);
5672 : : if (tmp)
5673 : : return tmp;
5674 : : }
5675 : : #endif
5676 : :
5677 : : /* Assignment of the form lhs = rhs. */
5678 : 500 : gfc_start_block (&block);
5679 : :
5680 : 500 : gfc_init_se (&lse, NULL);
5681 : 500 : gfc_init_se (&rse, NULL);
5682 : :
5683 : : /* Walk the lhs. */
5684 : 500 : lss = gfc_walk_expr (expr1);
5685 : 500 : rss = NULL;
5686 : :
5687 : : /* In each where-assign-stmt, the mask-expr and the variable being
5688 : : defined shall be arrays of the same shape. */
5689 : 500 : gcc_assert (lss != gfc_ss_terminator);
5690 : :
5691 : : /* The assignment needs scalarization. */
5692 : : lss_section = lss;
5693 : :
5694 : : /* Find a non-scalar SS from the lhs. */
5695 : : while (lss_section != gfc_ss_terminator
5696 : 500 : && lss_section->info->type != GFC_SS_SECTION)
5697 : 0 : lss_section = lss_section->next;
5698 : :
5699 : 500 : gcc_assert (lss_section != gfc_ss_terminator);
5700 : :
5701 : : /* Initialize the scalarizer. */
5702 : 500 : gfc_init_loopinfo (&loop);
5703 : :
5704 : : /* Walk the rhs. */
5705 : 500 : rss = gfc_walk_expr (expr2);
5706 : 500 : if (rss == gfc_ss_terminator)
5707 : : {
5708 : : /* The rhs is scalar. Add a ss for the expression. */
5709 : 343 : rss = gfc_get_scalar_ss (gfc_ss_terminator, expr2);
5710 : 343 : rss->info->where = 1;
5711 : : }
5712 : :
5713 : : /* Associate the SS with the loop. */
5714 : 500 : gfc_add_ss_to_loop (&loop, lss);
5715 : 500 : gfc_add_ss_to_loop (&loop, rss);
5716 : :
5717 : : /* Calculate the bounds of the scalarization. */
5718 : 500 : gfc_conv_ss_startstride (&loop);
5719 : :
5720 : : /* Resolve any data dependencies in the statement. */
5721 : 500 : gfc_conv_resolve_dependencies (&loop, lss_section, rss);
5722 : :
5723 : : /* Setup the scalarizing loops. */
5724 : 500 : gfc_conv_loop_setup (&loop, &expr2->where);
5725 : :
5726 : : /* Setup the gfc_se structures. */
5727 : 500 : gfc_copy_loopinfo_to_se (&lse, &loop);
5728 : 500 : gfc_copy_loopinfo_to_se (&rse, &loop);
5729 : :
5730 : 500 : rse.ss = rss;
5731 : 500 : gfc_mark_ss_chain_used (rss, 1);
5732 : 500 : if (loop.temp_ss == NULL)
5733 : : {
5734 : 422 : lse.ss = lss;
5735 : 422 : gfc_mark_ss_chain_used (lss, 1);
5736 : : }
5737 : : else
5738 : : {
5739 : 78 : lse.ss = loop.temp_ss;
5740 : 78 : gfc_mark_ss_chain_used (lss, 3);
5741 : 78 : gfc_mark_ss_chain_used (loop.temp_ss, 3);
5742 : : }
5743 : :
5744 : : /* Start the scalarized loop body. */
5745 : 500 : gfc_start_scalarized_body (&loop, &body);
5746 : :
5747 : : /* Translate the expression. */
5748 : 500 : gfc_conv_expr (&rse, expr2);
5749 : 500 : if (lss != gfc_ss_terminator && loop.temp_ss != NULL)
5750 : 78 : gfc_conv_tmp_array_ref (&lse);
5751 : : else
5752 : 422 : gfc_conv_expr (&lse, expr1);
5753 : :
5754 : : /* Form the mask expression according to the mask. */
5755 : 500 : index = count1;
5756 : 500 : maskexpr = gfc_build_array_ref (mask, index, NULL);
5757 : 500 : if (invert)
5758 : 24 : maskexpr = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
5759 : 24 : TREE_TYPE (maskexpr), maskexpr);
5760 : :
5761 : : /* Use the scalar assignment as is. */
5762 : 1000 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
5763 : 500 : false, loop.temp_ss == NULL);
5764 : :
5765 : 500 : tmp = build3_v (COND_EXPR, maskexpr, tmp, build_empty_stmt (input_location));
5766 : :
5767 : 500 : gfc_add_expr_to_block (&body, tmp);
5768 : :
5769 : 500 : if (lss == gfc_ss_terminator)
5770 : : {
5771 : : /* Increment count1. */
5772 : : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5773 : : count1, gfc_index_one_node);
5774 : : gfc_add_modify (&body, count1, tmp);
5775 : :
5776 : : /* Use the scalar assignment as is. */
5777 : : gfc_add_block_to_block (&block, &body);
5778 : : }
5779 : : else
5780 : : {
5781 : 500 : gcc_assert (lse.ss == gfc_ss_terminator
5782 : : && rse.ss == gfc_ss_terminator);
5783 : :
5784 : 500 : if (loop.temp_ss != NULL)
5785 : : {
5786 : : /* Increment count1 before finish the main body of a scalarized
5787 : : expression. */
5788 : 78 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5789 : : gfc_array_index_type, count1, gfc_index_one_node);
5790 : 78 : gfc_add_modify (&body, count1, tmp);
5791 : 78 : gfc_trans_scalarized_loop_boundary (&loop, &body);
5792 : :
5793 : : /* We need to copy the temporary to the actual lhs. */
5794 : 78 : gfc_init_se (&lse, NULL);
5795 : 78 : gfc_init_se (&rse, NULL);
5796 : 78 : gfc_copy_loopinfo_to_se (&lse, &loop);
5797 : 78 : gfc_copy_loopinfo_to_se (&rse, &loop);
5798 : :
5799 : 78 : rse.ss = loop.temp_ss;
5800 : 78 : lse.ss = lss;
5801 : :
5802 : 78 : gfc_conv_tmp_array_ref (&rse);
5803 : 78 : gfc_conv_expr (&lse, expr1);
5804 : :
5805 : 78 : gcc_assert (lse.ss == gfc_ss_terminator
5806 : : && rse.ss == gfc_ss_terminator);
5807 : :
5808 : : /* Form the mask expression according to the mask tree list. */
5809 : 78 : index = count2;
5810 : 78 : maskexpr = gfc_build_array_ref (mask, index, NULL);
5811 : 78 : if (invert)
5812 : 0 : maskexpr = fold_build1_loc (input_location, TRUTH_NOT_EXPR,
5813 : 0 : TREE_TYPE (maskexpr), maskexpr);
5814 : :
5815 : : /* Use the scalar assignment as is. */
5816 : 78 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts, false, true);
5817 : 78 : tmp = build3_v (COND_EXPR, maskexpr, tmp,
5818 : : build_empty_stmt (input_location));
5819 : 78 : gfc_add_expr_to_block (&body, tmp);
5820 : :
5821 : : /* Increment count2. */
5822 : 78 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5823 : : gfc_array_index_type, count2,
5824 : : gfc_index_one_node);
5825 : 78 : gfc_add_modify (&body, count2, tmp);
5826 : : }
5827 : : else
5828 : : {
5829 : : /* Increment count1. */
5830 : 422 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5831 : : gfc_array_index_type, count1,
5832 : : gfc_index_one_node);
5833 : 422 : gfc_add_modify (&body, count1, tmp);
5834 : : }
5835 : :
5836 : : /* Generate the copying loops. */
5837 : 500 : gfc_trans_scalarizing_loops (&loop, &body);
5838 : :
5839 : : /* Wrap the whole thing up. */
5840 : 500 : gfc_add_block_to_block (&block, &loop.pre);
5841 : 500 : gfc_add_block_to_block (&block, &loop.post);
5842 : 500 : gfc_cleanup_loop (&loop);
5843 : : }
5844 : :
5845 : 500 : return gfc_finish_block (&block);
5846 : : }
5847 : :
5848 : :
5849 : : /* Translate the WHERE construct or statement.
5850 : : This function can be called iteratively to translate the nested WHERE
5851 : : construct or statement.
5852 : : MASK is the control mask. */
5853 : :
5854 : : static void
5855 : 349 : gfc_trans_where_2 (gfc_code * code, tree mask, bool invert,
5856 : : forall_info * nested_forall_info, stmtblock_t * block)
5857 : : {
5858 : 349 : stmtblock_t inner_size_body;
5859 : 349 : tree inner_size, size;
5860 : 349 : gfc_ss *lss, *rss;
5861 : 349 : tree mask_type;
5862 : 349 : gfc_expr *expr1;
5863 : 349 : gfc_expr *expr2;
5864 : 349 : gfc_code *cblock;
5865 : 349 : gfc_code *cnext;
5866 : 349 : tree tmp;
5867 : 349 : tree cond;
5868 : 349 : tree count1, count2;
5869 : 349 : bool need_cmask;
5870 : 349 : bool need_pmask;
5871 : 349 : int need_temp;
5872 : 349 : tree pcmask = NULL_TREE;
5873 : 349 : tree ppmask = NULL_TREE;
5874 : 349 : tree cmask = NULL_TREE;
5875 : 349 : tree pmask = NULL_TREE;
5876 : 349 : gfc_actual_arglist *arg;
5877 : :
5878 : : /* the WHERE statement or the WHERE construct statement. */
5879 : 349 : cblock = code->block;
5880 : :
5881 : : /* As the mask array can be very big, prefer compact boolean types. */
5882 : 349 : mask_type = gfc_get_logical_type (gfc_logical_kinds[0].kind);
5883 : :
5884 : : /* Determine which temporary masks are needed. */
5885 : 349 : if (!cblock->block)
5886 : : {
5887 : : /* One clause: No ELSEWHEREs. */
5888 : 168 : need_cmask = (cblock->next != 0);
5889 : 168 : need_pmask = false;
5890 : : }
5891 : 181 : else if (cblock->block->block)
5892 : : {
5893 : : /* Three or more clauses: Conditional ELSEWHEREs. */
5894 : : need_cmask = true;
5895 : : need_pmask = true;
5896 : : }
5897 : 102 : else if (cblock->next)
5898 : : {
5899 : : /* Two clauses, the first non-empty. */
5900 : 84 : need_cmask = true;
5901 : 84 : need_pmask = (mask != NULL_TREE
5902 : 84 : && cblock->block->next != 0);
5903 : : }
5904 : 18 : else if (!cblock->block->next)
5905 : : {
5906 : : /* Two clauses, both empty. */
5907 : : need_cmask = false;
5908 : : need_pmask = false;
5909 : : }
5910 : : /* Two clauses, the first empty, the second non-empty. */
5911 : 9 : else if (mask)
5912 : : {
5913 : 0 : need_cmask = (cblock->block->expr1 != 0);
5914 : 0 : need_pmask = true;
5915 : : }
5916 : : else
5917 : : {
5918 : : need_cmask = true;
5919 : : need_pmask = false;
5920 : : }
5921 : :
5922 : 168 : if (need_cmask || need_pmask)
5923 : : {
5924 : : /* Calculate the size of temporary needed by the mask-expr. */
5925 : 331 : gfc_init_block (&inner_size_body);
5926 : 331 : inner_size = compute_inner_temp_size (cblock->expr1, cblock->expr1,
5927 : : &inner_size_body, &lss, &rss);
5928 : :
5929 : 331 : gfc_free_ss_chain (lss);
5930 : 331 : gfc_free_ss_chain (rss);
5931 : :
5932 : : /* Calculate the total size of temporary needed. */
5933 : 331 : size = compute_overall_iter_number (nested_forall_info, inner_size,
5934 : : &inner_size_body, block);
5935 : :
5936 : : /* Check whether the size is negative. */
5937 : 331 : cond = fold_build2_loc (input_location, LE_EXPR, logical_type_node, size,
5938 : : gfc_index_zero_node);
5939 : 331 : size = fold_build3_loc (input_location, COND_EXPR, gfc_array_index_type,
5940 : : cond, gfc_index_zero_node, size);
5941 : 331 : size = gfc_evaluate_now (size, block);
5942 : :
5943 : : /* Allocate temporary for WHERE mask if needed. */
5944 : 331 : if (need_cmask)
5945 : 331 : cmask = allocate_temp_for_forall_nest_1 (mask_type, size, block,
5946 : : &pcmask);
5947 : :
5948 : : /* Allocate temporary for !mask if needed. */
5949 : 331 : if (need_pmask)
5950 : 83 : pmask = allocate_temp_for_forall_nest_1 (mask_type, size, block,
5951 : : &ppmask);
5952 : : }
5953 : :
5954 : 994 : while (cblock)
5955 : : {
5956 : : /* Each time around this loop, the where clause is conditional
5957 : : on the value of mask and invert, which are updated at the
5958 : : bottom of the loop. */
5959 : :
5960 : : /* Has mask-expr. */
5961 : 645 : if (cblock->expr1)
5962 : : {
5963 : : /* Ensure that the WHERE mask will be evaluated exactly once.
5964 : : If there are no statements in this WHERE/ELSEWHERE clause,
5965 : : then we don't need to update the control mask (cmask).
5966 : : If this is the last clause of the WHERE construct, then
5967 : : we don't need to update the pending control mask (pmask). */
5968 : 527 : if (mask)
5969 : 234 : gfc_evaluate_where_mask (cblock->expr1, nested_forall_info,
5970 : : mask, invert,
5971 : 234 : cblock->next ? cmask : NULL_TREE,
5972 : 234 : cblock->block ? pmask : NULL_TREE,
5973 : : mask_type, block);
5974 : : else
5975 : 293 : gfc_evaluate_where_mask (cblock->expr1, nested_forall_info,
5976 : : NULL_TREE, false,
5977 : 293 : (cblock->next || cblock->block)
5978 : : ? cmask : NULL_TREE,
5979 : : NULL_TREE, mask_type, block);
5980 : :
5981 : : invert = false;
5982 : : }
5983 : : /* It's a final elsewhere-stmt. No mask-expr is present. */
5984 : : else
5985 : : cmask = mask;
5986 : :
5987 : : /* The body of this where clause are controlled by cmask with
5988 : : sense specified by invert. */
5989 : :
5990 : : /* Get the assignment statement of a WHERE statement, or the first
5991 : : statement in where-body-construct of a WHERE construct. */
5992 : 645 : cnext = cblock->next;
5993 : 1272 : while (cnext)
5994 : : {
5995 : 627 : switch (cnext->op)
5996 : : {
5997 : : /* WHERE assignment statement. */
5998 : 44 : case EXEC_ASSIGN_CALL:
5999 : :
6000 : 44 : arg = cnext->ext.actual;
6001 : 44 : expr1 = expr2 = NULL;
6002 : 132 : for (; arg; arg = arg->next)
6003 : : {
6004 : 88 : if (!arg->expr)
6005 : 0 : continue;
6006 : 88 : if (expr1 == NULL)
6007 : : expr1 = arg->expr;
6008 : : else
6009 : 44 : expr2 = arg->expr;
6010 : : }
6011 : 44 : goto evaluate;
6012 : :
6013 : 527 : case EXEC_ASSIGN:
6014 : 527 : expr1 = cnext->expr1;
6015 : 527 : expr2 = cnext->expr2;
6016 : 571 : evaluate:
6017 : 571 : if (nested_forall_info != NULL)
6018 : : {
6019 : 65 : need_temp = gfc_check_dependency (expr1, expr2, 0);
6020 : 65 : if ((need_temp || flag_test_forall_temp)
6021 : 28 : && cnext->op != EXEC_ASSIGN_CALL)
6022 : 27 : gfc_trans_assign_need_temp (expr1, expr2,
6023 : : cmask, invert,
6024 : : nested_forall_info, block);
6025 : : else
6026 : : {
6027 : : /* Variables to control maskexpr. */
6028 : 38 : count1 = gfc_create_var (gfc_array_index_type, "count1");
6029 : 38 : count2 = gfc_create_var (gfc_array_index_type, "count2");
6030 : 38 : gfc_add_modify (block, count1, gfc_index_zero_node);
6031 : 38 : gfc_add_modify (block, count2, gfc_index_zero_node);
6032 : :
6033 : 38 : tmp = gfc_trans_where_assign (expr1, expr2,
6034 : : cmask, invert,
6035 : : count1, count2,
6036 : : cnext);
6037 : :
6038 : 38 : tmp = gfc_trans_nested_forall_loop (nested_forall_info,
6039 : : tmp, 1);
6040 : 38 : gfc_add_expr_to_block (block, tmp);
6041 : : }
6042 : : }
6043 : : else
6044 : : {
6045 : : /* Variables to control maskexpr. */
6046 : 506 : count1 = gfc_create_var (gfc_array_index_type, "count1");
6047 : 506 : count2 = gfc_create_var (gfc_array_index_type, "count2");
6048 : 506 : gfc_add_modify (block, count1, gfc_index_zero_node);
6049 : 506 : gfc_add_modify (block, count2, gfc_index_zero_node);
6050 : :
6051 : 506 : tmp = gfc_trans_where_assign (expr1, expr2,
6052 : : cmask, invert,
6053 : : count1, count2,
6054 : : cnext);
6055 : 506 : gfc_add_expr_to_block (block, tmp);
6056 : :
6057 : : }
6058 : : break;
6059 : :
6060 : : /* WHERE or WHERE construct is part of a where-body-construct. */
6061 : 56 : case EXEC_WHERE:
6062 : 56 : gfc_trans_where_2 (cnext, cmask, invert,
6063 : : nested_forall_info, block);
6064 : 56 : break;
6065 : :
6066 : 0 : default:
6067 : 0 : gcc_unreachable ();
6068 : : }
6069 : :
6070 : : /* The next statement within the same where-body-construct. */
6071 : 627 : cnext = cnext->next;
6072 : : }
6073 : : /* The next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt. */
6074 : 645 : cblock = cblock->block;
6075 : 645 : if (mask == NULL_TREE)
6076 : : {
6077 : : /* If we're the initial WHERE, we can simply invert the sense
6078 : : of the current mask to obtain the "mask" for the remaining
6079 : : ELSEWHEREs. */
6080 : : invert = true;
6081 : : mask = cmask;
6082 : : }
6083 : : else
6084 : : {
6085 : : /* Otherwise, for nested WHERE's we need to use the pending mask. */
6086 : 343 : invert = false;
6087 : 343 : mask = pmask;
6088 : : }
6089 : : }
6090 : :
6091 : : /* If we allocated a pending mask array, deallocate it now. */
6092 : 349 : if (ppmask)
6093 : : {
6094 : 1 : tmp = gfc_call_free (ppmask);
6095 : 1 : gfc_add_expr_to_block (block, tmp);
6096 : : }
6097 : :
6098 : : /* If we allocated a current mask array, deallocate it now. */
6099 : 349 : if (pcmask)
6100 : : {
6101 : 43 : tmp = gfc_call_free (pcmask);
6102 : 43 : gfc_add_expr_to_block (block, tmp);
6103 : : }
6104 : 349 : }
6105 : :
6106 : : /* Translate a simple WHERE construct or statement without dependencies.
6107 : : CBLOCK is the "then" clause of the WHERE statement, where CBLOCK->EXPR
6108 : : is the mask condition, and EBLOCK if non-NULL is the "else" clause.
6109 : : Currently both CBLOCK and EBLOCK are restricted to single assignments. */
6110 : :
6111 : : static tree
6112 : 94 : gfc_trans_where_3 (gfc_code * cblock, gfc_code * eblock)
6113 : : {
6114 : 94 : stmtblock_t block, body;
6115 : 94 : gfc_expr *cond, *tdst, *tsrc, *edst, *esrc;
6116 : 94 : tree tmp, cexpr, tstmt, estmt;
6117 : 94 : gfc_ss *css, *tdss, *tsss;
6118 : 94 : gfc_se cse, tdse, tsse, edse, esse;
6119 : 94 : gfc_loopinfo loop;
6120 : 94 : gfc_ss *edss = 0;
6121 : 94 : gfc_ss *esss = 0;
6122 : 94 : bool maybe_workshare = false;
6123 : :
6124 : : /* Allow the scalarizer to workshare simple where loops. */
6125 : 94 : if ((ompws_flags & (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_BODY))
6126 : : == OMPWS_WORKSHARE_FLAG)
6127 : : {
6128 : 13 : maybe_workshare = true;
6129 : 13 : ompws_flags |= OMPWS_SCALARIZER_WS | OMPWS_SCALARIZER_BODY;
6130 : : }
6131 : :
6132 : 94 : cond = cblock->expr1;
6133 : 94 : tdst = cblock->next->expr1;
6134 : 94 : tsrc = cblock->next->expr2;
6135 : 94 : edst = eblock ? eblock->next->expr1 : NULL;
6136 : 13 : esrc = eblock ? eblock->next->expr2 : NULL;
6137 : :
6138 : 94 : gfc_start_block (&block);
6139 : 94 : gfc_init_loopinfo (&loop);
6140 : :
6141 : : /* Handle the condition. */
6142 : 94 : gfc_init_se (&cse, NULL);
6143 : 94 : css = gfc_walk_expr (cond);
6144 : 94 : gfc_add_ss_to_loop (&loop, css);
6145 : :
6146 : : /* Handle the then-clause. */
6147 : 94 : gfc_init_se (&tdse, NULL);
6148 : 94 : gfc_init_se (&tsse, NULL);
6149 : 94 : tdss = gfc_walk_expr (tdst);
6150 : 94 : tsss = gfc_walk_expr (tsrc);
6151 : 94 : if (tsss == gfc_ss_terminator)
6152 : : {
6153 : 58 : tsss = gfc_get_scalar_ss (gfc_ss_terminator, tsrc);
6154 : 58 : tsss->info->where = 1;
6155 : : }
6156 : 94 : gfc_add_ss_to_loop (&loop, tdss);
6157 : 94 : gfc_add_ss_to_loop (&loop, tsss);
6158 : :
6159 : 94 : if (eblock)
6160 : : {
6161 : : /* Handle the else clause. */
6162 : 13 : gfc_init_se (&edse, NULL);
6163 : 13 : gfc_init_se (&esse, NULL);
6164 : 13 : edss = gfc_walk_expr (edst);
6165 : 13 : esss = gfc_walk_expr (esrc);
6166 : 13 : if (esss == gfc_ss_terminator)
6167 : : {
6168 : 13 : esss = gfc_get_scalar_ss (gfc_ss_terminator, esrc);
6169 : 13 : esss->info->where = 1;
6170 : : }
6171 : 13 : gfc_add_ss_to_loop (&loop, edss);
6172 : 13 : gfc_add_ss_to_loop (&loop, esss);
6173 : : }
6174 : :
6175 : 94 : gfc_conv_ss_startstride (&loop);
6176 : 94 : gfc_conv_loop_setup (&loop, &tdst->where);
6177 : :
6178 : 94 : gfc_mark_ss_chain_used (css, 1);
6179 : 94 : gfc_mark_ss_chain_used (tdss, 1);
6180 : 94 : gfc_mark_ss_chain_used (tsss, 1);
6181 : 94 : if (eblock)
6182 : : {
6183 : 13 : gfc_mark_ss_chain_used (edss, 1);
6184 : 13 : gfc_mark_ss_chain_used (esss, 1);
6185 : : }
6186 : :
6187 : 94 : gfc_start_scalarized_body (&loop, &body);
6188 : :
6189 : 94 : gfc_copy_loopinfo_to_se (&cse, &loop);
6190 : 94 : gfc_copy_loopinfo_to_se (&tdse, &loop);
6191 : 94 : gfc_copy_loopinfo_to_se (&tsse, &loop);
6192 : 94 : cse.ss = css;
6193 : 94 : tdse.ss = tdss;
6194 : 94 : tsse.ss = tsss;
6195 : 94 : if (eblock)
6196 : : {
6197 : 13 : gfc_copy_loopinfo_to_se (&edse, &loop);
6198 : 13 : gfc_copy_loopinfo_to_se (&esse, &loop);
6199 : 13 : edse.ss = edss;
6200 : 13 : esse.ss = esss;
6201 : : }
6202 : :
6203 : 94 : gfc_conv_expr (&cse, cond);
6204 : 94 : gfc_add_block_to_block (&body, &cse.pre);
6205 : 94 : cexpr = cse.expr;
6206 : :
6207 : 94 : gfc_conv_expr (&tsse, tsrc);
6208 : 94 : if (tdss != gfc_ss_terminator && loop.temp_ss != NULL)
6209 : 0 : gfc_conv_tmp_array_ref (&tdse);
6210 : : else
6211 : 94 : gfc_conv_expr (&tdse, tdst);
6212 : :
6213 : 94 : if (eblock)
6214 : : {
6215 : 13 : gfc_conv_expr (&esse, esrc);
6216 : 13 : if (edss != gfc_ss_terminator && loop.temp_ss != NULL)
6217 : 0 : gfc_conv_tmp_array_ref (&edse);
6218 : : else
6219 : 13 : gfc_conv_expr (&edse, edst);
6220 : : }
6221 : :
6222 : 94 : tstmt = gfc_trans_scalar_assign (&tdse, &tsse, tdst->ts, false, true);
6223 : 94 : estmt = eblock ? gfc_trans_scalar_assign (&edse, &esse, edst->ts,
6224 : : false, true)
6225 : 81 : : build_empty_stmt (input_location);
6226 : 94 : tmp = build3_v (COND_EXPR, cexpr, tstmt, estmt);
6227 : 94 : gfc_add_expr_to_block (&body, tmp);
6228 : 94 : gfc_add_block_to_block (&body, &cse.post);
6229 : :
6230 : 94 : if (maybe_workshare)
6231 : 13 : ompws_flags &= ~OMPWS_SCALARIZER_BODY;
6232 : 94 : gfc_trans_scalarizing_loops (&loop, &body);
6233 : 94 : gfc_add_block_to_block (&block, &loop.pre);
6234 : 94 : gfc_add_block_to_block (&block, &loop.post);
6235 : 94 : gfc_cleanup_loop (&loop);
6236 : :
6237 : 94 : return gfc_finish_block (&block);
6238 : : }
6239 : :
6240 : : /* As the WHERE or WHERE construct statement can be nested, we call
6241 : : gfc_trans_where_2 to do the translation, and pass the initial
6242 : : NULL values for both the control mask and the pending control mask. */
6243 : :
6244 : : tree
6245 : 341 : gfc_trans_where (gfc_code * code)
6246 : : {
6247 : 341 : stmtblock_t block;
6248 : 341 : gfc_code *cblock;
6249 : 341 : gfc_code *eblock;
6250 : :
6251 : 341 : cblock = code->block;
6252 : 341 : if (cblock->next
6253 : 314 : && cblock->next->op == EXEC_ASSIGN
6254 : 269 : && !cblock->next->next)
6255 : : {
6256 : 267 : eblock = cblock->block;
6257 : 267 : if (!eblock)
6258 : : {
6259 : : /* A simple "WHERE (cond) x = y" statement or block is
6260 : : dependence free if cond is not dependent upon writing x,
6261 : : and the source y is unaffected by the destination x. */
6262 : 162 : if (!gfc_check_dependency (cblock->next->expr1,
6263 : : cblock->expr1, 0)
6264 : 268 : && !gfc_check_dependency (cblock->next->expr1,
6265 : 106 : cblock->next->expr2, 0))
6266 : 81 : return gfc_trans_where_3 (cblock, NULL);
6267 : : }
6268 : 105 : else if (!eblock->expr1
6269 : 35 : && !eblock->block
6270 : 35 : && eblock->next
6271 : 26 : && eblock->next->op == EXEC_ASSIGN
6272 : 25 : && !eblock->next->next)
6273 : : {
6274 : : /* A simple "WHERE (cond) x1 = y1 ELSEWHERE x2 = y2 ENDWHERE"
6275 : : block is dependence free if cond is not dependent on writes
6276 : : to x1 and x2, y1 is not dependent on writes to x2, and y2
6277 : : is not dependent on writes to x1, and both y's are not
6278 : : dependent upon their own x's. In addition to this, the
6279 : : final two dependency checks below exclude all but the same
6280 : : array reference if the where and elswhere destinations
6281 : : are the same. In short, this is VERY conservative and this
6282 : : is needed because the two loops, required by the standard
6283 : : are coalesced in gfc_trans_where_3. */
6284 : 25 : if (!gfc_check_dependency (cblock->next->expr1,
6285 : : cblock->expr1, 0)
6286 : 25 : && !gfc_check_dependency (eblock->next->expr1,
6287 : : cblock->expr1, 0)
6288 : 25 : && !gfc_check_dependency (cblock->next->expr1,
6289 : 25 : eblock->next->expr2, 1)
6290 : 19 : && !gfc_check_dependency (eblock->next->expr1,
6291 : 19 : cblock->next->expr2, 1)
6292 : 19 : && !gfc_check_dependency (cblock->next->expr1,
6293 : 19 : cblock->next->expr2, 1)
6294 : 19 : && !gfc_check_dependency (eblock->next->expr1,
6295 : 19 : eblock->next->expr2, 1)
6296 : 19 : && !gfc_check_dependency (cblock->next->expr1,
6297 : 19 : eblock->next->expr1, 0)
6298 : 44 : && !gfc_check_dependency (eblock->next->expr1,
6299 : 19 : cblock->next->expr1, 0))
6300 : 13 : return gfc_trans_where_3 (cblock, eblock);
6301 : : }
6302 : : }
6303 : :
6304 : 247 : gfc_start_block (&block);
6305 : :
6306 : 247 : gfc_trans_where_2 (code, NULL, false, NULL, &block);
6307 : :
6308 : 247 : return gfc_finish_block (&block);
6309 : : }
6310 : :
6311 : :
6312 : : /* CYCLE a DO loop. The label decl has already been created by
6313 : : gfc_trans_do(), it's in TREE_PURPOSE (backend_decl) of the gfc_code
6314 : : node at the head of the loop. We must mark the label as used. */
6315 : :
6316 : : tree
6317 : 106 : gfc_trans_cycle (gfc_code * code)
6318 : : {
6319 : 106 : tree cycle_label;
6320 : :
6321 : 106 : cycle_label = code->ext.which_construct->cycle_label;
6322 : 106 : gcc_assert (cycle_label);
6323 : :
6324 : 106 : TREE_USED (cycle_label) = 1;
6325 : 106 : return build1_v (GOTO_EXPR, cycle_label);
6326 : : }
6327 : :
6328 : :
6329 : : /* EXIT a DO loop. Similar to CYCLE, but now the label is in
6330 : : TREE_VALUE (backend_decl) of the gfc_code node at the head of the
6331 : : loop. */
6332 : :
6333 : : tree
6334 : 683 : gfc_trans_exit (gfc_code * code)
6335 : : {
6336 : 683 : tree exit_label;
6337 : :
6338 : 683 : exit_label = code->ext.which_construct->exit_label;
6339 : 683 : gcc_assert (exit_label);
6340 : :
6341 : 683 : TREE_USED (exit_label) = 1;
6342 : 683 : return build1_v (GOTO_EXPR, exit_label);
6343 : : }
6344 : :
6345 : :
6346 : : /* Get the initializer expression for the code and expr of an allocate.
6347 : : When no initializer is needed return NULL. */
6348 : :
6349 : : static gfc_expr *
6350 : 12778 : allocate_get_initializer (gfc_code * code, gfc_expr * expr)
6351 : : {
6352 : 12778 : if (!gfc_bt_struct (expr->ts.type) && expr->ts.type != BT_CLASS)
6353 : : return NULL;
6354 : :
6355 : : /* An explicit type was given in allocate ( T:: object). */
6356 : 3498 : if (code->ext.alloc.ts.type == BT_DERIVED
6357 : 3498 : && (code->ext.alloc.ts.u.derived->attr.alloc_comp
6358 : 493 : || gfc_has_default_initializer (code->ext.alloc.ts.u.derived)))
6359 : 337 : return gfc_default_initializer (&code->ext.alloc.ts);
6360 : :
6361 : 548 : if (gfc_bt_struct (expr->ts.type)
6362 : 3161 : && (expr->ts.u.derived->attr.alloc_comp
6363 : 1839 : || gfc_has_default_initializer (expr->ts.u.derived)))
6364 : 1191 : return gfc_default_initializer (&expr->ts);
6365 : :
6366 : 1970 : if (expr->ts.type == BT_CLASS
6367 : 1970 : && (CLASS_DATA (expr)->ts.u.derived->attr.alloc_comp
6368 : 458 : || gfc_has_default_initializer (CLASS_DATA (expr)->ts.u.derived)))
6369 : 173 : return gfc_default_initializer (&CLASS_DATA (expr)->ts);
6370 : :
6371 : : return NULL;
6372 : : }
6373 : :
6374 : : /* Translate the ALLOCATE statement. */
6375 : :
6376 : : tree
6377 : 13495 : gfc_trans_allocate (gfc_code * code, gfc_omp_namelist *omp_allocate)
6378 : : {
6379 : 13495 : gfc_alloc *al;
6380 : 13495 : gfc_expr *expr, *e3rhs = NULL, *init_expr;
6381 : 13495 : gfc_se se, se_sz;
6382 : 13495 : tree tmp;
6383 : 13495 : tree parm;
6384 : 13495 : tree stat;
6385 : 13495 : tree errmsg;
6386 : 13495 : tree errlen;
6387 : 13495 : tree label_errmsg;
6388 : 13495 : tree label_finish;
6389 : 13495 : tree memsz;
6390 : 13495 : tree al_vptr, al_len;
6391 : : /* If an expr3 is present, then store the tree for accessing its
6392 : : _vptr, and _len components in the variables, respectively. The
6393 : : element size, i.e. _vptr%size, is stored in expr3_esize. Any of
6394 : : the trees may be the NULL_TREE indicating that this is not
6395 : : available for expr3's type. */
6396 : 13495 : tree expr3, expr3_vptr, expr3_len, expr3_esize;
6397 : : /* Classify what expr3 stores. */
6398 : 13495 : enum { E3_UNSET = 0, E3_SOURCE, E3_MOLD, E3_DESC } e3_is;
6399 : 13495 : stmtblock_t block;
6400 : 13495 : stmtblock_t post;
6401 : 13495 : stmtblock_t final_block;
6402 : 13495 : tree nelems;
6403 : 13495 : bool upoly_expr, tmp_expr3_len_flag = false, al_len_needs_set, is_coarray;
6404 : 13495 : bool needs_caf_sync, caf_refs_comp;
6405 : 13495 : bool e3_has_nodescriptor = false;
6406 : 13495 : gfc_symtree *newsym = NULL;
6407 : 13495 : symbol_attribute caf_attr;
6408 : 13495 : gfc_actual_arglist *param_list;
6409 : 13495 : tree ts_string_length = NULL_TREE;
6410 : :
6411 : 13495 : if (!code->ext.alloc.list)
6412 : : return NULL_TREE;
6413 : :
6414 : 13495 : stat = tmp = memsz = al_vptr = al_len = NULL_TREE;
6415 : 13495 : expr3 = expr3_vptr = expr3_len = expr3_esize = NULL_TREE;
6416 : 13495 : label_errmsg = label_finish = errmsg = errlen = NULL_TREE;
6417 : 13495 : e3_is = E3_UNSET;
6418 : 13495 : is_coarray = needs_caf_sync = false;
6419 : :
6420 : 13495 : gfc_init_block (&block);
6421 : 13495 : gfc_init_block (&post);
6422 : 13495 : gfc_init_block (&final_block);
6423 : :
6424 : : /* STAT= (and maybe ERRMSG=) is present. */
6425 : 13495 : if (code->expr1)
6426 : : {
6427 : : /* STAT=. */
6428 : 271 : tree gfc_int4_type_node = gfc_get_int_type (4);
6429 : 271 : stat = gfc_create_var (gfc_int4_type_node, "stat");
6430 : :
6431 : : /* ERRMSG= only makes sense with STAT=. */
6432 : 271 : if (code->expr2)
6433 : : {
6434 : 68 : gfc_init_se (&se, NULL);
6435 : 68 : se.want_pointer = 1;
6436 : 68 : gfc_conv_expr_lhs (&se, code->expr2);
6437 : 68 : errmsg = se.expr;
6438 : 68 : errlen = se.string_length;
6439 : : }
6440 : : else
6441 : : {
6442 : 203 : errmsg = null_pointer_node;
6443 : 203 : errlen = build_int_cst (gfc_charlen_type_node, 0);
6444 : : }
6445 : :
6446 : : /* GOTO destinations. */
6447 : 271 : label_errmsg = gfc_build_label_decl (NULL_TREE);
6448 : 271 : label_finish = gfc_build_label_decl (NULL_TREE);
6449 : 271 : TREE_USED (label_finish) = 0;
6450 : : }
6451 : :
6452 : : /* When an expr3 is present evaluate it only once. The standards prevent a
6453 : : dependency of expr3 on the objects in the allocate list. An expr3 can
6454 : : be pre-evaluated in all cases. One just has to make sure, to use the
6455 : : correct way, i.e., to get the descriptor or to get a reference
6456 : : expression. */
6457 : 13495 : if (code->expr3)
6458 : : {
6459 : 3648 : bool vtab_needed = false, temp_var_needed = false,
6460 : 3648 : temp_obj_created = false;
6461 : :
6462 : 3648 : is_coarray = gfc_is_coarray (code->expr3);
6463 : :
6464 : 279 : if (code->expr3->expr_type == EXPR_FUNCTION && !code->expr3->mold
6465 : 3891 : && (gfc_is_class_array_function (code->expr3)
6466 : 213 : || gfc_is_alloc_class_scalar_function (code->expr3)))
6467 : 78 : code->expr3->must_finalize = 1;
6468 : :
6469 : : /* Figure whether we need the vtab from expr3. */
6470 : 7308 : for (al = code->ext.alloc.list; !vtab_needed && al != NULL;
6471 : 3660 : al = al->next)
6472 : 3660 : vtab_needed = (al->expr->ts.type == BT_CLASS);
6473 : :
6474 : 3648 : gfc_init_se (&se, NULL);
6475 : : /* When expr3 is a variable, i.e., a very simple expression, then
6476 : : convert it once here. If one has a source expression that has
6477 : : substring references, part-refs, or %re/%im inquiries, wrap the
6478 : : entity in parentheses to force evaluation of the expression. */
6479 : 3648 : if (code->expr3->expr_type == EXPR_VARIABLE
6480 : 3648 : && is_subref_array (code->expr3))
6481 : 60 : code->expr3 = gfc_get_parentheses (code->expr3);
6482 : :
6483 : 3648 : if (code->expr3->expr_type == EXPR_VARIABLE
6484 : 2394 : || code->expr3->expr_type == EXPR_ARRAY
6485 : 1428 : || code->expr3->expr_type == EXPR_CONSTANT)
6486 : : {
6487 : 2623 : if (!code->expr3->mold
6488 : 232 : || code->expr3->ts.type == BT_CHARACTER
6489 : 104 : || vtab_needed
6490 : 69 : || code->ext.alloc.arr_spec_from_expr3)
6491 : : {
6492 : : /* Convert expr3 to a tree. For all "simple" expression just
6493 : : get the descriptor or the reference, respectively, depending
6494 : : on the rank of the expr. */
6495 : 2623 : if (code->ext.alloc.arr_spec_from_expr3 || code->expr3->rank != 0)
6496 : 1516 : gfc_conv_expr_descriptor (&se, code->expr3);
6497 : : else
6498 : : {
6499 : 1107 : gfc_conv_expr_reference (&se, code->expr3);
6500 : :
6501 : : /* gfc_conv_expr_reference wraps POINTER_PLUS_EXPR in a
6502 : : NOP_EXPR, which prevents gfortran from getting the vptr
6503 : : from the source=-expression. Remove the NOP_EXPR and go
6504 : : with the POINTER_PLUS_EXPR in this case. */
6505 : 1107 : if (code->expr3->ts.type == BT_CLASS
6506 : 256 : && TREE_CODE (se.expr) == NOP_EXPR
6507 : 1263 : && (TREE_CODE (TREE_OPERAND (se.expr, 0))
6508 : : == POINTER_PLUS_EXPR
6509 : 138 : || is_coarray))
6510 : 30 : se.expr = TREE_OPERAND (se.expr, 0);
6511 : : }
6512 : : /* Create a temp variable only for component refs to prevent
6513 : : having to go through the full deref-chain each time and to
6514 : : simplify computation of array properties. */
6515 : 2623 : temp_var_needed = TREE_CODE (se.expr) == COMPONENT_REF;
6516 : : }
6517 : : }
6518 : : else
6519 : : {
6520 : : /* In all other cases evaluate the expr3. */
6521 : 1025 : symbol_attribute attr;
6522 : : /* Get the descriptor for all arrays, that are not allocatable or
6523 : : pointer, because the latter are descriptors already.
6524 : : The exception are function calls returning a class object:
6525 : : The descriptor is stored in their results _data component, which
6526 : : is easier to access, when first a temporary variable for the
6527 : : result is created and the descriptor retrieved from there. */
6528 : 1025 : attr = gfc_expr_attr (code->expr3);
6529 : 1025 : if (code->expr3->rank != 0
6530 : 242 : && ((!attr.allocatable && !attr.pointer)
6531 : 71 : || (code->expr3->expr_type == EXPR_FUNCTION
6532 : 71 : && (code->expr3->ts.type != BT_CLASS
6533 : 53 : || (code->expr3->value.function.isym
6534 : 12 : && code->expr3->value.function.isym
6535 : 12 : ->transformational)))))
6536 : 201 : gfc_conv_expr_descriptor (&se, code->expr3);
6537 : : else
6538 : 824 : gfc_conv_expr_reference (&se, code->expr3);
6539 : 1025 : if (code->expr3->ts.type == BT_CLASS)
6540 : 132 : gfc_conv_class_to_class (&se, code->expr3,
6541 : : code->expr3->ts,
6542 : : false, true,
6543 : : false, false);
6544 : 1025 : temp_obj_created = temp_var_needed = !VAR_P (se.expr);
6545 : : }
6546 : 3648 : gfc_add_block_to_block (&block, &se.pre);
6547 : 3648 : if (code->expr3->must_finalize)
6548 : : {
6549 : 78 : gfc_add_block_to_block (&final_block, &se.finalblock);
6550 : 78 : gfc_add_block_to_block (&final_block, &se.post);
6551 : : }
6552 : : else
6553 : 3570 : gfc_add_block_to_block (&post, &se.post);
6554 : :
6555 : : /* Special case when string in expr3 is scalar and has length zero. */
6556 : 3648 : if (code->expr3->ts.type == BT_CHARACTER
6557 : 787 : && code->expr3->rank == 0
6558 : 4142 : && integer_zerop (se.string_length))
6559 : : {
6560 : 6 : gfc_init_se (&se, NULL);
6561 : 6 : temp_var_needed = false;
6562 : 6 : expr3_len = build_zero_cst (gfc_charlen_type_node);
6563 : 6 : e3_is = E3_MOLD;
6564 : : }
6565 : : /* Prevent aliasing, i.e., se.expr may be already a
6566 : : variable declaration. */
6567 : 3642 : else if (se.expr != NULL_TREE && temp_var_needed)
6568 : : {
6569 : 873 : tree var, desc;
6570 : 873 : tmp = (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se.expr))
6571 : 811 : || is_coarray
6572 : 799 : || (code->expr3->ts.type == BT_CHARACTER
6573 : 895 : && code->expr3->rank == 0)) ?
6574 : : se.expr
6575 : 777 : : build_fold_indirect_ref_loc (input_location, se.expr);
6576 : :
6577 : : /* Get the array descriptor and prepare it to be assigned to the
6578 : : temporary variable var. For classes the array descriptor is
6579 : : in the _data component and the object goes into the
6580 : : GFC_DECL_SAVED_DESCRIPTOR. */
6581 : 873 : if (code->expr3->ts.type == BT_CLASS
6582 : 187 : && code->expr3->rank != 0)
6583 : : {
6584 : : /* When an array_ref was in expr3, then the descriptor is the
6585 : : first operand. */
6586 : 96 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)) || is_coarray)
6587 : : {
6588 : 49 : desc = TREE_OPERAND (tmp, 0);
6589 : : }
6590 : : else
6591 : : {
6592 : 47 : desc = tmp;
6593 : 47 : tmp = gfc_class_data_get (tmp);
6594 : : }
6595 : 96 : if (code->ext.alloc.arr_spec_from_expr3)
6596 : 39 : e3_is = E3_DESC;
6597 : : }
6598 : : else
6599 : 789 : desc = !is_coarray ? se.expr
6600 : 12 : : TREE_OPERAND (TREE_OPERAND (se.expr, 0), 0);
6601 : : /* We need a regular (non-UID) symbol here, therefore give a
6602 : : prefix. */
6603 : 873 : var = gfc_create_var (TREE_TYPE (tmp), "source");
6604 : 873 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)) || is_coarray)
6605 : : {
6606 : 121 : gfc_allocate_lang_decl (var);
6607 : 121 : GFC_DECL_SAVED_DESCRIPTOR (var) = desc;
6608 : : }
6609 : 873 : gfc_add_modify_loc (input_location, &block, var, tmp);
6610 : :
6611 : 873 : expr3 = var;
6612 : 873 : if (se.string_length)
6613 : : /* Evaluate it assuming that it also is complicated like expr3. */
6614 : 29 : expr3_len = gfc_evaluate_now (se.string_length, &block);
6615 : : }
6616 : : else
6617 : : {
6618 : 2769 : expr3 = se.expr;
6619 : 2769 : expr3_len = se.string_length;
6620 : : }
6621 : :
6622 : : /* Deallocate any allocatable components in expressions that use a
6623 : : temporary object, i.e. are not a simple alias of to an EXPR_VARIABLE.
6624 : : E.g. temporaries of a function call need freeing of their components
6625 : : here. Explicit derived type allocation of class entities uses expr3
6626 : : to carry the default initializer. This must not be deallocated or
6627 : : finalized. */
6628 : 3648 : if ((code->expr3->ts.type == BT_DERIVED
6629 : 2390 : || code->expr3->ts.type == BT_CLASS)
6630 : 1779 : && (code->expr3->expr_type != EXPR_VARIABLE || temp_obj_created)
6631 : 1194 : && code->expr3->ts.u.derived->attr.alloc_comp
6632 : 298 : && !code->expr3->must_finalize
6633 : 292 : && !code->ext.alloc.expr3_not_explicit)
6634 : : {
6635 : 212 : tmp = gfc_deallocate_alloc_comp (code->expr3->ts.u.derived,
6636 : : expr3, code->expr3->rank);
6637 : 212 : gfc_prepend_expr_to_block (&post, tmp);
6638 : : }
6639 : :
6640 : : /* Store what the expr3 is to be used for. */
6641 : 3648 : if (e3_is == E3_UNSET)
6642 : 3603 : e3_is = expr3 != NULL_TREE ?
6643 : 3603 : (code->ext.alloc.arr_spec_from_expr3 ?
6644 : : E3_DESC
6645 : 2511 : : (code->expr3->mold ? E3_MOLD : E3_SOURCE))
6646 : : : E3_UNSET;
6647 : :
6648 : : /* Figure how to get the _vtab entry. This also obtains the tree
6649 : : expression for accessing the _len component, because only
6650 : : unlimited polymorphic objects, which are a subcategory of class
6651 : : types, have a _len component. */
6652 : 3648 : if (code->expr3->ts.type == BT_CLASS)
6653 : : {
6654 : 521 : gfc_expr *rhs;
6655 : 521 : tmp = expr3 != NULL_TREE && POINTER_TYPE_P (TREE_TYPE (expr3)) ?
6656 : 256 : build_fold_indirect_ref (expr3): expr3;
6657 : : /* Polymorphic SOURCE: VPTR must be determined at run time.
6658 : : expr3 may be a temporary array declaration, therefore check for
6659 : : GFC_CLASS_TYPE_P before trying to get the _vptr component. */
6660 : 521 : if (tmp != NULL_TREE
6661 : 521 : && (e3_is == E3_DESC
6662 : 440 : || (GFC_CLASS_TYPE_P (TREE_TYPE (tmp))
6663 : 280 : && (VAR_P (tmp) || !code->expr3->ref))
6664 : 186 : || (VAR_P (tmp) && DECL_LANG_SPECIFIC (tmp))))
6665 : 440 : tmp = gfc_class_vptr_get (expr3);
6666 : : else
6667 : : {
6668 : 81 : rhs = gfc_find_and_cut_at_last_class_ref (code->expr3);
6669 : 81 : gfc_add_vptr_component (rhs);
6670 : 81 : gfc_init_se (&se, NULL);
6671 : 81 : se.want_pointer = 1;
6672 : 81 : gfc_conv_expr (&se, rhs);
6673 : 81 : tmp = se.expr;
6674 : 81 : gfc_free_expr (rhs);
6675 : : }
6676 : : /* Set the element size. */
6677 : 521 : expr3_esize = gfc_vptr_size_get (tmp);
6678 : 521 : if (vtab_needed)
6679 : 515 : expr3_vptr = tmp;
6680 : : /* Initialize the ref to the _len component. */
6681 : 521 : if (expr3_len == NULL_TREE && UNLIMITED_POLY (code->expr3))
6682 : : {
6683 : : /* Same like for retrieving the _vptr. */
6684 : 164 : if (expr3 != NULL_TREE && !code->expr3->ref)
6685 : 92 : expr3_len = gfc_class_len_get (expr3);
6686 : : else
6687 : : {
6688 : 72 : rhs = gfc_find_and_cut_at_last_class_ref (code->expr3);
6689 : 72 : gfc_add_len_component (rhs);
6690 : 72 : gfc_init_se (&se, NULL);
6691 : 72 : gfc_conv_expr (&se, rhs);
6692 : 72 : expr3_len = se.expr;
6693 : 72 : gfc_free_expr (rhs);
6694 : : }
6695 : : }
6696 : : }
6697 : : else
6698 : : {
6699 : : /* When the object to allocate is polymorphic type, then it
6700 : : needs its vtab set correctly, so deduce the required _vtab
6701 : : and _len from the source expression. */
6702 : 3127 : if (vtab_needed)
6703 : : {
6704 : : /* VPTR is fixed at compile time. */
6705 : 1187 : gfc_symbol *vtab;
6706 : :
6707 : 1187 : vtab = gfc_find_vtab (&code->expr3->ts);
6708 : 1187 : gcc_assert (vtab);
6709 : 1187 : expr3_vptr = gfc_get_symbol_decl (vtab);
6710 : 1187 : expr3_vptr = gfc_build_addr_expr (NULL_TREE,
6711 : : expr3_vptr);
6712 : : }
6713 : : /* _len component needs to be set, when ts is a character
6714 : : array. */
6715 : 3127 : if (expr3_len == NULL_TREE
6716 : 2340 : && code->expr3->ts.type == BT_CHARACTER)
6717 : : {
6718 : 0 : if (code->expr3->ts.u.cl
6719 : 0 : && code->expr3->ts.u.cl->length)
6720 : : {
6721 : 0 : gfc_init_se (&se, NULL);
6722 : 0 : gfc_conv_expr (&se, code->expr3->ts.u.cl->length);
6723 : 0 : gfc_add_block_to_block (&block, &se.pre);
6724 : 0 : expr3_len = gfc_evaluate_now (se.expr, &block);
6725 : : }
6726 : 0 : gcc_assert (expr3_len);
6727 : : }
6728 : : /* For character arrays only the kind's size is needed, because
6729 : : the array mem_size is _len * (elem_size = kind_size).
6730 : : For all other get the element size in the normal way. */
6731 : 3127 : if (code->expr3->ts.type == BT_CHARACTER)
6732 : 787 : expr3_esize = TYPE_SIZE_UNIT (
6733 : : gfc_get_char_type (code->expr3->ts.kind));
6734 : : else
6735 : 2340 : expr3_esize = TYPE_SIZE_UNIT (
6736 : : gfc_typenode_for_spec (&code->expr3->ts));
6737 : : }
6738 : 3648 : gcc_assert (expr3_esize);
6739 : 3648 : expr3_esize = fold_convert (sizetype, expr3_esize);
6740 : 3648 : if (e3_is == E3_MOLD)
6741 : : /* The expr3 is no longer valid after this point. */
6742 : 179 : expr3 = NULL_TREE;
6743 : : }
6744 : 9847 : else if (code->ext.alloc.ts.type != BT_UNKNOWN)
6745 : : {
6746 : : /* Compute the explicit typespec given only once for all objects
6747 : : to allocate. */
6748 : 1152 : if (code->ext.alloc.ts.type != BT_CHARACTER)
6749 : 743 : expr3_esize = TYPE_SIZE_UNIT (
6750 : : gfc_typenode_for_spec (&code->ext.alloc.ts));
6751 : 409 : else if (code->ext.alloc.ts.u.cl->length != NULL)
6752 : : {
6753 : 403 : gfc_expr *sz;
6754 : 403 : sz = gfc_copy_expr (code->ext.alloc.ts.u.cl->length);
6755 : 403 : gfc_init_se (&se_sz, NULL);
6756 : 403 : gfc_conv_expr (&se_sz, sz);
6757 : 403 : gfc_free_expr (sz);
6758 : 403 : ts_string_length = fold_convert (gfc_charlen_type_node, se_sz.expr);
6759 : 403 : tmp = gfc_get_char_type (code->ext.alloc.ts.kind);
6760 : 403 : tmp = TYPE_SIZE_UNIT (tmp);
6761 : 403 : tmp = fold_convert (TREE_TYPE (se_sz.expr), tmp);
6762 : 403 : gfc_add_block_to_block (&block, &se_sz.pre);
6763 : 403 : expr3_esize = fold_build2_loc (input_location, MULT_EXPR,
6764 : 403 : TREE_TYPE (se_sz.expr),
6765 : : tmp, se_sz.expr);
6766 : 403 : expr3_esize = gfc_evaluate_now (expr3_esize, &block);
6767 : : }
6768 : : else
6769 : : expr3_esize = NULL_TREE;
6770 : : }
6771 : :
6772 : : /* The routine gfc_trans_assignment () already implements all
6773 : : techniques needed. Unfortunately we may have a temporary
6774 : : variable for the source= expression here. When that is the
6775 : : case convert this variable into a temporary gfc_expr of type
6776 : : EXPR_VARIABLE and used it as rhs for the assignment. The
6777 : : advantage is, that we get scalarizer support for free,
6778 : : don't have to take care about scalar to array treatment and
6779 : : will benefit of every enhancements gfc_trans_assignment ()
6780 : : gets.
6781 : : No need to check whether e3_is is E3_UNSET, because that is
6782 : : done by expr3 != NULL_TREE.
6783 : : Exclude variables since the following block does not handle
6784 : : array sections. In any case, there is no harm in sending
6785 : : variables to gfc_trans_assignment because there is no
6786 : : evaluation of variables. */
6787 : 13495 : if (code->expr3)
6788 : : {
6789 : 3648 : if (code->expr3->expr_type != EXPR_VARIABLE
6790 : 2394 : && e3_is != E3_MOLD && expr3 != NULL_TREE
6791 : 5974 : && DECL_P (expr3) && DECL_ARTIFICIAL (expr3))
6792 : : {
6793 : : /* Build a temporary symtree and symbol. Do not add it to the current
6794 : : namespace to prevent accidentaly modifying a colliding
6795 : : symbol's as. */
6796 : 1957 : newsym = XCNEW (gfc_symtree);
6797 : : /* The name of the symtree should be unique, because gfc_create_var ()
6798 : : took care about generating the identifier. */
6799 : 1957 : newsym->name
6800 : 1957 : = gfc_get_string ("%s", IDENTIFIER_POINTER (DECL_NAME (expr3)));
6801 : 1957 : newsym->n.sym = gfc_new_symbol (newsym->name, NULL);
6802 : : /* The backend_decl is known. It is expr3, which is inserted
6803 : : here. */
6804 : 1957 : newsym->n.sym->backend_decl = expr3;
6805 : 1957 : e3rhs = gfc_get_expr ();
6806 : 1957 : e3rhs->rank = code->expr3->rank;
6807 : 1957 : e3rhs->corank = code->expr3->corank;
6808 : 1957 : e3rhs->symtree = newsym;
6809 : : /* Mark the symbol referenced or gfc_trans_assignment will bug. */
6810 : 1957 : newsym->n.sym->attr.referenced = 1;
6811 : 1957 : e3rhs->expr_type = EXPR_VARIABLE;
6812 : 1957 : e3rhs->where = code->expr3->where;
6813 : : /* Set the symbols type, upto it was BT_UNKNOWN. */
6814 : 1957 : if (IS_CLASS_ARRAY (code->expr3)
6815 : 54 : && code->expr3->expr_type == EXPR_FUNCTION
6816 : 42 : && code->expr3->value.function.isym
6817 : 12 : && code->expr3->value.function.isym->transformational)
6818 : : {
6819 : 12 : e3rhs->ts = CLASS_DATA (code->expr3)->ts;
6820 : : }
6821 : 1945 : else if (code->expr3->ts.type == BT_CLASS
6822 : 1945 : && !GFC_CLASS_TYPE_P (TREE_TYPE (expr3)))
6823 : 46 : e3rhs->ts = CLASS_DATA (code->expr3)->ts;
6824 : : else
6825 : 1899 : e3rhs->ts = code->expr3->ts;
6826 : 1957 : newsym->n.sym->ts = e3rhs->ts;
6827 : : /* Check whether the expr3 is array valued. */
6828 : 1957 : if (e3rhs->rank)
6829 : : {
6830 : 1201 : gfc_array_spec *arr;
6831 : 1201 : arr = gfc_get_array_spec ();
6832 : 1201 : arr->rank = e3rhs->rank;
6833 : 1201 : arr->corank = e3rhs->corank;
6834 : 1201 : arr->type = AS_DEFERRED;
6835 : : /* Set the dimension and pointer attribute for arrays
6836 : : to be on the safe side. */
6837 : 1201 : newsym->n.sym->attr.dimension = 1;
6838 : 1201 : newsym->n.sym->attr.pointer = 1;
6839 : 1201 : newsym->n.sym->as = arr;
6840 : 1201 : if (IS_CLASS_ARRAY (code->expr3)
6841 : 54 : && code->expr3->expr_type == EXPR_FUNCTION
6842 : 42 : && code->expr3->value.function.isym
6843 : 12 : && code->expr3->value.function.isym->transformational)
6844 : : {
6845 : 12 : gfc_array_spec *tarr;
6846 : 12 : tarr = gfc_get_array_spec ();
6847 : 12 : *tarr = *arr;
6848 : 12 : e3rhs->ts.u.derived->as = tarr;
6849 : : }
6850 : 1201 : gfc_add_full_array_ref (e3rhs, arr);
6851 : : }
6852 : 756 : else if (POINTER_TYPE_P (TREE_TYPE (expr3)))
6853 : 45 : newsym->n.sym->attr.pointer = 1;
6854 : : /* The string length is known, too. Set it for char arrays. */
6855 : 1957 : if (e3rhs->ts.type == BT_CHARACTER)
6856 : 281 : newsym->n.sym->ts.u.cl->backend_decl = expr3_len;
6857 : 1957 : gfc_commit_symbol (newsym->n.sym);
6858 : : }
6859 : : else
6860 : 1691 : e3rhs = gfc_copy_expr (code->expr3);
6861 : :
6862 : : // We need to propagate the bounds of the expr3 for source=/mold=.
6863 : : // However, for non-named arrays, the lbound has to be 1 and neither the
6864 : : // bound used inside the called function even when returning an
6865 : : // allocatable/pointer nor the zero used internally.
6866 : 3648 : if (e3_is == E3_DESC
6867 : 1131 : && code->expr3->expr_type != EXPR_VARIABLE)
6868 : 13495 : e3_has_nodescriptor = true;
6869 : : }
6870 : :
6871 : : /* Loop over all objects to allocate. */
6872 : 29884 : for (al = code->ext.alloc.list; al != NULL; al = al->next)
6873 : : {
6874 : 16389 : expr = gfc_copy_expr (al->expr);
6875 : : /* UNLIMITED_POLY () needs the _data component to be set, when
6876 : : expr is a unlimited polymorphic object. But the _data component
6877 : : has not been set yet, so check the derived type's attr for the
6878 : : unlimited polymorphic flag to be safe. */
6879 : 16389 : upoly_expr = UNLIMITED_POLY (expr)
6880 : 32185 : || (expr->ts.type == BT_DERIVED
6881 : 2301 : && expr->ts.u.derived->attr.unlimited_polymorphic);
6882 : 16389 : gfc_init_se (&se, NULL);
6883 : :
6884 : : /* For class types prepare the expressions to ref the _vptr
6885 : : and the _len component. The latter for unlimited polymorphic
6886 : : types only. */
6887 : 16389 : if (expr->ts.type == BT_CLASS)
6888 : : {
6889 : 3394 : gfc_expr *expr_ref_vptr, *expr_ref_len;
6890 : 3394 : gfc_add_data_component (expr);
6891 : : /* Prep the vptr handle. */
6892 : 3394 : expr_ref_vptr = gfc_copy_expr (al->expr);
6893 : 3394 : gfc_add_vptr_component (expr_ref_vptr);
6894 : 3394 : se.want_pointer = 1;
6895 : 3394 : gfc_conv_expr (&se, expr_ref_vptr);
6896 : 3394 : al_vptr = se.expr;
6897 : 3394 : se.want_pointer = 0;
6898 : 3394 : gfc_free_expr (expr_ref_vptr);
6899 : : /* Allocated unlimited polymorphic objects always have a _len
6900 : : component. */
6901 : 3394 : if (upoly_expr)
6902 : : {
6903 : 593 : expr_ref_len = gfc_copy_expr (al->expr);
6904 : 593 : gfc_add_len_component (expr_ref_len);
6905 : 593 : gfc_conv_expr (&se, expr_ref_len);
6906 : 593 : al_len = se.expr;
6907 : 593 : gfc_free_expr (expr_ref_len);
6908 : : }
6909 : : else
6910 : : /* In a loop ensure that all loop variable dependent variables
6911 : : are initialized at the same spot in all execution paths. */
6912 : : al_len = NULL_TREE;
6913 : : }
6914 : : else
6915 : : al_vptr = al_len = NULL_TREE;
6916 : :
6917 : 16389 : se.want_pointer = 1;
6918 : 16389 : se.descriptor_only = 1;
6919 : :
6920 : 16389 : gfc_conv_expr (&se, expr);
6921 : 16389 : if (expr->ts.type == BT_CHARACTER && expr->ts.deferred)
6922 : : /* se.string_length now stores the .string_length variable of expr
6923 : : needed to allocate character(len=:) arrays. */
6924 : 994 : al_len = se.string_length;
6925 : :
6926 : 16389 : al_len_needs_set = al_len != NULL_TREE;
6927 : : /* When allocating an array one cannot use much of the
6928 : : pre-evaluated expr3 expressions, because for most of them the
6929 : : scalarizer is needed which is not available in the pre-evaluation
6930 : : step. Therefore gfc_array_allocate () is responsible (and able)
6931 : : to handle the complete array allocation. Only the element size
6932 : : needs to be provided, which is done most of the time by the
6933 : : pre-evaluation step. */
6934 : 16389 : nelems = NULL_TREE;
6935 : 16389 : if (expr3_len && (code->expr3->ts.type == BT_CHARACTER
6936 : 957 : || code->expr3->ts.type == BT_CLASS))
6937 : : {
6938 : : /* When al is an array, then the element size for each element
6939 : : in the array is needed, which is the product of the len and
6940 : : esize for char arrays. For unlimited polymorphics len can be
6941 : : zero, therefore take the maximum of len and one. */
6942 : 957 : tree lhs_len;
6943 : :
6944 : : /* If an allocatable character variable has fixed length, use it.
6945 : : Otherwise use source length. As different lengths are not
6946 : : allowed by the standard, generate a runtime check. */
6947 : 957 : if (expr->ts.type == BT_CHARACTER && !expr->ts.deferred)
6948 : : {
6949 : 111 : gfc_trans_same_strlen_check ("ALLOCATE with SOURCE= or MOLD=",
6950 : : &code->expr3->where,
6951 : : se.string_length, expr3_len,
6952 : : &block);
6953 : 111 : lhs_len = fold_convert (TREE_TYPE (expr3_len), se.string_length);
6954 : : }
6955 : : else
6956 : : lhs_len = expr3_len;
6957 : :
6958 : 1914 : tmp = fold_build2_loc (input_location, MAX_EXPR,
6959 : 957 : TREE_TYPE (expr3_len),
6960 : 957 : lhs_len, fold_convert (TREE_TYPE (expr3_len),
6961 : : integer_one_node));
6962 : 1914 : tmp = fold_build2_loc (input_location, MULT_EXPR,
6963 : 957 : TREE_TYPE (expr3_esize), expr3_esize,
6964 : 957 : fold_convert (TREE_TYPE (expr3_esize), tmp));
6965 : 957 : }
6966 : : else
6967 : : tmp = expr3_esize;
6968 : :
6969 : : /* Create runtime check for ALLOCATE of character with type-spec. */
6970 : 16389 : if (expr->ts.type == BT_CHARACTER && !expr->ts.deferred
6971 : 742 : && ts_string_length
6972 : 19 : && se.string_length)
6973 : 19 : gfc_trans_same_strlen_check ("ALLOCATE with type-spec",
6974 : 19 : &al->expr->where,
6975 : : ts_string_length, se.string_length,
6976 : : &block);
6977 : :
6978 : 16389 : gfc_omp_namelist *omp_alloc_item = NULL;
6979 : 16389 : if (omp_allocate)
6980 : : {
6981 : : gfc_omp_namelist *n = NULL;
6982 : : gfc_omp_namelist *n_null = NULL;
6983 : 127 : for (n = omp_allocate; n; n = n->next)
6984 : : {
6985 : 85 : if (n->sym == NULL)
6986 : : {
6987 : 41 : n_null = n;
6988 : 41 : continue;
6989 : : }
6990 : 44 : if (expr->expr_type == EXPR_VARIABLE
6991 : 44 : && expr->symtree->n.sym == n->sym)
6992 : : {
6993 : 22 : gfc_ref *ref;
6994 : 32 : for (ref = expr->ref; ref; ref = ref->next)
6995 : 13 : if (ref->type == REF_COMPONENT)
6996 : : break;
6997 : : if (ref == NULL)
6998 : : break;
6999 : : }
7000 : : }
7001 : 61 : omp_alloc_item = n ? n : n_null;
7002 : :
7003 : : }
7004 : :
7005 : 16389 : if (!gfc_array_allocate (&se, expr, stat, errmsg, errlen,
7006 : : label_finish, tmp, &nelems,
7007 : : e3rhs ? e3rhs : code->expr3,
7008 : : e3_is == E3_DESC ? expr3 : NULL_TREE,
7009 : : e3_has_nodescriptor, omp_alloc_item,
7010 : 16389 : code->ext.alloc.ts.type != BT_UNKNOWN))
7011 : : {
7012 : : /* A scalar or derived type. First compute the size to
7013 : : allocate.
7014 : :
7015 : : expr3_len is set when expr3 is an unlimited polymorphic
7016 : : object or a deferred length string.
7017 : :
7018 : : If an allocatable character variable has fixed length, use it.
7019 : : Otherwise use source length. As different lengths are not
7020 : : allowed by the standard, a runtime check was inserted
7021 : : above. */
7022 : 4879 : if (expr3_len != NULL_TREE)
7023 : : {
7024 : 537 : tree lhs_len;
7025 : 537 : if (expr->ts.type == BT_CHARACTER && !expr->ts.deferred)
7026 : 56 : lhs_len = fold_convert (TREE_TYPE (expr3_len),
7027 : : se.string_length);
7028 : : else
7029 : : lhs_len = expr3_len;
7030 : :
7031 : 537 : tmp = fold_convert (TREE_TYPE (expr3_esize), lhs_len);
7032 : 537 : tmp = fold_build2_loc (input_location, MULT_EXPR,
7033 : 537 : TREE_TYPE (expr3_esize),
7034 : : expr3_esize, tmp);
7035 : 537 : if (code->expr3->ts.type != BT_CLASS)
7036 : : /* expr3 is a deferred length string, i.e., we are
7037 : : done. */
7038 : : memsz = tmp;
7039 : : else
7040 : : {
7041 : : /* For unlimited polymorphic enties build
7042 : : (len > 0) ? element_size * len : element_size
7043 : : to compute the number of bytes to allocate.
7044 : : This allows the allocation of unlimited polymorphic
7045 : : objects from an expr3 that is also unlimited
7046 : : polymorphic and stores a _len dependent object,
7047 : : e.g., a string. */
7048 : 98 : memsz = fold_build2_loc (input_location, GT_EXPR,
7049 : : logical_type_node, expr3_len,
7050 : : build_zero_cst
7051 : 98 : (TREE_TYPE (expr3_len)));
7052 : 98 : memsz = fold_build3_loc (input_location, COND_EXPR,
7053 : 98 : TREE_TYPE (expr3_esize),
7054 : : memsz, tmp, expr3_esize);
7055 : : }
7056 : : }
7057 : 4342 : else if (expr3_esize != NULL_TREE)
7058 : : /* Any other object in expr3 just needs element size in
7059 : : bytes. */
7060 : : memsz = expr3_esize;
7061 : 2676 : else if ((expr->ts.type == BT_CHARACTER && expr->ts.deferred)
7062 : 2676 : || (upoly_expr
7063 : 0 : && code->ext.alloc.ts.type == BT_CHARACTER))
7064 : : {
7065 : : /* Allocating deferred length char arrays need the length
7066 : : to allocate in the alloc_type_spec. But also unlimited
7067 : : polymorphic objects may be allocated as char arrays.
7068 : : Both are handled here. */
7069 : 0 : gfc_init_se (&se_sz, NULL);
7070 : 0 : gfc_conv_expr (&se_sz, code->ext.alloc.ts.u.cl->length);
7071 : 0 : gfc_add_block_to_block (&se.pre, &se_sz.pre);
7072 : 0 : se_sz.expr = gfc_evaluate_now (se_sz.expr, &se.pre);
7073 : 0 : gfc_add_block_to_block (&se.pre, &se_sz.post);
7074 : 0 : expr3_len = se_sz.expr;
7075 : 0 : tmp_expr3_len_flag = true;
7076 : 0 : tmp = TYPE_SIZE_UNIT (
7077 : : gfc_get_char_type (code->ext.alloc.ts.kind));
7078 : 0 : memsz = fold_build2_loc (input_location, MULT_EXPR,
7079 : 0 : TREE_TYPE (tmp),
7080 : 0 : fold_convert (TREE_TYPE (tmp),
7081 : : expr3_len),
7082 : : tmp);
7083 : : }
7084 : 2676 : else if (expr->ts.type == BT_CHARACTER)
7085 : : {
7086 : : /* Compute the number of bytes needed to allocate a fixed
7087 : : length char array. */
7088 : 164 : gcc_assert (se.string_length != NULL_TREE);
7089 : 164 : tmp = TYPE_SIZE_UNIT (gfc_get_char_type (expr->ts.kind));
7090 : 328 : memsz = fold_build2_loc (input_location, MULT_EXPR,
7091 : 164 : TREE_TYPE (tmp), tmp,
7092 : 164 : fold_convert (TREE_TYPE (tmp),
7093 : : se.string_length));
7094 : : }
7095 : 2512 : else if (code->ext.alloc.ts.type != BT_UNKNOWN)
7096 : : /* Handle all types, where the alloc_type_spec is set. */
7097 : 0 : memsz = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&code->ext.alloc.ts));
7098 : : else
7099 : : /* Handle size computation of the type declared to alloc. */
7100 : 2512 : memsz = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (se.expr)));
7101 : :
7102 : 4879 : bool use_coarray_alloc
7103 : 4879 : = (flag_coarray == GFC_FCOARRAY_LIB
7104 : 4879 : && (caf_attr = gfc_caf_attr (expr, true, &caf_refs_comp))
7105 : 70 : .codimension);
7106 : 4879 : tree omp_cond = NULL_TREE;
7107 : 4879 : tree omp_alt_alloc = NULL_TREE;
7108 : 4879 : tree succ_add_expr = NULL_TREE;
7109 : 4879 : if (!use_coarray_alloc && omp_alloc_item)
7110 : : {
7111 : 28 : tree align, alloc, sz;
7112 : 28 : gfc_se se2;
7113 : :
7114 : 28 : omp_cond = boolean_true_node;
7115 : 28 : if (omp_alloc_item->u2.allocator)
7116 : : {
7117 : 2 : gfc_init_se (&se2, NULL);
7118 : 2 : gfc_conv_expr (&se2, omp_alloc_item->u2.allocator);
7119 : 2 : gfc_add_block_to_block (&se.pre, &se2.pre);
7120 : 2 : alloc = gfc_evaluate_now (se2.expr, &se.pre);
7121 : 2 : gfc_add_block_to_block (&se.pre, &se2.post);
7122 : : }
7123 : : else
7124 : 26 : alloc = build_zero_cst (ptr_type_node);
7125 : 28 : tmp = TREE_TYPE (TREE_TYPE (se.expr));
7126 : 28 : if (tmp == void_type_node)
7127 : 3 : tmp = gfc_typenode_for_spec (&expr->ts, 0);
7128 : 28 : if (omp_alloc_item->u.align)
7129 : : {
7130 : 14 : gfc_init_se (&se2, NULL);
7131 : 14 : gfc_conv_expr (&se2, omp_alloc_item->u.align);
7132 : 14 : gcc_assert (CONSTANT_CLASS_P (se2.expr)
7133 : : && se2.pre.head == NULL
7134 : : && se2.post.head == NULL);
7135 : 14 : align = build_int_cst (size_type_node,
7136 : 14 : MAX (tree_to_uhwi (se2.expr),
7137 : : TYPE_ALIGN_UNIT (tmp)));
7138 : : }
7139 : : else
7140 : 14 : align = build_int_cst (size_type_node, TYPE_ALIGN_UNIT (tmp));
7141 : 28 : sz = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
7142 : : fold_convert (size_type_node, memsz),
7143 : 28 : build_int_cst (size_type_node, 1));
7144 : 28 : omp_alt_alloc = builtin_decl_explicit (BUILT_IN_GOMP_ALLOC);
7145 : 28 : DECL_ATTRIBUTES (omp_alt_alloc)
7146 : 28 : = tree_cons (get_identifier ("omp allocator"),
7147 : : build_tree_list (NULL_TREE, alloc),
7148 : 28 : DECL_ATTRIBUTES (omp_alt_alloc));
7149 : 28 : omp_alt_alloc = build_call_expr (omp_alt_alloc, 3, align, sz, alloc);
7150 : 28 : succ_add_expr = gfc_omp_call_add_alloc (se.expr);
7151 : : }
7152 : :
7153 : : /* Store the caf-attributes for latter use. */
7154 : 4879 : if (use_coarray_alloc)
7155 : : {
7156 : : /* Scalar allocatable components in coarray'ed derived types make
7157 : : it here and are treated now. */
7158 : 65 : tree caf_decl, token;
7159 : 65 : gfc_se caf_se;
7160 : :
7161 : 65 : is_coarray = true;
7162 : : /* Set flag, to add synchronize after the allocate. */
7163 : 130 : needs_caf_sync = needs_caf_sync
7164 : 65 : || caf_attr.coarray_comp || !caf_refs_comp;
7165 : :
7166 : 65 : gfc_init_se (&caf_se, NULL);
7167 : :
7168 : 65 : caf_decl = gfc_get_tree_for_caf_expr (expr);
7169 : 65 : gfc_get_caf_token_offset (&caf_se, &token, NULL, caf_decl,
7170 : : NULL_TREE, NULL);
7171 : 65 : gfc_add_block_to_block (&se.pre, &caf_se.pre);
7172 : 65 : gfc_allocate_allocatable (&se.pre, se.expr, memsz,
7173 : : gfc_build_addr_expr (NULL_TREE, token),
7174 : : NULL_TREE, NULL_TREE, NULL_TREE,
7175 : : label_finish, expr, 1);
7176 : : }
7177 : : /* Allocate - for non-pointers with re-alloc checking. */
7178 : 4814 : else if (gfc_expr_attr (expr).allocatable)
7179 : 3289 : gfc_allocate_allocatable (&se.pre, se.expr, memsz,
7180 : : NULL_TREE, stat, errmsg, errlen,
7181 : : label_finish, expr, 0,
7182 : : omp_cond, omp_alt_alloc, succ_add_expr);
7183 : : else
7184 : 1525 : gfc_allocate_using_malloc (&se.pre, se.expr, memsz, stat,
7185 : : omp_cond, omp_alt_alloc, succ_add_expr);
7186 : : }
7187 : : else
7188 : : {
7189 : : /* Allocating coarrays needs a sync after the allocate executed.
7190 : : Set the flag to add the sync after all objects are allocated. */
7191 : 11510 : if (flag_coarray == GFC_FCOARRAY_LIB
7192 : 11510 : && (caf_attr = gfc_caf_attr (expr, true, &caf_refs_comp))
7193 : 328 : .codimension)
7194 : : {
7195 : 286 : is_coarray = true;
7196 : 286 : needs_caf_sync = needs_caf_sync
7197 : 286 : || caf_attr.coarray_comp || !caf_refs_comp;
7198 : : }
7199 : :
7200 : 11510 : if (expr->ts.type == BT_CHARACTER && al_len != NULL_TREE
7201 : 994 : && expr3_len != NULL_TREE)
7202 : : {
7203 : : /* Arrays need to have a _len set before the array
7204 : : descriptor is filled. */
7205 : 278 : gfc_add_modify (&block, al_len,
7206 : 278 : fold_convert (TREE_TYPE (al_len), expr3_len));
7207 : : /* Prevent setting the length twice. */
7208 : 278 : al_len_needs_set = false;
7209 : : }
7210 : 11232 : else if (expr->ts.type == BT_CHARACTER && al_len != NULL_TREE
7211 : 204 : && code->ext.alloc.ts.u.cl->length)
7212 : : {
7213 : : /* Cover the cases where a string length is explicitly
7214 : : specified by a type spec for deferred length character
7215 : : arrays or unlimited polymorphic objects without a
7216 : : source= or mold= expression. */
7217 : 204 : gfc_init_se (&se_sz, NULL);
7218 : 204 : gfc_conv_expr (&se_sz, code->ext.alloc.ts.u.cl->length);
7219 : 204 : gfc_add_block_to_block (&block, &se_sz.pre);
7220 : 204 : gfc_add_modify (&block, al_len,
7221 : 204 : fold_convert (TREE_TYPE (al_len),
7222 : : se_sz.expr));
7223 : 204 : al_len_needs_set = false;
7224 : : }
7225 : : }
7226 : :
7227 : 16389 : gfc_add_block_to_block (&block, &se.pre);
7228 : :
7229 : : /* Error checking -- Note: ERRMSG only makes sense with STAT. */
7230 : 16389 : if (code->expr1)
7231 : : {
7232 : 283 : tmp = build1_v (GOTO_EXPR, label_errmsg);
7233 : 283 : parm = fold_build2_loc (input_location, NE_EXPR,
7234 : : logical_type_node, stat,
7235 : 283 : build_int_cst (TREE_TYPE (stat), 0));
7236 : 283 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
7237 : : gfc_unlikely (parm, PRED_FORTRAN_FAIL_ALLOC),
7238 : : tmp, build_empty_stmt (input_location));
7239 : 283 : gfc_add_expr_to_block (&block, tmp);
7240 : : }
7241 : :
7242 : : /* Set the vptr only when no source= is set. When source= is set, then
7243 : : the trans_assignment below will set the vptr. */
7244 : 16389 : if (al_vptr != NULL_TREE && (!code->expr3 || code->expr3->mold))
7245 : : {
7246 : 1639 : if (expr3_vptr != NULL_TREE)
7247 : : /* The vtab is already known, so just assign it. */
7248 : 73 : gfc_add_modify (&block, al_vptr,
7249 : 73 : fold_convert (TREE_TYPE (al_vptr), expr3_vptr));
7250 : : else
7251 : : {
7252 : : /* VPTR is fixed at compile time. */
7253 : 1566 : gfc_symbol *vtab;
7254 : 1566 : gfc_typespec *ts;
7255 : :
7256 : 1566 : if (code->expr3)
7257 : : /* Although expr3 is pre-evaluated above, it may happen,
7258 : : that for arrays or in mold= cases the pre-evaluation
7259 : : was not successful. In these rare cases take the vtab
7260 : : from the typespec of expr3 here. */
7261 : 0 : ts = &code->expr3->ts;
7262 : 1566 : else if (code->ext.alloc.ts.type == BT_DERIVED || upoly_expr)
7263 : : /* The alloc_type_spec gives the type to allocate or the
7264 : : al is unlimited polymorphic, which enforces the use of
7265 : : an alloc_type_spec that is not necessarily a BT_DERIVED. */
7266 : 701 : ts = &code->ext.alloc.ts;
7267 : : else
7268 : : /* Prepare for setting the vtab as declared. */
7269 : 865 : ts = &expr->ts;
7270 : :
7271 : 1566 : vtab = gfc_find_vtab (ts);
7272 : 1566 : gcc_assert (vtab);
7273 : 1566 : tmp = gfc_build_addr_expr (NULL_TREE,
7274 : : gfc_get_symbol_decl (vtab));
7275 : 1566 : gfc_add_modify (&block, al_vptr,
7276 : 1566 : fold_convert (TREE_TYPE (al_vptr), tmp));
7277 : : }
7278 : : }
7279 : :
7280 : : /* Add assignment for string length. */
7281 : 16389 : if (al_len != NULL_TREE && al_len_needs_set)
7282 : : {
7283 : 1105 : if (expr3_len != NULL_TREE)
7284 : : {
7285 : 568 : gfc_add_modify (&block, al_len,
7286 : 568 : fold_convert (TREE_TYPE (al_len),
7287 : : expr3_len));
7288 : : /* When tmp_expr3_len_flag is set, then expr3_len is
7289 : : abused to carry the length information from the
7290 : : alloc_type. Clear it to prevent setting incorrect len
7291 : : information in future loop iterations. */
7292 : 568 : if (tmp_expr3_len_flag)
7293 : : /* No need to reset tmp_expr3_len_flag, because the
7294 : : presence of an expr3 cannot change within in the
7295 : : loop. */
7296 : 537 : expr3_len = NULL_TREE;
7297 : : }
7298 : 537 : else if (code->ext.alloc.ts.type == BT_CHARACTER
7299 : 202 : && code->ext.alloc.ts.u.cl->length)
7300 : : {
7301 : : /* Cover the cases where a string length is explicitly
7302 : : specified by a type spec for deferred length character
7303 : : arrays or unlimited polymorphic objects without a
7304 : : source= or mold= expression. */
7305 : 202 : if (expr3_esize == NULL_TREE || code->ext.alloc.ts.kind != 1)
7306 : : {
7307 : 66 : gfc_init_se (&se_sz, NULL);
7308 : 66 : gfc_conv_expr (&se_sz, code->ext.alloc.ts.u.cl->length);
7309 : 66 : gfc_add_block_to_block (&block, &se_sz.pre);
7310 : 66 : gfc_add_modify (&block, al_len,
7311 : 66 : fold_convert (TREE_TYPE (al_len),
7312 : : se_sz.expr));
7313 : : }
7314 : : else
7315 : 136 : gfc_add_modify (&block, al_len,
7316 : 136 : fold_convert (TREE_TYPE (al_len),
7317 : : expr3_esize));
7318 : : }
7319 : : else
7320 : : /* No length information needed, because type to allocate
7321 : : has no length. Set _len to 0. */
7322 : 335 : gfc_add_modify (&block, al_len,
7323 : 335 : fold_convert (TREE_TYPE (al_len),
7324 : : integer_zero_node));
7325 : : }
7326 : :
7327 : 16389 : init_expr = NULL;
7328 : 16389 : if (code->expr3 && !code->expr3->mold && e3_is != E3_MOLD)
7329 : : {
7330 : : /* Initialization via SOURCE block (or static default initializer).
7331 : : Switch off automatic reallocation since we have just done the
7332 : : ALLOCATE. */
7333 : 3486 : int realloc_lhs = flag_realloc_lhs;
7334 : 3486 : gfc_expr *init_expr = gfc_expr_to_initialize (expr);
7335 : 3486 : gfc_expr *rhs = e3rhs ? e3rhs : gfc_copy_expr (code->expr3);
7336 : 3486 : flag_realloc_lhs = 0;
7337 : :
7338 : : /* The handling of code->expr3 above produces a derived type of
7339 : : type "STAR", whose size defaults to size(void*). In order to
7340 : : have the right type information for the assignment, we must
7341 : : reconstruct an unlimited polymorphic rhs. */
7342 : 3486 : if (UNLIMITED_POLY (code->expr3)
7343 : 151 : && e3rhs && e3rhs->ts.type == BT_DERIVED
7344 : 6 : && !strcmp (e3rhs->ts.u.derived->name, "STAR"))
7345 : : {
7346 : 6 : gfc_ref *ref;
7347 : 6 : gcc_assert (TREE_CODE (expr3_vptr) == COMPONENT_REF);
7348 : 6 : tmp = gfc_create_var (gfc_typenode_for_spec (&code->expr3->ts),
7349 : : "e3");
7350 : 6 : gfc_add_modify (&block, tmp,
7351 : : gfc_get_class_from_expr (expr3_vptr));
7352 : 6 : rhs->symtree->n.sym->backend_decl = tmp;
7353 : 6 : rhs->ts = code->expr3->ts;
7354 : 6 : rhs->symtree->n.sym->ts = rhs->ts;
7355 : 6 : for (ref = init_expr->ref; ref; ref = ref->next)
7356 : : {
7357 : : /* Copy over the lhs _data component ref followed by the
7358 : : full array reference for source expressions with rank.
7359 : : Otherwise, just copy the _data component ref. */
7360 : 6 : if (code->expr3->rank
7361 : 6 : && ref && ref->next && !ref->next->next)
7362 : : {
7363 : 6 : rhs->ref = gfc_copy_ref (ref);
7364 : 6 : break;
7365 : : }
7366 : 0 : else if ((init_expr->rank && !code->expr3->rank
7367 : 0 : && ref && ref->next && !ref->next->next)
7368 : 0 : || (ref && !ref->next))
7369 : : {
7370 : 0 : rhs->ref = gfc_copy_ref (ref);
7371 : 0 : gfc_free_ref_list (rhs->ref->next);
7372 : 0 : rhs->ref->next = NULL;
7373 : 0 : break;
7374 : : }
7375 : : }
7376 : : }
7377 : :
7378 : : /* Set the symbol to be artificial so that the result is not finalized. */
7379 : 3486 : init_expr->symtree->n.sym->attr.artificial = 1;
7380 : 3486 : tmp = gfc_trans_assignment (init_expr, rhs, true, false, true,
7381 : : false);
7382 : 3486 : init_expr->symtree->n.sym->attr.artificial = 0;
7383 : :
7384 : 3486 : flag_realloc_lhs = realloc_lhs;
7385 : : /* Free the expression allocated for init_expr. */
7386 : 3486 : gfc_free_expr (init_expr);
7387 : 3486 : if (rhs != e3rhs)
7388 : 0 : gfc_free_expr (rhs);
7389 : 3486 : gfc_add_expr_to_block (&block, tmp);
7390 : 3486 : }
7391 : : /* Set KIND and LEN PDT components and allocate those that are
7392 : : parameterized. */
7393 : 12903 : else if (expr->ts.type == BT_DERIVED
7394 : 3036 : && expr->ts.u.derived->attr.pdt_type)
7395 : : {
7396 : 64 : if (code->expr3 && code->expr3->param_list)
7397 : : param_list = code->expr3->param_list;
7398 : 64 : else if (expr->param_list)
7399 : : param_list = expr->param_list;
7400 : : else
7401 : 25 : param_list = expr->symtree->n.sym->param_list;
7402 : 64 : tmp = gfc_allocate_pdt_comp (expr->ts.u.derived, se.expr,
7403 : : expr->rank, param_list);
7404 : 64 : gfc_add_expr_to_block (&block, tmp);
7405 : : }
7406 : : /* Ditto for CLASS expressions. */
7407 : 12839 : else if (expr->ts.type == BT_CLASS
7408 : 587 : && CLASS_DATA (expr)->ts.u.derived->attr.pdt_type)
7409 : : {
7410 : 0 : if (code->expr3 && code->expr3->param_list)
7411 : : param_list = code->expr3->param_list;
7412 : 0 : else if (expr->param_list)
7413 : : param_list = expr->param_list;
7414 : : else
7415 : 0 : param_list = expr->symtree->n.sym->param_list;
7416 : 0 : tmp = gfc_allocate_pdt_comp (CLASS_DATA (expr)->ts.u.derived,
7417 : : se.expr, expr->rank, param_list);
7418 : 0 : gfc_add_expr_to_block (&block, tmp);
7419 : : }
7420 : 12839 : else if (code->expr3 && code->expr3->mold
7421 : 294 : && code->expr3->ts.type == BT_CLASS)
7422 : : {
7423 : : /* Use class_init_assign to initialize expr. */
7424 : 61 : gfc_code *ini;
7425 : 61 : ini = gfc_get_code (EXEC_ALLOCATE);
7426 : 61 : ini->expr1 = gfc_find_and_cut_at_last_class_ref (expr, true);
7427 : 61 : tmp = gfc_trans_class_init_assign (ini);
7428 : 61 : gfc_free_statements (ini);
7429 : 61 : if (tmp != NULL_TREE)
7430 : 61 : gfc_add_expr_to_block (&block, tmp);
7431 : : }
7432 : 12778 : else if ((init_expr = allocate_get_initializer (code, expr)))
7433 : : {
7434 : : /* Use class_init_assign to initialize expr. */
7435 : 1701 : gfc_code *ini;
7436 : 1701 : int realloc_lhs = flag_realloc_lhs;
7437 : 1701 : ini = gfc_get_code (EXEC_INIT_ASSIGN);
7438 : 1701 : ini->expr1 = gfc_expr_to_initialize (expr);
7439 : 1701 : ini->expr2 = init_expr;
7440 : 1701 : flag_realloc_lhs = 0;
7441 : 1701 : tmp= gfc_trans_init_assign (ini);
7442 : 1701 : flag_realloc_lhs = realloc_lhs;
7443 : 1701 : gfc_free_statements (ini);
7444 : : /* Init_expr is freeed by above free_statements, just need to null
7445 : : it here. */
7446 : 1701 : init_expr = NULL;
7447 : 1701 : gfc_add_expr_to_block (&block, tmp);
7448 : : }
7449 : :
7450 : : /* Nullify all pointers in derived type coarrays. This registers a
7451 : : token for them which allows their allocation. */
7452 : 16389 : if (is_coarray)
7453 : : {
7454 : 390 : gfc_symbol *type = NULL;
7455 : 390 : symbol_attribute caf_attr;
7456 : 390 : int rank = 0;
7457 : 390 : if (code->ext.alloc.ts.type == BT_DERIVED
7458 : 9 : && code->ext.alloc.ts.u.derived->attr.pointer_comp)
7459 : : {
7460 : 0 : type = code->ext.alloc.ts.u.derived;
7461 : 0 : rank = type->attr.dimension ? type->as->rank : 0;
7462 : 0 : gfc_clear_attr (&caf_attr);
7463 : : }
7464 : 390 : else if (expr->ts.type == BT_DERIVED
7465 : 94 : && expr->ts.u.derived->attr.pointer_comp)
7466 : : {
7467 : 13 : type = expr->ts.u.derived;
7468 : 13 : rank = expr->rank;
7469 : 13 : caf_attr = gfc_caf_attr (expr, true);
7470 : : }
7471 : :
7472 : : /* Initialize the tokens of pointer components in derived type
7473 : : coarrays. */
7474 : 13 : if (type)
7475 : : {
7476 : 26 : tmp = (caf_attr.codimension && !caf_attr.dimension)
7477 : 13 : ? gfc_conv_descriptor_data_get (se.expr) : se.expr;
7478 : 13 : tmp = gfc_nullify_alloc_comp (type, tmp, rank,
7479 : : GFC_STRUCTURE_CAF_MODE_IN_COARRAY);
7480 : 13 : gfc_add_expr_to_block (&block, tmp);
7481 : : }
7482 : : }
7483 : :
7484 : 16389 : gfc_free_expr (expr);
7485 : : } // for-loop
7486 : :
7487 : 13495 : if (e3rhs)
7488 : : {
7489 : 3648 : if (newsym)
7490 : : {
7491 : 1957 : gfc_free_symbol (newsym->n.sym);
7492 : 1957 : XDELETE (newsym);
7493 : : }
7494 : 3648 : gfc_free_expr (e3rhs);
7495 : : }
7496 : : /* STAT. */
7497 : 13495 : if (code->expr1)
7498 : : {
7499 : 271 : tmp = build1_v (LABEL_EXPR, label_errmsg);
7500 : 271 : gfc_add_expr_to_block (&block, tmp);
7501 : : }
7502 : :
7503 : : /* ERRMSG - only useful if STAT is present. */
7504 : 13495 : if (code->expr1 && code->expr2)
7505 : : {
7506 : 68 : const char *msg = "Attempt to allocate an allocated object";
7507 : 68 : const char *oommsg = "Insufficient virtual memory";
7508 : 68 : tree slen, dlen, errmsg_str, oom_str, oom_loc;
7509 : 68 : stmtblock_t errmsg_block;
7510 : :
7511 : 68 : gfc_init_block (&errmsg_block);
7512 : :
7513 : 68 : errmsg_str = gfc_create_var (pchar_type_node, "ERRMSG");
7514 : 68 : gfc_add_modify (&errmsg_block, errmsg_str,
7515 : : gfc_build_addr_expr (pchar_type_node,
7516 : : gfc_build_localized_cstring_const (msg)));
7517 : :
7518 : 68 : slen = build_int_cst (gfc_charlen_type_node, strlen (msg));
7519 : 68 : dlen = gfc_get_expr_charlen (code->expr2);
7520 : 68 : slen = fold_build2_loc (input_location, MIN_EXPR,
7521 : 68 : TREE_TYPE (slen), dlen, slen);
7522 : :
7523 : 68 : gfc_trans_string_copy (&errmsg_block, dlen, errmsg,
7524 : 68 : code->expr2->ts.kind,
7525 : : slen, errmsg_str,
7526 : : gfc_default_character_kind);
7527 : 68 : dlen = gfc_finish_block (&errmsg_block);
7528 : :
7529 : 68 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
7530 : 68 : stat, build_int_cst (TREE_TYPE (stat),
7531 : 68 : LIBERROR_ALLOCATION));
7532 : :
7533 : 68 : tmp = build3_v (COND_EXPR, tmp,
7534 : : dlen, build_empty_stmt (input_location));
7535 : :
7536 : 68 : gfc_add_expr_to_block (&block, tmp);
7537 : :
7538 : 68 : oom_str = gfc_create_var (pchar_type_node, "OOMMSG");
7539 : 68 : oom_loc = gfc_build_localized_cstring_const (oommsg);
7540 : 68 : gfc_add_modify (&errmsg_block, oom_str,
7541 : : gfc_build_addr_expr (pchar_type_node, oom_loc));
7542 : :
7543 : 68 : slen = build_int_cst (gfc_charlen_type_node, strlen (oommsg));
7544 : 68 : dlen = gfc_get_expr_charlen (code->expr2);
7545 : 68 : slen = fold_build2_loc (input_location, MIN_EXPR,
7546 : 68 : TREE_TYPE (slen), dlen, slen);
7547 : :
7548 : 68 : gfc_trans_string_copy (&errmsg_block, dlen, errmsg,
7549 : 68 : code->expr2->ts.kind,
7550 : : slen, oom_str,
7551 : : gfc_default_character_kind);
7552 : 68 : dlen = gfc_finish_block (&errmsg_block);
7553 : :
7554 : 68 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
7555 : 68 : stat, build_int_cst (TREE_TYPE (stat),
7556 : 68 : LIBERROR_NO_MEMORY));
7557 : :
7558 : 68 : tmp = build3_v (COND_EXPR, tmp,
7559 : : dlen, build_empty_stmt (input_location));
7560 : :
7561 : 68 : gfc_add_expr_to_block (&block, tmp);
7562 : : }
7563 : :
7564 : : /* STAT block. */
7565 : 13495 : if (code->expr1)
7566 : : {
7567 : 271 : if (TREE_USED (label_finish))
7568 : : {
7569 : 12 : tmp = build1_v (LABEL_EXPR, label_finish);
7570 : 12 : gfc_add_expr_to_block (&block, tmp);
7571 : : }
7572 : :
7573 : 271 : gfc_init_se (&se, NULL);
7574 : 271 : gfc_conv_expr_lhs (&se, code->expr1);
7575 : 271 : tmp = convert (TREE_TYPE (se.expr), stat);
7576 : 271 : gfc_add_modify (&block, se.expr, tmp);
7577 : : }
7578 : :
7579 : 13495 : if (needs_caf_sync)
7580 : : {
7581 : : /* Add a sync all after the allocation has been executed. */
7582 : 137 : tree zero_size = build_zero_cst (size_type_node);
7583 : 137 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_sync_all,
7584 : : 3, null_pointer_node, null_pointer_node,
7585 : : zero_size);
7586 : 137 : gfc_add_expr_to_block (&post, tmp);
7587 : : }
7588 : :
7589 : 13495 : gfc_add_block_to_block (&block, &se.post);
7590 : 13495 : gfc_add_block_to_block (&block, &post);
7591 : 13495 : if (code->expr3 && code->expr3->must_finalize)
7592 : 78 : gfc_add_block_to_block (&block, &final_block);
7593 : :
7594 : 13495 : return gfc_finish_block (&block);
7595 : : }
7596 : :
7597 : :
7598 : : /* Translate a DEALLOCATE statement. */
7599 : :
7600 : : tree
7601 : 7621 : gfc_trans_deallocate (gfc_code *code)
7602 : : {
7603 : 7621 : gfc_se se;
7604 : 7621 : gfc_alloc *al;
7605 : 7621 : tree apstat, pstat, stat, errmsg, errlen, tmp;
7606 : 7621 : tree label_finish, label_errmsg;
7607 : 7621 : stmtblock_t block;
7608 : :
7609 : 7621 : pstat = apstat = stat = errmsg = errlen = tmp = NULL_TREE;
7610 : 7621 : label_finish = label_errmsg = NULL_TREE;
7611 : :
7612 : 7621 : gfc_start_block (&block);
7613 : :
7614 : : /* Count the number of failed deallocations. If deallocate() was
7615 : : called with STAT= , then set STAT to the count. If deallocate
7616 : : was called with ERRMSG, then set ERRMG to a string. */
7617 : 7621 : if (code->expr1)
7618 : : {
7619 : 2071 : tree gfc_int4_type_node = gfc_get_int_type (4);
7620 : :
7621 : 2071 : stat = gfc_create_var (gfc_int4_type_node, "stat");
7622 : 2071 : pstat = gfc_build_addr_expr (NULL_TREE, stat);
7623 : :
7624 : : /* GOTO destinations. */
7625 : 2071 : label_errmsg = gfc_build_label_decl (NULL_TREE);
7626 : 2071 : label_finish = gfc_build_label_decl (NULL_TREE);
7627 : 2071 : TREE_USED (label_finish) = 0;
7628 : : }
7629 : :
7630 : : /* Set ERRMSG - only needed if STAT is available. */
7631 : 7621 : if (code->expr1 && code->expr2)
7632 : : {
7633 : 51 : gfc_init_se (&se, NULL);
7634 : 51 : se.want_pointer = 1;
7635 : 51 : gfc_conv_expr_lhs (&se, code->expr2);
7636 : 51 : errmsg = se.expr;
7637 : 51 : errlen = se.string_length;
7638 : : }
7639 : :
7640 : 17213 : for (al = code->ext.alloc.list; al != NULL; al = al->next)
7641 : : {
7642 : 9592 : gfc_expr *expr = gfc_copy_expr (al->expr);
7643 : 9592 : bool is_coarray = false, is_coarray_array = false;
7644 : 9592 : int caf_mode = 0;
7645 : :
7646 : 9592 : gcc_assert (expr->expr_type == EXPR_VARIABLE);
7647 : :
7648 : 9592 : if (expr->ts.type == BT_CLASS)
7649 : 1905 : gfc_add_data_component (expr);
7650 : :
7651 : 9592 : gfc_init_se (&se, NULL);
7652 : 9592 : gfc_start_block (&se.pre);
7653 : :
7654 : 9592 : se.want_pointer = 1;
7655 : 9592 : se.descriptor_only = 1;
7656 : 9592 : gfc_conv_expr (&se, expr);
7657 : :
7658 : : /* Deallocate PDT components that are parameterized. */
7659 : 9592 : tmp = NULL;
7660 : 9592 : if (expr->ts.type == BT_DERIVED
7661 : 2273 : && expr->ts.u.derived->attr.pdt_type
7662 : 59 : && expr->symtree->n.sym->param_list)
7663 : 39 : tmp = gfc_deallocate_pdt_comp (expr->ts.u.derived, se.expr, expr->rank);
7664 : 9553 : else if (expr->ts.type == BT_CLASS
7665 : 1063 : && CLASS_DATA (expr)->ts.u.derived->attr.pdt_type
7666 : 0 : && expr->symtree->n.sym->param_list)
7667 : 0 : tmp = gfc_deallocate_pdt_comp (CLASS_DATA (expr)->ts.u.derived,
7668 : : se.expr, expr->rank);
7669 : :
7670 : 39 : if (tmp)
7671 : 39 : gfc_add_expr_to_block (&block, tmp);
7672 : :
7673 : 9592 : if (flag_coarray == GFC_FCOARRAY_LIB
7674 : 9592 : || flag_coarray == GFC_FCOARRAY_SINGLE)
7675 : : {
7676 : 383 : bool comp_ref;
7677 : 383 : symbol_attribute caf_attr = gfc_caf_attr (expr, false, &comp_ref);
7678 : 383 : if (caf_attr.codimension)
7679 : : {
7680 : 270 : is_coarray = true;
7681 : 126 : is_coarray_array = caf_attr.dimension || !comp_ref
7682 : 322 : || caf_attr.coarray_comp;
7683 : :
7684 : 270 : if (flag_coarray == GFC_FCOARRAY_LIB)
7685 : : /* When the expression to deallocate is referencing a
7686 : : component, then only deallocate it, but do not
7687 : : deregister. */
7688 : 167 : caf_mode = GFC_STRUCTURE_CAF_MODE_IN_COARRAY
7689 : 167 : | (comp_ref && !caf_attr.coarray_comp
7690 : : ? GFC_STRUCTURE_CAF_MODE_DEALLOC_ONLY : 0);
7691 : : }
7692 : : }
7693 : :
7694 : 9592 : if (expr->rank || is_coarray_array)
7695 : : {
7696 : 6583 : gfc_ref *ref;
7697 : :
7698 : 5691 : if (gfc_bt_struct (expr->ts.type)
7699 : 892 : && expr->ts.u.derived->attr.alloc_comp
7700 : 6969 : && !gfc_is_finalizable (expr->ts.u.derived, NULL))
7701 : : {
7702 : 383 : gfc_ref *last = NULL;
7703 : :
7704 : 1069 : for (ref = expr->ref; ref; ref = ref->next)
7705 : 686 : if (ref->type == REF_COMPONENT)
7706 : 257 : last = ref;
7707 : :
7708 : : /* Do not deallocate the components of a derived type
7709 : : ultimate pointer component. */
7710 : 383 : if (!(last && last->u.c.component->attr.pointer)
7711 : 149 : && !(!last && expr->symtree->n.sym->attr.pointer))
7712 : : {
7713 : 26 : if (is_coarray && expr->rank == 0
7714 : 18 : && (!last || !last->u.c.component->attr.dimension)
7715 : 383 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se.expr)))
7716 : : {
7717 : : /* Add the ref to the data member only, when this is not
7718 : : a regular array or deallocate_alloc_comp will try to
7719 : : add another one. */
7720 : 18 : tmp = gfc_conv_descriptor_data_get (se.expr);
7721 : : }
7722 : : else
7723 : 347 : tmp = se.expr;
7724 : 365 : tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, tmp,
7725 : : expr->rank, caf_mode);
7726 : 365 : gfc_add_expr_to_block (&se.pre, tmp);
7727 : : }
7728 : : }
7729 : :
7730 : 6583 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se.expr)))
7731 : : {
7732 : 6544 : gfc_coarray_deregtype caf_dtype;
7733 : :
7734 : 6544 : if (is_coarray)
7735 : 230 : caf_dtype = gfc_caf_is_dealloc_only (caf_mode)
7736 : 230 : ? GFC_CAF_COARRAY_DEALLOCATE_ONLY
7737 : : : GFC_CAF_COARRAY_DEREGISTER;
7738 : : else
7739 : : caf_dtype = GFC_CAF_COARRAY_NOCOARRAY;
7740 : 6544 : tmp = gfc_deallocate_with_status (se.expr, pstat, errmsg, errlen,
7741 : : label_finish, false, expr,
7742 : : caf_dtype);
7743 : 6544 : gfc_add_expr_to_block (&se.pre, tmp);
7744 : : }
7745 : 39 : else if (TREE_CODE (se.expr) == COMPONENT_REF
7746 : 39 : && TREE_CODE (TREE_TYPE (se.expr)) == ARRAY_TYPE
7747 : 78 : && TREE_CODE (TREE_TYPE (TREE_TYPE (se.expr)))
7748 : : == RECORD_TYPE)
7749 : : {
7750 : : /* class.cc(finalize_component) generates these, when a
7751 : : finalizable entity has a non-allocatable derived type array
7752 : : component, which has allocatable components. Obtain the
7753 : : derived type of the array and deallocate the allocatable
7754 : : components. */
7755 : 45 : for (ref = expr->ref; ref; ref = ref->next)
7756 : : {
7757 : 45 : if (ref->u.c.component->attr.dimension
7758 : 39 : && ref->u.c.component->ts.type == BT_DERIVED)
7759 : : break;
7760 : : }
7761 : :
7762 : 39 : if (ref && ref->u.c.component->ts.u.derived->attr.alloc_comp
7763 : 78 : && !gfc_is_finalizable (ref->u.c.component->ts.u.derived,
7764 : : NULL))
7765 : : {
7766 : 39 : tmp = gfc_deallocate_alloc_comp
7767 : 39 : (ref->u.c.component->ts.u.derived,
7768 : : se.expr, expr->rank);
7769 : 39 : gfc_add_expr_to_block (&se.pre, tmp);
7770 : : }
7771 : : }
7772 : :
7773 : 6583 : if (al->expr->ts.type == BT_CLASS)
7774 : : {
7775 : 1072 : gfc_reset_vptr (&se.pre, al->expr);
7776 : 1072 : if (UNLIMITED_POLY (al->expr)
7777 : 731 : || (al->expr->ts.type == BT_DERIVED
7778 : 0 : && al->expr->ts.u.derived->attr.unlimited_polymorphic))
7779 : : /* Clear _len, too. */
7780 : 341 : gfc_reset_len (&se.pre, al->expr);
7781 : : }
7782 : : }
7783 : : else
7784 : : {
7785 : 6018 : tmp = gfc_deallocate_scalar_with_status (se.expr, pstat, label_finish,
7786 : : false, al->expr,
7787 : 3009 : al->expr->ts, NULL_TREE,
7788 : : is_coarray);
7789 : 3009 : gfc_add_expr_to_block (&se.pre, tmp);
7790 : :
7791 : : /* Set to zero after deallocation. */
7792 : 3009 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
7793 : : se.expr,
7794 : 3009 : build_int_cst (TREE_TYPE (se.expr), 0));
7795 : 3009 : gfc_add_expr_to_block (&se.pre, tmp);
7796 : :
7797 : 3009 : if (al->expr->ts.type == BT_CLASS)
7798 : : {
7799 : 833 : gfc_reset_vptr (&se.pre, al->expr);
7800 : 833 : if (UNLIMITED_POLY (al->expr)
7801 : 613 : || (al->expr->ts.type == BT_DERIVED
7802 : 0 : && al->expr->ts.u.derived->attr.unlimited_polymorphic))
7803 : : /* Clear _len, too. */
7804 : 220 : gfc_reset_len (&se.pre, al->expr);
7805 : : }
7806 : : }
7807 : :
7808 : 9592 : if (code->expr1)
7809 : : {
7810 : 2110 : tree cond;
7811 : :
7812 : 2110 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node, stat,
7813 : 2110 : build_int_cst (TREE_TYPE (stat), 0));
7814 : 2110 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
7815 : : gfc_unlikely (cond, PRED_FORTRAN_FAIL_ALLOC),
7816 : : build1_v (GOTO_EXPR, label_errmsg),
7817 : : build_empty_stmt (input_location));
7818 : 2110 : gfc_add_expr_to_block (&se.pre, tmp);
7819 : : }
7820 : :
7821 : 9592 : tmp = gfc_finish_block (&se.pre);
7822 : 9592 : gfc_add_expr_to_block (&block, tmp);
7823 : 9592 : gfc_free_expr (expr);
7824 : : }
7825 : :
7826 : 7621 : if (code->expr1)
7827 : : {
7828 : 2071 : tmp = build1_v (LABEL_EXPR, label_errmsg);
7829 : 2071 : gfc_add_expr_to_block (&block, tmp);
7830 : : }
7831 : :
7832 : : /* Set ERRMSG - only needed if STAT is available. */
7833 : 7621 : if (code->expr1 && code->expr2)
7834 : : {
7835 : 51 : const char *msg = "Attempt to deallocate an unallocated object";
7836 : 51 : stmtblock_t errmsg_block;
7837 : 51 : tree errmsg_str, slen, dlen, cond;
7838 : :
7839 : 51 : gfc_init_block (&errmsg_block);
7840 : :
7841 : 51 : errmsg_str = gfc_create_var (pchar_type_node, "ERRMSG");
7842 : 51 : gfc_add_modify (&errmsg_block, errmsg_str,
7843 : : gfc_build_addr_expr (pchar_type_node,
7844 : : gfc_build_localized_cstring_const (msg)));
7845 : 51 : slen = build_int_cst (gfc_charlen_type_node, strlen (msg));
7846 : 51 : dlen = gfc_get_expr_charlen (code->expr2);
7847 : :
7848 : 51 : gfc_trans_string_copy (&errmsg_block, dlen, errmsg, code->expr2->ts.kind,
7849 : : slen, errmsg_str, gfc_default_character_kind);
7850 : 51 : tmp = gfc_finish_block (&errmsg_block);
7851 : :
7852 : 51 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node, stat,
7853 : 51 : build_int_cst (TREE_TYPE (stat), 0));
7854 : 51 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
7855 : : gfc_unlikely (cond, PRED_FORTRAN_FAIL_ALLOC), tmp,
7856 : : build_empty_stmt (input_location));
7857 : :
7858 : 51 : gfc_add_expr_to_block (&block, tmp);
7859 : : }
7860 : :
7861 : 7621 : if (code->expr1 && TREE_USED (label_finish))
7862 : : {
7863 : 8 : tmp = build1_v (LABEL_EXPR, label_finish);
7864 : 8 : gfc_add_expr_to_block (&block, tmp);
7865 : : }
7866 : :
7867 : : /* Set STAT. */
7868 : 7621 : if (code->expr1)
7869 : : {
7870 : 2071 : gfc_init_se (&se, NULL);
7871 : 2071 : gfc_conv_expr_lhs (&se, code->expr1);
7872 : 2071 : tmp = convert (TREE_TYPE (se.expr), stat);
7873 : 2071 : gfc_add_modify (&block, se.expr, tmp);
7874 : : }
7875 : :
7876 : 7621 : return gfc_finish_block (&block);
7877 : : }
7878 : :
7879 : : #include "gt-fortran-trans-stmt.h"
|