2016-01-26 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / omp-low.c
blob677ad64e7e348e33ed97a06e9771b94369fe844e
1 /* Lowering pass for OMP directives. Converts OMP directives into explicit
2 calls to the runtime library (libgomp), data marshalling to implement data
3 sharing and copying clauses, offloading to accelerators, and more.
5 Contributed by Diego Novillo <dnovillo@redhat.com>
7 Copyright (C) 2005-2016 Free Software Foundation, Inc.
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
14 version.
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "backend.h"
29 #include "target.h"
30 #include "rtl.h"
31 #include "tree.h"
32 #include "gimple.h"
33 #include "cfghooks.h"
34 #include "alloc-pool.h"
35 #include "tree-pass.h"
36 #include "ssa.h"
37 #include "expmed.h"
38 #include "optabs.h"
39 #include "emit-rtl.h"
40 #include "cgraph.h"
41 #include "pretty-print.h"
42 #include "diagnostic-core.h"
43 #include "alias.h"
44 #include "fold-const.h"
45 #include "stor-layout.h"
46 #include "cfganal.h"
47 #include "internal-fn.h"
48 #include "gimple-fold.h"
49 #include "gimplify.h"
50 #include "gimple-iterator.h"
51 #include "gimplify-me.h"
52 #include "gimple-walk.h"
53 #include "tree-iterator.h"
54 #include "tree-inline.h"
55 #include "langhooks.h"
56 #include "tree-cfg.h"
57 #include "tree-into-ssa.h"
58 #include "flags.h"
59 #include "dojump.h"
60 #include "explow.h"
61 #include "calls.h"
62 #include "varasm.h"
63 #include "stmt.h"
64 #include "expr.h"
65 #include "tree-dfa.h"
66 #include "tree-ssa.h"
67 #include "except.h"
68 #include "splay-tree.h"
69 #include "cfgloop.h"
70 #include "common/common-target.h"
71 #include "omp-low.h"
72 #include "gimple-low.h"
73 #include "tree-cfgcleanup.h"
74 #include "symbol-summary.h"
75 #include "ipa-prop.h"
76 #include "tree-nested.h"
77 #include "tree-eh.h"
78 #include "cilk.h"
79 #include "context.h"
80 #include "lto-section-names.h"
81 #include "gomp-constants.h"
82 #include "gimple-pretty-print.h"
83 #include "symbol-summary.h"
84 #include "hsa.h"
85 #include "params.h"
87 /* Lowering of OMP parallel and workshare constructs proceeds in two
88 phases. The first phase scans the function looking for OMP statements
89 and then for variables that must be replaced to satisfy data sharing
90 clauses. The second phase expands code for the constructs, as well as
91 re-gimplifying things when variables have been replaced with complex
92 expressions.
94 Final code generation is done by pass_expand_omp. The flowgraph is
95 scanned for regions which are then moved to a new
96 function, to be invoked by the thread library, or offloaded. */
98 /* OMP region information. Every parallel and workshare
99 directive is enclosed between two markers, the OMP_* directive
100 and a corresponding GIMPLE_OMP_RETURN statement. */
102 struct omp_region
104 /* The enclosing region. */
105 struct omp_region *outer;
107 /* First child region. */
108 struct omp_region *inner;
110 /* Next peer region. */
111 struct omp_region *next;
113 /* Block containing the omp directive as its last stmt. */
114 basic_block entry;
116 /* Block containing the GIMPLE_OMP_RETURN as its last stmt. */
117 basic_block exit;
119 /* Block containing the GIMPLE_OMP_CONTINUE as its last stmt. */
120 basic_block cont;
122 /* If this is a combined parallel+workshare region, this is a list
123 of additional arguments needed by the combined parallel+workshare
124 library call. */
125 vec<tree, va_gc> *ws_args;
127 /* The code for the omp directive of this region. */
128 enum gimple_code type;
130 /* Schedule kind, only used for GIMPLE_OMP_FOR type regions. */
131 enum omp_clause_schedule_kind sched_kind;
133 /* Schedule modifiers. */
134 unsigned char sched_modifiers;
136 /* True if this is a combined parallel+workshare region. */
137 bool is_combined_parallel;
139 /* The ordered stmt if type is GIMPLE_OMP_ORDERED and it has
140 a depend clause. */
141 gomp_ordered *ord_stmt;
144 /* Context structure. Used to store information about each parallel
145 directive in the code. */
147 struct omp_context
149 /* This field must be at the beginning, as we do "inheritance": Some
150 callback functions for tree-inline.c (e.g., omp_copy_decl)
151 receive a copy_body_data pointer that is up-casted to an
152 omp_context pointer. */
153 copy_body_data cb;
155 /* The tree of contexts corresponding to the encountered constructs. */
156 struct omp_context *outer;
157 gimple *stmt;
159 /* Map variables to fields in a structure that allows communication
160 between sending and receiving threads. */
161 splay_tree field_map;
162 tree record_type;
163 tree sender_decl;
164 tree receiver_decl;
166 /* These are used just by task contexts, if task firstprivate fn is
167 needed. srecord_type is used to communicate from the thread
168 that encountered the task construct to task firstprivate fn,
169 record_type is allocated by GOMP_task, initialized by task firstprivate
170 fn and passed to the task body fn. */
171 splay_tree sfield_map;
172 tree srecord_type;
174 /* A chain of variables to add to the top-level block surrounding the
175 construct. In the case of a parallel, this is in the child function. */
176 tree block_vars;
178 /* Label to which GOMP_cancel{,llation_point} and explicit and implicit
179 barriers should jump to during omplower pass. */
180 tree cancel_label;
182 /* What to do with variables with implicitly determined sharing
183 attributes. */
184 enum omp_clause_default_kind default_kind;
186 /* Nesting depth of this context. Used to beautify error messages re
187 invalid gotos. The outermost ctx is depth 1, with depth 0 being
188 reserved for the main body of the function. */
189 int depth;
191 /* True if this parallel directive is nested within another. */
192 bool is_nested;
194 /* True if this construct can be cancelled. */
195 bool cancellable;
198 /* A structure holding the elements of:
199 for (V = N1; V cond N2; V += STEP) [...] */
201 struct omp_for_data_loop
203 tree v, n1, n2, step;
204 enum tree_code cond_code;
207 /* A structure describing the main elements of a parallel loop. */
209 struct omp_for_data
211 struct omp_for_data_loop loop;
212 tree chunk_size;
213 gomp_for *for_stmt;
214 tree pre, iter_type;
215 int collapse;
216 int ordered;
217 bool have_nowait, have_ordered, simd_schedule;
218 unsigned char sched_modifiers;
219 enum omp_clause_schedule_kind sched_kind;
220 struct omp_for_data_loop *loops;
223 /* Describe the OpenACC looping structure of a function. The entire
224 function is held in a 'NULL' loop. */
226 struct oacc_loop
228 oacc_loop *parent; /* Containing loop. */
230 oacc_loop *child; /* First inner loop. */
232 oacc_loop *sibling; /* Next loop within same parent. */
234 location_t loc; /* Location of the loop start. */
236 gcall *marker; /* Initial head marker. */
238 gcall *heads[GOMP_DIM_MAX]; /* Head marker functions. */
239 gcall *tails[GOMP_DIM_MAX]; /* Tail marker functions. */
241 tree routine; /* Pseudo-loop enclosing a routine. */
243 unsigned mask; /* Partitioning mask. */
244 unsigned flags; /* Partitioning flags. */
245 tree chunk_size; /* Chunk size. */
246 gcall *head_end; /* Final marker of head sequence. */
249 /* Flags for an OpenACC loop. */
251 enum oacc_loop_flags {
252 OLF_SEQ = 1u << 0, /* Explicitly sequential */
253 OLF_AUTO = 1u << 1, /* Compiler chooses axes. */
254 OLF_INDEPENDENT = 1u << 2, /* Iterations are known independent. */
255 OLF_GANG_STATIC = 1u << 3, /* Gang partitioning is static (has op). */
257 /* Explicitly specified loop axes. */
258 OLF_DIM_BASE = 4,
259 OLF_DIM_GANG = 1u << (OLF_DIM_BASE + GOMP_DIM_GANG),
260 OLF_DIM_WORKER = 1u << (OLF_DIM_BASE + GOMP_DIM_WORKER),
261 OLF_DIM_VECTOR = 1u << (OLF_DIM_BASE + GOMP_DIM_VECTOR),
263 OLF_MAX = OLF_DIM_BASE + GOMP_DIM_MAX
267 static splay_tree all_contexts;
268 static int taskreg_nesting_level;
269 static int target_nesting_level;
270 static struct omp_region *root_omp_region;
271 static bitmap task_shared_vars;
272 static vec<omp_context *> taskreg_contexts;
273 static bool omp_any_child_fn_dumped;
275 static void scan_omp (gimple_seq *, omp_context *);
276 static tree scan_omp_1_op (tree *, int *, void *);
277 static gphi *find_phi_with_arg_on_edge (tree, edge);
279 #define WALK_SUBSTMTS \
280 case GIMPLE_BIND: \
281 case GIMPLE_TRY: \
282 case GIMPLE_CATCH: \
283 case GIMPLE_EH_FILTER: \
284 case GIMPLE_TRANSACTION: \
285 /* The sub-statements for these should be walked. */ \
286 *handled_ops_p = false; \
287 break;
289 /* Return true if CTX corresponds to an oacc parallel region. */
291 static bool
292 is_oacc_parallel (omp_context *ctx)
294 enum gimple_code outer_type = gimple_code (ctx->stmt);
295 return ((outer_type == GIMPLE_OMP_TARGET)
296 && (gimple_omp_target_kind (ctx->stmt)
297 == GF_OMP_TARGET_KIND_OACC_PARALLEL));
300 /* Return true if CTX corresponds to an oacc kernels region. */
302 static bool
303 is_oacc_kernels (omp_context *ctx)
305 enum gimple_code outer_type = gimple_code (ctx->stmt);
306 return ((outer_type == GIMPLE_OMP_TARGET)
307 && (gimple_omp_target_kind (ctx->stmt)
308 == GF_OMP_TARGET_KIND_OACC_KERNELS));
311 /* If DECL is the artificial dummy VAR_DECL created for non-static
312 data member privatization, return the underlying "this" parameter,
313 otherwise return NULL. */
315 tree
316 omp_member_access_dummy_var (tree decl)
318 if (!VAR_P (decl)
319 || !DECL_ARTIFICIAL (decl)
320 || !DECL_IGNORED_P (decl)
321 || !DECL_HAS_VALUE_EXPR_P (decl)
322 || !lang_hooks.decls.omp_disregard_value_expr (decl, false))
323 return NULL_TREE;
325 tree v = DECL_VALUE_EXPR (decl);
326 if (TREE_CODE (v) != COMPONENT_REF)
327 return NULL_TREE;
329 while (1)
330 switch (TREE_CODE (v))
332 case COMPONENT_REF:
333 case MEM_REF:
334 case INDIRECT_REF:
335 CASE_CONVERT:
336 case POINTER_PLUS_EXPR:
337 v = TREE_OPERAND (v, 0);
338 continue;
339 case PARM_DECL:
340 if (DECL_CONTEXT (v) == current_function_decl
341 && DECL_ARTIFICIAL (v)
342 && TREE_CODE (TREE_TYPE (v)) == POINTER_TYPE)
343 return v;
344 return NULL_TREE;
345 default:
346 return NULL_TREE;
350 /* Helper for unshare_and_remap, called through walk_tree. */
352 static tree
353 unshare_and_remap_1 (tree *tp, int *walk_subtrees, void *data)
355 tree *pair = (tree *) data;
356 if (*tp == pair[0])
358 *tp = unshare_expr (pair[1]);
359 *walk_subtrees = 0;
361 else if (IS_TYPE_OR_DECL_P (*tp))
362 *walk_subtrees = 0;
363 return NULL_TREE;
366 /* Return unshare_expr (X) with all occurrences of FROM
367 replaced with TO. */
369 static tree
370 unshare_and_remap (tree x, tree from, tree to)
372 tree pair[2] = { from, to };
373 x = unshare_expr (x);
374 walk_tree (&x, unshare_and_remap_1, pair, NULL);
375 return x;
378 /* Holds offload tables with decls. */
379 vec<tree, va_gc> *offload_funcs, *offload_vars;
381 /* Convenience function for calling scan_omp_1_op on tree operands. */
383 static inline tree
384 scan_omp_op (tree *tp, omp_context *ctx)
386 struct walk_stmt_info wi;
388 memset (&wi, 0, sizeof (wi));
389 wi.info = ctx;
390 wi.want_locations = true;
392 return walk_tree (tp, scan_omp_1_op, &wi, NULL);
395 static void lower_omp (gimple_seq *, omp_context *);
396 static tree lookup_decl_in_outer_ctx (tree, omp_context *);
397 static tree maybe_lookup_decl_in_outer_ctx (tree, omp_context *);
399 /* Find an OMP clause of type KIND within CLAUSES. */
401 tree
402 find_omp_clause (tree clauses, enum omp_clause_code kind)
404 for (; clauses ; clauses = OMP_CLAUSE_CHAIN (clauses))
405 if (OMP_CLAUSE_CODE (clauses) == kind)
406 return clauses;
408 return NULL_TREE;
411 /* Return true if CTX is for an omp parallel. */
413 static inline bool
414 is_parallel_ctx (omp_context *ctx)
416 return gimple_code (ctx->stmt) == GIMPLE_OMP_PARALLEL;
420 /* Return true if CTX is for an omp task. */
422 static inline bool
423 is_task_ctx (omp_context *ctx)
425 return gimple_code (ctx->stmt) == GIMPLE_OMP_TASK;
429 /* Return true if CTX is for an omp taskloop. */
431 static inline bool
432 is_taskloop_ctx (omp_context *ctx)
434 return gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
435 && gimple_omp_for_kind (ctx->stmt) == GF_OMP_FOR_KIND_TASKLOOP;
439 /* Return true if CTX is for an omp parallel or omp task. */
441 static inline bool
442 is_taskreg_ctx (omp_context *ctx)
444 return is_parallel_ctx (ctx) || is_task_ctx (ctx);
448 /* Return true if REGION is a combined parallel+workshare region. */
450 static inline bool
451 is_combined_parallel (struct omp_region *region)
453 return region->is_combined_parallel;
456 /* Adjust *COND_CODE and *N2 so that the former is either LT_EXPR or
457 GT_EXPR. */
459 static void
460 adjust_for_condition (location_t loc, enum tree_code *cond_code, tree *n2)
462 switch (*cond_code)
464 case LT_EXPR:
465 case GT_EXPR:
466 case NE_EXPR:
467 break;
468 case LE_EXPR:
469 if (POINTER_TYPE_P (TREE_TYPE (*n2)))
470 *n2 = fold_build_pointer_plus_hwi_loc (loc, *n2, 1);
471 else
472 *n2 = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (*n2), *n2,
473 build_int_cst (TREE_TYPE (*n2), 1));
474 *cond_code = LT_EXPR;
475 break;
476 case GE_EXPR:
477 if (POINTER_TYPE_P (TREE_TYPE (*n2)))
478 *n2 = fold_build_pointer_plus_hwi_loc (loc, *n2, -1);
479 else
480 *n2 = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (*n2), *n2,
481 build_int_cst (TREE_TYPE (*n2), 1));
482 *cond_code = GT_EXPR;
483 break;
484 default:
485 gcc_unreachable ();
489 /* Return the looping step from INCR, extracted from the step of a gimple omp
490 for statement. */
492 static tree
493 get_omp_for_step_from_incr (location_t loc, tree incr)
495 tree step;
496 switch (TREE_CODE (incr))
498 case PLUS_EXPR:
499 step = TREE_OPERAND (incr, 1);
500 break;
501 case POINTER_PLUS_EXPR:
502 step = fold_convert (ssizetype, TREE_OPERAND (incr, 1));
503 break;
504 case MINUS_EXPR:
505 step = TREE_OPERAND (incr, 1);
506 step = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (step), step);
507 break;
508 default:
509 gcc_unreachable ();
511 return step;
514 /* Extract the header elements of parallel loop FOR_STMT and store
515 them into *FD. */
517 static void
518 extract_omp_for_data (gomp_for *for_stmt, struct omp_for_data *fd,
519 struct omp_for_data_loop *loops)
521 tree t, var, *collapse_iter, *collapse_count;
522 tree count = NULL_TREE, iter_type = long_integer_type_node;
523 struct omp_for_data_loop *loop;
524 int i;
525 struct omp_for_data_loop dummy_loop;
526 location_t loc = gimple_location (for_stmt);
527 bool simd = gimple_omp_for_kind (for_stmt) & GF_OMP_FOR_SIMD;
528 bool distribute = gimple_omp_for_kind (for_stmt)
529 == GF_OMP_FOR_KIND_DISTRIBUTE;
530 bool taskloop = gimple_omp_for_kind (for_stmt)
531 == GF_OMP_FOR_KIND_TASKLOOP;
532 tree iterv, countv;
534 fd->for_stmt = for_stmt;
535 fd->pre = NULL;
536 if (gimple_omp_for_collapse (for_stmt) > 1)
537 fd->loops = loops;
538 else
539 fd->loops = &fd->loop;
541 fd->have_nowait = distribute || simd;
542 fd->have_ordered = false;
543 fd->collapse = 1;
544 fd->ordered = 0;
545 fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;
546 fd->sched_modifiers = 0;
547 fd->chunk_size = NULL_TREE;
548 fd->simd_schedule = false;
549 if (gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_CILKFOR)
550 fd->sched_kind = OMP_CLAUSE_SCHEDULE_CILKFOR;
551 collapse_iter = NULL;
552 collapse_count = NULL;
554 for (t = gimple_omp_for_clauses (for_stmt); t ; t = OMP_CLAUSE_CHAIN (t))
555 switch (OMP_CLAUSE_CODE (t))
557 case OMP_CLAUSE_NOWAIT:
558 fd->have_nowait = true;
559 break;
560 case OMP_CLAUSE_ORDERED:
561 fd->have_ordered = true;
562 if (OMP_CLAUSE_ORDERED_EXPR (t))
563 fd->ordered = tree_to_shwi (OMP_CLAUSE_ORDERED_EXPR (t));
564 break;
565 case OMP_CLAUSE_SCHEDULE:
566 gcc_assert (!distribute && !taskloop);
567 fd->sched_kind
568 = (enum omp_clause_schedule_kind)
569 (OMP_CLAUSE_SCHEDULE_KIND (t) & OMP_CLAUSE_SCHEDULE_MASK);
570 fd->sched_modifiers = (OMP_CLAUSE_SCHEDULE_KIND (t)
571 & ~OMP_CLAUSE_SCHEDULE_MASK);
572 fd->chunk_size = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (t);
573 fd->simd_schedule = OMP_CLAUSE_SCHEDULE_SIMD (t);
574 break;
575 case OMP_CLAUSE_DIST_SCHEDULE:
576 gcc_assert (distribute);
577 fd->chunk_size = OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (t);
578 break;
579 case OMP_CLAUSE_COLLAPSE:
580 fd->collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (t));
581 if (fd->collapse > 1)
583 collapse_iter = &OMP_CLAUSE_COLLAPSE_ITERVAR (t);
584 collapse_count = &OMP_CLAUSE_COLLAPSE_COUNT (t);
586 break;
587 default:
588 break;
590 if (fd->ordered && fd->collapse == 1 && loops != NULL)
592 fd->loops = loops;
593 iterv = NULL_TREE;
594 countv = NULL_TREE;
595 collapse_iter = &iterv;
596 collapse_count = &countv;
599 /* FIXME: for now map schedule(auto) to schedule(static).
600 There should be analysis to determine whether all iterations
601 are approximately the same amount of work (then schedule(static)
602 is best) or if it varies (then schedule(dynamic,N) is better). */
603 if (fd->sched_kind == OMP_CLAUSE_SCHEDULE_AUTO)
605 fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;
606 gcc_assert (fd->chunk_size == NULL);
608 gcc_assert (fd->collapse == 1 || collapse_iter != NULL);
609 if (taskloop)
610 fd->sched_kind = OMP_CLAUSE_SCHEDULE_RUNTIME;
611 if (fd->sched_kind == OMP_CLAUSE_SCHEDULE_RUNTIME)
612 gcc_assert (fd->chunk_size == NULL);
613 else if (fd->chunk_size == NULL)
615 /* We only need to compute a default chunk size for ordered
616 static loops and dynamic loops. */
617 if (fd->sched_kind != OMP_CLAUSE_SCHEDULE_STATIC
618 || fd->have_ordered)
619 fd->chunk_size = (fd->sched_kind == OMP_CLAUSE_SCHEDULE_STATIC)
620 ? integer_zero_node : integer_one_node;
623 int cnt = fd->ordered ? fd->ordered : fd->collapse;
624 for (i = 0; i < cnt; i++)
626 if (i == 0 && fd->collapse == 1 && (fd->ordered == 0 || loops == NULL))
627 loop = &fd->loop;
628 else if (loops != NULL)
629 loop = loops + i;
630 else
631 loop = &dummy_loop;
633 loop->v = gimple_omp_for_index (for_stmt, i);
634 gcc_assert (SSA_VAR_P (loop->v));
635 gcc_assert (TREE_CODE (TREE_TYPE (loop->v)) == INTEGER_TYPE
636 || TREE_CODE (TREE_TYPE (loop->v)) == POINTER_TYPE);
637 var = TREE_CODE (loop->v) == SSA_NAME ? SSA_NAME_VAR (loop->v) : loop->v;
638 loop->n1 = gimple_omp_for_initial (for_stmt, i);
640 loop->cond_code = gimple_omp_for_cond (for_stmt, i);
641 loop->n2 = gimple_omp_for_final (for_stmt, i);
642 gcc_assert (loop->cond_code != NE_EXPR
643 || gimple_omp_for_kind (for_stmt) == GF_OMP_FOR_KIND_CILKSIMD
644 || gimple_omp_for_kind (for_stmt) == GF_OMP_FOR_KIND_CILKFOR);
645 adjust_for_condition (loc, &loop->cond_code, &loop->n2);
647 t = gimple_omp_for_incr (for_stmt, i);
648 gcc_assert (TREE_OPERAND (t, 0) == var);
649 loop->step = get_omp_for_step_from_incr (loc, t);
651 if (simd
652 || (fd->sched_kind == OMP_CLAUSE_SCHEDULE_STATIC
653 && !fd->have_ordered))
655 if (fd->collapse == 1)
656 iter_type = TREE_TYPE (loop->v);
657 else if (i == 0
658 || TYPE_PRECISION (iter_type)
659 < TYPE_PRECISION (TREE_TYPE (loop->v)))
660 iter_type
661 = build_nonstandard_integer_type
662 (TYPE_PRECISION (TREE_TYPE (loop->v)), 1);
664 else if (iter_type != long_long_unsigned_type_node)
666 if (POINTER_TYPE_P (TREE_TYPE (loop->v)))
667 iter_type = long_long_unsigned_type_node;
668 else if (TYPE_UNSIGNED (TREE_TYPE (loop->v))
669 && TYPE_PRECISION (TREE_TYPE (loop->v))
670 >= TYPE_PRECISION (iter_type))
672 tree n;
674 if (loop->cond_code == LT_EXPR)
675 n = fold_build2_loc (loc,
676 PLUS_EXPR, TREE_TYPE (loop->v),
677 loop->n2, loop->step);
678 else
679 n = loop->n1;
680 if (TREE_CODE (n) != INTEGER_CST
681 || tree_int_cst_lt (TYPE_MAX_VALUE (iter_type), n))
682 iter_type = long_long_unsigned_type_node;
684 else if (TYPE_PRECISION (TREE_TYPE (loop->v))
685 > TYPE_PRECISION (iter_type))
687 tree n1, n2;
689 if (loop->cond_code == LT_EXPR)
691 n1 = loop->n1;
692 n2 = fold_build2_loc (loc,
693 PLUS_EXPR, TREE_TYPE (loop->v),
694 loop->n2, loop->step);
696 else
698 n1 = fold_build2_loc (loc,
699 MINUS_EXPR, TREE_TYPE (loop->v),
700 loop->n2, loop->step);
701 n2 = loop->n1;
703 if (TREE_CODE (n1) != INTEGER_CST
704 || TREE_CODE (n2) != INTEGER_CST
705 || !tree_int_cst_lt (TYPE_MIN_VALUE (iter_type), n1)
706 || !tree_int_cst_lt (n2, TYPE_MAX_VALUE (iter_type)))
707 iter_type = long_long_unsigned_type_node;
711 if (i >= fd->collapse)
712 continue;
714 if (collapse_count && *collapse_count == NULL)
716 t = fold_binary (loop->cond_code, boolean_type_node,
717 fold_convert (TREE_TYPE (loop->v), loop->n1),
718 fold_convert (TREE_TYPE (loop->v), loop->n2));
719 if (t && integer_zerop (t))
720 count = build_zero_cst (long_long_unsigned_type_node);
721 else if ((i == 0 || count != NULL_TREE)
722 && TREE_CODE (TREE_TYPE (loop->v)) == INTEGER_TYPE
723 && TREE_CONSTANT (loop->n1)
724 && TREE_CONSTANT (loop->n2)
725 && TREE_CODE (loop->step) == INTEGER_CST)
727 tree itype = TREE_TYPE (loop->v);
729 if (POINTER_TYPE_P (itype))
730 itype = signed_type_for (itype);
731 t = build_int_cst (itype, (loop->cond_code == LT_EXPR ? -1 : 1));
732 t = fold_build2_loc (loc,
733 PLUS_EXPR, itype,
734 fold_convert_loc (loc, itype, loop->step), t);
735 t = fold_build2_loc (loc, PLUS_EXPR, itype, t,
736 fold_convert_loc (loc, itype, loop->n2));
737 t = fold_build2_loc (loc, MINUS_EXPR, itype, t,
738 fold_convert_loc (loc, itype, loop->n1));
739 if (TYPE_UNSIGNED (itype) && loop->cond_code == GT_EXPR)
740 t = fold_build2_loc (loc, TRUNC_DIV_EXPR, itype,
741 fold_build1_loc (loc, NEGATE_EXPR, itype, t),
742 fold_build1_loc (loc, NEGATE_EXPR, itype,
743 fold_convert_loc (loc, itype,
744 loop->step)));
745 else
746 t = fold_build2_loc (loc, TRUNC_DIV_EXPR, itype, t,
747 fold_convert_loc (loc, itype, loop->step));
748 t = fold_convert_loc (loc, long_long_unsigned_type_node, t);
749 if (count != NULL_TREE)
750 count = fold_build2_loc (loc,
751 MULT_EXPR, long_long_unsigned_type_node,
752 count, t);
753 else
754 count = t;
755 if (TREE_CODE (count) != INTEGER_CST)
756 count = NULL_TREE;
758 else if (count && !integer_zerop (count))
759 count = NULL_TREE;
763 if (count
764 && !simd
765 && (fd->sched_kind != OMP_CLAUSE_SCHEDULE_STATIC
766 || fd->have_ordered))
768 if (!tree_int_cst_lt (count, TYPE_MAX_VALUE (long_integer_type_node)))
769 iter_type = long_long_unsigned_type_node;
770 else
771 iter_type = long_integer_type_node;
773 else if (collapse_iter && *collapse_iter != NULL)
774 iter_type = TREE_TYPE (*collapse_iter);
775 fd->iter_type = iter_type;
776 if (collapse_iter && *collapse_iter == NULL)
777 *collapse_iter = create_tmp_var (iter_type, ".iter");
778 if (collapse_count && *collapse_count == NULL)
780 if (count)
781 *collapse_count = fold_convert_loc (loc, iter_type, count);
782 else
783 *collapse_count = create_tmp_var (iter_type, ".count");
786 if (fd->collapse > 1 || (fd->ordered && loops))
788 fd->loop.v = *collapse_iter;
789 fd->loop.n1 = build_int_cst (TREE_TYPE (fd->loop.v), 0);
790 fd->loop.n2 = *collapse_count;
791 fd->loop.step = build_int_cst (TREE_TYPE (fd->loop.v), 1);
792 fd->loop.cond_code = LT_EXPR;
794 else if (loops)
795 loops[0] = fd->loop;
799 /* Given two blocks PAR_ENTRY_BB and WS_ENTRY_BB such that WS_ENTRY_BB
800 is the immediate dominator of PAR_ENTRY_BB, return true if there
801 are no data dependencies that would prevent expanding the parallel
802 directive at PAR_ENTRY_BB as a combined parallel+workshare region.
804 When expanding a combined parallel+workshare region, the call to
805 the child function may need additional arguments in the case of
806 GIMPLE_OMP_FOR regions. In some cases, these arguments are
807 computed out of variables passed in from the parent to the child
808 via 'struct .omp_data_s'. For instance:
810 #pragma omp parallel for schedule (guided, i * 4)
811 for (j ...)
813 Is lowered into:
815 # BLOCK 2 (PAR_ENTRY_BB)
816 .omp_data_o.i = i;
817 #pragma omp parallel [child fn: bar.omp_fn.0 ( ..., D.1598)
819 # BLOCK 3 (WS_ENTRY_BB)
820 .omp_data_i = &.omp_data_o;
821 D.1667 = .omp_data_i->i;
822 D.1598 = D.1667 * 4;
823 #pragma omp for schedule (guided, D.1598)
825 When we outline the parallel region, the call to the child function
826 'bar.omp_fn.0' will need the value D.1598 in its argument list, but
827 that value is computed *after* the call site. So, in principle we
828 cannot do the transformation.
830 To see whether the code in WS_ENTRY_BB blocks the combined
831 parallel+workshare call, we collect all the variables used in the
832 GIMPLE_OMP_FOR header check whether they appear on the LHS of any
833 statement in WS_ENTRY_BB. If so, then we cannot emit the combined
834 call.
836 FIXME. If we had the SSA form built at this point, we could merely
837 hoist the code in block 3 into block 2 and be done with it. But at
838 this point we don't have dataflow information and though we could
839 hack something up here, it is really not worth the aggravation. */
841 static bool
842 workshare_safe_to_combine_p (basic_block ws_entry_bb)
844 struct omp_for_data fd;
845 gimple *ws_stmt = last_stmt (ws_entry_bb);
847 if (gimple_code (ws_stmt) == GIMPLE_OMP_SECTIONS)
848 return true;
850 gcc_assert (gimple_code (ws_stmt) == GIMPLE_OMP_FOR);
852 extract_omp_for_data (as_a <gomp_for *> (ws_stmt), &fd, NULL);
854 if (fd.collapse > 1 && TREE_CODE (fd.loop.n2) != INTEGER_CST)
855 return false;
856 if (fd.iter_type != long_integer_type_node)
857 return false;
859 /* FIXME. We give up too easily here. If any of these arguments
860 are not constants, they will likely involve variables that have
861 been mapped into fields of .omp_data_s for sharing with the child
862 function. With appropriate data flow, it would be possible to
863 see through this. */
864 if (!is_gimple_min_invariant (fd.loop.n1)
865 || !is_gimple_min_invariant (fd.loop.n2)
866 || !is_gimple_min_invariant (fd.loop.step)
867 || (fd.chunk_size && !is_gimple_min_invariant (fd.chunk_size)))
868 return false;
870 return true;
874 static int omp_max_vf (void);
876 /* Adjust CHUNK_SIZE from SCHEDULE clause, depending on simd modifier
877 presence (SIMD_SCHEDULE). */
879 static tree
880 omp_adjust_chunk_size (tree chunk_size, bool simd_schedule)
882 if (!simd_schedule)
883 return chunk_size;
885 int vf = omp_max_vf ();
886 if (vf == 1)
887 return chunk_size;
889 tree type = TREE_TYPE (chunk_size);
890 chunk_size = fold_build2 (PLUS_EXPR, type, chunk_size,
891 build_int_cst (type, vf - 1));
892 return fold_build2 (BIT_AND_EXPR, type, chunk_size,
893 build_int_cst (type, -vf));
897 /* Collect additional arguments needed to emit a combined
898 parallel+workshare call. WS_STMT is the workshare directive being
899 expanded. */
901 static vec<tree, va_gc> *
902 get_ws_args_for (gimple *par_stmt, gimple *ws_stmt)
904 tree t;
905 location_t loc = gimple_location (ws_stmt);
906 vec<tree, va_gc> *ws_args;
908 if (gomp_for *for_stmt = dyn_cast <gomp_for *> (ws_stmt))
910 struct omp_for_data fd;
911 tree n1, n2;
913 extract_omp_for_data (for_stmt, &fd, NULL);
914 n1 = fd.loop.n1;
915 n2 = fd.loop.n2;
917 if (gimple_omp_for_combined_into_p (for_stmt))
919 tree innerc
920 = find_omp_clause (gimple_omp_parallel_clauses (par_stmt),
921 OMP_CLAUSE__LOOPTEMP_);
922 gcc_assert (innerc);
923 n1 = OMP_CLAUSE_DECL (innerc);
924 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
925 OMP_CLAUSE__LOOPTEMP_);
926 gcc_assert (innerc);
927 n2 = OMP_CLAUSE_DECL (innerc);
930 vec_alloc (ws_args, 3 + (fd.chunk_size != 0));
932 t = fold_convert_loc (loc, long_integer_type_node, n1);
933 ws_args->quick_push (t);
935 t = fold_convert_loc (loc, long_integer_type_node, n2);
936 ws_args->quick_push (t);
938 t = fold_convert_loc (loc, long_integer_type_node, fd.loop.step);
939 ws_args->quick_push (t);
941 if (fd.chunk_size)
943 t = fold_convert_loc (loc, long_integer_type_node, fd.chunk_size);
944 t = omp_adjust_chunk_size (t, fd.simd_schedule);
945 ws_args->quick_push (t);
948 return ws_args;
950 else if (gimple_code (ws_stmt) == GIMPLE_OMP_SECTIONS)
952 /* Number of sections is equal to the number of edges from the
953 GIMPLE_OMP_SECTIONS_SWITCH statement, except for the one to
954 the exit of the sections region. */
955 basic_block bb = single_succ (gimple_bb (ws_stmt));
956 t = build_int_cst (unsigned_type_node, EDGE_COUNT (bb->succs) - 1);
957 vec_alloc (ws_args, 1);
958 ws_args->quick_push (t);
959 return ws_args;
962 gcc_unreachable ();
966 /* Discover whether REGION is a combined parallel+workshare region. */
968 static void
969 determine_parallel_type (struct omp_region *region)
971 basic_block par_entry_bb, par_exit_bb;
972 basic_block ws_entry_bb, ws_exit_bb;
974 if (region == NULL || region->inner == NULL
975 || region->exit == NULL || region->inner->exit == NULL
976 || region->inner->cont == NULL)
977 return;
979 /* We only support parallel+for and parallel+sections. */
980 if (region->type != GIMPLE_OMP_PARALLEL
981 || (region->inner->type != GIMPLE_OMP_FOR
982 && region->inner->type != GIMPLE_OMP_SECTIONS))
983 return;
985 /* Check for perfect nesting PAR_ENTRY_BB -> WS_ENTRY_BB and
986 WS_EXIT_BB -> PAR_EXIT_BB. */
987 par_entry_bb = region->entry;
988 par_exit_bb = region->exit;
989 ws_entry_bb = region->inner->entry;
990 ws_exit_bb = region->inner->exit;
992 if (single_succ (par_entry_bb) == ws_entry_bb
993 && single_succ (ws_exit_bb) == par_exit_bb
994 && workshare_safe_to_combine_p (ws_entry_bb)
995 && (gimple_omp_parallel_combined_p (last_stmt (par_entry_bb))
996 || (last_and_only_stmt (ws_entry_bb)
997 && last_and_only_stmt (par_exit_bb))))
999 gimple *par_stmt = last_stmt (par_entry_bb);
1000 gimple *ws_stmt = last_stmt (ws_entry_bb);
1002 if (region->inner->type == GIMPLE_OMP_FOR)
1004 /* If this is a combined parallel loop, we need to determine
1005 whether or not to use the combined library calls. There
1006 are two cases where we do not apply the transformation:
1007 static loops and any kind of ordered loop. In the first
1008 case, we already open code the loop so there is no need
1009 to do anything else. In the latter case, the combined
1010 parallel loop call would still need extra synchronization
1011 to implement ordered semantics, so there would not be any
1012 gain in using the combined call. */
1013 tree clauses = gimple_omp_for_clauses (ws_stmt);
1014 tree c = find_omp_clause (clauses, OMP_CLAUSE_SCHEDULE);
1015 if (c == NULL
1016 || ((OMP_CLAUSE_SCHEDULE_KIND (c) & OMP_CLAUSE_SCHEDULE_MASK)
1017 == OMP_CLAUSE_SCHEDULE_STATIC)
1018 || find_omp_clause (clauses, OMP_CLAUSE_ORDERED))
1020 region->is_combined_parallel = false;
1021 region->inner->is_combined_parallel = false;
1022 return;
1026 region->is_combined_parallel = true;
1027 region->inner->is_combined_parallel = true;
1028 region->ws_args = get_ws_args_for (par_stmt, ws_stmt);
1033 /* Return true if EXPR is variable sized. */
1035 static inline bool
1036 is_variable_sized (const_tree expr)
1038 return !TREE_CONSTANT (TYPE_SIZE_UNIT (TREE_TYPE (expr)));
1041 /* Return true if DECL is a reference type. */
1043 static inline bool
1044 is_reference (tree decl)
1046 return lang_hooks.decls.omp_privatize_by_reference (decl);
1049 /* Return the type of a decl. If the decl is reference type,
1050 return its base type. */
1051 static inline tree
1052 get_base_type (tree decl)
1054 tree type = TREE_TYPE (decl);
1055 if (is_reference (decl))
1056 type = TREE_TYPE (type);
1057 return type;
1060 /* Lookup variables. The "maybe" form
1061 allows for the variable form to not have been entered, otherwise we
1062 assert that the variable must have been entered. */
1064 static inline tree
1065 lookup_decl (tree var, omp_context *ctx)
1067 tree *n = ctx->cb.decl_map->get (var);
1068 return *n;
1071 static inline tree
1072 maybe_lookup_decl (const_tree var, omp_context *ctx)
1074 tree *n = ctx->cb.decl_map->get (const_cast<tree> (var));
1075 return n ? *n : NULL_TREE;
1078 static inline tree
1079 lookup_field (tree var, omp_context *ctx)
1081 splay_tree_node n;
1082 n = splay_tree_lookup (ctx->field_map, (splay_tree_key) var);
1083 return (tree) n->value;
1086 static inline tree
1087 lookup_sfield (splay_tree_key key, omp_context *ctx)
1089 splay_tree_node n;
1090 n = splay_tree_lookup (ctx->sfield_map
1091 ? ctx->sfield_map : ctx->field_map, key);
1092 return (tree) n->value;
1095 static inline tree
1096 lookup_sfield (tree var, omp_context *ctx)
1098 return lookup_sfield ((splay_tree_key) var, ctx);
1101 static inline tree
1102 maybe_lookup_field (splay_tree_key key, omp_context *ctx)
1104 splay_tree_node n;
1105 n = splay_tree_lookup (ctx->field_map, key);
1106 return n ? (tree) n->value : NULL_TREE;
1109 static inline tree
1110 maybe_lookup_field (tree var, omp_context *ctx)
1112 return maybe_lookup_field ((splay_tree_key) var, ctx);
1115 /* Return true if DECL should be copied by pointer. SHARED_CTX is
1116 the parallel context if DECL is to be shared. */
1118 static bool
1119 use_pointer_for_field (tree decl, omp_context *shared_ctx)
1121 if (AGGREGATE_TYPE_P (TREE_TYPE (decl)))
1122 return true;
1124 /* We can only use copy-in/copy-out semantics for shared variables
1125 when we know the value is not accessible from an outer scope. */
1126 if (shared_ctx)
1128 gcc_assert (!is_gimple_omp_oacc (shared_ctx->stmt));
1130 /* ??? Trivially accessible from anywhere. But why would we even
1131 be passing an address in this case? Should we simply assert
1132 this to be false, or should we have a cleanup pass that removes
1133 these from the list of mappings? */
1134 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
1135 return true;
1137 /* For variables with DECL_HAS_VALUE_EXPR_P set, we cannot tell
1138 without analyzing the expression whether or not its location
1139 is accessible to anyone else. In the case of nested parallel
1140 regions it certainly may be. */
1141 if (TREE_CODE (decl) != RESULT_DECL && DECL_HAS_VALUE_EXPR_P (decl))
1142 return true;
1144 /* Do not use copy-in/copy-out for variables that have their
1145 address taken. */
1146 if (TREE_ADDRESSABLE (decl))
1147 return true;
1149 /* lower_send_shared_vars only uses copy-in, but not copy-out
1150 for these. */
1151 if (TREE_READONLY (decl)
1152 || ((TREE_CODE (decl) == RESULT_DECL
1153 || TREE_CODE (decl) == PARM_DECL)
1154 && DECL_BY_REFERENCE (decl)))
1155 return false;
1157 /* Disallow copy-in/out in nested parallel if
1158 decl is shared in outer parallel, otherwise
1159 each thread could store the shared variable
1160 in its own copy-in location, making the
1161 variable no longer really shared. */
1162 if (shared_ctx->is_nested)
1164 omp_context *up;
1166 for (up = shared_ctx->outer; up; up = up->outer)
1167 if (is_taskreg_ctx (up) && maybe_lookup_decl (decl, up))
1168 break;
1170 if (up)
1172 tree c;
1174 for (c = gimple_omp_taskreg_clauses (up->stmt);
1175 c; c = OMP_CLAUSE_CHAIN (c))
1176 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED
1177 && OMP_CLAUSE_DECL (c) == decl)
1178 break;
1180 if (c)
1181 goto maybe_mark_addressable_and_ret;
1185 /* For tasks avoid using copy-in/out. As tasks can be
1186 deferred or executed in different thread, when GOMP_task
1187 returns, the task hasn't necessarily terminated. */
1188 if (is_task_ctx (shared_ctx))
1190 tree outer;
1191 maybe_mark_addressable_and_ret:
1192 outer = maybe_lookup_decl_in_outer_ctx (decl, shared_ctx);
1193 if (is_gimple_reg (outer) && !omp_member_access_dummy_var (outer))
1195 /* Taking address of OUTER in lower_send_shared_vars
1196 might need regimplification of everything that uses the
1197 variable. */
1198 if (!task_shared_vars)
1199 task_shared_vars = BITMAP_ALLOC (NULL);
1200 bitmap_set_bit (task_shared_vars, DECL_UID (outer));
1201 TREE_ADDRESSABLE (outer) = 1;
1203 return true;
1207 return false;
1210 /* Construct a new automatic decl similar to VAR. */
1212 static tree
1213 omp_copy_decl_2 (tree var, tree name, tree type, omp_context *ctx)
1215 tree copy = copy_var_decl (var, name, type);
1217 DECL_CONTEXT (copy) = current_function_decl;
1218 DECL_CHAIN (copy) = ctx->block_vars;
1219 /* If VAR is listed in task_shared_vars, it means it wasn't
1220 originally addressable and is just because task needs to take
1221 it's address. But we don't need to take address of privatizations
1222 from that var. */
1223 if (TREE_ADDRESSABLE (var)
1224 && task_shared_vars
1225 && bitmap_bit_p (task_shared_vars, DECL_UID (var)))
1226 TREE_ADDRESSABLE (copy) = 0;
1227 ctx->block_vars = copy;
1229 return copy;
1232 static tree
1233 omp_copy_decl_1 (tree var, omp_context *ctx)
1235 return omp_copy_decl_2 (var, DECL_NAME (var), TREE_TYPE (var), ctx);
1238 /* Build COMPONENT_REF and set TREE_THIS_VOLATILE and TREE_READONLY on it
1239 as appropriate. */
1240 static tree
1241 omp_build_component_ref (tree obj, tree field)
1243 tree ret = build3 (COMPONENT_REF, TREE_TYPE (field), obj, field, NULL);
1244 if (TREE_THIS_VOLATILE (field))
1245 TREE_THIS_VOLATILE (ret) |= 1;
1246 if (TREE_READONLY (field))
1247 TREE_READONLY (ret) |= 1;
1248 return ret;
1251 /* Build tree nodes to access the field for VAR on the receiver side. */
1253 static tree
1254 build_receiver_ref (tree var, bool by_ref, omp_context *ctx)
1256 tree x, field = lookup_field (var, ctx);
1258 /* If the receiver record type was remapped in the child function,
1259 remap the field into the new record type. */
1260 x = maybe_lookup_field (field, ctx);
1261 if (x != NULL)
1262 field = x;
1264 x = build_simple_mem_ref (ctx->receiver_decl);
1265 TREE_THIS_NOTRAP (x) = 1;
1266 x = omp_build_component_ref (x, field);
1267 if (by_ref)
1269 x = build_simple_mem_ref (x);
1270 TREE_THIS_NOTRAP (x) = 1;
1273 return x;
1276 /* Build tree nodes to access VAR in the scope outer to CTX. In the case
1277 of a parallel, this is a component reference; for workshare constructs
1278 this is some variable. */
1280 static tree
1281 build_outer_var_ref (tree var, omp_context *ctx, bool lastprivate = false)
1283 tree x;
1285 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var, ctx)))
1286 x = var;
1287 else if (is_variable_sized (var))
1289 x = TREE_OPERAND (DECL_VALUE_EXPR (var), 0);
1290 x = build_outer_var_ref (x, ctx, lastprivate);
1291 x = build_simple_mem_ref (x);
1293 else if (is_taskreg_ctx (ctx))
1295 bool by_ref = use_pointer_for_field (var, NULL);
1296 x = build_receiver_ref (var, by_ref, ctx);
1298 else if (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
1299 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD)
1301 /* #pragma omp simd isn't a worksharing construct, and can reference even
1302 private vars in its linear etc. clauses. */
1303 x = NULL_TREE;
1304 if (ctx->outer && is_taskreg_ctx (ctx))
1305 x = lookup_decl (var, ctx->outer);
1306 else if (ctx->outer)
1307 x = maybe_lookup_decl_in_outer_ctx (var, ctx);
1308 if (x == NULL_TREE)
1309 x = var;
1311 else if (lastprivate && is_taskloop_ctx (ctx))
1313 gcc_assert (ctx->outer);
1314 splay_tree_node n
1315 = splay_tree_lookup (ctx->outer->field_map,
1316 (splay_tree_key) &DECL_UID (var));
1317 if (n == NULL)
1319 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var, ctx->outer)))
1320 x = var;
1321 else
1322 x = lookup_decl (var, ctx->outer);
1324 else
1326 tree field = (tree) n->value;
1327 /* If the receiver record type was remapped in the child function,
1328 remap the field into the new record type. */
1329 x = maybe_lookup_field (field, ctx->outer);
1330 if (x != NULL)
1331 field = x;
1333 x = build_simple_mem_ref (ctx->outer->receiver_decl);
1334 x = omp_build_component_ref (x, field);
1335 if (use_pointer_for_field (var, ctx->outer))
1336 x = build_simple_mem_ref (x);
1339 else if (ctx->outer)
1341 omp_context *outer = ctx->outer;
1342 if (gimple_code (outer->stmt) == GIMPLE_OMP_GRID_BODY)
1344 outer = outer->outer;
1345 gcc_assert (outer
1346 && gimple_code (outer->stmt) != GIMPLE_OMP_GRID_BODY);
1348 x = lookup_decl (var, outer);
1350 else if (is_reference (var))
1351 /* This can happen with orphaned constructs. If var is reference, it is
1352 possible it is shared and as such valid. */
1353 x = var;
1354 else if (omp_member_access_dummy_var (var))
1355 x = var;
1356 else
1357 gcc_unreachable ();
1359 if (x == var)
1361 tree t = omp_member_access_dummy_var (var);
1362 if (t)
1364 x = DECL_VALUE_EXPR (var);
1365 tree o = maybe_lookup_decl_in_outer_ctx (t, ctx);
1366 if (o != t)
1367 x = unshare_and_remap (x, t, o);
1368 else
1369 x = unshare_expr (x);
1373 if (is_reference (var))
1374 x = build_simple_mem_ref (x);
1376 return x;
1379 /* Build tree nodes to access the field for VAR on the sender side. */
1381 static tree
1382 build_sender_ref (splay_tree_key key, omp_context *ctx)
1384 tree field = lookup_sfield (key, ctx);
1385 return omp_build_component_ref (ctx->sender_decl, field);
1388 static tree
1389 build_sender_ref (tree var, omp_context *ctx)
1391 return build_sender_ref ((splay_tree_key) var, ctx);
1394 /* Add a new field for VAR inside the structure CTX->SENDER_DECL. If
1395 BASE_POINTERS_RESTRICT, declare the field with restrict. */
1397 static void
1398 install_var_field (tree var, bool by_ref, int mask, omp_context *ctx,
1399 bool base_pointers_restrict = false)
1401 tree field, type, sfield = NULL_TREE;
1402 splay_tree_key key = (splay_tree_key) var;
1404 if ((mask & 8) != 0)
1406 key = (splay_tree_key) &DECL_UID (var);
1407 gcc_checking_assert (key != (splay_tree_key) var);
1409 gcc_assert ((mask & 1) == 0
1410 || !splay_tree_lookup (ctx->field_map, key));
1411 gcc_assert ((mask & 2) == 0 || !ctx->sfield_map
1412 || !splay_tree_lookup (ctx->sfield_map, key));
1413 gcc_assert ((mask & 3) == 3
1414 || !is_gimple_omp_oacc (ctx->stmt));
1416 type = TREE_TYPE (var);
1417 /* Prevent redeclaring the var in the split-off function with a restrict
1418 pointer type. Note that we only clear type itself, restrict qualifiers in
1419 the pointed-to type will be ignored by points-to analysis. */
1420 if (POINTER_TYPE_P (type)
1421 && TYPE_RESTRICT (type))
1422 type = build_qualified_type (type, TYPE_QUALS (type) & ~TYPE_QUAL_RESTRICT);
1424 if (mask & 4)
1426 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
1427 type = build_pointer_type (build_pointer_type (type));
1429 else if (by_ref)
1431 type = build_pointer_type (type);
1432 if (base_pointers_restrict)
1433 type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
1435 else if ((mask & 3) == 1 && is_reference (var))
1436 type = TREE_TYPE (type);
1438 field = build_decl (DECL_SOURCE_LOCATION (var),
1439 FIELD_DECL, DECL_NAME (var), type);
1441 /* Remember what variable this field was created for. This does have a
1442 side effect of making dwarf2out ignore this member, so for helpful
1443 debugging we clear it later in delete_omp_context. */
1444 DECL_ABSTRACT_ORIGIN (field) = var;
1445 if (type == TREE_TYPE (var))
1447 DECL_ALIGN (field) = DECL_ALIGN (var);
1448 DECL_USER_ALIGN (field) = DECL_USER_ALIGN (var);
1449 TREE_THIS_VOLATILE (field) = TREE_THIS_VOLATILE (var);
1451 else
1452 DECL_ALIGN (field) = TYPE_ALIGN (type);
1454 if ((mask & 3) == 3)
1456 insert_field_into_struct (ctx->record_type, field);
1457 if (ctx->srecord_type)
1459 sfield = build_decl (DECL_SOURCE_LOCATION (var),
1460 FIELD_DECL, DECL_NAME (var), type);
1461 DECL_ABSTRACT_ORIGIN (sfield) = var;
1462 DECL_ALIGN (sfield) = DECL_ALIGN (field);
1463 DECL_USER_ALIGN (sfield) = DECL_USER_ALIGN (field);
1464 TREE_THIS_VOLATILE (sfield) = TREE_THIS_VOLATILE (field);
1465 insert_field_into_struct (ctx->srecord_type, sfield);
1468 else
1470 if (ctx->srecord_type == NULL_TREE)
1472 tree t;
1474 ctx->srecord_type = lang_hooks.types.make_type (RECORD_TYPE);
1475 ctx->sfield_map = splay_tree_new (splay_tree_compare_pointers, 0, 0);
1476 for (t = TYPE_FIELDS (ctx->record_type); t ; t = TREE_CHAIN (t))
1478 sfield = build_decl (DECL_SOURCE_LOCATION (t),
1479 FIELD_DECL, DECL_NAME (t), TREE_TYPE (t));
1480 DECL_ABSTRACT_ORIGIN (sfield) = DECL_ABSTRACT_ORIGIN (t);
1481 insert_field_into_struct (ctx->srecord_type, sfield);
1482 splay_tree_insert (ctx->sfield_map,
1483 (splay_tree_key) DECL_ABSTRACT_ORIGIN (t),
1484 (splay_tree_value) sfield);
1487 sfield = field;
1488 insert_field_into_struct ((mask & 1) ? ctx->record_type
1489 : ctx->srecord_type, field);
1492 if (mask & 1)
1493 splay_tree_insert (ctx->field_map, key, (splay_tree_value) field);
1494 if ((mask & 2) && ctx->sfield_map)
1495 splay_tree_insert (ctx->sfield_map, key, (splay_tree_value) sfield);
1498 static tree
1499 install_var_local (tree var, omp_context *ctx)
1501 tree new_var = omp_copy_decl_1 (var, ctx);
1502 insert_decl_map (&ctx->cb, var, new_var);
1503 return new_var;
1506 /* Adjust the replacement for DECL in CTX for the new context. This means
1507 copying the DECL_VALUE_EXPR, and fixing up the type. */
1509 static void
1510 fixup_remapped_decl (tree decl, omp_context *ctx, bool private_debug)
1512 tree new_decl, size;
1514 new_decl = lookup_decl (decl, ctx);
1516 TREE_TYPE (new_decl) = remap_type (TREE_TYPE (decl), &ctx->cb);
1518 if ((!TREE_CONSTANT (DECL_SIZE (new_decl)) || private_debug)
1519 && DECL_HAS_VALUE_EXPR_P (decl))
1521 tree ve = DECL_VALUE_EXPR (decl);
1522 walk_tree (&ve, copy_tree_body_r, &ctx->cb, NULL);
1523 SET_DECL_VALUE_EXPR (new_decl, ve);
1524 DECL_HAS_VALUE_EXPR_P (new_decl) = 1;
1527 if (!TREE_CONSTANT (DECL_SIZE (new_decl)))
1529 size = remap_decl (DECL_SIZE (decl), &ctx->cb);
1530 if (size == error_mark_node)
1531 size = TYPE_SIZE (TREE_TYPE (new_decl));
1532 DECL_SIZE (new_decl) = size;
1534 size = remap_decl (DECL_SIZE_UNIT (decl), &ctx->cb);
1535 if (size == error_mark_node)
1536 size = TYPE_SIZE_UNIT (TREE_TYPE (new_decl));
1537 DECL_SIZE_UNIT (new_decl) = size;
1541 /* The callback for remap_decl. Search all containing contexts for a
1542 mapping of the variable; this avoids having to duplicate the splay
1543 tree ahead of time. We know a mapping doesn't already exist in the
1544 given context. Create new mappings to implement default semantics. */
1546 static tree
1547 omp_copy_decl (tree var, copy_body_data *cb)
1549 omp_context *ctx = (omp_context *) cb;
1550 tree new_var;
1552 if (TREE_CODE (var) == LABEL_DECL)
1554 new_var = create_artificial_label (DECL_SOURCE_LOCATION (var));
1555 DECL_CONTEXT (new_var) = current_function_decl;
1556 insert_decl_map (&ctx->cb, var, new_var);
1557 return new_var;
1560 while (!is_taskreg_ctx (ctx))
1562 ctx = ctx->outer;
1563 if (ctx == NULL)
1564 return var;
1565 new_var = maybe_lookup_decl (var, ctx);
1566 if (new_var)
1567 return new_var;
1570 if (is_global_var (var) || decl_function_context (var) != ctx->cb.src_fn)
1571 return var;
1573 return error_mark_node;
1577 /* Debugging dumps for parallel regions. */
1578 void dump_omp_region (FILE *, struct omp_region *, int);
1579 void debug_omp_region (struct omp_region *);
1580 void debug_all_omp_regions (void);
1582 /* Dump the parallel region tree rooted at REGION. */
1584 void
1585 dump_omp_region (FILE *file, struct omp_region *region, int indent)
1587 fprintf (file, "%*sbb %d: %s\n", indent, "", region->entry->index,
1588 gimple_code_name[region->type]);
1590 if (region->inner)
1591 dump_omp_region (file, region->inner, indent + 4);
1593 if (region->cont)
1595 fprintf (file, "%*sbb %d: GIMPLE_OMP_CONTINUE\n", indent, "",
1596 region->cont->index);
1599 if (region->exit)
1600 fprintf (file, "%*sbb %d: GIMPLE_OMP_RETURN\n", indent, "",
1601 region->exit->index);
1602 else
1603 fprintf (file, "%*s[no exit marker]\n", indent, "");
1605 if (region->next)
1606 dump_omp_region (file, region->next, indent);
1609 DEBUG_FUNCTION void
1610 debug_omp_region (struct omp_region *region)
1612 dump_omp_region (stderr, region, 0);
1615 DEBUG_FUNCTION void
1616 debug_all_omp_regions (void)
1618 dump_omp_region (stderr, root_omp_region, 0);
1622 /* Create a new parallel region starting at STMT inside region PARENT. */
1624 static struct omp_region *
1625 new_omp_region (basic_block bb, enum gimple_code type,
1626 struct omp_region *parent)
1628 struct omp_region *region = XCNEW (struct omp_region);
1630 region->outer = parent;
1631 region->entry = bb;
1632 region->type = type;
1634 if (parent)
1636 /* This is a nested region. Add it to the list of inner
1637 regions in PARENT. */
1638 region->next = parent->inner;
1639 parent->inner = region;
1641 else
1643 /* This is a toplevel region. Add it to the list of toplevel
1644 regions in ROOT_OMP_REGION. */
1645 region->next = root_omp_region;
1646 root_omp_region = region;
1649 return region;
1652 /* Release the memory associated with the region tree rooted at REGION. */
1654 static void
1655 free_omp_region_1 (struct omp_region *region)
1657 struct omp_region *i, *n;
1659 for (i = region->inner; i ; i = n)
1661 n = i->next;
1662 free_omp_region_1 (i);
1665 free (region);
1668 /* Release the memory for the entire omp region tree. */
1670 void
1671 free_omp_regions (void)
1673 struct omp_region *r, *n;
1674 for (r = root_omp_region; r ; r = n)
1676 n = r->next;
1677 free_omp_region_1 (r);
1679 root_omp_region = NULL;
1683 /* Create a new context, with OUTER_CTX being the surrounding context. */
1685 static omp_context *
1686 new_omp_context (gimple *stmt, omp_context *outer_ctx)
1688 omp_context *ctx = XCNEW (omp_context);
1690 splay_tree_insert (all_contexts, (splay_tree_key) stmt,
1691 (splay_tree_value) ctx);
1692 ctx->stmt = stmt;
1694 if (outer_ctx)
1696 ctx->outer = outer_ctx;
1697 ctx->cb = outer_ctx->cb;
1698 ctx->cb.block = NULL;
1699 ctx->depth = outer_ctx->depth + 1;
1701 else
1703 ctx->cb.src_fn = current_function_decl;
1704 ctx->cb.dst_fn = current_function_decl;
1705 ctx->cb.src_node = cgraph_node::get (current_function_decl);
1706 gcc_checking_assert (ctx->cb.src_node);
1707 ctx->cb.dst_node = ctx->cb.src_node;
1708 ctx->cb.src_cfun = cfun;
1709 ctx->cb.copy_decl = omp_copy_decl;
1710 ctx->cb.eh_lp_nr = 0;
1711 ctx->cb.transform_call_graph_edges = CB_CGE_MOVE;
1712 ctx->depth = 1;
1715 ctx->cb.decl_map = new hash_map<tree, tree>;
1717 return ctx;
1720 static gimple_seq maybe_catch_exception (gimple_seq);
1722 /* Finalize task copyfn. */
1724 static void
1725 finalize_task_copyfn (gomp_task *task_stmt)
1727 struct function *child_cfun;
1728 tree child_fn;
1729 gimple_seq seq = NULL, new_seq;
1730 gbind *bind;
1732 child_fn = gimple_omp_task_copy_fn (task_stmt);
1733 if (child_fn == NULL_TREE)
1734 return;
1736 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
1737 DECL_STRUCT_FUNCTION (child_fn)->curr_properties = cfun->curr_properties;
1739 push_cfun (child_cfun);
1740 bind = gimplify_body (child_fn, false);
1741 gimple_seq_add_stmt (&seq, bind);
1742 new_seq = maybe_catch_exception (seq);
1743 if (new_seq != seq)
1745 bind = gimple_build_bind (NULL, new_seq, NULL);
1746 seq = NULL;
1747 gimple_seq_add_stmt (&seq, bind);
1749 gimple_set_body (child_fn, seq);
1750 pop_cfun ();
1752 /* Inform the callgraph about the new function. */
1753 cgraph_node *node = cgraph_node::get_create (child_fn);
1754 node->parallelized_function = 1;
1755 cgraph_node::add_new_function (child_fn, false);
1758 /* Destroy a omp_context data structures. Called through the splay tree
1759 value delete callback. */
1761 static void
1762 delete_omp_context (splay_tree_value value)
1764 omp_context *ctx = (omp_context *) value;
1766 delete ctx->cb.decl_map;
1768 if (ctx->field_map)
1769 splay_tree_delete (ctx->field_map);
1770 if (ctx->sfield_map)
1771 splay_tree_delete (ctx->sfield_map);
1773 /* We hijacked DECL_ABSTRACT_ORIGIN earlier. We need to clear it before
1774 it produces corrupt debug information. */
1775 if (ctx->record_type)
1777 tree t;
1778 for (t = TYPE_FIELDS (ctx->record_type); t ; t = DECL_CHAIN (t))
1779 DECL_ABSTRACT_ORIGIN (t) = NULL;
1781 if (ctx->srecord_type)
1783 tree t;
1784 for (t = TYPE_FIELDS (ctx->srecord_type); t ; t = DECL_CHAIN (t))
1785 DECL_ABSTRACT_ORIGIN (t) = NULL;
1788 if (is_task_ctx (ctx))
1789 finalize_task_copyfn (as_a <gomp_task *> (ctx->stmt));
1791 XDELETE (ctx);
1794 /* Fix up RECEIVER_DECL with a type that has been remapped to the child
1795 context. */
1797 static void
1798 fixup_child_record_type (omp_context *ctx)
1800 tree f, type = ctx->record_type;
1802 if (!ctx->receiver_decl)
1803 return;
1804 /* ??? It isn't sufficient to just call remap_type here, because
1805 variably_modified_type_p doesn't work the way we expect for
1806 record types. Testing each field for whether it needs remapping
1807 and creating a new record by hand works, however. */
1808 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
1809 if (variably_modified_type_p (TREE_TYPE (f), ctx->cb.src_fn))
1810 break;
1811 if (f)
1813 tree name, new_fields = NULL;
1815 type = lang_hooks.types.make_type (RECORD_TYPE);
1816 name = DECL_NAME (TYPE_NAME (ctx->record_type));
1817 name = build_decl (DECL_SOURCE_LOCATION (ctx->receiver_decl),
1818 TYPE_DECL, name, type);
1819 TYPE_NAME (type) = name;
1821 for (f = TYPE_FIELDS (ctx->record_type); f ; f = DECL_CHAIN (f))
1823 tree new_f = copy_node (f);
1824 DECL_CONTEXT (new_f) = type;
1825 TREE_TYPE (new_f) = remap_type (TREE_TYPE (f), &ctx->cb);
1826 DECL_CHAIN (new_f) = new_fields;
1827 walk_tree (&DECL_SIZE (new_f), copy_tree_body_r, &ctx->cb, NULL);
1828 walk_tree (&DECL_SIZE_UNIT (new_f), copy_tree_body_r,
1829 &ctx->cb, NULL);
1830 walk_tree (&DECL_FIELD_OFFSET (new_f), copy_tree_body_r,
1831 &ctx->cb, NULL);
1832 new_fields = new_f;
1834 /* Arrange to be able to look up the receiver field
1835 given the sender field. */
1836 splay_tree_insert (ctx->field_map, (splay_tree_key) f,
1837 (splay_tree_value) new_f);
1839 TYPE_FIELDS (type) = nreverse (new_fields);
1840 layout_type (type);
1843 /* In a target region we never modify any of the pointers in *.omp_data_i,
1844 so attempt to help the optimizers. */
1845 if (is_gimple_omp_offloaded (ctx->stmt))
1846 type = build_qualified_type (type, TYPE_QUAL_CONST);
1848 TREE_TYPE (ctx->receiver_decl)
1849 = build_qualified_type (build_reference_type (type), TYPE_QUAL_RESTRICT);
1852 /* Instantiate decls as necessary in CTX to satisfy the data sharing
1853 specified by CLAUSES. If BASE_POINTERS_RESTRICT, install var field with
1854 restrict. */
1856 static void
1857 scan_sharing_clauses (tree clauses, omp_context *ctx,
1858 bool base_pointers_restrict = false)
1860 tree c, decl;
1861 bool scan_array_reductions = false;
1863 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
1865 bool by_ref;
1867 switch (OMP_CLAUSE_CODE (c))
1869 case OMP_CLAUSE_PRIVATE:
1870 decl = OMP_CLAUSE_DECL (c);
1871 if (OMP_CLAUSE_PRIVATE_OUTER_REF (c))
1872 goto do_private;
1873 else if (!is_variable_sized (decl))
1874 install_var_local (decl, ctx);
1875 break;
1877 case OMP_CLAUSE_SHARED:
1878 decl = OMP_CLAUSE_DECL (c);
1879 /* Ignore shared directives in teams construct. */
1880 if (gimple_code (ctx->stmt) == GIMPLE_OMP_TEAMS)
1882 /* Global variables don't need to be copied,
1883 the receiver side will use them directly. */
1884 tree odecl = maybe_lookup_decl_in_outer_ctx (decl, ctx);
1885 if (is_global_var (odecl))
1886 break;
1887 insert_decl_map (&ctx->cb, decl, odecl);
1888 break;
1890 gcc_assert (is_taskreg_ctx (ctx));
1891 gcc_assert (!COMPLETE_TYPE_P (TREE_TYPE (decl))
1892 || !is_variable_sized (decl));
1893 /* Global variables don't need to be copied,
1894 the receiver side will use them directly. */
1895 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx)))
1896 break;
1897 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
1899 use_pointer_for_field (decl, ctx);
1900 break;
1902 by_ref = use_pointer_for_field (decl, NULL);
1903 if ((! TREE_READONLY (decl) && !OMP_CLAUSE_SHARED_READONLY (c))
1904 || TREE_ADDRESSABLE (decl)
1905 || by_ref
1906 || is_reference (decl))
1908 by_ref = use_pointer_for_field (decl, ctx);
1909 install_var_field (decl, by_ref, 3, ctx);
1910 install_var_local (decl, ctx);
1911 break;
1913 /* We don't need to copy const scalar vars back. */
1914 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_FIRSTPRIVATE);
1915 goto do_private;
1917 case OMP_CLAUSE_REDUCTION:
1918 decl = OMP_CLAUSE_DECL (c);
1919 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
1920 && TREE_CODE (decl) == MEM_REF)
1922 tree t = TREE_OPERAND (decl, 0);
1923 if (TREE_CODE (t) == POINTER_PLUS_EXPR)
1924 t = TREE_OPERAND (t, 0);
1925 if (TREE_CODE (t) == INDIRECT_REF
1926 || TREE_CODE (t) == ADDR_EXPR)
1927 t = TREE_OPERAND (t, 0);
1928 install_var_local (t, ctx);
1929 if (is_taskreg_ctx (ctx)
1930 && !is_global_var (maybe_lookup_decl_in_outer_ctx (t, ctx))
1931 && !is_variable_sized (t))
1933 by_ref = use_pointer_for_field (t, ctx);
1934 install_var_field (t, by_ref, 3, ctx);
1936 break;
1938 goto do_private;
1940 case OMP_CLAUSE_LASTPRIVATE:
1941 /* Let the corresponding firstprivate clause create
1942 the variable. */
1943 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c))
1944 break;
1945 /* FALLTHRU */
1947 case OMP_CLAUSE_FIRSTPRIVATE:
1948 case OMP_CLAUSE_LINEAR:
1949 decl = OMP_CLAUSE_DECL (c);
1950 do_private:
1951 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
1952 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IS_DEVICE_PTR)
1953 && is_gimple_omp_offloaded (ctx->stmt))
1955 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
1956 install_var_field (decl, !is_reference (decl), 3, ctx);
1957 else if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1958 install_var_field (decl, true, 3, ctx);
1959 else
1960 install_var_field (decl, false, 3, ctx);
1962 if (is_variable_sized (decl))
1964 if (is_task_ctx (ctx))
1965 install_var_field (decl, false, 1, ctx);
1966 break;
1968 else if (is_taskreg_ctx (ctx))
1970 bool global
1971 = is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx));
1972 by_ref = use_pointer_for_field (decl, NULL);
1974 if (is_task_ctx (ctx)
1975 && (global || by_ref || is_reference (decl)))
1977 install_var_field (decl, false, 1, ctx);
1978 if (!global)
1979 install_var_field (decl, by_ref, 2, ctx);
1981 else if (!global)
1982 install_var_field (decl, by_ref, 3, ctx);
1984 install_var_local (decl, ctx);
1985 break;
1987 case OMP_CLAUSE_USE_DEVICE_PTR:
1988 decl = OMP_CLAUSE_DECL (c);
1989 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1990 install_var_field (decl, true, 3, ctx);
1991 else
1992 install_var_field (decl, false, 3, ctx);
1993 if (DECL_SIZE (decl)
1994 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
1996 tree decl2 = DECL_VALUE_EXPR (decl);
1997 gcc_assert (TREE_CODE (decl2) == INDIRECT_REF);
1998 decl2 = TREE_OPERAND (decl2, 0);
1999 gcc_assert (DECL_P (decl2));
2000 install_var_local (decl2, ctx);
2002 install_var_local (decl, ctx);
2003 break;
2005 case OMP_CLAUSE_IS_DEVICE_PTR:
2006 decl = OMP_CLAUSE_DECL (c);
2007 goto do_private;
2009 case OMP_CLAUSE__LOOPTEMP_:
2010 gcc_assert (is_taskreg_ctx (ctx));
2011 decl = OMP_CLAUSE_DECL (c);
2012 install_var_field (decl, false, 3, ctx);
2013 install_var_local (decl, ctx);
2014 break;
2016 case OMP_CLAUSE_COPYPRIVATE:
2017 case OMP_CLAUSE_COPYIN:
2018 decl = OMP_CLAUSE_DECL (c);
2019 by_ref = use_pointer_for_field (decl, NULL);
2020 install_var_field (decl, by_ref, 3, ctx);
2021 break;
2023 case OMP_CLAUSE_DEFAULT:
2024 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
2025 break;
2027 case OMP_CLAUSE_FINAL:
2028 case OMP_CLAUSE_IF:
2029 case OMP_CLAUSE_NUM_THREADS:
2030 case OMP_CLAUSE_NUM_TEAMS:
2031 case OMP_CLAUSE_THREAD_LIMIT:
2032 case OMP_CLAUSE_DEVICE:
2033 case OMP_CLAUSE_SCHEDULE:
2034 case OMP_CLAUSE_DIST_SCHEDULE:
2035 case OMP_CLAUSE_DEPEND:
2036 case OMP_CLAUSE_PRIORITY:
2037 case OMP_CLAUSE_GRAINSIZE:
2038 case OMP_CLAUSE_NUM_TASKS:
2039 case OMP_CLAUSE__CILK_FOR_COUNT_:
2040 case OMP_CLAUSE_NUM_GANGS:
2041 case OMP_CLAUSE_NUM_WORKERS:
2042 case OMP_CLAUSE_VECTOR_LENGTH:
2043 if (ctx->outer)
2044 scan_omp_op (&OMP_CLAUSE_OPERAND (c, 0), ctx->outer);
2045 break;
2047 case OMP_CLAUSE_TO:
2048 case OMP_CLAUSE_FROM:
2049 case OMP_CLAUSE_MAP:
2050 if (ctx->outer)
2051 scan_omp_op (&OMP_CLAUSE_SIZE (c), ctx->outer);
2052 decl = OMP_CLAUSE_DECL (c);
2053 /* Global variables with "omp declare target" attribute
2054 don't need to be copied, the receiver side will use them
2055 directly. However, global variables with "omp declare target link"
2056 attribute need to be copied. */
2057 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
2058 && DECL_P (decl)
2059 && ((OMP_CLAUSE_MAP_KIND (c) != GOMP_MAP_FIRSTPRIVATE_POINTER
2060 && (OMP_CLAUSE_MAP_KIND (c)
2061 != GOMP_MAP_FIRSTPRIVATE_REFERENCE))
2062 || TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
2063 && is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx))
2064 && varpool_node::get_create (decl)->offloadable
2065 && !lookup_attribute ("omp declare target link",
2066 DECL_ATTRIBUTES (decl)))
2067 break;
2068 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
2069 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER)
2071 /* Ignore GOMP_MAP_POINTER kind for arrays in regions that are
2072 not offloaded; there is nothing to map for those. */
2073 if (!is_gimple_omp_offloaded (ctx->stmt)
2074 && !POINTER_TYPE_P (TREE_TYPE (decl))
2075 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c))
2076 break;
2078 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
2079 && (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER
2080 || (OMP_CLAUSE_MAP_KIND (c)
2081 == GOMP_MAP_FIRSTPRIVATE_REFERENCE)))
2083 if (TREE_CODE (decl) == COMPONENT_REF
2084 || (TREE_CODE (decl) == INDIRECT_REF
2085 && TREE_CODE (TREE_OPERAND (decl, 0)) == COMPONENT_REF
2086 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (decl, 0)))
2087 == REFERENCE_TYPE)))
2088 break;
2089 if (DECL_SIZE (decl)
2090 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
2092 tree decl2 = DECL_VALUE_EXPR (decl);
2093 gcc_assert (TREE_CODE (decl2) == INDIRECT_REF);
2094 decl2 = TREE_OPERAND (decl2, 0);
2095 gcc_assert (DECL_P (decl2));
2096 install_var_local (decl2, ctx);
2098 install_var_local (decl, ctx);
2099 break;
2101 if (DECL_P (decl))
2103 if (DECL_SIZE (decl)
2104 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
2106 tree decl2 = DECL_VALUE_EXPR (decl);
2107 gcc_assert (TREE_CODE (decl2) == INDIRECT_REF);
2108 decl2 = TREE_OPERAND (decl2, 0);
2109 gcc_assert (DECL_P (decl2));
2110 install_var_field (decl2, true, 3, ctx);
2111 install_var_local (decl2, ctx);
2112 install_var_local (decl, ctx);
2114 else
2116 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
2117 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
2118 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c)
2119 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
2120 install_var_field (decl, true, 7, ctx);
2121 else
2122 install_var_field (decl, true, 3, ctx,
2123 base_pointers_restrict);
2124 if (is_gimple_omp_offloaded (ctx->stmt))
2125 install_var_local (decl, ctx);
2128 else
2130 tree base = get_base_address (decl);
2131 tree nc = OMP_CLAUSE_CHAIN (c);
2132 if (DECL_P (base)
2133 && nc != NULL_TREE
2134 && OMP_CLAUSE_CODE (nc) == OMP_CLAUSE_MAP
2135 && OMP_CLAUSE_DECL (nc) == base
2136 && OMP_CLAUSE_MAP_KIND (nc) == GOMP_MAP_POINTER
2137 && integer_zerop (OMP_CLAUSE_SIZE (nc)))
2139 OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c) = 1;
2140 OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (nc) = 1;
2142 else
2144 if (ctx->outer)
2146 scan_omp_op (&OMP_CLAUSE_DECL (c), ctx->outer);
2147 decl = OMP_CLAUSE_DECL (c);
2149 gcc_assert (!splay_tree_lookup (ctx->field_map,
2150 (splay_tree_key) decl));
2151 tree field
2152 = build_decl (OMP_CLAUSE_LOCATION (c),
2153 FIELD_DECL, NULL_TREE, ptr_type_node);
2154 DECL_ALIGN (field) = TYPE_ALIGN (ptr_type_node);
2155 insert_field_into_struct (ctx->record_type, field);
2156 splay_tree_insert (ctx->field_map, (splay_tree_key) decl,
2157 (splay_tree_value) field);
2160 break;
2162 case OMP_CLAUSE__GRIDDIM_:
2163 if (ctx->outer)
2165 scan_omp_op (&OMP_CLAUSE__GRIDDIM__SIZE (c), ctx->outer);
2166 scan_omp_op (&OMP_CLAUSE__GRIDDIM__GROUP (c), ctx->outer);
2168 break;
2170 case OMP_CLAUSE_NOWAIT:
2171 case OMP_CLAUSE_ORDERED:
2172 case OMP_CLAUSE_COLLAPSE:
2173 case OMP_CLAUSE_UNTIED:
2174 case OMP_CLAUSE_MERGEABLE:
2175 case OMP_CLAUSE_PROC_BIND:
2176 case OMP_CLAUSE_SAFELEN:
2177 case OMP_CLAUSE_SIMDLEN:
2178 case OMP_CLAUSE_THREADS:
2179 case OMP_CLAUSE_SIMD:
2180 case OMP_CLAUSE_NOGROUP:
2181 case OMP_CLAUSE_DEFAULTMAP:
2182 case OMP_CLAUSE_ASYNC:
2183 case OMP_CLAUSE_WAIT:
2184 case OMP_CLAUSE_GANG:
2185 case OMP_CLAUSE_WORKER:
2186 case OMP_CLAUSE_VECTOR:
2187 case OMP_CLAUSE_TILE:
2188 case OMP_CLAUSE_INDEPENDENT:
2189 case OMP_CLAUSE_AUTO:
2190 case OMP_CLAUSE_SEQ:
2191 break;
2193 case OMP_CLAUSE_ALIGNED:
2194 decl = OMP_CLAUSE_DECL (c);
2195 if (is_global_var (decl)
2196 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
2197 install_var_local (decl, ctx);
2198 break;
2200 case OMP_CLAUSE_DEVICE_RESIDENT:
2201 case OMP_CLAUSE__CACHE_:
2202 sorry ("Clause not supported yet");
2203 break;
2205 default:
2206 gcc_unreachable ();
2210 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
2212 switch (OMP_CLAUSE_CODE (c))
2214 case OMP_CLAUSE_LASTPRIVATE:
2215 /* Let the corresponding firstprivate clause create
2216 the variable. */
2217 if (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c))
2218 scan_array_reductions = true;
2219 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c))
2220 break;
2221 /* FALLTHRU */
2223 case OMP_CLAUSE_FIRSTPRIVATE:
2224 case OMP_CLAUSE_PRIVATE:
2225 case OMP_CLAUSE_LINEAR:
2226 case OMP_CLAUSE_IS_DEVICE_PTR:
2227 decl = OMP_CLAUSE_DECL (c);
2228 if (is_variable_sized (decl))
2230 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
2231 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_IS_DEVICE_PTR)
2232 && is_gimple_omp_offloaded (ctx->stmt))
2234 tree decl2 = DECL_VALUE_EXPR (decl);
2235 gcc_assert (TREE_CODE (decl2) == INDIRECT_REF);
2236 decl2 = TREE_OPERAND (decl2, 0);
2237 gcc_assert (DECL_P (decl2));
2238 install_var_local (decl2, ctx);
2239 fixup_remapped_decl (decl2, ctx, false);
2241 install_var_local (decl, ctx);
2243 fixup_remapped_decl (decl, ctx,
2244 OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
2245 && OMP_CLAUSE_PRIVATE_DEBUG (c));
2246 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
2247 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c))
2248 scan_array_reductions = true;
2249 break;
2251 case OMP_CLAUSE_REDUCTION:
2252 decl = OMP_CLAUSE_DECL (c);
2253 if (TREE_CODE (decl) != MEM_REF)
2255 if (is_variable_sized (decl))
2256 install_var_local (decl, ctx);
2257 fixup_remapped_decl (decl, ctx, false);
2259 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
2260 scan_array_reductions = true;
2261 break;
2263 case OMP_CLAUSE_SHARED:
2264 /* Ignore shared directives in teams construct. */
2265 if (gimple_code (ctx->stmt) == GIMPLE_OMP_TEAMS)
2266 break;
2267 decl = OMP_CLAUSE_DECL (c);
2268 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx)))
2269 break;
2270 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
2272 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl,
2273 ctx->outer)))
2274 break;
2275 bool by_ref = use_pointer_for_field (decl, ctx);
2276 install_var_field (decl, by_ref, 11, ctx);
2277 break;
2279 fixup_remapped_decl (decl, ctx, false);
2280 break;
2282 case OMP_CLAUSE_MAP:
2283 if (!is_gimple_omp_offloaded (ctx->stmt))
2284 break;
2285 decl = OMP_CLAUSE_DECL (c);
2286 if (DECL_P (decl)
2287 && ((OMP_CLAUSE_MAP_KIND (c) != GOMP_MAP_FIRSTPRIVATE_POINTER
2288 && (OMP_CLAUSE_MAP_KIND (c)
2289 != GOMP_MAP_FIRSTPRIVATE_REFERENCE))
2290 || TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
2291 && is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx))
2292 && varpool_node::get_create (decl)->offloadable)
2293 break;
2294 if (DECL_P (decl))
2296 if ((OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
2297 || OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER)
2298 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
2299 && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
2301 tree new_decl = lookup_decl (decl, ctx);
2302 TREE_TYPE (new_decl)
2303 = remap_type (TREE_TYPE (decl), &ctx->cb);
2305 else if (DECL_SIZE (decl)
2306 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
2308 tree decl2 = DECL_VALUE_EXPR (decl);
2309 gcc_assert (TREE_CODE (decl2) == INDIRECT_REF);
2310 decl2 = TREE_OPERAND (decl2, 0);
2311 gcc_assert (DECL_P (decl2));
2312 fixup_remapped_decl (decl2, ctx, false);
2313 fixup_remapped_decl (decl, ctx, true);
2315 else
2316 fixup_remapped_decl (decl, ctx, false);
2318 break;
2320 case OMP_CLAUSE_COPYPRIVATE:
2321 case OMP_CLAUSE_COPYIN:
2322 case OMP_CLAUSE_DEFAULT:
2323 case OMP_CLAUSE_IF:
2324 case OMP_CLAUSE_NUM_THREADS:
2325 case OMP_CLAUSE_NUM_TEAMS:
2326 case OMP_CLAUSE_THREAD_LIMIT:
2327 case OMP_CLAUSE_DEVICE:
2328 case OMP_CLAUSE_SCHEDULE:
2329 case OMP_CLAUSE_DIST_SCHEDULE:
2330 case OMP_CLAUSE_NOWAIT:
2331 case OMP_CLAUSE_ORDERED:
2332 case OMP_CLAUSE_COLLAPSE:
2333 case OMP_CLAUSE_UNTIED:
2334 case OMP_CLAUSE_FINAL:
2335 case OMP_CLAUSE_MERGEABLE:
2336 case OMP_CLAUSE_PROC_BIND:
2337 case OMP_CLAUSE_SAFELEN:
2338 case OMP_CLAUSE_SIMDLEN:
2339 case OMP_CLAUSE_ALIGNED:
2340 case OMP_CLAUSE_DEPEND:
2341 case OMP_CLAUSE__LOOPTEMP_:
2342 case OMP_CLAUSE_TO:
2343 case OMP_CLAUSE_FROM:
2344 case OMP_CLAUSE_PRIORITY:
2345 case OMP_CLAUSE_GRAINSIZE:
2346 case OMP_CLAUSE_NUM_TASKS:
2347 case OMP_CLAUSE_THREADS:
2348 case OMP_CLAUSE_SIMD:
2349 case OMP_CLAUSE_NOGROUP:
2350 case OMP_CLAUSE_DEFAULTMAP:
2351 case OMP_CLAUSE_USE_DEVICE_PTR:
2352 case OMP_CLAUSE__CILK_FOR_COUNT_:
2353 case OMP_CLAUSE_ASYNC:
2354 case OMP_CLAUSE_WAIT:
2355 case OMP_CLAUSE_NUM_GANGS:
2356 case OMP_CLAUSE_NUM_WORKERS:
2357 case OMP_CLAUSE_VECTOR_LENGTH:
2358 case OMP_CLAUSE_GANG:
2359 case OMP_CLAUSE_WORKER:
2360 case OMP_CLAUSE_VECTOR:
2361 case OMP_CLAUSE_TILE:
2362 case OMP_CLAUSE_INDEPENDENT:
2363 case OMP_CLAUSE_AUTO:
2364 case OMP_CLAUSE_SEQ:
2365 case OMP_CLAUSE__GRIDDIM_:
2366 break;
2368 case OMP_CLAUSE_DEVICE_RESIDENT:
2369 case OMP_CLAUSE__CACHE_:
2370 sorry ("Clause not supported yet");
2371 break;
2373 default:
2374 gcc_unreachable ();
2378 gcc_checking_assert (!scan_array_reductions
2379 || !is_gimple_omp_oacc (ctx->stmt));
2380 if (scan_array_reductions)
2381 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
2382 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
2383 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
2385 scan_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c), ctx);
2386 scan_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c), ctx);
2388 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
2389 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c))
2390 scan_omp (&OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c), ctx);
2391 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
2392 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c))
2393 scan_omp (&OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c), ctx);
2396 /* Create a new name for omp child function. Returns an identifier. If
2397 IS_CILK_FOR is true then the suffix for the child function is
2398 "_cilk_for_fn." */
2400 static tree
2401 create_omp_child_function_name (bool task_copy, bool is_cilk_for)
2403 if (is_cilk_for)
2404 return clone_function_name (current_function_decl, "_cilk_for_fn");
2405 return clone_function_name (current_function_decl,
2406 task_copy ? "_omp_cpyfn" : "_omp_fn");
2409 /* Returns the type of the induction variable for the child function for
2410 _Cilk_for and the types for _high and _low variables based on TYPE. */
2412 static tree
2413 cilk_for_check_loop_diff_type (tree type)
2415 if (TYPE_PRECISION (type) <= TYPE_PRECISION (uint32_type_node))
2417 if (TYPE_UNSIGNED (type))
2418 return uint32_type_node;
2419 else
2420 return integer_type_node;
2422 else
2424 if (TYPE_UNSIGNED (type))
2425 return uint64_type_node;
2426 else
2427 return long_long_integer_type_node;
2431 /* Build a decl for the omp child function. It'll not contain a body
2432 yet, just the bare decl. */
2434 static void
2435 create_omp_child_function (omp_context *ctx, bool task_copy)
2437 tree decl, type, name, t;
2439 tree cilk_for_count
2440 = (flag_cilkplus && gimple_code (ctx->stmt) == GIMPLE_OMP_PARALLEL)
2441 ? find_omp_clause (gimple_omp_parallel_clauses (ctx->stmt),
2442 OMP_CLAUSE__CILK_FOR_COUNT_) : NULL_TREE;
2443 tree cilk_var_type = NULL_TREE;
2445 name = create_omp_child_function_name (task_copy,
2446 cilk_for_count != NULL_TREE);
2447 if (task_copy)
2448 type = build_function_type_list (void_type_node, ptr_type_node,
2449 ptr_type_node, NULL_TREE);
2450 else if (cilk_for_count)
2452 type = TREE_TYPE (OMP_CLAUSE_OPERAND (cilk_for_count, 0));
2453 cilk_var_type = cilk_for_check_loop_diff_type (type);
2454 type = build_function_type_list (void_type_node, ptr_type_node,
2455 cilk_var_type, cilk_var_type, NULL_TREE);
2457 else
2458 type = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
2460 decl = build_decl (gimple_location (ctx->stmt), FUNCTION_DECL, name, type);
2462 gcc_checking_assert (!is_gimple_omp_oacc (ctx->stmt)
2463 || !task_copy);
2464 if (!task_copy)
2465 ctx->cb.dst_fn = decl;
2466 else
2467 gimple_omp_task_set_copy_fn (ctx->stmt, decl);
2469 TREE_STATIC (decl) = 1;
2470 TREE_USED (decl) = 1;
2471 DECL_ARTIFICIAL (decl) = 1;
2472 DECL_IGNORED_P (decl) = 0;
2473 TREE_PUBLIC (decl) = 0;
2474 DECL_UNINLINABLE (decl) = 1;
2475 DECL_EXTERNAL (decl) = 0;
2476 DECL_CONTEXT (decl) = NULL_TREE;
2477 DECL_INITIAL (decl) = make_node (BLOCK);
2478 if (cgraph_node::get (current_function_decl)->offloadable)
2479 cgraph_node::get_create (decl)->offloadable = 1;
2480 else
2482 omp_context *octx;
2483 for (octx = ctx; octx; octx = octx->outer)
2484 if (is_gimple_omp_offloaded (octx->stmt))
2486 cgraph_node::get_create (decl)->offloadable = 1;
2487 if (ENABLE_OFFLOADING)
2488 g->have_offload = true;
2490 break;
2494 if (cgraph_node::get_create (decl)->offloadable
2495 && !lookup_attribute ("omp declare target",
2496 DECL_ATTRIBUTES (current_function_decl)))
2497 DECL_ATTRIBUTES (decl)
2498 = tree_cons (get_identifier ("omp target entrypoint"),
2499 NULL_TREE, DECL_ATTRIBUTES (decl));
2501 t = build_decl (DECL_SOURCE_LOCATION (decl),
2502 RESULT_DECL, NULL_TREE, void_type_node);
2503 DECL_ARTIFICIAL (t) = 1;
2504 DECL_IGNORED_P (t) = 1;
2505 DECL_CONTEXT (t) = decl;
2506 DECL_RESULT (decl) = t;
2508 /* _Cilk_for's child function requires two extra parameters called
2509 __low and __high that are set the by Cilk runtime when it calls this
2510 function. */
2511 if (cilk_for_count)
2513 t = build_decl (DECL_SOURCE_LOCATION (decl),
2514 PARM_DECL, get_identifier ("__high"), cilk_var_type);
2515 DECL_ARTIFICIAL (t) = 1;
2516 DECL_NAMELESS (t) = 1;
2517 DECL_ARG_TYPE (t) = ptr_type_node;
2518 DECL_CONTEXT (t) = current_function_decl;
2519 TREE_USED (t) = 1;
2520 DECL_CHAIN (t) = DECL_ARGUMENTS (decl);
2521 DECL_ARGUMENTS (decl) = t;
2523 t = build_decl (DECL_SOURCE_LOCATION (decl),
2524 PARM_DECL, get_identifier ("__low"), cilk_var_type);
2525 DECL_ARTIFICIAL (t) = 1;
2526 DECL_NAMELESS (t) = 1;
2527 DECL_ARG_TYPE (t) = ptr_type_node;
2528 DECL_CONTEXT (t) = current_function_decl;
2529 TREE_USED (t) = 1;
2530 DECL_CHAIN (t) = DECL_ARGUMENTS (decl);
2531 DECL_ARGUMENTS (decl) = t;
2534 tree data_name = get_identifier (".omp_data_i");
2535 t = build_decl (DECL_SOURCE_LOCATION (decl), PARM_DECL, data_name,
2536 ptr_type_node);
2537 DECL_ARTIFICIAL (t) = 1;
2538 DECL_NAMELESS (t) = 1;
2539 DECL_ARG_TYPE (t) = ptr_type_node;
2540 DECL_CONTEXT (t) = current_function_decl;
2541 TREE_USED (t) = 1;
2542 TREE_READONLY (t) = 1;
2543 if (cilk_for_count)
2544 DECL_CHAIN (t) = DECL_ARGUMENTS (decl);
2545 DECL_ARGUMENTS (decl) = t;
2546 if (!task_copy)
2547 ctx->receiver_decl = t;
2548 else
2550 t = build_decl (DECL_SOURCE_LOCATION (decl),
2551 PARM_DECL, get_identifier (".omp_data_o"),
2552 ptr_type_node);
2553 DECL_ARTIFICIAL (t) = 1;
2554 DECL_NAMELESS (t) = 1;
2555 DECL_ARG_TYPE (t) = ptr_type_node;
2556 DECL_CONTEXT (t) = current_function_decl;
2557 TREE_USED (t) = 1;
2558 TREE_ADDRESSABLE (t) = 1;
2559 DECL_CHAIN (t) = DECL_ARGUMENTS (decl);
2560 DECL_ARGUMENTS (decl) = t;
2563 /* Allocate memory for the function structure. The call to
2564 allocate_struct_function clobbers CFUN, so we need to restore
2565 it afterward. */
2566 push_struct_function (decl);
2567 cfun->function_end_locus = gimple_location (ctx->stmt);
2568 pop_cfun ();
2571 /* Callback for walk_gimple_seq. Check if combined parallel
2572 contains gimple_omp_for_combined_into_p OMP_FOR. */
2574 static tree
2575 find_combined_for (gimple_stmt_iterator *gsi_p,
2576 bool *handled_ops_p,
2577 struct walk_stmt_info *wi)
2579 gimple *stmt = gsi_stmt (*gsi_p);
2581 *handled_ops_p = true;
2582 switch (gimple_code (stmt))
2584 WALK_SUBSTMTS;
2586 case GIMPLE_OMP_FOR:
2587 if (gimple_omp_for_combined_into_p (stmt)
2588 && gimple_omp_for_kind (stmt)
2589 == *(const enum gf_mask *) (wi->info))
2591 wi->info = stmt;
2592 return integer_zero_node;
2594 break;
2595 default:
2596 break;
2598 return NULL;
2601 /* Add _LOOPTEMP_ clauses on OpenMP parallel or task. */
2603 static void
2604 add_taskreg_looptemp_clauses (enum gf_mask msk, gimple *stmt,
2605 omp_context *outer_ctx)
2607 struct walk_stmt_info wi;
2609 memset (&wi, 0, sizeof (wi));
2610 wi.val_only = true;
2611 wi.info = (void *) &msk;
2612 walk_gimple_seq (gimple_omp_body (stmt), find_combined_for, NULL, &wi);
2613 if (wi.info != (void *) &msk)
2615 gomp_for *for_stmt = as_a <gomp_for *> ((gimple *) wi.info);
2616 struct omp_for_data fd;
2617 extract_omp_for_data (for_stmt, &fd, NULL);
2618 /* We need two temporaries with fd.loop.v type (istart/iend)
2619 and then (fd.collapse - 1) temporaries with the same
2620 type for count2 ... countN-1 vars if not constant. */
2621 size_t count = 2, i;
2622 tree type = fd.iter_type;
2623 if (fd.collapse > 1
2624 && TREE_CODE (fd.loop.n2) != INTEGER_CST)
2626 count += fd.collapse - 1;
2627 /* If there are lastprivate clauses on the inner
2628 GIMPLE_OMP_FOR, add one more temporaries for the total number
2629 of iterations (product of count1 ... countN-1). */
2630 if (find_omp_clause (gimple_omp_for_clauses (for_stmt),
2631 OMP_CLAUSE_LASTPRIVATE))
2632 count++;
2633 else if (msk == GF_OMP_FOR_KIND_FOR
2634 && find_omp_clause (gimple_omp_parallel_clauses (stmt),
2635 OMP_CLAUSE_LASTPRIVATE))
2636 count++;
2638 for (i = 0; i < count; i++)
2640 tree temp = create_tmp_var (type);
2641 tree c = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE__LOOPTEMP_);
2642 insert_decl_map (&outer_ctx->cb, temp, temp);
2643 OMP_CLAUSE_DECL (c) = temp;
2644 OMP_CLAUSE_CHAIN (c) = gimple_omp_taskreg_clauses (stmt);
2645 gimple_omp_taskreg_set_clauses (stmt, c);
2650 /* Scan an OpenMP parallel directive. */
2652 static void
2653 scan_omp_parallel (gimple_stmt_iterator *gsi, omp_context *outer_ctx)
2655 omp_context *ctx;
2656 tree name;
2657 gomp_parallel *stmt = as_a <gomp_parallel *> (gsi_stmt (*gsi));
2659 /* Ignore parallel directives with empty bodies, unless there
2660 are copyin clauses. */
2661 if (optimize > 0
2662 && empty_body_p (gimple_omp_body (stmt))
2663 && find_omp_clause (gimple_omp_parallel_clauses (stmt),
2664 OMP_CLAUSE_COPYIN) == NULL)
2666 gsi_replace (gsi, gimple_build_nop (), false);
2667 return;
2670 if (gimple_omp_parallel_combined_p (stmt))
2671 add_taskreg_looptemp_clauses (GF_OMP_FOR_KIND_FOR, stmt, outer_ctx);
2673 ctx = new_omp_context (stmt, outer_ctx);
2674 taskreg_contexts.safe_push (ctx);
2675 if (taskreg_nesting_level > 1)
2676 ctx->is_nested = true;
2677 ctx->field_map = splay_tree_new (splay_tree_compare_pointers, 0, 0);
2678 ctx->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
2679 ctx->record_type = lang_hooks.types.make_type (RECORD_TYPE);
2680 name = create_tmp_var_name (".omp_data_s");
2681 name = build_decl (gimple_location (stmt),
2682 TYPE_DECL, name, ctx->record_type);
2683 DECL_ARTIFICIAL (name) = 1;
2684 DECL_NAMELESS (name) = 1;
2685 TYPE_NAME (ctx->record_type) = name;
2686 TYPE_ARTIFICIAL (ctx->record_type) = 1;
2687 if (!gimple_omp_parallel_grid_phony (stmt))
2689 create_omp_child_function (ctx, false);
2690 gimple_omp_parallel_set_child_fn (stmt, ctx->cb.dst_fn);
2693 scan_sharing_clauses (gimple_omp_parallel_clauses (stmt), ctx);
2694 scan_omp (gimple_omp_body_ptr (stmt), ctx);
2696 if (TYPE_FIELDS (ctx->record_type) == NULL)
2697 ctx->record_type = ctx->receiver_decl = NULL;
2700 /* Scan an OpenMP task directive. */
2702 static void
2703 scan_omp_task (gimple_stmt_iterator *gsi, omp_context *outer_ctx)
2705 omp_context *ctx;
2706 tree name, t;
2707 gomp_task *stmt = as_a <gomp_task *> (gsi_stmt (*gsi));
2709 /* Ignore task directives with empty bodies. */
2710 if (optimize > 0
2711 && empty_body_p (gimple_omp_body (stmt)))
2713 gsi_replace (gsi, gimple_build_nop (), false);
2714 return;
2717 if (gimple_omp_task_taskloop_p (stmt))
2718 add_taskreg_looptemp_clauses (GF_OMP_FOR_KIND_TASKLOOP, stmt, outer_ctx);
2720 ctx = new_omp_context (stmt, outer_ctx);
2721 taskreg_contexts.safe_push (ctx);
2722 if (taskreg_nesting_level > 1)
2723 ctx->is_nested = true;
2724 ctx->field_map = splay_tree_new (splay_tree_compare_pointers, 0, 0);
2725 ctx->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
2726 ctx->record_type = lang_hooks.types.make_type (RECORD_TYPE);
2727 name = create_tmp_var_name (".omp_data_s");
2728 name = build_decl (gimple_location (stmt),
2729 TYPE_DECL, name, ctx->record_type);
2730 DECL_ARTIFICIAL (name) = 1;
2731 DECL_NAMELESS (name) = 1;
2732 TYPE_NAME (ctx->record_type) = name;
2733 TYPE_ARTIFICIAL (ctx->record_type) = 1;
2734 create_omp_child_function (ctx, false);
2735 gimple_omp_task_set_child_fn (stmt, ctx->cb.dst_fn);
2737 scan_sharing_clauses (gimple_omp_task_clauses (stmt), ctx);
2739 if (ctx->srecord_type)
2741 name = create_tmp_var_name (".omp_data_a");
2742 name = build_decl (gimple_location (stmt),
2743 TYPE_DECL, name, ctx->srecord_type);
2744 DECL_ARTIFICIAL (name) = 1;
2745 DECL_NAMELESS (name) = 1;
2746 TYPE_NAME (ctx->srecord_type) = name;
2747 TYPE_ARTIFICIAL (ctx->srecord_type) = 1;
2748 create_omp_child_function (ctx, true);
2751 scan_omp (gimple_omp_body_ptr (stmt), ctx);
2753 if (TYPE_FIELDS (ctx->record_type) == NULL)
2755 ctx->record_type = ctx->receiver_decl = NULL;
2756 t = build_int_cst (long_integer_type_node, 0);
2757 gimple_omp_task_set_arg_size (stmt, t);
2758 t = build_int_cst (long_integer_type_node, 1);
2759 gimple_omp_task_set_arg_align (stmt, t);
2764 /* If any decls have been made addressable during scan_omp,
2765 adjust their fields if needed, and layout record types
2766 of parallel/task constructs. */
2768 static void
2769 finish_taskreg_scan (omp_context *ctx)
2771 if (ctx->record_type == NULL_TREE)
2772 return;
2774 /* If any task_shared_vars were needed, verify all
2775 OMP_CLAUSE_SHARED clauses on GIMPLE_OMP_{PARALLEL,TASK}
2776 statements if use_pointer_for_field hasn't changed
2777 because of that. If it did, update field types now. */
2778 if (task_shared_vars)
2780 tree c;
2782 for (c = gimple_omp_taskreg_clauses (ctx->stmt);
2783 c; c = OMP_CLAUSE_CHAIN (c))
2784 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED
2785 && !OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
2787 tree decl = OMP_CLAUSE_DECL (c);
2789 /* Global variables don't need to be copied,
2790 the receiver side will use them directly. */
2791 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx)))
2792 continue;
2793 if (!bitmap_bit_p (task_shared_vars, DECL_UID (decl))
2794 || !use_pointer_for_field (decl, ctx))
2795 continue;
2796 tree field = lookup_field (decl, ctx);
2797 if (TREE_CODE (TREE_TYPE (field)) == POINTER_TYPE
2798 && TREE_TYPE (TREE_TYPE (field)) == TREE_TYPE (decl))
2799 continue;
2800 TREE_TYPE (field) = build_pointer_type (TREE_TYPE (decl));
2801 TREE_THIS_VOLATILE (field) = 0;
2802 DECL_USER_ALIGN (field) = 0;
2803 DECL_ALIGN (field) = TYPE_ALIGN (TREE_TYPE (field));
2804 if (TYPE_ALIGN (ctx->record_type) < DECL_ALIGN (field))
2805 TYPE_ALIGN (ctx->record_type) = DECL_ALIGN (field);
2806 if (ctx->srecord_type)
2808 tree sfield = lookup_sfield (decl, ctx);
2809 TREE_TYPE (sfield) = TREE_TYPE (field);
2810 TREE_THIS_VOLATILE (sfield) = 0;
2811 DECL_USER_ALIGN (sfield) = 0;
2812 DECL_ALIGN (sfield) = DECL_ALIGN (field);
2813 if (TYPE_ALIGN (ctx->srecord_type) < DECL_ALIGN (sfield))
2814 TYPE_ALIGN (ctx->srecord_type) = DECL_ALIGN (sfield);
2819 if (gimple_code (ctx->stmt) == GIMPLE_OMP_PARALLEL)
2821 layout_type (ctx->record_type);
2822 fixup_child_record_type (ctx);
2824 else
2826 location_t loc = gimple_location (ctx->stmt);
2827 tree *p, vla_fields = NULL_TREE, *q = &vla_fields;
2828 /* Move VLA fields to the end. */
2829 p = &TYPE_FIELDS (ctx->record_type);
2830 while (*p)
2831 if (!TYPE_SIZE_UNIT (TREE_TYPE (*p))
2832 || ! TREE_CONSTANT (TYPE_SIZE_UNIT (TREE_TYPE (*p))))
2834 *q = *p;
2835 *p = TREE_CHAIN (*p);
2836 TREE_CHAIN (*q) = NULL_TREE;
2837 q = &TREE_CHAIN (*q);
2839 else
2840 p = &DECL_CHAIN (*p);
2841 *p = vla_fields;
2842 if (gimple_omp_task_taskloop_p (ctx->stmt))
2844 /* Move fields corresponding to first and second _looptemp_
2845 clause first. There are filled by GOMP_taskloop
2846 and thus need to be in specific positions. */
2847 tree c1 = gimple_omp_task_clauses (ctx->stmt);
2848 c1 = find_omp_clause (c1, OMP_CLAUSE__LOOPTEMP_);
2849 tree c2 = find_omp_clause (OMP_CLAUSE_CHAIN (c1),
2850 OMP_CLAUSE__LOOPTEMP_);
2851 tree f1 = lookup_field (OMP_CLAUSE_DECL (c1), ctx);
2852 tree f2 = lookup_field (OMP_CLAUSE_DECL (c2), ctx);
2853 p = &TYPE_FIELDS (ctx->record_type);
2854 while (*p)
2855 if (*p == f1 || *p == f2)
2856 *p = DECL_CHAIN (*p);
2857 else
2858 p = &DECL_CHAIN (*p);
2859 DECL_CHAIN (f1) = f2;
2860 DECL_CHAIN (f2) = TYPE_FIELDS (ctx->record_type);
2861 TYPE_FIELDS (ctx->record_type) = f1;
2862 if (ctx->srecord_type)
2864 f1 = lookup_sfield (OMP_CLAUSE_DECL (c1), ctx);
2865 f2 = lookup_sfield (OMP_CLAUSE_DECL (c2), ctx);
2866 p = &TYPE_FIELDS (ctx->srecord_type);
2867 while (*p)
2868 if (*p == f1 || *p == f2)
2869 *p = DECL_CHAIN (*p);
2870 else
2871 p = &DECL_CHAIN (*p);
2872 DECL_CHAIN (f1) = f2;
2873 DECL_CHAIN (f2) = TYPE_FIELDS (ctx->srecord_type);
2874 TYPE_FIELDS (ctx->srecord_type) = f1;
2877 layout_type (ctx->record_type);
2878 fixup_child_record_type (ctx);
2879 if (ctx->srecord_type)
2880 layout_type (ctx->srecord_type);
2881 tree t = fold_convert_loc (loc, long_integer_type_node,
2882 TYPE_SIZE_UNIT (ctx->record_type));
2883 gimple_omp_task_set_arg_size (ctx->stmt, t);
2884 t = build_int_cst (long_integer_type_node,
2885 TYPE_ALIGN_UNIT (ctx->record_type));
2886 gimple_omp_task_set_arg_align (ctx->stmt, t);
2890 /* Find the enclosing offload context. */
2892 static omp_context *
2893 enclosing_target_ctx (omp_context *ctx)
2895 for (; ctx; ctx = ctx->outer)
2896 if (gimple_code (ctx->stmt) == GIMPLE_OMP_TARGET)
2897 break;
2899 return ctx;
2902 /* Return true if ctx is part of an oacc kernels region. */
2904 static bool
2905 ctx_in_oacc_kernels_region (omp_context *ctx)
2907 for (;ctx != NULL; ctx = ctx->outer)
2909 gimple *stmt = ctx->stmt;
2910 if (gimple_code (stmt) == GIMPLE_OMP_TARGET
2911 && gimple_omp_target_kind (stmt) == GF_OMP_TARGET_KIND_OACC_KERNELS)
2912 return true;
2915 return false;
2918 /* Check the parallelism clauses inside a kernels regions.
2919 Until kernels handling moves to use the same loop indirection
2920 scheme as parallel, we need to do this checking early. */
2922 static unsigned
2923 check_oacc_kernel_gwv (gomp_for *stmt, omp_context *ctx)
2925 bool checking = true;
2926 unsigned outer_mask = 0;
2927 unsigned this_mask = 0;
2928 bool has_seq = false, has_auto = false;
2930 if (ctx->outer)
2931 outer_mask = check_oacc_kernel_gwv (NULL, ctx->outer);
2932 if (!stmt)
2934 checking = false;
2935 if (gimple_code (ctx->stmt) != GIMPLE_OMP_FOR)
2936 return outer_mask;
2937 stmt = as_a <gomp_for *> (ctx->stmt);
2940 for (tree c = gimple_omp_for_clauses (stmt); c; c = OMP_CLAUSE_CHAIN (c))
2942 switch (OMP_CLAUSE_CODE (c))
2944 case OMP_CLAUSE_GANG:
2945 this_mask |= GOMP_DIM_MASK (GOMP_DIM_GANG);
2946 break;
2947 case OMP_CLAUSE_WORKER:
2948 this_mask |= GOMP_DIM_MASK (GOMP_DIM_WORKER);
2949 break;
2950 case OMP_CLAUSE_VECTOR:
2951 this_mask |= GOMP_DIM_MASK (GOMP_DIM_VECTOR);
2952 break;
2953 case OMP_CLAUSE_SEQ:
2954 has_seq = true;
2955 break;
2956 case OMP_CLAUSE_AUTO:
2957 has_auto = true;
2958 break;
2959 default:
2960 break;
2964 if (checking)
2966 if (has_seq && (this_mask || has_auto))
2967 error_at (gimple_location (stmt), "%<seq%> overrides other"
2968 " OpenACC loop specifiers");
2969 else if (has_auto && this_mask)
2970 error_at (gimple_location (stmt), "%<auto%> conflicts with other"
2971 " OpenACC loop specifiers");
2973 if (this_mask & outer_mask)
2974 error_at (gimple_location (stmt), "inner loop uses same"
2975 " OpenACC parallelism as containing loop");
2978 return outer_mask | this_mask;
2981 /* Scan a GIMPLE_OMP_FOR. */
2983 static void
2984 scan_omp_for (gomp_for *stmt, omp_context *outer_ctx)
2986 omp_context *ctx;
2987 size_t i;
2988 tree clauses = gimple_omp_for_clauses (stmt);
2990 ctx = new_omp_context (stmt, outer_ctx);
2992 if (is_gimple_omp_oacc (stmt))
2994 omp_context *tgt = enclosing_target_ctx (outer_ctx);
2996 if (!tgt || is_oacc_parallel (tgt))
2997 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
2999 char const *check = NULL;
3001 switch (OMP_CLAUSE_CODE (c))
3003 case OMP_CLAUSE_GANG:
3004 check = "gang";
3005 break;
3007 case OMP_CLAUSE_WORKER:
3008 check = "worker";
3009 break;
3011 case OMP_CLAUSE_VECTOR:
3012 check = "vector";
3013 break;
3015 default:
3016 break;
3019 if (check && OMP_CLAUSE_OPERAND (c, 0))
3020 error_at (gimple_location (stmt),
3021 "argument not permitted on %qs clause in"
3022 " OpenACC %<parallel%>", check);
3025 if (tgt && is_oacc_kernels (tgt))
3027 /* Strip out reductions, as they are not handled yet. */
3028 tree *prev_ptr = &clauses;
3030 while (tree probe = *prev_ptr)
3032 tree *next_ptr = &OMP_CLAUSE_CHAIN (probe);
3034 if (OMP_CLAUSE_CODE (probe) == OMP_CLAUSE_REDUCTION)
3035 *prev_ptr = *next_ptr;
3036 else
3037 prev_ptr = next_ptr;
3040 gimple_omp_for_set_clauses (stmt, clauses);
3041 check_oacc_kernel_gwv (stmt, ctx);
3045 scan_sharing_clauses (clauses, ctx);
3047 scan_omp (gimple_omp_for_pre_body_ptr (stmt), ctx);
3048 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
3050 scan_omp_op (gimple_omp_for_index_ptr (stmt, i), ctx);
3051 scan_omp_op (gimple_omp_for_initial_ptr (stmt, i), ctx);
3052 scan_omp_op (gimple_omp_for_final_ptr (stmt, i), ctx);
3053 scan_omp_op (gimple_omp_for_incr_ptr (stmt, i), ctx);
3055 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3058 /* Scan an OpenMP sections directive. */
3060 static void
3061 scan_omp_sections (gomp_sections *stmt, omp_context *outer_ctx)
3063 omp_context *ctx;
3065 ctx = new_omp_context (stmt, outer_ctx);
3066 scan_sharing_clauses (gimple_omp_sections_clauses (stmt), ctx);
3067 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3070 /* Scan an OpenMP single directive. */
3072 static void
3073 scan_omp_single (gomp_single *stmt, omp_context *outer_ctx)
3075 omp_context *ctx;
3076 tree name;
3078 ctx = new_omp_context (stmt, outer_ctx);
3079 ctx->field_map = splay_tree_new (splay_tree_compare_pointers, 0, 0);
3080 ctx->record_type = lang_hooks.types.make_type (RECORD_TYPE);
3081 name = create_tmp_var_name (".omp_copy_s");
3082 name = build_decl (gimple_location (stmt),
3083 TYPE_DECL, name, ctx->record_type);
3084 TYPE_NAME (ctx->record_type) = name;
3086 scan_sharing_clauses (gimple_omp_single_clauses (stmt), ctx);
3087 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3089 if (TYPE_FIELDS (ctx->record_type) == NULL)
3090 ctx->record_type = NULL;
3091 else
3092 layout_type (ctx->record_type);
3095 /* Return true if the CLAUSES of an omp target guarantee that the base pointers
3096 used in the corresponding offloaded function are restrict. */
3098 static bool
3099 omp_target_base_pointers_restrict_p (tree clauses)
3101 /* The analysis relies on the GOMP_MAP_FORCE_* mapping kinds, which are only
3102 used by OpenACC. */
3103 if (flag_openacc == 0)
3104 return false;
3106 /* I. Basic example:
3108 void foo (void)
3110 unsigned int a[2], b[2];
3112 #pragma acc kernels \
3113 copyout (a) \
3114 copyout (b)
3116 a[0] = 0;
3117 b[0] = 1;
3121 After gimplification, we have:
3123 #pragma omp target oacc_kernels \
3124 map(force_from:a [len: 8]) \
3125 map(force_from:b [len: 8])
3127 a[0] = 0;
3128 b[0] = 1;
3131 Because both mappings have the force prefix, we know that they will be
3132 allocated when calling the corresponding offloaded function, which means we
3133 can mark the base pointers for a and b in the offloaded function as
3134 restrict. */
3136 tree c;
3137 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
3139 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP)
3140 return false;
3142 switch (OMP_CLAUSE_MAP_KIND (c))
3144 case GOMP_MAP_FORCE_ALLOC:
3145 case GOMP_MAP_FORCE_TO:
3146 case GOMP_MAP_FORCE_FROM:
3147 case GOMP_MAP_FORCE_TOFROM:
3148 break;
3149 default:
3150 return false;
3154 return true;
3157 /* Scan a GIMPLE_OMP_TARGET. */
3159 static void
3160 scan_omp_target (gomp_target *stmt, omp_context *outer_ctx)
3162 omp_context *ctx;
3163 tree name;
3164 bool offloaded = is_gimple_omp_offloaded (stmt);
3165 tree clauses = gimple_omp_target_clauses (stmt);
3167 ctx = new_omp_context (stmt, outer_ctx);
3168 ctx->field_map = splay_tree_new (splay_tree_compare_pointers, 0, 0);
3169 ctx->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
3170 ctx->record_type = lang_hooks.types.make_type (RECORD_TYPE);
3171 name = create_tmp_var_name (".omp_data_t");
3172 name = build_decl (gimple_location (stmt),
3173 TYPE_DECL, name, ctx->record_type);
3174 DECL_ARTIFICIAL (name) = 1;
3175 DECL_NAMELESS (name) = 1;
3176 TYPE_NAME (ctx->record_type) = name;
3177 TYPE_ARTIFICIAL (ctx->record_type) = 1;
3179 bool base_pointers_restrict = false;
3180 if (offloaded)
3182 create_omp_child_function (ctx, false);
3183 gimple_omp_target_set_child_fn (stmt, ctx->cb.dst_fn);
3185 base_pointers_restrict = omp_target_base_pointers_restrict_p (clauses);
3186 if (base_pointers_restrict
3187 && dump_file && (dump_flags & TDF_DETAILS))
3188 fprintf (dump_file,
3189 "Base pointers in offloaded function are restrict\n");
3192 scan_sharing_clauses (clauses, ctx, base_pointers_restrict);
3193 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3195 if (TYPE_FIELDS (ctx->record_type) == NULL)
3196 ctx->record_type = ctx->receiver_decl = NULL;
3197 else
3199 TYPE_FIELDS (ctx->record_type)
3200 = nreverse (TYPE_FIELDS (ctx->record_type));
3201 if (flag_checking)
3203 unsigned int align = DECL_ALIGN (TYPE_FIELDS (ctx->record_type));
3204 for (tree field = TYPE_FIELDS (ctx->record_type);
3205 field;
3206 field = DECL_CHAIN (field))
3207 gcc_assert (DECL_ALIGN (field) == align);
3209 layout_type (ctx->record_type);
3210 if (offloaded)
3211 fixup_child_record_type (ctx);
3215 /* Scan an OpenMP teams directive. */
3217 static void
3218 scan_omp_teams (gomp_teams *stmt, omp_context *outer_ctx)
3220 omp_context *ctx = new_omp_context (stmt, outer_ctx);
3221 scan_sharing_clauses (gimple_omp_teams_clauses (stmt), ctx);
3222 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3225 /* Check nesting restrictions. */
3226 static bool
3227 check_omp_nesting_restrictions (gimple *stmt, omp_context *ctx)
3229 tree c;
3231 if (ctx && gimple_code (ctx->stmt) == GIMPLE_OMP_GRID_BODY)
3232 /* GRID_BODY is an artificial construct, nesting rules will be checked in
3233 the original copy of its contents. */
3234 return true;
3236 /* No nesting of non-OpenACC STMT (that is, an OpenMP one, or a GOMP builtin)
3237 inside an OpenACC CTX. */
3238 if (!(is_gimple_omp (stmt)
3239 && is_gimple_omp_oacc (stmt)))
3241 for (omp_context *octx = ctx; octx != NULL; octx = octx->outer)
3242 if (is_gimple_omp (octx->stmt)
3243 && is_gimple_omp_oacc (octx->stmt)
3244 /* Except for atomic codes that we share with OpenMP. */
3245 && ! (gimple_code (stmt) == GIMPLE_OMP_ATOMIC_LOAD
3246 || gimple_code (stmt) == GIMPLE_OMP_ATOMIC_STORE))
3248 error_at (gimple_location (stmt),
3249 "non-OpenACC construct inside of OpenACC region");
3250 return false;
3254 if (ctx != NULL)
3256 if (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
3257 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD)
3259 c = NULL_TREE;
3260 if (gimple_code (stmt) == GIMPLE_OMP_ORDERED)
3262 c = gimple_omp_ordered_clauses (as_a <gomp_ordered *> (stmt));
3263 if (find_omp_clause (c, OMP_CLAUSE_SIMD))
3265 if (find_omp_clause (c, OMP_CLAUSE_THREADS)
3266 && (ctx->outer == NULL
3267 || !gimple_omp_for_combined_into_p (ctx->stmt)
3268 || gimple_code (ctx->outer->stmt) != GIMPLE_OMP_FOR
3269 || (gimple_omp_for_kind (ctx->outer->stmt)
3270 != GF_OMP_FOR_KIND_FOR)
3271 || !gimple_omp_for_combined_p (ctx->outer->stmt)))
3273 error_at (gimple_location (stmt),
3274 "%<ordered simd threads%> must be closely "
3275 "nested inside of %<for simd%> region");
3276 return false;
3278 return true;
3281 error_at (gimple_location (stmt),
3282 "OpenMP constructs other than %<#pragma omp ordered simd%>"
3283 " may not be nested inside %<simd%> region");
3284 return false;
3286 else if (gimple_code (ctx->stmt) == GIMPLE_OMP_TEAMS)
3288 if ((gimple_code (stmt) != GIMPLE_OMP_FOR
3289 || (gimple_omp_for_kind (stmt)
3290 != GF_OMP_FOR_KIND_DISTRIBUTE))
3291 && gimple_code (stmt) != GIMPLE_OMP_PARALLEL)
3293 error_at (gimple_location (stmt),
3294 "only %<distribute%> or %<parallel%> regions are "
3295 "allowed to be strictly nested inside %<teams%> "
3296 "region");
3297 return false;
3301 switch (gimple_code (stmt))
3303 case GIMPLE_OMP_FOR:
3304 if (gimple_omp_for_kind (stmt) & GF_OMP_FOR_SIMD)
3305 return true;
3306 if (gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_DISTRIBUTE)
3308 if (ctx != NULL && gimple_code (ctx->stmt) != GIMPLE_OMP_TEAMS)
3310 error_at (gimple_location (stmt),
3311 "%<distribute%> region must be strictly nested "
3312 "inside %<teams%> construct");
3313 return false;
3315 return true;
3317 /* We split taskloop into task and nested taskloop in it. */
3318 if (gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_TASKLOOP)
3319 return true;
3320 if (gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_OACC_LOOP)
3322 bool ok = false;
3324 if (ctx)
3325 switch (gimple_code (ctx->stmt))
3327 case GIMPLE_OMP_FOR:
3328 ok = (gimple_omp_for_kind (ctx->stmt)
3329 == GF_OMP_FOR_KIND_OACC_LOOP);
3330 break;
3332 case GIMPLE_OMP_TARGET:
3333 switch (gimple_omp_target_kind (ctx->stmt))
3335 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
3336 case GF_OMP_TARGET_KIND_OACC_KERNELS:
3337 ok = true;
3338 break;
3340 default:
3341 break;
3344 default:
3345 break;
3347 else if (get_oacc_fn_attrib (current_function_decl))
3348 ok = true;
3349 if (!ok)
3351 error_at (gimple_location (stmt),
3352 "OpenACC loop directive must be associated with"
3353 " an OpenACC compute region");
3354 return false;
3357 /* FALLTHRU */
3358 case GIMPLE_CALL:
3359 if (is_gimple_call (stmt)
3360 && (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3361 == BUILT_IN_GOMP_CANCEL
3362 || DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3363 == BUILT_IN_GOMP_CANCELLATION_POINT))
3365 const char *bad = NULL;
3366 const char *kind = NULL;
3367 const char *construct
3368 = (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3369 == BUILT_IN_GOMP_CANCEL)
3370 ? "#pragma omp cancel"
3371 : "#pragma omp cancellation point";
3372 if (ctx == NULL)
3374 error_at (gimple_location (stmt), "orphaned %qs construct",
3375 construct);
3376 return false;
3378 switch (tree_fits_shwi_p (gimple_call_arg (stmt, 0))
3379 ? tree_to_shwi (gimple_call_arg (stmt, 0))
3380 : 0)
3382 case 1:
3383 if (gimple_code (ctx->stmt) != GIMPLE_OMP_PARALLEL)
3384 bad = "#pragma omp parallel";
3385 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3386 == BUILT_IN_GOMP_CANCEL
3387 && !integer_zerop (gimple_call_arg (stmt, 1)))
3388 ctx->cancellable = true;
3389 kind = "parallel";
3390 break;
3391 case 2:
3392 if (gimple_code (ctx->stmt) != GIMPLE_OMP_FOR
3393 || gimple_omp_for_kind (ctx->stmt) != GF_OMP_FOR_KIND_FOR)
3394 bad = "#pragma omp for";
3395 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3396 == BUILT_IN_GOMP_CANCEL
3397 && !integer_zerop (gimple_call_arg (stmt, 1)))
3399 ctx->cancellable = true;
3400 if (find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
3401 OMP_CLAUSE_NOWAIT))
3402 warning_at (gimple_location (stmt), 0,
3403 "%<#pragma omp cancel for%> inside "
3404 "%<nowait%> for construct");
3405 if (find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
3406 OMP_CLAUSE_ORDERED))
3407 warning_at (gimple_location (stmt), 0,
3408 "%<#pragma omp cancel for%> inside "
3409 "%<ordered%> for construct");
3411 kind = "for";
3412 break;
3413 case 4:
3414 if (gimple_code (ctx->stmt) != GIMPLE_OMP_SECTIONS
3415 && gimple_code (ctx->stmt) != GIMPLE_OMP_SECTION)
3416 bad = "#pragma omp sections";
3417 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3418 == BUILT_IN_GOMP_CANCEL
3419 && !integer_zerop (gimple_call_arg (stmt, 1)))
3421 if (gimple_code (ctx->stmt) == GIMPLE_OMP_SECTIONS)
3423 ctx->cancellable = true;
3424 if (find_omp_clause (gimple_omp_sections_clauses
3425 (ctx->stmt),
3426 OMP_CLAUSE_NOWAIT))
3427 warning_at (gimple_location (stmt), 0,
3428 "%<#pragma omp cancel sections%> inside "
3429 "%<nowait%> sections construct");
3431 else
3433 gcc_assert (ctx->outer
3434 && gimple_code (ctx->outer->stmt)
3435 == GIMPLE_OMP_SECTIONS);
3436 ctx->outer->cancellable = true;
3437 if (find_omp_clause (gimple_omp_sections_clauses
3438 (ctx->outer->stmt),
3439 OMP_CLAUSE_NOWAIT))
3440 warning_at (gimple_location (stmt), 0,
3441 "%<#pragma omp cancel sections%> inside "
3442 "%<nowait%> sections construct");
3445 kind = "sections";
3446 break;
3447 case 8:
3448 if (gimple_code (ctx->stmt) != GIMPLE_OMP_TASK)
3449 bad = "#pragma omp task";
3450 else
3452 for (omp_context *octx = ctx->outer;
3453 octx; octx = octx->outer)
3455 switch (gimple_code (octx->stmt))
3457 case GIMPLE_OMP_TASKGROUP:
3458 break;
3459 case GIMPLE_OMP_TARGET:
3460 if (gimple_omp_target_kind (octx->stmt)
3461 != GF_OMP_TARGET_KIND_REGION)
3462 continue;
3463 /* FALLTHRU */
3464 case GIMPLE_OMP_PARALLEL:
3465 case GIMPLE_OMP_TEAMS:
3466 error_at (gimple_location (stmt),
3467 "%<%s taskgroup%> construct not closely "
3468 "nested inside of %<taskgroup%> region",
3469 construct);
3470 return false;
3471 default:
3472 continue;
3474 break;
3476 ctx->cancellable = true;
3478 kind = "taskgroup";
3479 break;
3480 default:
3481 error_at (gimple_location (stmt), "invalid arguments");
3482 return false;
3484 if (bad)
3486 error_at (gimple_location (stmt),
3487 "%<%s %s%> construct not closely nested inside of %qs",
3488 construct, kind, bad);
3489 return false;
3492 /* FALLTHRU */
3493 case GIMPLE_OMP_SECTIONS:
3494 case GIMPLE_OMP_SINGLE:
3495 for (; ctx != NULL; ctx = ctx->outer)
3496 switch (gimple_code (ctx->stmt))
3498 case GIMPLE_OMP_FOR:
3499 if (gimple_omp_for_kind (ctx->stmt) != GF_OMP_FOR_KIND_FOR
3500 && gimple_omp_for_kind (ctx->stmt) != GF_OMP_FOR_KIND_TASKLOOP)
3501 break;
3502 /* FALLTHRU */
3503 case GIMPLE_OMP_SECTIONS:
3504 case GIMPLE_OMP_SINGLE:
3505 case GIMPLE_OMP_ORDERED:
3506 case GIMPLE_OMP_MASTER:
3507 case GIMPLE_OMP_TASK:
3508 case GIMPLE_OMP_CRITICAL:
3509 if (is_gimple_call (stmt))
3511 if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt))
3512 != BUILT_IN_GOMP_BARRIER)
3513 return true;
3514 error_at (gimple_location (stmt),
3515 "barrier region may not be closely nested inside "
3516 "of work-sharing, %<critical%>, %<ordered%>, "
3517 "%<master%>, explicit %<task%> or %<taskloop%> "
3518 "region");
3519 return false;
3521 error_at (gimple_location (stmt),
3522 "work-sharing region may not be closely nested inside "
3523 "of work-sharing, %<critical%>, %<ordered%>, "
3524 "%<master%>, explicit %<task%> or %<taskloop%> region");
3525 return false;
3526 case GIMPLE_OMP_PARALLEL:
3527 case GIMPLE_OMP_TEAMS:
3528 return true;
3529 case GIMPLE_OMP_TARGET:
3530 if (gimple_omp_target_kind (ctx->stmt)
3531 == GF_OMP_TARGET_KIND_REGION)
3532 return true;
3533 break;
3534 default:
3535 break;
3537 break;
3538 case GIMPLE_OMP_MASTER:
3539 for (; ctx != NULL; ctx = ctx->outer)
3540 switch (gimple_code (ctx->stmt))
3542 case GIMPLE_OMP_FOR:
3543 if (gimple_omp_for_kind (ctx->stmt) != GF_OMP_FOR_KIND_FOR
3544 && gimple_omp_for_kind (ctx->stmt) != GF_OMP_FOR_KIND_TASKLOOP)
3545 break;
3546 /* FALLTHRU */
3547 case GIMPLE_OMP_SECTIONS:
3548 case GIMPLE_OMP_SINGLE:
3549 case GIMPLE_OMP_TASK:
3550 error_at (gimple_location (stmt),
3551 "%<master%> region may not be closely nested inside "
3552 "of work-sharing, explicit %<task%> or %<taskloop%> "
3553 "region");
3554 return false;
3555 case GIMPLE_OMP_PARALLEL:
3556 case GIMPLE_OMP_TEAMS:
3557 return true;
3558 case GIMPLE_OMP_TARGET:
3559 if (gimple_omp_target_kind (ctx->stmt)
3560 == GF_OMP_TARGET_KIND_REGION)
3561 return true;
3562 break;
3563 default:
3564 break;
3566 break;
3567 case GIMPLE_OMP_TASK:
3568 for (c = gimple_omp_task_clauses (stmt); c; c = OMP_CLAUSE_CHAIN (c))
3569 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
3570 && (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SOURCE
3571 || OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SINK))
3573 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_KIND (c);
3574 error_at (OMP_CLAUSE_LOCATION (c),
3575 "%<depend(%s)%> is only allowed in %<omp ordered%>",
3576 kind == OMP_CLAUSE_DEPEND_SOURCE ? "source" : "sink");
3577 return false;
3579 break;
3580 case GIMPLE_OMP_ORDERED:
3581 for (c = gimple_omp_ordered_clauses (as_a <gomp_ordered *> (stmt));
3582 c; c = OMP_CLAUSE_CHAIN (c))
3584 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND)
3586 gcc_assert (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREADS
3587 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SIMD);
3588 continue;
3590 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_KIND (c);
3591 if (kind == OMP_CLAUSE_DEPEND_SOURCE
3592 || kind == OMP_CLAUSE_DEPEND_SINK)
3594 tree oclause;
3595 /* Look for containing ordered(N) loop. */
3596 if (ctx == NULL
3597 || gimple_code (ctx->stmt) != GIMPLE_OMP_FOR
3598 || (oclause
3599 = find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
3600 OMP_CLAUSE_ORDERED)) == NULL_TREE)
3602 error_at (OMP_CLAUSE_LOCATION (c),
3603 "%<ordered%> construct with %<depend%> clause "
3604 "must be closely nested inside an %<ordered%> "
3605 "loop");
3606 return false;
3608 else if (OMP_CLAUSE_ORDERED_EXPR (oclause) == NULL_TREE)
3610 error_at (OMP_CLAUSE_LOCATION (c),
3611 "%<ordered%> construct with %<depend%> clause "
3612 "must be closely nested inside a loop with "
3613 "%<ordered%> clause with a parameter");
3614 return false;
3617 else
3619 error_at (OMP_CLAUSE_LOCATION (c),
3620 "invalid depend kind in omp %<ordered%> %<depend%>");
3621 return false;
3624 c = gimple_omp_ordered_clauses (as_a <gomp_ordered *> (stmt));
3625 if (find_omp_clause (c, OMP_CLAUSE_SIMD))
3627 /* ordered simd must be closely nested inside of simd region,
3628 and simd region must not encounter constructs other than
3629 ordered simd, therefore ordered simd may be either orphaned,
3630 or ctx->stmt must be simd. The latter case is handled already
3631 earlier. */
3632 if (ctx != NULL)
3634 error_at (gimple_location (stmt),
3635 "%<ordered%> %<simd%> must be closely nested inside "
3636 "%<simd%> region");
3637 return false;
3640 for (; ctx != NULL; ctx = ctx->outer)
3641 switch (gimple_code (ctx->stmt))
3643 case GIMPLE_OMP_CRITICAL:
3644 case GIMPLE_OMP_TASK:
3645 case GIMPLE_OMP_ORDERED:
3646 ordered_in_taskloop:
3647 error_at (gimple_location (stmt),
3648 "%<ordered%> region may not be closely nested inside "
3649 "of %<critical%>, %<ordered%>, explicit %<task%> or "
3650 "%<taskloop%> region");
3651 return false;
3652 case GIMPLE_OMP_FOR:
3653 if (gimple_omp_for_kind (ctx->stmt) == GF_OMP_FOR_KIND_TASKLOOP)
3654 goto ordered_in_taskloop;
3655 if (find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
3656 OMP_CLAUSE_ORDERED) == NULL)
3658 error_at (gimple_location (stmt),
3659 "%<ordered%> region must be closely nested inside "
3660 "a loop region with an %<ordered%> clause");
3661 return false;
3663 return true;
3664 case GIMPLE_OMP_TARGET:
3665 if (gimple_omp_target_kind (ctx->stmt)
3666 != GF_OMP_TARGET_KIND_REGION)
3667 break;
3668 /* FALLTHRU */
3669 case GIMPLE_OMP_PARALLEL:
3670 case GIMPLE_OMP_TEAMS:
3671 error_at (gimple_location (stmt),
3672 "%<ordered%> region must be closely nested inside "
3673 "a loop region with an %<ordered%> clause");
3674 return false;
3675 default:
3676 break;
3678 break;
3679 case GIMPLE_OMP_CRITICAL:
3681 tree this_stmt_name
3682 = gimple_omp_critical_name (as_a <gomp_critical *> (stmt));
3683 for (; ctx != NULL; ctx = ctx->outer)
3684 if (gomp_critical *other_crit
3685 = dyn_cast <gomp_critical *> (ctx->stmt))
3686 if (this_stmt_name == gimple_omp_critical_name (other_crit))
3688 error_at (gimple_location (stmt),
3689 "%<critical%> region may not be nested inside "
3690 "a %<critical%> region with the same name");
3691 return false;
3694 break;
3695 case GIMPLE_OMP_TEAMS:
3696 if (ctx == NULL
3697 || gimple_code (ctx->stmt) != GIMPLE_OMP_TARGET
3698 || gimple_omp_target_kind (ctx->stmt) != GF_OMP_TARGET_KIND_REGION)
3700 error_at (gimple_location (stmt),
3701 "%<teams%> construct not closely nested inside of "
3702 "%<target%> construct");
3703 return false;
3705 break;
3706 case GIMPLE_OMP_TARGET:
3707 for (c = gimple_omp_target_clauses (stmt); c; c = OMP_CLAUSE_CHAIN (c))
3708 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
3709 && (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SOURCE
3710 || OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SINK))
3712 enum omp_clause_depend_kind kind = OMP_CLAUSE_DEPEND_KIND (c);
3713 error_at (OMP_CLAUSE_LOCATION (c),
3714 "%<depend(%s)%> is only allowed in %<omp ordered%>",
3715 kind == OMP_CLAUSE_DEPEND_SOURCE ? "source" : "sink");
3716 return false;
3718 for (; ctx != NULL; ctx = ctx->outer)
3720 if (gimple_code (ctx->stmt) != GIMPLE_OMP_TARGET)
3722 if (is_gimple_omp (stmt)
3723 && is_gimple_omp_oacc (stmt)
3724 && is_gimple_omp (ctx->stmt))
3726 error_at (gimple_location (stmt),
3727 "OpenACC construct inside of non-OpenACC region");
3728 return false;
3730 continue;
3733 const char *stmt_name, *ctx_stmt_name;
3734 switch (gimple_omp_target_kind (stmt))
3736 case GF_OMP_TARGET_KIND_REGION: stmt_name = "target"; break;
3737 case GF_OMP_TARGET_KIND_DATA: stmt_name = "target data"; break;
3738 case GF_OMP_TARGET_KIND_UPDATE: stmt_name = "target update"; break;
3739 case GF_OMP_TARGET_KIND_ENTER_DATA:
3740 stmt_name = "target enter data"; break;
3741 case GF_OMP_TARGET_KIND_EXIT_DATA:
3742 stmt_name = "target exit data"; break;
3743 case GF_OMP_TARGET_KIND_OACC_PARALLEL: stmt_name = "parallel"; break;
3744 case GF_OMP_TARGET_KIND_OACC_KERNELS: stmt_name = "kernels"; break;
3745 case GF_OMP_TARGET_KIND_OACC_DATA: stmt_name = "data"; break;
3746 case GF_OMP_TARGET_KIND_OACC_UPDATE: stmt_name = "update"; break;
3747 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
3748 stmt_name = "enter/exit data"; break;
3749 case GF_OMP_TARGET_KIND_OACC_HOST_DATA: stmt_name = "host_data";
3750 break;
3751 default: gcc_unreachable ();
3753 switch (gimple_omp_target_kind (ctx->stmt))
3755 case GF_OMP_TARGET_KIND_REGION: ctx_stmt_name = "target"; break;
3756 case GF_OMP_TARGET_KIND_DATA: ctx_stmt_name = "target data"; break;
3757 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
3758 ctx_stmt_name = "parallel"; break;
3759 case GF_OMP_TARGET_KIND_OACC_KERNELS:
3760 ctx_stmt_name = "kernels"; break;
3761 case GF_OMP_TARGET_KIND_OACC_DATA: ctx_stmt_name = "data"; break;
3762 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
3763 ctx_stmt_name = "host_data"; break;
3764 default: gcc_unreachable ();
3767 /* OpenACC/OpenMP mismatch? */
3768 if (is_gimple_omp_oacc (stmt)
3769 != is_gimple_omp_oacc (ctx->stmt))
3771 error_at (gimple_location (stmt),
3772 "%s %qs construct inside of %s %qs region",
3773 (is_gimple_omp_oacc (stmt)
3774 ? "OpenACC" : "OpenMP"), stmt_name,
3775 (is_gimple_omp_oacc (ctx->stmt)
3776 ? "OpenACC" : "OpenMP"), ctx_stmt_name);
3777 return false;
3779 if (is_gimple_omp_offloaded (ctx->stmt))
3781 /* No GIMPLE_OMP_TARGET inside offloaded OpenACC CTX. */
3782 if (is_gimple_omp_oacc (ctx->stmt))
3784 error_at (gimple_location (stmt),
3785 "%qs construct inside of %qs region",
3786 stmt_name, ctx_stmt_name);
3787 return false;
3789 else
3791 warning_at (gimple_location (stmt), 0,
3792 "%qs construct inside of %qs region",
3793 stmt_name, ctx_stmt_name);
3797 break;
3798 default:
3799 break;
3801 return true;
3805 /* Helper function scan_omp.
3807 Callback for walk_tree or operators in walk_gimple_stmt used to
3808 scan for OMP directives in TP. */
3810 static tree
3811 scan_omp_1_op (tree *tp, int *walk_subtrees, void *data)
3813 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
3814 omp_context *ctx = (omp_context *) wi->info;
3815 tree t = *tp;
3817 switch (TREE_CODE (t))
3819 case VAR_DECL:
3820 case PARM_DECL:
3821 case LABEL_DECL:
3822 case RESULT_DECL:
3823 if (ctx)
3825 tree repl = remap_decl (t, &ctx->cb);
3826 gcc_checking_assert (TREE_CODE (repl) != ERROR_MARK);
3827 *tp = repl;
3829 break;
3831 default:
3832 if (ctx && TYPE_P (t))
3833 *tp = remap_type (t, &ctx->cb);
3834 else if (!DECL_P (t))
3836 *walk_subtrees = 1;
3837 if (ctx)
3839 tree tem = remap_type (TREE_TYPE (t), &ctx->cb);
3840 if (tem != TREE_TYPE (t))
3842 if (TREE_CODE (t) == INTEGER_CST)
3843 *tp = wide_int_to_tree (tem, t);
3844 else
3845 TREE_TYPE (t) = tem;
3849 break;
3852 return NULL_TREE;
3855 /* Return true if FNDECL is a setjmp or a longjmp. */
3857 static bool
3858 setjmp_or_longjmp_p (const_tree fndecl)
3860 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
3861 && (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_SETJMP
3862 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_LONGJMP))
3863 return true;
3865 tree declname = DECL_NAME (fndecl);
3866 if (!declname)
3867 return false;
3868 const char *name = IDENTIFIER_POINTER (declname);
3869 return !strcmp (name, "setjmp") || !strcmp (name, "longjmp");
3873 /* Helper function for scan_omp.
3875 Callback for walk_gimple_stmt used to scan for OMP directives in
3876 the current statement in GSI. */
3878 static tree
3879 scan_omp_1_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
3880 struct walk_stmt_info *wi)
3882 gimple *stmt = gsi_stmt (*gsi);
3883 omp_context *ctx = (omp_context *) wi->info;
3885 if (gimple_has_location (stmt))
3886 input_location = gimple_location (stmt);
3888 /* Check the nesting restrictions. */
3889 bool remove = false;
3890 if (is_gimple_omp (stmt))
3891 remove = !check_omp_nesting_restrictions (stmt, ctx);
3892 else if (is_gimple_call (stmt))
3894 tree fndecl = gimple_call_fndecl (stmt);
3895 if (fndecl)
3897 if (setjmp_or_longjmp_p (fndecl)
3898 && ctx
3899 && gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
3900 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD)
3902 remove = true;
3903 error_at (gimple_location (stmt),
3904 "setjmp/longjmp inside simd construct");
3906 else if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
3907 switch (DECL_FUNCTION_CODE (fndecl))
3909 case BUILT_IN_GOMP_BARRIER:
3910 case BUILT_IN_GOMP_CANCEL:
3911 case BUILT_IN_GOMP_CANCELLATION_POINT:
3912 case BUILT_IN_GOMP_TASKYIELD:
3913 case BUILT_IN_GOMP_TASKWAIT:
3914 case BUILT_IN_GOMP_TASKGROUP_START:
3915 case BUILT_IN_GOMP_TASKGROUP_END:
3916 remove = !check_omp_nesting_restrictions (stmt, ctx);
3917 break;
3918 default:
3919 break;
3923 if (remove)
3925 stmt = gimple_build_nop ();
3926 gsi_replace (gsi, stmt, false);
3929 *handled_ops_p = true;
3931 switch (gimple_code (stmt))
3933 case GIMPLE_OMP_PARALLEL:
3934 taskreg_nesting_level++;
3935 scan_omp_parallel (gsi, ctx);
3936 taskreg_nesting_level--;
3937 break;
3939 case GIMPLE_OMP_TASK:
3940 taskreg_nesting_level++;
3941 scan_omp_task (gsi, ctx);
3942 taskreg_nesting_level--;
3943 break;
3945 case GIMPLE_OMP_FOR:
3946 scan_omp_for (as_a <gomp_for *> (stmt), ctx);
3947 break;
3949 case GIMPLE_OMP_SECTIONS:
3950 scan_omp_sections (as_a <gomp_sections *> (stmt), ctx);
3951 break;
3953 case GIMPLE_OMP_SINGLE:
3954 scan_omp_single (as_a <gomp_single *> (stmt), ctx);
3955 break;
3957 case GIMPLE_OMP_SECTION:
3958 case GIMPLE_OMP_MASTER:
3959 case GIMPLE_OMP_TASKGROUP:
3960 case GIMPLE_OMP_ORDERED:
3961 case GIMPLE_OMP_CRITICAL:
3962 case GIMPLE_OMP_GRID_BODY:
3963 ctx = new_omp_context (stmt, ctx);
3964 scan_omp (gimple_omp_body_ptr (stmt), ctx);
3965 break;
3967 case GIMPLE_OMP_TARGET:
3968 scan_omp_target (as_a <gomp_target *> (stmt), ctx);
3969 break;
3971 case GIMPLE_OMP_TEAMS:
3972 scan_omp_teams (as_a <gomp_teams *> (stmt), ctx);
3973 break;
3975 case GIMPLE_BIND:
3977 tree var;
3979 *handled_ops_p = false;
3980 if (ctx)
3981 for (var = gimple_bind_vars (as_a <gbind *> (stmt));
3982 var ;
3983 var = DECL_CHAIN (var))
3984 insert_decl_map (&ctx->cb, var, var);
3986 break;
3987 default:
3988 *handled_ops_p = false;
3989 break;
3992 return NULL_TREE;
3996 /* Scan all the statements starting at the current statement. CTX
3997 contains context information about the OMP directives and
3998 clauses found during the scan. */
4000 static void
4001 scan_omp (gimple_seq *body_p, omp_context *ctx)
4003 location_t saved_location;
4004 struct walk_stmt_info wi;
4006 memset (&wi, 0, sizeof (wi));
4007 wi.info = ctx;
4008 wi.want_locations = true;
4010 saved_location = input_location;
4011 walk_gimple_seq_mod (body_p, scan_omp_1_stmt, scan_omp_1_op, &wi);
4012 input_location = saved_location;
4015 /* Re-gimplification and code generation routines. */
4017 /* Build a call to GOMP_barrier. */
4019 static gimple *
4020 build_omp_barrier (tree lhs)
4022 tree fndecl = builtin_decl_explicit (lhs ? BUILT_IN_GOMP_BARRIER_CANCEL
4023 : BUILT_IN_GOMP_BARRIER);
4024 gcall *g = gimple_build_call (fndecl, 0);
4025 if (lhs)
4026 gimple_call_set_lhs (g, lhs);
4027 return g;
4030 /* If a context was created for STMT when it was scanned, return it. */
4032 static omp_context *
4033 maybe_lookup_ctx (gimple *stmt)
4035 splay_tree_node n;
4036 n = splay_tree_lookup (all_contexts, (splay_tree_key) stmt);
4037 return n ? (omp_context *) n->value : NULL;
4041 /* Find the mapping for DECL in CTX or the immediately enclosing
4042 context that has a mapping for DECL.
4044 If CTX is a nested parallel directive, we may have to use the decl
4045 mappings created in CTX's parent context. Suppose that we have the
4046 following parallel nesting (variable UIDs showed for clarity):
4048 iD.1562 = 0;
4049 #omp parallel shared(iD.1562) -> outer parallel
4050 iD.1562 = iD.1562 + 1;
4052 #omp parallel shared (iD.1562) -> inner parallel
4053 iD.1562 = iD.1562 - 1;
4055 Each parallel structure will create a distinct .omp_data_s structure
4056 for copying iD.1562 in/out of the directive:
4058 outer parallel .omp_data_s.1.i -> iD.1562
4059 inner parallel .omp_data_s.2.i -> iD.1562
4061 A shared variable mapping will produce a copy-out operation before
4062 the parallel directive and a copy-in operation after it. So, in
4063 this case we would have:
4065 iD.1562 = 0;
4066 .omp_data_o.1.i = iD.1562;
4067 #omp parallel shared(iD.1562) -> outer parallel
4068 .omp_data_i.1 = &.omp_data_o.1
4069 .omp_data_i.1->i = .omp_data_i.1->i + 1;
4071 .omp_data_o.2.i = iD.1562; -> **
4072 #omp parallel shared(iD.1562) -> inner parallel
4073 .omp_data_i.2 = &.omp_data_o.2
4074 .omp_data_i.2->i = .omp_data_i.2->i - 1;
4077 ** This is a problem. The symbol iD.1562 cannot be referenced
4078 inside the body of the outer parallel region. But since we are
4079 emitting this copy operation while expanding the inner parallel
4080 directive, we need to access the CTX structure of the outer
4081 parallel directive to get the correct mapping:
4083 .omp_data_o.2.i = .omp_data_i.1->i
4085 Since there may be other workshare or parallel directives enclosing
4086 the parallel directive, it may be necessary to walk up the context
4087 parent chain. This is not a problem in general because nested
4088 parallelism happens only rarely. */
4090 static tree
4091 lookup_decl_in_outer_ctx (tree decl, omp_context *ctx)
4093 tree t;
4094 omp_context *up;
4096 for (up = ctx->outer, t = NULL; up && t == NULL; up = up->outer)
4097 t = maybe_lookup_decl (decl, up);
4099 gcc_assert (!ctx->is_nested || t || is_global_var (decl));
4101 return t ? t : decl;
4105 /* Similar to lookup_decl_in_outer_ctx, but return DECL if not found
4106 in outer contexts. */
4108 static tree
4109 maybe_lookup_decl_in_outer_ctx (tree decl, omp_context *ctx)
4111 tree t = NULL;
4112 omp_context *up;
4114 for (up = ctx->outer, t = NULL; up && t == NULL; up = up->outer)
4115 t = maybe_lookup_decl (decl, up);
4117 return t ? t : decl;
4121 /* Construct the initialization value for reduction operation OP. */
4123 tree
4124 omp_reduction_init_op (location_t loc, enum tree_code op, tree type)
4126 switch (op)
4128 case PLUS_EXPR:
4129 case MINUS_EXPR:
4130 case BIT_IOR_EXPR:
4131 case BIT_XOR_EXPR:
4132 case TRUTH_OR_EXPR:
4133 case TRUTH_ORIF_EXPR:
4134 case TRUTH_XOR_EXPR:
4135 case NE_EXPR:
4136 return build_zero_cst (type);
4138 case MULT_EXPR:
4139 case TRUTH_AND_EXPR:
4140 case TRUTH_ANDIF_EXPR:
4141 case EQ_EXPR:
4142 return fold_convert_loc (loc, type, integer_one_node);
4144 case BIT_AND_EXPR:
4145 return fold_convert_loc (loc, type, integer_minus_one_node);
4147 case MAX_EXPR:
4148 if (SCALAR_FLOAT_TYPE_P (type))
4150 REAL_VALUE_TYPE max, min;
4151 if (HONOR_INFINITIES (type))
4153 real_inf (&max);
4154 real_arithmetic (&min, NEGATE_EXPR, &max, NULL);
4156 else
4157 real_maxval (&min, 1, TYPE_MODE (type));
4158 return build_real (type, min);
4160 else if (POINTER_TYPE_P (type))
4162 wide_int min
4163 = wi::min_value (TYPE_PRECISION (type), TYPE_SIGN (type));
4164 return wide_int_to_tree (type, min);
4166 else
4168 gcc_assert (INTEGRAL_TYPE_P (type));
4169 return TYPE_MIN_VALUE (type);
4172 case MIN_EXPR:
4173 if (SCALAR_FLOAT_TYPE_P (type))
4175 REAL_VALUE_TYPE max;
4176 if (HONOR_INFINITIES (type))
4177 real_inf (&max);
4178 else
4179 real_maxval (&max, 0, TYPE_MODE (type));
4180 return build_real (type, max);
4182 else if (POINTER_TYPE_P (type))
4184 wide_int max
4185 = wi::max_value (TYPE_PRECISION (type), TYPE_SIGN (type));
4186 return wide_int_to_tree (type, max);
4188 else
4190 gcc_assert (INTEGRAL_TYPE_P (type));
4191 return TYPE_MAX_VALUE (type);
4194 default:
4195 gcc_unreachable ();
4199 /* Construct the initialization value for reduction CLAUSE. */
4201 tree
4202 omp_reduction_init (tree clause, tree type)
4204 return omp_reduction_init_op (OMP_CLAUSE_LOCATION (clause),
4205 OMP_CLAUSE_REDUCTION_CODE (clause), type);
4208 /* Return alignment to be assumed for var in CLAUSE, which should be
4209 OMP_CLAUSE_ALIGNED. */
4211 static tree
4212 omp_clause_aligned_alignment (tree clause)
4214 if (OMP_CLAUSE_ALIGNED_ALIGNMENT (clause))
4215 return OMP_CLAUSE_ALIGNED_ALIGNMENT (clause);
4217 /* Otherwise return implementation defined alignment. */
4218 unsigned int al = 1;
4219 machine_mode mode, vmode;
4220 int vs = targetm.vectorize.autovectorize_vector_sizes ();
4221 if (vs)
4222 vs = 1 << floor_log2 (vs);
4223 static enum mode_class classes[]
4224 = { MODE_INT, MODE_VECTOR_INT, MODE_FLOAT, MODE_VECTOR_FLOAT };
4225 for (int i = 0; i < 4; i += 2)
4226 for (mode = GET_CLASS_NARROWEST_MODE (classes[i]);
4227 mode != VOIDmode;
4228 mode = GET_MODE_WIDER_MODE (mode))
4230 vmode = targetm.vectorize.preferred_simd_mode (mode);
4231 if (GET_MODE_CLASS (vmode) != classes[i + 1])
4232 continue;
4233 while (vs
4234 && GET_MODE_SIZE (vmode) < vs
4235 && GET_MODE_2XWIDER_MODE (vmode) != VOIDmode)
4236 vmode = GET_MODE_2XWIDER_MODE (vmode);
4238 tree type = lang_hooks.types.type_for_mode (mode, 1);
4239 if (type == NULL_TREE || TYPE_MODE (type) != mode)
4240 continue;
4241 type = build_vector_type (type, GET_MODE_SIZE (vmode)
4242 / GET_MODE_SIZE (mode));
4243 if (TYPE_MODE (type) != vmode)
4244 continue;
4245 if (TYPE_ALIGN_UNIT (type) > al)
4246 al = TYPE_ALIGN_UNIT (type);
4248 return build_int_cst (integer_type_node, al);
4251 /* Return maximum possible vectorization factor for the target. */
4253 static int
4254 omp_max_vf (void)
4256 if (!optimize
4257 || optimize_debug
4258 || !flag_tree_loop_optimize
4259 || (!flag_tree_loop_vectorize
4260 && (global_options_set.x_flag_tree_loop_vectorize
4261 || global_options_set.x_flag_tree_vectorize)))
4262 return 1;
4264 int vs = targetm.vectorize.autovectorize_vector_sizes ();
4265 if (vs)
4267 vs = 1 << floor_log2 (vs);
4268 return vs;
4270 machine_mode vqimode = targetm.vectorize.preferred_simd_mode (QImode);
4271 if (GET_MODE_CLASS (vqimode) == MODE_VECTOR_INT)
4272 return GET_MODE_NUNITS (vqimode);
4273 return 1;
4276 /* Helper function of lower_rec_input_clauses, used for #pragma omp simd
4277 privatization. */
4279 static bool
4280 lower_rec_simd_input_clauses (tree new_var, omp_context *ctx, int &max_vf,
4281 tree &idx, tree &lane, tree &ivar, tree &lvar)
4283 if (max_vf == 0)
4285 max_vf = omp_max_vf ();
4286 if (max_vf > 1)
4288 tree c = find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
4289 OMP_CLAUSE_SAFELEN);
4290 if (c && TREE_CODE (OMP_CLAUSE_SAFELEN_EXPR (c)) != INTEGER_CST)
4291 max_vf = 1;
4292 else if (c && compare_tree_int (OMP_CLAUSE_SAFELEN_EXPR (c),
4293 max_vf) == -1)
4294 max_vf = tree_to_shwi (OMP_CLAUSE_SAFELEN_EXPR (c));
4296 if (max_vf > 1)
4298 idx = create_tmp_var (unsigned_type_node);
4299 lane = create_tmp_var (unsigned_type_node);
4302 if (max_vf == 1)
4303 return false;
4305 tree atype = build_array_type_nelts (TREE_TYPE (new_var), max_vf);
4306 tree avar = create_tmp_var_raw (atype);
4307 if (TREE_ADDRESSABLE (new_var))
4308 TREE_ADDRESSABLE (avar) = 1;
4309 DECL_ATTRIBUTES (avar)
4310 = tree_cons (get_identifier ("omp simd array"), NULL,
4311 DECL_ATTRIBUTES (avar));
4312 gimple_add_tmp_var (avar);
4313 ivar = build4 (ARRAY_REF, TREE_TYPE (new_var), avar, idx,
4314 NULL_TREE, NULL_TREE);
4315 lvar = build4 (ARRAY_REF, TREE_TYPE (new_var), avar, lane,
4316 NULL_TREE, NULL_TREE);
4317 if (DECL_P (new_var))
4319 SET_DECL_VALUE_EXPR (new_var, lvar);
4320 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
4322 return true;
4325 /* Helper function of lower_rec_input_clauses. For a reference
4326 in simd reduction, add an underlying variable it will reference. */
4328 static void
4329 handle_simd_reference (location_t loc, tree new_vard, gimple_seq *ilist)
4331 tree z = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_vard)));
4332 if (TREE_CONSTANT (z))
4334 z = create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_vard)),
4335 get_name (new_vard));
4336 gimple_add_tmp_var (z);
4337 TREE_ADDRESSABLE (z) = 1;
4338 z = build_fold_addr_expr_loc (loc, z);
4339 gimplify_assign (new_vard, z, ilist);
4343 /* Generate code to implement the input clauses, FIRSTPRIVATE and COPYIN,
4344 from the receiver (aka child) side and initializers for REFERENCE_TYPE
4345 private variables. Initialization statements go in ILIST, while calls
4346 to destructors go in DLIST. */
4348 static void
4349 lower_rec_input_clauses (tree clauses, gimple_seq *ilist, gimple_seq *dlist,
4350 omp_context *ctx, struct omp_for_data *fd)
4352 tree c, dtor, copyin_seq, x, ptr;
4353 bool copyin_by_ref = false;
4354 bool lastprivate_firstprivate = false;
4355 bool reduction_omp_orig_ref = false;
4356 int pass;
4357 bool is_simd = (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
4358 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD);
4359 int max_vf = 0;
4360 tree lane = NULL_TREE, idx = NULL_TREE;
4361 tree ivar = NULL_TREE, lvar = NULL_TREE;
4362 gimple_seq llist[2] = { NULL, NULL };
4364 copyin_seq = NULL;
4366 /* Set max_vf=1 (which will later enforce safelen=1) in simd loops
4367 with data sharing clauses referencing variable sized vars. That
4368 is unnecessarily hard to support and very unlikely to result in
4369 vectorized code anyway. */
4370 if (is_simd)
4371 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4372 switch (OMP_CLAUSE_CODE (c))
4374 case OMP_CLAUSE_LINEAR:
4375 if (OMP_CLAUSE_LINEAR_ARRAY (c))
4376 max_vf = 1;
4377 /* FALLTHRU */
4378 case OMP_CLAUSE_PRIVATE:
4379 case OMP_CLAUSE_FIRSTPRIVATE:
4380 case OMP_CLAUSE_LASTPRIVATE:
4381 if (is_variable_sized (OMP_CLAUSE_DECL (c)))
4382 max_vf = 1;
4383 break;
4384 case OMP_CLAUSE_REDUCTION:
4385 if (TREE_CODE (OMP_CLAUSE_DECL (c)) == MEM_REF
4386 || is_variable_sized (OMP_CLAUSE_DECL (c)))
4387 max_vf = 1;
4388 break;
4389 default:
4390 continue;
4393 /* Do all the fixed sized types in the first pass, and the variable sized
4394 types in the second pass. This makes sure that the scalar arguments to
4395 the variable sized types are processed before we use them in the
4396 variable sized operations. */
4397 for (pass = 0; pass < 2; ++pass)
4399 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4401 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
4402 tree var, new_var;
4403 bool by_ref;
4404 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
4406 switch (c_kind)
4408 case OMP_CLAUSE_PRIVATE:
4409 if (OMP_CLAUSE_PRIVATE_DEBUG (c))
4410 continue;
4411 break;
4412 case OMP_CLAUSE_SHARED:
4413 /* Ignore shared directives in teams construct. */
4414 if (gimple_code (ctx->stmt) == GIMPLE_OMP_TEAMS)
4415 continue;
4416 if (maybe_lookup_decl (OMP_CLAUSE_DECL (c), ctx) == NULL)
4418 gcc_assert (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c)
4419 || is_global_var (OMP_CLAUSE_DECL (c)));
4420 continue;
4422 case OMP_CLAUSE_FIRSTPRIVATE:
4423 case OMP_CLAUSE_COPYIN:
4424 break;
4425 case OMP_CLAUSE_LINEAR:
4426 if (!OMP_CLAUSE_LINEAR_NO_COPYIN (c)
4427 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (c))
4428 lastprivate_firstprivate = true;
4429 break;
4430 case OMP_CLAUSE_REDUCTION:
4431 if (OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c))
4432 reduction_omp_orig_ref = true;
4433 break;
4434 case OMP_CLAUSE__LOOPTEMP_:
4435 /* Handle _looptemp_ clauses only on parallel/task. */
4436 if (fd)
4437 continue;
4438 break;
4439 case OMP_CLAUSE_LASTPRIVATE:
4440 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c))
4442 lastprivate_firstprivate = true;
4443 if (pass != 0 || is_taskloop_ctx (ctx))
4444 continue;
4446 /* Even without corresponding firstprivate, if
4447 decl is Fortran allocatable, it needs outer var
4448 reference. */
4449 else if (pass == 0
4450 && lang_hooks.decls.omp_private_outer_ref
4451 (OMP_CLAUSE_DECL (c)))
4452 lastprivate_firstprivate = true;
4453 break;
4454 case OMP_CLAUSE_ALIGNED:
4455 if (pass == 0)
4456 continue;
4457 var = OMP_CLAUSE_DECL (c);
4458 if (TREE_CODE (TREE_TYPE (var)) == POINTER_TYPE
4459 && !is_global_var (var))
4461 new_var = maybe_lookup_decl (var, ctx);
4462 if (new_var == NULL_TREE)
4463 new_var = maybe_lookup_decl_in_outer_ctx (var, ctx);
4464 x = builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED);
4465 x = build_call_expr_loc (clause_loc, x, 2, new_var,
4466 omp_clause_aligned_alignment (c));
4467 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var), x);
4468 x = build2 (MODIFY_EXPR, TREE_TYPE (new_var), new_var, x);
4469 gimplify_and_add (x, ilist);
4471 else if (TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE
4472 && is_global_var (var))
4474 tree ptype = build_pointer_type (TREE_TYPE (var)), t, t2;
4475 new_var = lookup_decl (var, ctx);
4476 t = maybe_lookup_decl_in_outer_ctx (var, ctx);
4477 t = build_fold_addr_expr_loc (clause_loc, t);
4478 t2 = builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED);
4479 t = build_call_expr_loc (clause_loc, t2, 2, t,
4480 omp_clause_aligned_alignment (c));
4481 t = fold_convert_loc (clause_loc, ptype, t);
4482 x = create_tmp_var (ptype);
4483 t = build2 (MODIFY_EXPR, ptype, x, t);
4484 gimplify_and_add (t, ilist);
4485 t = build_simple_mem_ref_loc (clause_loc, x);
4486 SET_DECL_VALUE_EXPR (new_var, t);
4487 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
4489 continue;
4490 default:
4491 continue;
4494 new_var = var = OMP_CLAUSE_DECL (c);
4495 if (c_kind == OMP_CLAUSE_REDUCTION && TREE_CODE (var) == MEM_REF)
4497 var = TREE_OPERAND (var, 0);
4498 if (TREE_CODE (var) == POINTER_PLUS_EXPR)
4499 var = TREE_OPERAND (var, 0);
4500 if (TREE_CODE (var) == INDIRECT_REF
4501 || TREE_CODE (var) == ADDR_EXPR)
4502 var = TREE_OPERAND (var, 0);
4503 if (is_variable_sized (var))
4505 gcc_assert (DECL_HAS_VALUE_EXPR_P (var));
4506 var = DECL_VALUE_EXPR (var);
4507 gcc_assert (TREE_CODE (var) == INDIRECT_REF);
4508 var = TREE_OPERAND (var, 0);
4509 gcc_assert (DECL_P (var));
4511 new_var = var;
4513 if (c_kind != OMP_CLAUSE_COPYIN)
4514 new_var = lookup_decl (var, ctx);
4516 if (c_kind == OMP_CLAUSE_SHARED || c_kind == OMP_CLAUSE_COPYIN)
4518 if (pass != 0)
4519 continue;
4521 /* C/C++ array section reductions. */
4522 else if (c_kind == OMP_CLAUSE_REDUCTION
4523 && var != OMP_CLAUSE_DECL (c))
4525 if (pass == 0)
4526 continue;
4528 tree bias = TREE_OPERAND (OMP_CLAUSE_DECL (c), 1);
4529 tree orig_var = TREE_OPERAND (OMP_CLAUSE_DECL (c), 0);
4530 if (TREE_CODE (orig_var) == POINTER_PLUS_EXPR)
4532 tree b = TREE_OPERAND (orig_var, 1);
4533 b = maybe_lookup_decl (b, ctx);
4534 if (b == NULL)
4536 b = TREE_OPERAND (orig_var, 1);
4537 b = maybe_lookup_decl_in_outer_ctx (b, ctx);
4539 if (integer_zerop (bias))
4540 bias = b;
4541 else
4543 bias = fold_convert_loc (clause_loc,
4544 TREE_TYPE (b), bias);
4545 bias = fold_build2_loc (clause_loc, PLUS_EXPR,
4546 TREE_TYPE (b), b, bias);
4548 orig_var = TREE_OPERAND (orig_var, 0);
4550 if (TREE_CODE (orig_var) == INDIRECT_REF
4551 || TREE_CODE (orig_var) == ADDR_EXPR)
4552 orig_var = TREE_OPERAND (orig_var, 0);
4553 tree d = OMP_CLAUSE_DECL (c);
4554 tree type = TREE_TYPE (d);
4555 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
4556 tree v = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
4557 const char *name = get_name (orig_var);
4558 if (TREE_CONSTANT (v))
4560 x = create_tmp_var_raw (type, name);
4561 gimple_add_tmp_var (x);
4562 TREE_ADDRESSABLE (x) = 1;
4563 x = build_fold_addr_expr_loc (clause_loc, x);
4565 else
4567 tree atmp
4568 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
4569 tree t = maybe_lookup_decl (v, ctx);
4570 if (t)
4571 v = t;
4572 else
4573 v = maybe_lookup_decl_in_outer_ctx (v, ctx);
4574 gimplify_expr (&v, ilist, NULL, is_gimple_val, fb_rvalue);
4575 t = fold_build2_loc (clause_loc, PLUS_EXPR,
4576 TREE_TYPE (v), v,
4577 build_int_cst (TREE_TYPE (v), 1));
4578 t = fold_build2_loc (clause_loc, MULT_EXPR,
4579 TREE_TYPE (v), t,
4580 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4581 tree al = size_int (TYPE_ALIGN (TREE_TYPE (type)));
4582 x = build_call_expr_loc (clause_loc, atmp, 2, t, al);
4585 tree ptype = build_pointer_type (TREE_TYPE (type));
4586 x = fold_convert_loc (clause_loc, ptype, x);
4587 tree y = create_tmp_var (ptype, name);
4588 gimplify_assign (y, x, ilist);
4589 x = y;
4590 tree yb = y;
4592 if (!integer_zerop (bias))
4594 bias = fold_convert_loc (clause_loc, pointer_sized_int_node,
4595 bias);
4596 yb = fold_convert_loc (clause_loc, pointer_sized_int_node,
4598 yb = fold_build2_loc (clause_loc, MINUS_EXPR,
4599 pointer_sized_int_node, yb, bias);
4600 x = fold_convert_loc (clause_loc, TREE_TYPE (x), yb);
4601 yb = create_tmp_var (ptype, name);
4602 gimplify_assign (yb, x, ilist);
4603 x = yb;
4606 d = TREE_OPERAND (d, 0);
4607 if (TREE_CODE (d) == POINTER_PLUS_EXPR)
4608 d = TREE_OPERAND (d, 0);
4609 if (TREE_CODE (d) == ADDR_EXPR)
4611 if (orig_var != var)
4613 gcc_assert (is_variable_sized (orig_var));
4614 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var),
4616 gimplify_assign (new_var, x, ilist);
4617 tree new_orig_var = lookup_decl (orig_var, ctx);
4618 tree t = build_fold_indirect_ref (new_var);
4619 DECL_IGNORED_P (new_var) = 0;
4620 TREE_THIS_NOTRAP (t);
4621 SET_DECL_VALUE_EXPR (new_orig_var, t);
4622 DECL_HAS_VALUE_EXPR_P (new_orig_var) = 1;
4624 else
4626 x = build2 (MEM_REF, TREE_TYPE (new_var), x,
4627 build_int_cst (ptype, 0));
4628 SET_DECL_VALUE_EXPR (new_var, x);
4629 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
4632 else
4634 gcc_assert (orig_var == var);
4635 if (TREE_CODE (d) == INDIRECT_REF)
4637 x = create_tmp_var (ptype, name);
4638 TREE_ADDRESSABLE (x) = 1;
4639 gimplify_assign (x, yb, ilist);
4640 x = build_fold_addr_expr_loc (clause_loc, x);
4642 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var), x);
4643 gimplify_assign (new_var, x, ilist);
4645 tree y1 = create_tmp_var (ptype, NULL);
4646 gimplify_assign (y1, y, ilist);
4647 tree i2 = NULL_TREE, y2 = NULL_TREE;
4648 tree body2 = NULL_TREE, end2 = NULL_TREE;
4649 tree y3 = NULL_TREE, y4 = NULL_TREE;
4650 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) || is_simd)
4652 y2 = create_tmp_var (ptype, NULL);
4653 gimplify_assign (y2, y, ilist);
4654 tree ref = build_outer_var_ref (var, ctx);
4655 /* For ref build_outer_var_ref already performs this. */
4656 if (TREE_CODE (d) == INDIRECT_REF)
4657 gcc_assert (is_reference (var));
4658 else if (TREE_CODE (d) == ADDR_EXPR)
4659 ref = build_fold_addr_expr (ref);
4660 else if (is_reference (var))
4661 ref = build_fold_addr_expr (ref);
4662 ref = fold_convert_loc (clause_loc, ptype, ref);
4663 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c)
4664 && OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c))
4666 y3 = create_tmp_var (ptype, NULL);
4667 gimplify_assign (y3, unshare_expr (ref), ilist);
4669 if (is_simd)
4671 y4 = create_tmp_var (ptype, NULL);
4672 gimplify_assign (y4, ref, dlist);
4675 tree i = create_tmp_var (TREE_TYPE (v), NULL);
4676 gimplify_assign (i, build_int_cst (TREE_TYPE (v), 0), ilist);
4677 tree body = create_artificial_label (UNKNOWN_LOCATION);
4678 tree end = create_artificial_label (UNKNOWN_LOCATION);
4679 gimple_seq_add_stmt (ilist, gimple_build_label (body));
4680 if (y2)
4682 i2 = create_tmp_var (TREE_TYPE (v), NULL);
4683 gimplify_assign (i2, build_int_cst (TREE_TYPE (v), 0), dlist);
4684 body2 = create_artificial_label (UNKNOWN_LOCATION);
4685 end2 = create_artificial_label (UNKNOWN_LOCATION);
4686 gimple_seq_add_stmt (dlist, gimple_build_label (body2));
4688 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4690 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
4691 tree decl_placeholder
4692 = OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c);
4693 SET_DECL_VALUE_EXPR (decl_placeholder,
4694 build_simple_mem_ref (y1));
4695 DECL_HAS_VALUE_EXPR_P (decl_placeholder) = 1;
4696 SET_DECL_VALUE_EXPR (placeholder,
4697 y3 ? build_simple_mem_ref (y3)
4698 : error_mark_node);
4699 DECL_HAS_VALUE_EXPR_P (placeholder) = 1;
4700 x = lang_hooks.decls.omp_clause_default_ctor
4701 (c, build_simple_mem_ref (y1),
4702 y3 ? build_simple_mem_ref (y3) : NULL_TREE);
4703 if (x)
4704 gimplify_and_add (x, ilist);
4705 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c))
4707 gimple_seq tseq = OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c);
4708 lower_omp (&tseq, ctx);
4709 gimple_seq_add_seq (ilist, tseq);
4711 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
4712 if (is_simd)
4714 SET_DECL_VALUE_EXPR (decl_placeholder,
4715 build_simple_mem_ref (y2));
4716 SET_DECL_VALUE_EXPR (placeholder,
4717 build_simple_mem_ref (y4));
4718 gimple_seq tseq = OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c);
4719 lower_omp (&tseq, ctx);
4720 gimple_seq_add_seq (dlist, tseq);
4721 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
4723 DECL_HAS_VALUE_EXPR_P (placeholder) = 0;
4724 DECL_HAS_VALUE_EXPR_P (decl_placeholder) = 0;
4725 x = lang_hooks.decls.omp_clause_dtor
4726 (c, build_simple_mem_ref (y2));
4727 if (x)
4729 gimple_seq tseq = NULL;
4730 dtor = x;
4731 gimplify_stmt (&dtor, &tseq);
4732 gimple_seq_add_seq (dlist, tseq);
4735 else
4737 x = omp_reduction_init (c, TREE_TYPE (type));
4738 enum tree_code code = OMP_CLAUSE_REDUCTION_CODE (c);
4740 /* reduction(-:var) sums up the partial results, so it
4741 acts identically to reduction(+:var). */
4742 if (code == MINUS_EXPR)
4743 code = PLUS_EXPR;
4745 gimplify_assign (build_simple_mem_ref (y1), x, ilist);
4746 if (is_simd)
4748 x = build2 (code, TREE_TYPE (type),
4749 build_simple_mem_ref (y4),
4750 build_simple_mem_ref (y2));
4751 gimplify_assign (build_simple_mem_ref (y4), x, dlist);
4754 gimple *g
4755 = gimple_build_assign (y1, POINTER_PLUS_EXPR, y1,
4756 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4757 gimple_seq_add_stmt (ilist, g);
4758 if (y3)
4760 g = gimple_build_assign (y3, POINTER_PLUS_EXPR, y3,
4761 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4762 gimple_seq_add_stmt (ilist, g);
4764 g = gimple_build_assign (i, PLUS_EXPR, i,
4765 build_int_cst (TREE_TYPE (i), 1));
4766 gimple_seq_add_stmt (ilist, g);
4767 g = gimple_build_cond (LE_EXPR, i, v, body, end);
4768 gimple_seq_add_stmt (ilist, g);
4769 gimple_seq_add_stmt (ilist, gimple_build_label (end));
4770 if (y2)
4772 g = gimple_build_assign (y2, POINTER_PLUS_EXPR, y2,
4773 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4774 gimple_seq_add_stmt (dlist, g);
4775 if (y4)
4777 g = gimple_build_assign
4778 (y4, POINTER_PLUS_EXPR, y4,
4779 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4780 gimple_seq_add_stmt (dlist, g);
4782 g = gimple_build_assign (i2, PLUS_EXPR, i2,
4783 build_int_cst (TREE_TYPE (i2), 1));
4784 gimple_seq_add_stmt (dlist, g);
4785 g = gimple_build_cond (LE_EXPR, i2, v, body2, end2);
4786 gimple_seq_add_stmt (dlist, g);
4787 gimple_seq_add_stmt (dlist, gimple_build_label (end2));
4789 continue;
4791 else if (is_variable_sized (var))
4793 /* For variable sized types, we need to allocate the
4794 actual storage here. Call alloca and store the
4795 result in the pointer decl that we created elsewhere. */
4796 if (pass == 0)
4797 continue;
4799 if (c_kind != OMP_CLAUSE_FIRSTPRIVATE || !is_task_ctx (ctx))
4801 gcall *stmt;
4802 tree tmp, atmp;
4804 ptr = DECL_VALUE_EXPR (new_var);
4805 gcc_assert (TREE_CODE (ptr) == INDIRECT_REF);
4806 ptr = TREE_OPERAND (ptr, 0);
4807 gcc_assert (DECL_P (ptr));
4808 x = TYPE_SIZE_UNIT (TREE_TYPE (new_var));
4810 /* void *tmp = __builtin_alloca */
4811 atmp = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
4812 stmt = gimple_build_call (atmp, 2, x,
4813 size_int (DECL_ALIGN (var)));
4814 tmp = create_tmp_var_raw (ptr_type_node);
4815 gimple_add_tmp_var (tmp);
4816 gimple_call_set_lhs (stmt, tmp);
4818 gimple_seq_add_stmt (ilist, stmt);
4820 x = fold_convert_loc (clause_loc, TREE_TYPE (ptr), tmp);
4821 gimplify_assign (ptr, x, ilist);
4824 else if (is_reference (var) && !is_oacc_parallel (ctx))
4826 /* For references that are being privatized for Fortran,
4827 allocate new backing storage for the new pointer
4828 variable. This allows us to avoid changing all the
4829 code that expects a pointer to something that expects
4830 a direct variable. */
4831 if (pass == 0)
4832 continue;
4834 x = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_var)));
4835 if (c_kind == OMP_CLAUSE_FIRSTPRIVATE && is_task_ctx (ctx))
4837 x = build_receiver_ref (var, false, ctx);
4838 x = build_fold_addr_expr_loc (clause_loc, x);
4840 else if (TREE_CONSTANT (x))
4842 /* For reduction in SIMD loop, defer adding the
4843 initialization of the reference, because if we decide
4844 to use SIMD array for it, the initilization could cause
4845 expansion ICE. */
4846 if (c_kind == OMP_CLAUSE_REDUCTION && is_simd)
4847 x = NULL_TREE;
4848 else
4850 x = create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_var)),
4851 get_name (var));
4852 gimple_add_tmp_var (x);
4853 TREE_ADDRESSABLE (x) = 1;
4854 x = build_fold_addr_expr_loc (clause_loc, x);
4857 else
4859 tree atmp
4860 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
4861 tree rtype = TREE_TYPE (TREE_TYPE (new_var));
4862 tree al = size_int (TYPE_ALIGN (rtype));
4863 x = build_call_expr_loc (clause_loc, atmp, 2, x, al);
4866 if (x)
4868 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var), x);
4869 gimplify_assign (new_var, x, ilist);
4872 new_var = build_simple_mem_ref_loc (clause_loc, new_var);
4874 else if (c_kind == OMP_CLAUSE_REDUCTION
4875 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4877 if (pass == 0)
4878 continue;
4880 else if (pass != 0)
4881 continue;
4883 switch (OMP_CLAUSE_CODE (c))
4885 case OMP_CLAUSE_SHARED:
4886 /* Ignore shared directives in teams construct. */
4887 if (gimple_code (ctx->stmt) == GIMPLE_OMP_TEAMS)
4888 continue;
4889 /* Shared global vars are just accessed directly. */
4890 if (is_global_var (new_var))
4891 break;
4892 /* For taskloop firstprivate/lastprivate, represented
4893 as firstprivate and shared clause on the task, new_var
4894 is the firstprivate var. */
4895 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
4896 break;
4897 /* Set up the DECL_VALUE_EXPR for shared variables now. This
4898 needs to be delayed until after fixup_child_record_type so
4899 that we get the correct type during the dereference. */
4900 by_ref = use_pointer_for_field (var, ctx);
4901 x = build_receiver_ref (var, by_ref, ctx);
4902 SET_DECL_VALUE_EXPR (new_var, x);
4903 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
4905 /* ??? If VAR is not passed by reference, and the variable
4906 hasn't been initialized yet, then we'll get a warning for
4907 the store into the omp_data_s structure. Ideally, we'd be
4908 able to notice this and not store anything at all, but
4909 we're generating code too early. Suppress the warning. */
4910 if (!by_ref)
4911 TREE_NO_WARNING (var) = 1;
4912 break;
4914 case OMP_CLAUSE_LASTPRIVATE:
4915 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c))
4916 break;
4917 /* FALLTHRU */
4919 case OMP_CLAUSE_PRIVATE:
4920 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_PRIVATE)
4921 x = build_outer_var_ref (var, ctx);
4922 else if (OMP_CLAUSE_PRIVATE_OUTER_REF (c))
4924 if (is_task_ctx (ctx))
4925 x = build_receiver_ref (var, false, ctx);
4926 else
4927 x = build_outer_var_ref (var, ctx);
4929 else
4930 x = NULL;
4931 do_private:
4932 tree nx;
4933 nx = lang_hooks.decls.omp_clause_default_ctor
4934 (c, unshare_expr (new_var), x);
4935 if (is_simd)
4937 tree y = lang_hooks.decls.omp_clause_dtor (c, new_var);
4938 if ((TREE_ADDRESSABLE (new_var) || nx || y
4939 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
4940 && lower_rec_simd_input_clauses (new_var, ctx, max_vf,
4941 idx, lane, ivar, lvar))
4943 if (nx)
4944 x = lang_hooks.decls.omp_clause_default_ctor
4945 (c, unshare_expr (ivar), x);
4946 if (nx && x)
4947 gimplify_and_add (x, &llist[0]);
4948 if (y)
4950 y = lang_hooks.decls.omp_clause_dtor (c, ivar);
4951 if (y)
4953 gimple_seq tseq = NULL;
4955 dtor = y;
4956 gimplify_stmt (&dtor, &tseq);
4957 gimple_seq_add_seq (&llist[1], tseq);
4960 break;
4963 if (nx)
4964 gimplify_and_add (nx, ilist);
4965 /* FALLTHRU */
4967 do_dtor:
4968 x = lang_hooks.decls.omp_clause_dtor (c, new_var);
4969 if (x)
4971 gimple_seq tseq = NULL;
4973 dtor = x;
4974 gimplify_stmt (&dtor, &tseq);
4975 gimple_seq_add_seq (dlist, tseq);
4977 break;
4979 case OMP_CLAUSE_LINEAR:
4980 if (!OMP_CLAUSE_LINEAR_NO_COPYIN (c))
4981 goto do_firstprivate;
4982 if (OMP_CLAUSE_LINEAR_NO_COPYOUT (c))
4983 x = NULL;
4984 else
4985 x = build_outer_var_ref (var, ctx);
4986 goto do_private;
4988 case OMP_CLAUSE_FIRSTPRIVATE:
4989 if (is_task_ctx (ctx))
4991 if (is_reference (var) || is_variable_sized (var))
4992 goto do_dtor;
4993 else if (is_global_var (maybe_lookup_decl_in_outer_ctx (var,
4994 ctx))
4995 || use_pointer_for_field (var, NULL))
4997 x = build_receiver_ref (var, false, ctx);
4998 SET_DECL_VALUE_EXPR (new_var, x);
4999 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
5000 goto do_dtor;
5003 do_firstprivate:
5004 x = build_outer_var_ref (var, ctx);
5005 if (is_simd)
5007 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
5008 && gimple_omp_for_combined_into_p (ctx->stmt))
5010 tree t = OMP_CLAUSE_LINEAR_STEP (c);
5011 tree stept = TREE_TYPE (t);
5012 tree ct = find_omp_clause (clauses,
5013 OMP_CLAUSE__LOOPTEMP_);
5014 gcc_assert (ct);
5015 tree l = OMP_CLAUSE_DECL (ct);
5016 tree n1 = fd->loop.n1;
5017 tree step = fd->loop.step;
5018 tree itype = TREE_TYPE (l);
5019 if (POINTER_TYPE_P (itype))
5020 itype = signed_type_for (itype);
5021 l = fold_build2 (MINUS_EXPR, itype, l, n1);
5022 if (TYPE_UNSIGNED (itype)
5023 && fd->loop.cond_code == GT_EXPR)
5024 l = fold_build2 (TRUNC_DIV_EXPR, itype,
5025 fold_build1 (NEGATE_EXPR, itype, l),
5026 fold_build1 (NEGATE_EXPR,
5027 itype, step));
5028 else
5029 l = fold_build2 (TRUNC_DIV_EXPR, itype, l, step);
5030 t = fold_build2 (MULT_EXPR, stept,
5031 fold_convert (stept, l), t);
5033 if (OMP_CLAUSE_LINEAR_ARRAY (c))
5035 x = lang_hooks.decls.omp_clause_linear_ctor
5036 (c, new_var, x, t);
5037 gimplify_and_add (x, ilist);
5038 goto do_dtor;
5041 if (POINTER_TYPE_P (TREE_TYPE (x)))
5042 x = fold_build2 (POINTER_PLUS_EXPR,
5043 TREE_TYPE (x), x, t);
5044 else
5045 x = fold_build2 (PLUS_EXPR, TREE_TYPE (x), x, t);
5048 if ((OMP_CLAUSE_CODE (c) != OMP_CLAUSE_LINEAR
5049 || TREE_ADDRESSABLE (new_var))
5050 && lower_rec_simd_input_clauses (new_var, ctx, max_vf,
5051 idx, lane, ivar, lvar))
5053 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR)
5055 tree iv = create_tmp_var (TREE_TYPE (new_var));
5056 x = lang_hooks.decls.omp_clause_copy_ctor (c, iv, x);
5057 gimplify_and_add (x, ilist);
5058 gimple_stmt_iterator gsi
5059 = gsi_start_1 (gimple_omp_body_ptr (ctx->stmt));
5060 gassign *g
5061 = gimple_build_assign (unshare_expr (lvar), iv);
5062 gsi_insert_before_without_update (&gsi, g,
5063 GSI_SAME_STMT);
5064 tree t = OMP_CLAUSE_LINEAR_STEP (c);
5065 enum tree_code code = PLUS_EXPR;
5066 if (POINTER_TYPE_P (TREE_TYPE (new_var)))
5067 code = POINTER_PLUS_EXPR;
5068 g = gimple_build_assign (iv, code, iv, t);
5069 gsi_insert_before_without_update (&gsi, g,
5070 GSI_SAME_STMT);
5071 break;
5073 x = lang_hooks.decls.omp_clause_copy_ctor
5074 (c, unshare_expr (ivar), x);
5075 gimplify_and_add (x, &llist[0]);
5076 x = lang_hooks.decls.omp_clause_dtor (c, ivar);
5077 if (x)
5079 gimple_seq tseq = NULL;
5081 dtor = x;
5082 gimplify_stmt (&dtor, &tseq);
5083 gimple_seq_add_seq (&llist[1], tseq);
5085 break;
5088 x = lang_hooks.decls.omp_clause_copy_ctor
5089 (c, unshare_expr (new_var), x);
5090 gimplify_and_add (x, ilist);
5091 goto do_dtor;
5093 case OMP_CLAUSE__LOOPTEMP_:
5094 gcc_assert (is_taskreg_ctx (ctx));
5095 x = build_outer_var_ref (var, ctx);
5096 x = build2 (MODIFY_EXPR, TREE_TYPE (new_var), new_var, x);
5097 gimplify_and_add (x, ilist);
5098 break;
5100 case OMP_CLAUSE_COPYIN:
5101 by_ref = use_pointer_for_field (var, NULL);
5102 x = build_receiver_ref (var, by_ref, ctx);
5103 x = lang_hooks.decls.omp_clause_assign_op (c, new_var, x);
5104 append_to_statement_list (x, &copyin_seq);
5105 copyin_by_ref |= by_ref;
5106 break;
5108 case OMP_CLAUSE_REDUCTION:
5109 /* OpenACC reductions are initialized using the
5110 GOACC_REDUCTION internal function. */
5111 if (is_gimple_omp_oacc (ctx->stmt))
5112 break;
5113 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5115 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5116 gimple *tseq;
5117 x = build_outer_var_ref (var, ctx);
5119 if (is_reference (var)
5120 && !useless_type_conversion_p (TREE_TYPE (placeholder),
5121 TREE_TYPE (x)))
5122 x = build_fold_addr_expr_loc (clause_loc, x);
5123 SET_DECL_VALUE_EXPR (placeholder, x);
5124 DECL_HAS_VALUE_EXPR_P (placeholder) = 1;
5125 tree new_vard = new_var;
5126 if (is_reference (var))
5128 gcc_assert (TREE_CODE (new_var) == MEM_REF);
5129 new_vard = TREE_OPERAND (new_var, 0);
5130 gcc_assert (DECL_P (new_vard));
5132 if (is_simd
5133 && lower_rec_simd_input_clauses (new_var, ctx, max_vf,
5134 idx, lane, ivar, lvar))
5136 if (new_vard == new_var)
5138 gcc_assert (DECL_VALUE_EXPR (new_var) == lvar);
5139 SET_DECL_VALUE_EXPR (new_var, ivar);
5141 else
5143 SET_DECL_VALUE_EXPR (new_vard,
5144 build_fold_addr_expr (ivar));
5145 DECL_HAS_VALUE_EXPR_P (new_vard) = 1;
5147 x = lang_hooks.decls.omp_clause_default_ctor
5148 (c, unshare_expr (ivar),
5149 build_outer_var_ref (var, ctx));
5150 if (x)
5151 gimplify_and_add (x, &llist[0]);
5152 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c))
5154 tseq = OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c);
5155 lower_omp (&tseq, ctx);
5156 gimple_seq_add_seq (&llist[0], tseq);
5158 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
5159 tseq = OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c);
5160 lower_omp (&tseq, ctx);
5161 gimple_seq_add_seq (&llist[1], tseq);
5162 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
5163 DECL_HAS_VALUE_EXPR_P (placeholder) = 0;
5164 if (new_vard == new_var)
5165 SET_DECL_VALUE_EXPR (new_var, lvar);
5166 else
5167 SET_DECL_VALUE_EXPR (new_vard,
5168 build_fold_addr_expr (lvar));
5169 x = lang_hooks.decls.omp_clause_dtor (c, ivar);
5170 if (x)
5172 tseq = NULL;
5173 dtor = x;
5174 gimplify_stmt (&dtor, &tseq);
5175 gimple_seq_add_seq (&llist[1], tseq);
5177 break;
5179 /* If this is a reference to constant size reduction var
5180 with placeholder, we haven't emitted the initializer
5181 for it because it is undesirable if SIMD arrays are used.
5182 But if they aren't used, we need to emit the deferred
5183 initialization now. */
5184 else if (is_reference (var) && is_simd)
5185 handle_simd_reference (clause_loc, new_vard, ilist);
5186 x = lang_hooks.decls.omp_clause_default_ctor
5187 (c, unshare_expr (new_var),
5188 build_outer_var_ref (var, ctx));
5189 if (x)
5190 gimplify_and_add (x, ilist);
5191 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c))
5193 tseq = OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c);
5194 lower_omp (&tseq, ctx);
5195 gimple_seq_add_seq (ilist, tseq);
5197 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
5198 if (is_simd)
5200 tseq = OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c);
5201 lower_omp (&tseq, ctx);
5202 gimple_seq_add_seq (dlist, tseq);
5203 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
5205 DECL_HAS_VALUE_EXPR_P (placeholder) = 0;
5206 goto do_dtor;
5208 else
5210 x = omp_reduction_init (c, TREE_TYPE (new_var));
5211 gcc_assert (TREE_CODE (TREE_TYPE (new_var)) != ARRAY_TYPE);
5212 enum tree_code code = OMP_CLAUSE_REDUCTION_CODE (c);
5214 /* reduction(-:var) sums up the partial results, so it
5215 acts identically to reduction(+:var). */
5216 if (code == MINUS_EXPR)
5217 code = PLUS_EXPR;
5219 tree new_vard = new_var;
5220 if (is_simd && is_reference (var))
5222 gcc_assert (TREE_CODE (new_var) == MEM_REF);
5223 new_vard = TREE_OPERAND (new_var, 0);
5224 gcc_assert (DECL_P (new_vard));
5226 if (is_simd
5227 && lower_rec_simd_input_clauses (new_var, ctx, max_vf,
5228 idx, lane, ivar, lvar))
5230 tree ref = build_outer_var_ref (var, ctx);
5232 gimplify_assign (unshare_expr (ivar), x, &llist[0]);
5234 x = build2 (code, TREE_TYPE (ref), ref, ivar);
5235 ref = build_outer_var_ref (var, ctx);
5236 gimplify_assign (ref, x, &llist[1]);
5238 if (new_vard != new_var)
5240 SET_DECL_VALUE_EXPR (new_vard,
5241 build_fold_addr_expr (lvar));
5242 DECL_HAS_VALUE_EXPR_P (new_vard) = 1;
5245 else
5247 if (is_reference (var) && is_simd)
5248 handle_simd_reference (clause_loc, new_vard, ilist);
5249 gimplify_assign (new_var, x, ilist);
5250 if (is_simd)
5252 tree ref = build_outer_var_ref (var, ctx);
5254 x = build2 (code, TREE_TYPE (ref), ref, new_var);
5255 ref = build_outer_var_ref (var, ctx);
5256 gimplify_assign (ref, x, dlist);
5260 break;
5262 default:
5263 gcc_unreachable ();
5268 if (lane)
5270 tree uid = create_tmp_var (ptr_type_node, "simduid");
5271 /* Don't want uninit warnings on simduid, it is always uninitialized,
5272 but we use it not for the value, but for the DECL_UID only. */
5273 TREE_NO_WARNING (uid) = 1;
5274 gimple *g
5275 = gimple_build_call_internal (IFN_GOMP_SIMD_LANE, 1, uid);
5276 gimple_call_set_lhs (g, lane);
5277 gimple_stmt_iterator gsi = gsi_start_1 (gimple_omp_body_ptr (ctx->stmt));
5278 gsi_insert_before_without_update (&gsi, g, GSI_SAME_STMT);
5279 c = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE__SIMDUID_);
5280 OMP_CLAUSE__SIMDUID__DECL (c) = uid;
5281 OMP_CLAUSE_CHAIN (c) = gimple_omp_for_clauses (ctx->stmt);
5282 gimple_omp_for_set_clauses (ctx->stmt, c);
5283 g = gimple_build_assign (lane, INTEGER_CST,
5284 build_int_cst (unsigned_type_node, 0));
5285 gimple_seq_add_stmt (ilist, g);
5286 for (int i = 0; i < 2; i++)
5287 if (llist[i])
5289 tree vf = create_tmp_var (unsigned_type_node);
5290 g = gimple_build_call_internal (IFN_GOMP_SIMD_VF, 1, uid);
5291 gimple_call_set_lhs (g, vf);
5292 gimple_seq *seq = i == 0 ? ilist : dlist;
5293 gimple_seq_add_stmt (seq, g);
5294 tree t = build_int_cst (unsigned_type_node, 0);
5295 g = gimple_build_assign (idx, INTEGER_CST, t);
5296 gimple_seq_add_stmt (seq, g);
5297 tree body = create_artificial_label (UNKNOWN_LOCATION);
5298 tree header = create_artificial_label (UNKNOWN_LOCATION);
5299 tree end = create_artificial_label (UNKNOWN_LOCATION);
5300 gimple_seq_add_stmt (seq, gimple_build_goto (header));
5301 gimple_seq_add_stmt (seq, gimple_build_label (body));
5302 gimple_seq_add_seq (seq, llist[i]);
5303 t = build_int_cst (unsigned_type_node, 1);
5304 g = gimple_build_assign (idx, PLUS_EXPR, idx, t);
5305 gimple_seq_add_stmt (seq, g);
5306 gimple_seq_add_stmt (seq, gimple_build_label (header));
5307 g = gimple_build_cond (LT_EXPR, idx, vf, body, end);
5308 gimple_seq_add_stmt (seq, g);
5309 gimple_seq_add_stmt (seq, gimple_build_label (end));
5313 /* The copyin sequence is not to be executed by the main thread, since
5314 that would result in self-copies. Perhaps not visible to scalars,
5315 but it certainly is to C++ operator=. */
5316 if (copyin_seq)
5318 x = build_call_expr (builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM),
5320 x = build2 (NE_EXPR, boolean_type_node, x,
5321 build_int_cst (TREE_TYPE (x), 0));
5322 x = build3 (COND_EXPR, void_type_node, x, copyin_seq, NULL);
5323 gimplify_and_add (x, ilist);
5326 /* If any copyin variable is passed by reference, we must ensure the
5327 master thread doesn't modify it before it is copied over in all
5328 threads. Similarly for variables in both firstprivate and
5329 lastprivate clauses we need to ensure the lastprivate copying
5330 happens after firstprivate copying in all threads. And similarly
5331 for UDRs if initializer expression refers to omp_orig. */
5332 if (copyin_by_ref || lastprivate_firstprivate || reduction_omp_orig_ref)
5334 /* Don't add any barrier for #pragma omp simd or
5335 #pragma omp distribute. */
5336 if (gimple_code (ctx->stmt) != GIMPLE_OMP_FOR
5337 || gimple_omp_for_kind (ctx->stmt) == GF_OMP_FOR_KIND_FOR)
5338 gimple_seq_add_stmt (ilist, build_omp_barrier (NULL_TREE));
5341 /* If max_vf is non-zero, then we can use only a vectorization factor
5342 up to the max_vf we chose. So stick it into the safelen clause. */
5343 if (max_vf)
5345 tree c = find_omp_clause (gimple_omp_for_clauses (ctx->stmt),
5346 OMP_CLAUSE_SAFELEN);
5347 if (c == NULL_TREE
5348 || (TREE_CODE (OMP_CLAUSE_SAFELEN_EXPR (c)) == INTEGER_CST
5349 && compare_tree_int (OMP_CLAUSE_SAFELEN_EXPR (c),
5350 max_vf) == 1))
5352 c = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE_SAFELEN);
5353 OMP_CLAUSE_SAFELEN_EXPR (c) = build_int_cst (integer_type_node,
5354 max_vf);
5355 OMP_CLAUSE_CHAIN (c) = gimple_omp_for_clauses (ctx->stmt);
5356 gimple_omp_for_set_clauses (ctx->stmt, c);
5362 /* Generate code to implement the LASTPRIVATE clauses. This is used for
5363 both parallel and workshare constructs. PREDICATE may be NULL if it's
5364 always true. */
5366 static void
5367 lower_lastprivate_clauses (tree clauses, tree predicate, gimple_seq *stmt_list,
5368 omp_context *ctx)
5370 tree x, c, label = NULL, orig_clauses = clauses;
5371 bool par_clauses = false;
5372 tree simduid = NULL, lastlane = NULL;
5374 /* Early exit if there are no lastprivate or linear clauses. */
5375 for (; clauses ; clauses = OMP_CLAUSE_CHAIN (clauses))
5376 if (OMP_CLAUSE_CODE (clauses) == OMP_CLAUSE_LASTPRIVATE
5377 || (OMP_CLAUSE_CODE (clauses) == OMP_CLAUSE_LINEAR
5378 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (clauses)))
5379 break;
5380 if (clauses == NULL)
5382 /* If this was a workshare clause, see if it had been combined
5383 with its parallel. In that case, look for the clauses on the
5384 parallel statement itself. */
5385 if (is_parallel_ctx (ctx))
5386 return;
5388 ctx = ctx->outer;
5389 if (ctx == NULL || !is_parallel_ctx (ctx))
5390 return;
5392 clauses = find_omp_clause (gimple_omp_parallel_clauses (ctx->stmt),
5393 OMP_CLAUSE_LASTPRIVATE);
5394 if (clauses == NULL)
5395 return;
5396 par_clauses = true;
5399 if (predicate)
5401 gcond *stmt;
5402 tree label_true, arm1, arm2;
5404 label = create_artificial_label (UNKNOWN_LOCATION);
5405 label_true = create_artificial_label (UNKNOWN_LOCATION);
5406 arm1 = TREE_OPERAND (predicate, 0);
5407 arm2 = TREE_OPERAND (predicate, 1);
5408 gimplify_expr (&arm1, stmt_list, NULL, is_gimple_val, fb_rvalue);
5409 gimplify_expr (&arm2, stmt_list, NULL, is_gimple_val, fb_rvalue);
5410 stmt = gimple_build_cond (TREE_CODE (predicate), arm1, arm2,
5411 label_true, label);
5412 gimple_seq_add_stmt (stmt_list, stmt);
5413 gimple_seq_add_stmt (stmt_list, gimple_build_label (label_true));
5416 if (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
5417 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD)
5419 simduid = find_omp_clause (orig_clauses, OMP_CLAUSE__SIMDUID_);
5420 if (simduid)
5421 simduid = OMP_CLAUSE__SIMDUID__DECL (simduid);
5424 for (c = clauses; c ;)
5426 tree var, new_var;
5427 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
5429 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5430 || (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
5431 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (c)))
5433 var = OMP_CLAUSE_DECL (c);
5434 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5435 && OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
5436 && is_taskloop_ctx (ctx))
5438 gcc_checking_assert (ctx->outer && is_task_ctx (ctx->outer));
5439 new_var = lookup_decl (var, ctx->outer);
5441 else
5442 new_var = lookup_decl (var, ctx);
5444 if (simduid && DECL_HAS_VALUE_EXPR_P (new_var))
5446 tree val = DECL_VALUE_EXPR (new_var);
5447 if (TREE_CODE (val) == ARRAY_REF
5448 && VAR_P (TREE_OPERAND (val, 0))
5449 && lookup_attribute ("omp simd array",
5450 DECL_ATTRIBUTES (TREE_OPERAND (val,
5451 0))))
5453 if (lastlane == NULL)
5455 lastlane = create_tmp_var (unsigned_type_node);
5456 gcall *g
5457 = gimple_build_call_internal (IFN_GOMP_SIMD_LAST_LANE,
5458 2, simduid,
5459 TREE_OPERAND (val, 1));
5460 gimple_call_set_lhs (g, lastlane);
5461 gimple_seq_add_stmt (stmt_list, g);
5463 new_var = build4 (ARRAY_REF, TREE_TYPE (val),
5464 TREE_OPERAND (val, 0), lastlane,
5465 NULL_TREE, NULL_TREE);
5469 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5470 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c))
5472 lower_omp (&OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c), ctx);
5473 gimple_seq_add_seq (stmt_list,
5474 OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
5475 OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) = NULL;
5477 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
5478 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c))
5480 lower_omp (&OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c), ctx);
5481 gimple_seq_add_seq (stmt_list,
5482 OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c));
5483 OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c) = NULL;
5486 x = NULL_TREE;
5487 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5488 && OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV (c))
5490 gcc_checking_assert (is_taskloop_ctx (ctx));
5491 tree ovar = maybe_lookup_decl_in_outer_ctx (var,
5492 ctx->outer->outer);
5493 if (is_global_var (ovar))
5494 x = ovar;
5496 if (!x)
5497 x = build_outer_var_ref (var, ctx, true);
5498 if (is_reference (var))
5499 new_var = build_simple_mem_ref_loc (clause_loc, new_var);
5500 x = lang_hooks.decls.omp_clause_assign_op (c, x, new_var);
5501 gimplify_and_add (x, stmt_list);
5503 c = OMP_CLAUSE_CHAIN (c);
5504 if (c == NULL && !par_clauses)
5506 /* If this was a workshare clause, see if it had been combined
5507 with its parallel. In that case, continue looking for the
5508 clauses also on the parallel statement itself. */
5509 if (is_parallel_ctx (ctx))
5510 break;
5512 ctx = ctx->outer;
5513 if (ctx == NULL || !is_parallel_ctx (ctx))
5514 break;
5516 c = find_omp_clause (gimple_omp_parallel_clauses (ctx->stmt),
5517 OMP_CLAUSE_LASTPRIVATE);
5518 par_clauses = true;
5522 if (label)
5523 gimple_seq_add_stmt (stmt_list, gimple_build_label (label));
5526 /* Lower the OpenACC reductions of CLAUSES for compute axis LEVEL
5527 (which might be a placeholder). INNER is true if this is an inner
5528 axis of a multi-axis loop. FORK and JOIN are (optional) fork and
5529 join markers. Generate the before-loop forking sequence in
5530 FORK_SEQ and the after-loop joining sequence to JOIN_SEQ. The
5531 general form of these sequences is
5533 GOACC_REDUCTION_SETUP
5534 GOACC_FORK
5535 GOACC_REDUCTION_INIT
5537 GOACC_REDUCTION_FINI
5538 GOACC_JOIN
5539 GOACC_REDUCTION_TEARDOWN. */
5541 static void
5542 lower_oacc_reductions (location_t loc, tree clauses, tree level, bool inner,
5543 gcall *fork, gcall *join, gimple_seq *fork_seq,
5544 gimple_seq *join_seq, omp_context *ctx)
5546 gimple_seq before_fork = NULL;
5547 gimple_seq after_fork = NULL;
5548 gimple_seq before_join = NULL;
5549 gimple_seq after_join = NULL;
5550 tree init_code = NULL_TREE, fini_code = NULL_TREE,
5551 setup_code = NULL_TREE, teardown_code = NULL_TREE;
5552 unsigned offset = 0;
5554 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
5555 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION)
5557 tree orig = OMP_CLAUSE_DECL (c);
5558 tree var = maybe_lookup_decl (orig, ctx);
5559 tree ref_to_res = NULL_TREE;
5560 tree incoming, outgoing;
5562 enum tree_code rcode = OMP_CLAUSE_REDUCTION_CODE (c);
5563 if (rcode == MINUS_EXPR)
5564 rcode = PLUS_EXPR;
5565 else if (rcode == TRUTH_ANDIF_EXPR)
5566 rcode = BIT_AND_EXPR;
5567 else if (rcode == TRUTH_ORIF_EXPR)
5568 rcode = BIT_IOR_EXPR;
5569 tree op = build_int_cst (unsigned_type_node, rcode);
5571 if (!var)
5572 var = orig;
5573 gcc_assert (!is_reference (var));
5575 incoming = outgoing = var;
5577 if (!inner)
5579 /* See if an outer construct also reduces this variable. */
5580 omp_context *outer = ctx;
5582 while (omp_context *probe = outer->outer)
5584 enum gimple_code type = gimple_code (probe->stmt);
5585 tree cls;
5587 switch (type)
5589 case GIMPLE_OMP_FOR:
5590 cls = gimple_omp_for_clauses (probe->stmt);
5591 break;
5593 case GIMPLE_OMP_TARGET:
5594 if (gimple_omp_target_kind (probe->stmt)
5595 != GF_OMP_TARGET_KIND_OACC_PARALLEL)
5596 goto do_lookup;
5598 cls = gimple_omp_target_clauses (probe->stmt);
5599 break;
5601 default:
5602 goto do_lookup;
5605 outer = probe;
5606 for (; cls; cls = OMP_CLAUSE_CHAIN (cls))
5607 if (OMP_CLAUSE_CODE (cls) == OMP_CLAUSE_REDUCTION
5608 && orig == OMP_CLAUSE_DECL (cls))
5609 goto has_outer_reduction;
5612 do_lookup:
5613 /* This is the outermost construct with this reduction,
5614 see if there's a mapping for it. */
5615 if (gimple_code (outer->stmt) == GIMPLE_OMP_TARGET
5616 && maybe_lookup_field (orig, outer))
5618 ref_to_res = build_receiver_ref (orig, false, outer);
5619 if (is_reference (orig))
5620 ref_to_res = build_simple_mem_ref (ref_to_res);
5622 outgoing = var;
5623 incoming = omp_reduction_init_op (loc, rcode, TREE_TYPE (var));
5625 else
5626 incoming = outgoing = orig;
5628 has_outer_reduction:;
5631 if (!ref_to_res)
5632 ref_to_res = integer_zero_node;
5634 /* Determine position in reduction buffer, which may be used
5635 by target. */
5636 enum machine_mode mode = TYPE_MODE (TREE_TYPE (var));
5637 unsigned align = GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT;
5638 offset = (offset + align - 1) & ~(align - 1);
5639 tree off = build_int_cst (sizetype, offset);
5640 offset += GET_MODE_SIZE (mode);
5642 if (!init_code)
5644 init_code = build_int_cst (integer_type_node,
5645 IFN_GOACC_REDUCTION_INIT);
5646 fini_code = build_int_cst (integer_type_node,
5647 IFN_GOACC_REDUCTION_FINI);
5648 setup_code = build_int_cst (integer_type_node,
5649 IFN_GOACC_REDUCTION_SETUP);
5650 teardown_code = build_int_cst (integer_type_node,
5651 IFN_GOACC_REDUCTION_TEARDOWN);
5654 tree setup_call
5655 = build_call_expr_internal_loc (loc, IFN_GOACC_REDUCTION,
5656 TREE_TYPE (var), 6, setup_code,
5657 unshare_expr (ref_to_res),
5658 incoming, level, op, off);
5659 tree init_call
5660 = build_call_expr_internal_loc (loc, IFN_GOACC_REDUCTION,
5661 TREE_TYPE (var), 6, init_code,
5662 unshare_expr (ref_to_res),
5663 var, level, op, off);
5664 tree fini_call
5665 = build_call_expr_internal_loc (loc, IFN_GOACC_REDUCTION,
5666 TREE_TYPE (var), 6, fini_code,
5667 unshare_expr (ref_to_res),
5668 var, level, op, off);
5669 tree teardown_call
5670 = build_call_expr_internal_loc (loc, IFN_GOACC_REDUCTION,
5671 TREE_TYPE (var), 6, teardown_code,
5672 ref_to_res, var, level, op, off);
5674 gimplify_assign (var, setup_call, &before_fork);
5675 gimplify_assign (var, init_call, &after_fork);
5676 gimplify_assign (var, fini_call, &before_join);
5677 gimplify_assign (outgoing, teardown_call, &after_join);
5680 /* Now stitch things together. */
5681 gimple_seq_add_seq (fork_seq, before_fork);
5682 if (fork)
5683 gimple_seq_add_stmt (fork_seq, fork);
5684 gimple_seq_add_seq (fork_seq, after_fork);
5686 gimple_seq_add_seq (join_seq, before_join);
5687 if (join)
5688 gimple_seq_add_stmt (join_seq, join);
5689 gimple_seq_add_seq (join_seq, after_join);
5692 /* Generate code to implement the REDUCTION clauses. */
5694 static void
5695 lower_reduction_clauses (tree clauses, gimple_seq *stmt_seqp, omp_context *ctx)
5697 gimple_seq sub_seq = NULL;
5698 gimple *stmt;
5699 tree x, c;
5700 int count = 0;
5702 /* OpenACC loop reductions are handled elsewhere. */
5703 if (is_gimple_omp_oacc (ctx->stmt))
5704 return;
5706 /* SIMD reductions are handled in lower_rec_input_clauses. */
5707 if (gimple_code (ctx->stmt) == GIMPLE_OMP_FOR
5708 && gimple_omp_for_kind (ctx->stmt) & GF_OMP_FOR_SIMD)
5709 return;
5711 /* First see if there is exactly one reduction clause. Use OMP_ATOMIC
5712 update in that case, otherwise use a lock. */
5713 for (c = clauses; c && count < 2; c = OMP_CLAUSE_CHAIN (c))
5714 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION)
5716 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c)
5717 || TREE_CODE (OMP_CLAUSE_DECL (c)) == MEM_REF)
5719 /* Never use OMP_ATOMIC for array reductions or UDRs. */
5720 count = -1;
5721 break;
5723 count++;
5726 if (count == 0)
5727 return;
5729 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
5731 tree var, ref, new_var, orig_var;
5732 enum tree_code code;
5733 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
5735 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_REDUCTION)
5736 continue;
5738 orig_var = var = OMP_CLAUSE_DECL (c);
5739 if (TREE_CODE (var) == MEM_REF)
5741 var = TREE_OPERAND (var, 0);
5742 if (TREE_CODE (var) == POINTER_PLUS_EXPR)
5743 var = TREE_OPERAND (var, 0);
5744 if (TREE_CODE (var) == INDIRECT_REF
5745 || TREE_CODE (var) == ADDR_EXPR)
5746 var = TREE_OPERAND (var, 0);
5747 orig_var = var;
5748 if (is_variable_sized (var))
5750 gcc_assert (DECL_HAS_VALUE_EXPR_P (var));
5751 var = DECL_VALUE_EXPR (var);
5752 gcc_assert (TREE_CODE (var) == INDIRECT_REF);
5753 var = TREE_OPERAND (var, 0);
5754 gcc_assert (DECL_P (var));
5757 new_var = lookup_decl (var, ctx);
5758 if (var == OMP_CLAUSE_DECL (c) && is_reference (var))
5759 new_var = build_simple_mem_ref_loc (clause_loc, new_var);
5760 ref = build_outer_var_ref (var, ctx);
5761 code = OMP_CLAUSE_REDUCTION_CODE (c);
5763 /* reduction(-:var) sums up the partial results, so it acts
5764 identically to reduction(+:var). */
5765 if (code == MINUS_EXPR)
5766 code = PLUS_EXPR;
5768 if (count == 1)
5770 tree addr = build_fold_addr_expr_loc (clause_loc, ref);
5772 addr = save_expr (addr);
5773 ref = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (addr)), addr);
5774 x = fold_build2_loc (clause_loc, code, TREE_TYPE (ref), ref, new_var);
5775 x = build2 (OMP_ATOMIC, void_type_node, addr, x);
5776 gimplify_and_add (x, stmt_seqp);
5777 return;
5779 else if (TREE_CODE (OMP_CLAUSE_DECL (c)) == MEM_REF)
5781 tree d = OMP_CLAUSE_DECL (c);
5782 tree type = TREE_TYPE (d);
5783 tree v = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
5784 tree i = create_tmp_var (TREE_TYPE (v), NULL);
5785 tree ptype = build_pointer_type (TREE_TYPE (type));
5786 tree bias = TREE_OPERAND (d, 1);
5787 d = TREE_OPERAND (d, 0);
5788 if (TREE_CODE (d) == POINTER_PLUS_EXPR)
5790 tree b = TREE_OPERAND (d, 1);
5791 b = maybe_lookup_decl (b, ctx);
5792 if (b == NULL)
5794 b = TREE_OPERAND (d, 1);
5795 b = maybe_lookup_decl_in_outer_ctx (b, ctx);
5797 if (integer_zerop (bias))
5798 bias = b;
5799 else
5801 bias = fold_convert_loc (clause_loc, TREE_TYPE (b), bias);
5802 bias = fold_build2_loc (clause_loc, PLUS_EXPR,
5803 TREE_TYPE (b), b, bias);
5805 d = TREE_OPERAND (d, 0);
5807 /* For ref build_outer_var_ref already performs this, so
5808 only new_var needs a dereference. */
5809 if (TREE_CODE (d) == INDIRECT_REF)
5811 new_var = build_simple_mem_ref_loc (clause_loc, new_var);
5812 gcc_assert (is_reference (var) && var == orig_var);
5814 else if (TREE_CODE (d) == ADDR_EXPR)
5816 if (orig_var == var)
5818 new_var = build_fold_addr_expr (new_var);
5819 ref = build_fold_addr_expr (ref);
5822 else
5824 gcc_assert (orig_var == var);
5825 if (is_reference (var))
5826 ref = build_fold_addr_expr (ref);
5828 if (DECL_P (v))
5830 tree t = maybe_lookup_decl (v, ctx);
5831 if (t)
5832 v = t;
5833 else
5834 v = maybe_lookup_decl_in_outer_ctx (v, ctx);
5835 gimplify_expr (&v, stmt_seqp, NULL, is_gimple_val, fb_rvalue);
5837 if (!integer_zerop (bias))
5839 bias = fold_convert_loc (clause_loc, sizetype, bias);
5840 new_var = fold_build2_loc (clause_loc, POINTER_PLUS_EXPR,
5841 TREE_TYPE (new_var), new_var,
5842 unshare_expr (bias));
5843 ref = fold_build2_loc (clause_loc, POINTER_PLUS_EXPR,
5844 TREE_TYPE (ref), ref, bias);
5846 new_var = fold_convert_loc (clause_loc, ptype, new_var);
5847 ref = fold_convert_loc (clause_loc, ptype, ref);
5848 tree m = create_tmp_var (ptype, NULL);
5849 gimplify_assign (m, new_var, stmt_seqp);
5850 new_var = m;
5851 m = create_tmp_var (ptype, NULL);
5852 gimplify_assign (m, ref, stmt_seqp);
5853 ref = m;
5854 gimplify_assign (i, build_int_cst (TREE_TYPE (v), 0), stmt_seqp);
5855 tree body = create_artificial_label (UNKNOWN_LOCATION);
5856 tree end = create_artificial_label (UNKNOWN_LOCATION);
5857 gimple_seq_add_stmt (&sub_seq, gimple_build_label (body));
5858 tree priv = build_simple_mem_ref_loc (clause_loc, new_var);
5859 tree out = build_simple_mem_ref_loc (clause_loc, ref);
5860 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5862 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5863 tree decl_placeholder
5864 = OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c);
5865 SET_DECL_VALUE_EXPR (placeholder, out);
5866 DECL_HAS_VALUE_EXPR_P (placeholder) = 1;
5867 SET_DECL_VALUE_EXPR (decl_placeholder, priv);
5868 DECL_HAS_VALUE_EXPR_P (decl_placeholder) = 1;
5869 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c), ctx);
5870 gimple_seq_add_seq (&sub_seq,
5871 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5872 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
5873 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL;
5874 OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c) = NULL;
5876 else
5878 x = build2 (code, TREE_TYPE (out), out, priv);
5879 out = unshare_expr (out);
5880 gimplify_assign (out, x, &sub_seq);
5882 gimple *g = gimple_build_assign (new_var, POINTER_PLUS_EXPR, new_var,
5883 TYPE_SIZE_UNIT (TREE_TYPE (type)));
5884 gimple_seq_add_stmt (&sub_seq, g);
5885 g = gimple_build_assign (ref, POINTER_PLUS_EXPR, ref,
5886 TYPE_SIZE_UNIT (TREE_TYPE (type)));
5887 gimple_seq_add_stmt (&sub_seq, g);
5888 g = gimple_build_assign (i, PLUS_EXPR, i,
5889 build_int_cst (TREE_TYPE (i), 1));
5890 gimple_seq_add_stmt (&sub_seq, g);
5891 g = gimple_build_cond (LE_EXPR, i, v, body, end);
5892 gimple_seq_add_stmt (&sub_seq, g);
5893 gimple_seq_add_stmt (&sub_seq, gimple_build_label (end));
5895 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5897 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (c);
5899 if (is_reference (var)
5900 && !useless_type_conversion_p (TREE_TYPE (placeholder),
5901 TREE_TYPE (ref)))
5902 ref = build_fold_addr_expr_loc (clause_loc, ref);
5903 SET_DECL_VALUE_EXPR (placeholder, ref);
5904 DECL_HAS_VALUE_EXPR_P (placeholder) = 1;
5905 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c), ctx);
5906 gimple_seq_add_seq (&sub_seq, OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5907 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
5908 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c) = NULL;
5910 else
5912 x = build2 (code, TREE_TYPE (ref), ref, new_var);
5913 ref = build_outer_var_ref (var, ctx);
5914 gimplify_assign (ref, x, &sub_seq);
5918 if (is_gimple_omp_oacc (ctx->stmt))
5919 return;
5921 stmt = gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_START),
5923 gimple_seq_add_stmt (stmt_seqp, stmt);
5925 gimple_seq_add_seq (stmt_seqp, sub_seq);
5927 stmt = gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_END),
5929 gimple_seq_add_stmt (stmt_seqp, stmt);
5933 /* Generate code to implement the COPYPRIVATE clauses. */
5935 static void
5936 lower_copyprivate_clauses (tree clauses, gimple_seq *slist, gimple_seq *rlist,
5937 omp_context *ctx)
5939 tree c;
5941 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
5943 tree var, new_var, ref, x;
5944 bool by_ref;
5945 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
5947 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_COPYPRIVATE)
5948 continue;
5950 var = OMP_CLAUSE_DECL (c);
5951 by_ref = use_pointer_for_field (var, NULL);
5953 ref = build_sender_ref (var, ctx);
5954 x = new_var = lookup_decl_in_outer_ctx (var, ctx);
5955 if (by_ref)
5957 x = build_fold_addr_expr_loc (clause_loc, new_var);
5958 x = fold_convert_loc (clause_loc, TREE_TYPE (ref), x);
5960 gimplify_assign (ref, x, slist);
5962 ref = build_receiver_ref (var, false, ctx);
5963 if (by_ref)
5965 ref = fold_convert_loc (clause_loc,
5966 build_pointer_type (TREE_TYPE (new_var)),
5967 ref);
5968 ref = build_fold_indirect_ref_loc (clause_loc, ref);
5970 if (is_reference (var))
5972 ref = fold_convert_loc (clause_loc, TREE_TYPE (new_var), ref);
5973 ref = build_simple_mem_ref_loc (clause_loc, ref);
5974 new_var = build_simple_mem_ref_loc (clause_loc, new_var);
5976 x = lang_hooks.decls.omp_clause_assign_op (c, new_var, ref);
5977 gimplify_and_add (x, rlist);
5982 /* Generate code to implement the clauses, FIRSTPRIVATE, COPYIN, LASTPRIVATE,
5983 and REDUCTION from the sender (aka parent) side. */
5985 static void
5986 lower_send_clauses (tree clauses, gimple_seq *ilist, gimple_seq *olist,
5987 omp_context *ctx)
5989 tree c, t;
5990 int ignored_looptemp = 0;
5991 bool is_taskloop = false;
5993 /* For taskloop, ignore first two _looptemp_ clauses, those are initialized
5994 by GOMP_taskloop. */
5995 if (is_task_ctx (ctx) && gimple_omp_task_taskloop_p (ctx->stmt))
5997 ignored_looptemp = 2;
5998 is_taskloop = true;
6001 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
6003 tree val, ref, x, var;
6004 bool by_ref, do_in = false, do_out = false;
6005 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
6007 switch (OMP_CLAUSE_CODE (c))
6009 case OMP_CLAUSE_PRIVATE:
6010 if (OMP_CLAUSE_PRIVATE_OUTER_REF (c))
6011 break;
6012 continue;
6013 case OMP_CLAUSE_FIRSTPRIVATE:
6014 case OMP_CLAUSE_COPYIN:
6015 case OMP_CLAUSE_LASTPRIVATE:
6016 case OMP_CLAUSE_REDUCTION:
6017 break;
6018 case OMP_CLAUSE_SHARED:
6019 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
6020 break;
6021 continue;
6022 case OMP_CLAUSE__LOOPTEMP_:
6023 if (ignored_looptemp)
6025 ignored_looptemp--;
6026 continue;
6028 break;
6029 default:
6030 continue;
6033 val = OMP_CLAUSE_DECL (c);
6034 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6035 && TREE_CODE (val) == MEM_REF)
6037 val = TREE_OPERAND (val, 0);
6038 if (TREE_CODE (val) == POINTER_PLUS_EXPR)
6039 val = TREE_OPERAND (val, 0);
6040 if (TREE_CODE (val) == INDIRECT_REF
6041 || TREE_CODE (val) == ADDR_EXPR)
6042 val = TREE_OPERAND (val, 0);
6043 if (is_variable_sized (val))
6044 continue;
6047 /* For OMP_CLAUSE_SHARED_FIRSTPRIVATE, look beyond the
6048 outer taskloop region. */
6049 omp_context *ctx_for_o = ctx;
6050 if (is_taskloop
6051 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED
6052 && OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
6053 ctx_for_o = ctx->outer;
6055 var = lookup_decl_in_outer_ctx (val, ctx_for_o);
6057 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_COPYIN
6058 && is_global_var (var))
6059 continue;
6061 t = omp_member_access_dummy_var (var);
6062 if (t)
6064 var = DECL_VALUE_EXPR (var);
6065 tree o = maybe_lookup_decl_in_outer_ctx (t, ctx_for_o);
6066 if (o != t)
6067 var = unshare_and_remap (var, t, o);
6068 else
6069 var = unshare_expr (var);
6072 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED)
6074 /* Handle taskloop firstprivate/lastprivate, where the
6075 lastprivate on GIMPLE_OMP_TASK is represented as
6076 OMP_CLAUSE_SHARED_FIRSTPRIVATE. */
6077 tree f = lookup_sfield ((splay_tree_key) &DECL_UID (val), ctx);
6078 x = omp_build_component_ref (ctx->sender_decl, f);
6079 if (use_pointer_for_field (val, ctx))
6080 var = build_fold_addr_expr (var);
6081 gimplify_assign (x, var, ilist);
6082 DECL_ABSTRACT_ORIGIN (f) = NULL;
6083 continue;
6086 if ((OMP_CLAUSE_CODE (c) != OMP_CLAUSE_REDUCTION
6087 || val == OMP_CLAUSE_DECL (c))
6088 && is_variable_sized (val))
6089 continue;
6090 by_ref = use_pointer_for_field (val, NULL);
6092 switch (OMP_CLAUSE_CODE (c))
6094 case OMP_CLAUSE_PRIVATE:
6095 case OMP_CLAUSE_FIRSTPRIVATE:
6096 case OMP_CLAUSE_COPYIN:
6097 case OMP_CLAUSE__LOOPTEMP_:
6098 do_in = true;
6099 break;
6101 case OMP_CLAUSE_LASTPRIVATE:
6102 if (by_ref || is_reference (val))
6104 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c))
6105 continue;
6106 do_in = true;
6108 else
6110 do_out = true;
6111 if (lang_hooks.decls.omp_private_outer_ref (val))
6112 do_in = true;
6114 break;
6116 case OMP_CLAUSE_REDUCTION:
6117 do_in = true;
6118 if (val == OMP_CLAUSE_DECL (c))
6119 do_out = !(by_ref || is_reference (val));
6120 else
6121 by_ref = TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE;
6122 break;
6124 default:
6125 gcc_unreachable ();
6128 if (do_in)
6130 ref = build_sender_ref (val, ctx);
6131 x = by_ref ? build_fold_addr_expr_loc (clause_loc, var) : var;
6132 gimplify_assign (ref, x, ilist);
6133 if (is_task_ctx (ctx))
6134 DECL_ABSTRACT_ORIGIN (TREE_OPERAND (ref, 1)) = NULL;
6137 if (do_out)
6139 ref = build_sender_ref (val, ctx);
6140 gimplify_assign (var, ref, olist);
6145 /* Generate code to implement SHARED from the sender (aka parent)
6146 side. This is trickier, since GIMPLE_OMP_PARALLEL_CLAUSES doesn't
6147 list things that got automatically shared. */
6149 static void
6150 lower_send_shared_vars (gimple_seq *ilist, gimple_seq *olist, omp_context *ctx)
6152 tree var, ovar, nvar, t, f, x, record_type;
6154 if (ctx->record_type == NULL)
6155 return;
6157 record_type = ctx->srecord_type ? ctx->srecord_type : ctx->record_type;
6158 for (f = TYPE_FIELDS (record_type); f ; f = DECL_CHAIN (f))
6160 ovar = DECL_ABSTRACT_ORIGIN (f);
6161 if (!ovar || TREE_CODE (ovar) == FIELD_DECL)
6162 continue;
6164 nvar = maybe_lookup_decl (ovar, ctx);
6165 if (!nvar || !DECL_HAS_VALUE_EXPR_P (nvar))
6166 continue;
6168 /* If CTX is a nested parallel directive. Find the immediately
6169 enclosing parallel or workshare construct that contains a
6170 mapping for OVAR. */
6171 var = lookup_decl_in_outer_ctx (ovar, ctx);
6173 t = omp_member_access_dummy_var (var);
6174 if (t)
6176 var = DECL_VALUE_EXPR (var);
6177 tree o = maybe_lookup_decl_in_outer_ctx (t, ctx);
6178 if (o != t)
6179 var = unshare_and_remap (var, t, o);
6180 else
6181 var = unshare_expr (var);
6184 if (use_pointer_for_field (ovar, ctx))
6186 x = build_sender_ref (ovar, ctx);
6187 var = build_fold_addr_expr (var);
6188 gimplify_assign (x, var, ilist);
6190 else
6192 x = build_sender_ref (ovar, ctx);
6193 gimplify_assign (x, var, ilist);
6195 if (!TREE_READONLY (var)
6196 /* We don't need to receive a new reference to a result
6197 or parm decl. In fact we may not store to it as we will
6198 invalidate any pending RSO and generate wrong gimple
6199 during inlining. */
6200 && !((TREE_CODE (var) == RESULT_DECL
6201 || TREE_CODE (var) == PARM_DECL)
6202 && DECL_BY_REFERENCE (var)))
6204 x = build_sender_ref (ovar, ctx);
6205 gimplify_assign (var, x, olist);
6211 /* Emit an OpenACC head marker call, encapulating the partitioning and
6212 other information that must be processed by the target compiler.
6213 Return the maximum number of dimensions the associated loop might
6214 be partitioned over. */
6216 static unsigned
6217 lower_oacc_head_mark (location_t loc, tree ddvar, tree clauses,
6218 gimple_seq *seq, omp_context *ctx)
6220 unsigned levels = 0;
6221 unsigned tag = 0;
6222 tree gang_static = NULL_TREE;
6223 auto_vec<tree, 5> args;
6225 args.quick_push (build_int_cst
6226 (integer_type_node, IFN_UNIQUE_OACC_HEAD_MARK));
6227 args.quick_push (ddvar);
6228 for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
6230 switch (OMP_CLAUSE_CODE (c))
6232 case OMP_CLAUSE_GANG:
6233 tag |= OLF_DIM_GANG;
6234 gang_static = OMP_CLAUSE_GANG_STATIC_EXPR (c);
6235 /* static:* is represented by -1, and we can ignore it, as
6236 scheduling is always static. */
6237 if (gang_static && integer_minus_onep (gang_static))
6238 gang_static = NULL_TREE;
6239 levels++;
6240 break;
6242 case OMP_CLAUSE_WORKER:
6243 tag |= OLF_DIM_WORKER;
6244 levels++;
6245 break;
6247 case OMP_CLAUSE_VECTOR:
6248 tag |= OLF_DIM_VECTOR;
6249 levels++;
6250 break;
6252 case OMP_CLAUSE_SEQ:
6253 tag |= OLF_SEQ;
6254 break;
6256 case OMP_CLAUSE_AUTO:
6257 tag |= OLF_AUTO;
6258 break;
6260 case OMP_CLAUSE_INDEPENDENT:
6261 tag |= OLF_INDEPENDENT;
6262 break;
6264 default:
6265 continue;
6269 if (gang_static)
6271 if (DECL_P (gang_static))
6272 gang_static = build_outer_var_ref (gang_static, ctx);
6273 tag |= OLF_GANG_STATIC;
6276 /* In a parallel region, loops are implicitly INDEPENDENT. */
6277 omp_context *tgt = enclosing_target_ctx (ctx);
6278 if (!tgt || is_oacc_parallel (tgt))
6279 tag |= OLF_INDEPENDENT;
6281 /* A loop lacking SEQ, GANG, WORKER and/or VECTOR is implicitly AUTO. */
6282 if (!(tag & (((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1) << OLF_DIM_BASE)
6283 | OLF_SEQ)))
6284 tag |= OLF_AUTO;
6286 /* Ensure at least one level. */
6287 if (!levels)
6288 levels++;
6290 args.quick_push (build_int_cst (integer_type_node, levels));
6291 args.quick_push (build_int_cst (integer_type_node, tag));
6292 if (gang_static)
6293 args.quick_push (gang_static);
6295 gcall *call = gimple_build_call_internal_vec (IFN_UNIQUE, args);
6296 gimple_set_location (call, loc);
6297 gimple_set_lhs (call, ddvar);
6298 gimple_seq_add_stmt (seq, call);
6300 return levels;
6303 /* Emit an OpenACC lopp head or tail marker to SEQ. LEVEL is the
6304 partitioning level of the enclosed region. */
6306 static void
6307 lower_oacc_loop_marker (location_t loc, tree ddvar, bool head,
6308 tree tofollow, gimple_seq *seq)
6310 int marker_kind = (head ? IFN_UNIQUE_OACC_HEAD_MARK
6311 : IFN_UNIQUE_OACC_TAIL_MARK);
6312 tree marker = build_int_cst (integer_type_node, marker_kind);
6313 int nargs = 2 + (tofollow != NULL_TREE);
6314 gcall *call = gimple_build_call_internal (IFN_UNIQUE, nargs,
6315 marker, ddvar, tofollow);
6316 gimple_set_location (call, loc);
6317 gimple_set_lhs (call, ddvar);
6318 gimple_seq_add_stmt (seq, call);
6321 /* Generate the before and after OpenACC loop sequences. CLAUSES are
6322 the loop clauses, from which we extract reductions. Initialize
6323 HEAD and TAIL. */
6325 static void
6326 lower_oacc_head_tail (location_t loc, tree clauses,
6327 gimple_seq *head, gimple_seq *tail, omp_context *ctx)
6329 bool inner = false;
6330 tree ddvar = create_tmp_var (integer_type_node, ".data_dep");
6331 gimple_seq_add_stmt (head, gimple_build_assign (ddvar, integer_zero_node));
6333 unsigned count = lower_oacc_head_mark (loc, ddvar, clauses, head, ctx);
6334 if (!count)
6335 lower_oacc_loop_marker (loc, ddvar, false, integer_zero_node, tail);
6337 tree fork_kind = build_int_cst (unsigned_type_node, IFN_UNIQUE_OACC_FORK);
6338 tree join_kind = build_int_cst (unsigned_type_node, IFN_UNIQUE_OACC_JOIN);
6340 for (unsigned done = 1; count; count--, done++)
6342 gimple_seq fork_seq = NULL;
6343 gimple_seq join_seq = NULL;
6345 tree place = build_int_cst (integer_type_node, -1);
6346 gcall *fork = gimple_build_call_internal (IFN_UNIQUE, 3,
6347 fork_kind, ddvar, place);
6348 gimple_set_location (fork, loc);
6349 gimple_set_lhs (fork, ddvar);
6351 gcall *join = gimple_build_call_internal (IFN_UNIQUE, 3,
6352 join_kind, ddvar, place);
6353 gimple_set_location (join, loc);
6354 gimple_set_lhs (join, ddvar);
6356 /* Mark the beginning of this level sequence. */
6357 if (inner)
6358 lower_oacc_loop_marker (loc, ddvar, true,
6359 build_int_cst (integer_type_node, count),
6360 &fork_seq);
6361 lower_oacc_loop_marker (loc, ddvar, false,
6362 build_int_cst (integer_type_node, done),
6363 &join_seq);
6365 lower_oacc_reductions (loc, clauses, place, inner,
6366 fork, join, &fork_seq, &join_seq, ctx);
6368 /* Append this level to head. */
6369 gimple_seq_add_seq (head, fork_seq);
6370 /* Prepend it to tail. */
6371 gimple_seq_add_seq (&join_seq, *tail);
6372 *tail = join_seq;
6374 inner = true;
6377 /* Mark the end of the sequence. */
6378 lower_oacc_loop_marker (loc, ddvar, true, NULL_TREE, head);
6379 lower_oacc_loop_marker (loc, ddvar, false, NULL_TREE, tail);
6382 /* A convenience function to build an empty GIMPLE_COND with just the
6383 condition. */
6385 static gcond *
6386 gimple_build_cond_empty (tree cond)
6388 enum tree_code pred_code;
6389 tree lhs, rhs;
6391 gimple_cond_get_ops_from_tree (cond, &pred_code, &lhs, &rhs);
6392 return gimple_build_cond (pred_code, lhs, rhs, NULL_TREE, NULL_TREE);
6395 /* Return true if a parallel REGION is within a declare target function or
6396 within a target region and is not a part of a gridified target. */
6398 static bool
6399 parallel_needs_hsa_kernel_p (struct omp_region *region)
6401 bool indirect = false;
6402 for (region = region->outer; region; region = region->outer)
6404 if (region->type == GIMPLE_OMP_PARALLEL)
6405 indirect = true;
6406 else if (region->type == GIMPLE_OMP_TARGET)
6408 gomp_target *tgt_stmt
6409 = as_a <gomp_target *> (last_stmt (region->entry));
6411 if (find_omp_clause (gimple_omp_target_clauses (tgt_stmt),
6412 OMP_CLAUSE__GRIDDIM_))
6413 return indirect;
6414 else
6415 return true;
6419 if (lookup_attribute ("omp declare target",
6420 DECL_ATTRIBUTES (current_function_decl)))
6421 return true;
6423 return false;
6426 static void expand_omp_build_assign (gimple_stmt_iterator *, tree, tree,
6427 bool = false);
6429 /* Build the function calls to GOMP_parallel_start etc to actually
6430 generate the parallel operation. REGION is the parallel region
6431 being expanded. BB is the block where to insert the code. WS_ARGS
6432 will be set if this is a call to a combined parallel+workshare
6433 construct, it contains the list of additional arguments needed by
6434 the workshare construct. */
6436 static void
6437 expand_parallel_call (struct omp_region *region, basic_block bb,
6438 gomp_parallel *entry_stmt,
6439 vec<tree, va_gc> *ws_args)
6441 tree t, t1, t2, val, cond, c, clauses, flags;
6442 gimple_stmt_iterator gsi;
6443 gimple *stmt;
6444 enum built_in_function start_ix;
6445 int start_ix2;
6446 location_t clause_loc;
6447 vec<tree, va_gc> *args;
6449 clauses = gimple_omp_parallel_clauses (entry_stmt);
6451 /* Determine what flavor of GOMP_parallel we will be
6452 emitting. */
6453 start_ix = BUILT_IN_GOMP_PARALLEL;
6454 if (is_combined_parallel (region))
6456 switch (region->inner->type)
6458 case GIMPLE_OMP_FOR:
6459 gcc_assert (region->inner->sched_kind != OMP_CLAUSE_SCHEDULE_AUTO);
6460 switch (region->inner->sched_kind)
6462 case OMP_CLAUSE_SCHEDULE_RUNTIME:
6463 start_ix2 = 3;
6464 break;
6465 case OMP_CLAUSE_SCHEDULE_DYNAMIC:
6466 case OMP_CLAUSE_SCHEDULE_GUIDED:
6467 if (region->inner->sched_modifiers
6468 & OMP_CLAUSE_SCHEDULE_NONMONOTONIC)
6470 start_ix2 = 3 + region->inner->sched_kind;
6471 break;
6473 /* FALLTHRU */
6474 default:
6475 start_ix2 = region->inner->sched_kind;
6476 break;
6478 start_ix2 += (int) BUILT_IN_GOMP_PARALLEL_LOOP_STATIC;
6479 start_ix = (enum built_in_function) start_ix2;
6480 break;
6481 case GIMPLE_OMP_SECTIONS:
6482 start_ix = BUILT_IN_GOMP_PARALLEL_SECTIONS;
6483 break;
6484 default:
6485 gcc_unreachable ();
6489 /* By default, the value of NUM_THREADS is zero (selected at run time)
6490 and there is no conditional. */
6491 cond = NULL_TREE;
6492 val = build_int_cst (unsigned_type_node, 0);
6493 flags = build_int_cst (unsigned_type_node, 0);
6495 c = find_omp_clause (clauses, OMP_CLAUSE_IF);
6496 if (c)
6497 cond = OMP_CLAUSE_IF_EXPR (c);
6499 c = find_omp_clause (clauses, OMP_CLAUSE_NUM_THREADS);
6500 if (c)
6502 val = OMP_CLAUSE_NUM_THREADS_EXPR (c);
6503 clause_loc = OMP_CLAUSE_LOCATION (c);
6505 else
6506 clause_loc = gimple_location (entry_stmt);
6508 c = find_omp_clause (clauses, OMP_CLAUSE_PROC_BIND);
6509 if (c)
6510 flags = build_int_cst (unsigned_type_node, OMP_CLAUSE_PROC_BIND_KIND (c));
6512 /* Ensure 'val' is of the correct type. */
6513 val = fold_convert_loc (clause_loc, unsigned_type_node, val);
6515 /* If we found the clause 'if (cond)', build either
6516 (cond != 0) or (cond ? val : 1u). */
6517 if (cond)
6519 cond = gimple_boolify (cond);
6521 if (integer_zerop (val))
6522 val = fold_build2_loc (clause_loc,
6523 EQ_EXPR, unsigned_type_node, cond,
6524 build_int_cst (TREE_TYPE (cond), 0));
6525 else
6527 basic_block cond_bb, then_bb, else_bb;
6528 edge e, e_then, e_else;
6529 tree tmp_then, tmp_else, tmp_join, tmp_var;
6531 tmp_var = create_tmp_var (TREE_TYPE (val));
6532 if (gimple_in_ssa_p (cfun))
6534 tmp_then = make_ssa_name (tmp_var);
6535 tmp_else = make_ssa_name (tmp_var);
6536 tmp_join = make_ssa_name (tmp_var);
6538 else
6540 tmp_then = tmp_var;
6541 tmp_else = tmp_var;
6542 tmp_join = tmp_var;
6545 e = split_block_after_labels (bb);
6546 cond_bb = e->src;
6547 bb = e->dest;
6548 remove_edge (e);
6550 then_bb = create_empty_bb (cond_bb);
6551 else_bb = create_empty_bb (then_bb);
6552 set_immediate_dominator (CDI_DOMINATORS, then_bb, cond_bb);
6553 set_immediate_dominator (CDI_DOMINATORS, else_bb, cond_bb);
6555 stmt = gimple_build_cond_empty (cond);
6556 gsi = gsi_start_bb (cond_bb);
6557 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
6559 gsi = gsi_start_bb (then_bb);
6560 expand_omp_build_assign (&gsi, tmp_then, val, true);
6562 gsi = gsi_start_bb (else_bb);
6563 expand_omp_build_assign (&gsi, tmp_else,
6564 build_int_cst (unsigned_type_node, 1),
6565 true);
6567 make_edge (cond_bb, then_bb, EDGE_TRUE_VALUE);
6568 make_edge (cond_bb, else_bb, EDGE_FALSE_VALUE);
6569 add_bb_to_loop (then_bb, cond_bb->loop_father);
6570 add_bb_to_loop (else_bb, cond_bb->loop_father);
6571 e_then = make_edge (then_bb, bb, EDGE_FALLTHRU);
6572 e_else = make_edge (else_bb, bb, EDGE_FALLTHRU);
6574 if (gimple_in_ssa_p (cfun))
6576 gphi *phi = create_phi_node (tmp_join, bb);
6577 add_phi_arg (phi, tmp_then, e_then, UNKNOWN_LOCATION);
6578 add_phi_arg (phi, tmp_else, e_else, UNKNOWN_LOCATION);
6581 val = tmp_join;
6584 gsi = gsi_start_bb (bb);
6585 val = force_gimple_operand_gsi (&gsi, val, true, NULL_TREE,
6586 false, GSI_CONTINUE_LINKING);
6589 gsi = gsi_last_bb (bb);
6590 t = gimple_omp_parallel_data_arg (entry_stmt);
6591 if (t == NULL)
6592 t1 = null_pointer_node;
6593 else
6594 t1 = build_fold_addr_expr (t);
6595 tree child_fndecl = gimple_omp_parallel_child_fn (entry_stmt);
6596 t2 = build_fold_addr_expr (child_fndecl);
6598 vec_alloc (args, 4 + vec_safe_length (ws_args));
6599 args->quick_push (t2);
6600 args->quick_push (t1);
6601 args->quick_push (val);
6602 if (ws_args)
6603 args->splice (*ws_args);
6604 args->quick_push (flags);
6606 t = build_call_expr_loc_vec (UNKNOWN_LOCATION,
6607 builtin_decl_explicit (start_ix), args);
6609 force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
6610 false, GSI_CONTINUE_LINKING);
6612 if (hsa_gen_requested_p ()
6613 && parallel_needs_hsa_kernel_p (region))
6615 cgraph_node *child_cnode = cgraph_node::get (child_fndecl);
6616 hsa_register_kernel (child_cnode);
6620 /* Insert a function call whose name is FUNC_NAME with the information from
6621 ENTRY_STMT into the basic_block BB. */
6623 static void
6624 expand_cilk_for_call (basic_block bb, gomp_parallel *entry_stmt,
6625 vec <tree, va_gc> *ws_args)
6627 tree t, t1, t2;
6628 gimple_stmt_iterator gsi;
6629 vec <tree, va_gc> *args;
6631 gcc_assert (vec_safe_length (ws_args) == 2);
6632 tree func_name = (*ws_args)[0];
6633 tree grain = (*ws_args)[1];
6635 tree clauses = gimple_omp_parallel_clauses (entry_stmt);
6636 tree count = find_omp_clause (clauses, OMP_CLAUSE__CILK_FOR_COUNT_);
6637 gcc_assert (count != NULL_TREE);
6638 count = OMP_CLAUSE_OPERAND (count, 0);
6640 gsi = gsi_last_bb (bb);
6641 t = gimple_omp_parallel_data_arg (entry_stmt);
6642 if (t == NULL)
6643 t1 = null_pointer_node;
6644 else
6645 t1 = build_fold_addr_expr (t);
6646 t2 = build_fold_addr_expr (gimple_omp_parallel_child_fn (entry_stmt));
6648 vec_alloc (args, 4);
6649 args->quick_push (t2);
6650 args->quick_push (t1);
6651 args->quick_push (count);
6652 args->quick_push (grain);
6653 t = build_call_expr_loc_vec (UNKNOWN_LOCATION, func_name, args);
6655 force_gimple_operand_gsi (&gsi, t, true, NULL_TREE, false,
6656 GSI_CONTINUE_LINKING);
6659 /* Build the function call to GOMP_task to actually
6660 generate the task operation. BB is the block where to insert the code. */
6662 static void
6663 expand_task_call (struct omp_region *region, basic_block bb,
6664 gomp_task *entry_stmt)
6666 tree t1, t2, t3;
6667 gimple_stmt_iterator gsi;
6668 location_t loc = gimple_location (entry_stmt);
6670 tree clauses = gimple_omp_task_clauses (entry_stmt);
6672 tree ifc = find_omp_clause (clauses, OMP_CLAUSE_IF);
6673 tree untied = find_omp_clause (clauses, OMP_CLAUSE_UNTIED);
6674 tree mergeable = find_omp_clause (clauses, OMP_CLAUSE_MERGEABLE);
6675 tree depend = find_omp_clause (clauses, OMP_CLAUSE_DEPEND);
6676 tree finalc = find_omp_clause (clauses, OMP_CLAUSE_FINAL);
6677 tree priority = find_omp_clause (clauses, OMP_CLAUSE_PRIORITY);
6679 unsigned int iflags
6680 = (untied ? GOMP_TASK_FLAG_UNTIED : 0)
6681 | (mergeable ? GOMP_TASK_FLAG_MERGEABLE : 0)
6682 | (depend ? GOMP_TASK_FLAG_DEPEND : 0);
6684 bool taskloop_p = gimple_omp_task_taskloop_p (entry_stmt);
6685 tree startvar = NULL_TREE, endvar = NULL_TREE, step = NULL_TREE;
6686 tree num_tasks = NULL_TREE;
6687 bool ull = false;
6688 if (taskloop_p)
6690 gimple *g = last_stmt (region->outer->entry);
6691 gcc_assert (gimple_code (g) == GIMPLE_OMP_FOR
6692 && gimple_omp_for_kind (g) == GF_OMP_FOR_KIND_TASKLOOP);
6693 struct omp_for_data fd;
6694 extract_omp_for_data (as_a <gomp_for *> (g), &fd, NULL);
6695 startvar = find_omp_clause (clauses, OMP_CLAUSE__LOOPTEMP_);
6696 endvar = find_omp_clause (OMP_CLAUSE_CHAIN (startvar),
6697 OMP_CLAUSE__LOOPTEMP_);
6698 startvar = OMP_CLAUSE_DECL (startvar);
6699 endvar = OMP_CLAUSE_DECL (endvar);
6700 step = fold_convert_loc (loc, fd.iter_type, fd.loop.step);
6701 if (fd.loop.cond_code == LT_EXPR)
6702 iflags |= GOMP_TASK_FLAG_UP;
6703 tree tclauses = gimple_omp_for_clauses (g);
6704 num_tasks = find_omp_clause (tclauses, OMP_CLAUSE_NUM_TASKS);
6705 if (num_tasks)
6706 num_tasks = OMP_CLAUSE_NUM_TASKS_EXPR (num_tasks);
6707 else
6709 num_tasks = find_omp_clause (tclauses, OMP_CLAUSE_GRAINSIZE);
6710 if (num_tasks)
6712 iflags |= GOMP_TASK_FLAG_GRAINSIZE;
6713 num_tasks = OMP_CLAUSE_GRAINSIZE_EXPR (num_tasks);
6715 else
6716 num_tasks = integer_zero_node;
6718 num_tasks = fold_convert_loc (loc, long_integer_type_node, num_tasks);
6719 if (ifc == NULL_TREE)
6720 iflags |= GOMP_TASK_FLAG_IF;
6721 if (find_omp_clause (tclauses, OMP_CLAUSE_NOGROUP))
6722 iflags |= GOMP_TASK_FLAG_NOGROUP;
6723 ull = fd.iter_type == long_long_unsigned_type_node;
6725 else if (priority)
6726 iflags |= GOMP_TASK_FLAG_PRIORITY;
6728 tree flags = build_int_cst (unsigned_type_node, iflags);
6730 tree cond = boolean_true_node;
6731 if (ifc)
6733 if (taskloop_p)
6735 tree t = gimple_boolify (OMP_CLAUSE_IF_EXPR (ifc));
6736 t = fold_build3_loc (loc, COND_EXPR, unsigned_type_node, t,
6737 build_int_cst (unsigned_type_node,
6738 GOMP_TASK_FLAG_IF),
6739 build_int_cst (unsigned_type_node, 0));
6740 flags = fold_build2_loc (loc, PLUS_EXPR, unsigned_type_node,
6741 flags, t);
6743 else
6744 cond = gimple_boolify (OMP_CLAUSE_IF_EXPR (ifc));
6747 if (finalc)
6749 tree t = gimple_boolify (OMP_CLAUSE_FINAL_EXPR (finalc));
6750 t = fold_build3_loc (loc, COND_EXPR, unsigned_type_node, t,
6751 build_int_cst (unsigned_type_node,
6752 GOMP_TASK_FLAG_FINAL),
6753 build_int_cst (unsigned_type_node, 0));
6754 flags = fold_build2_loc (loc, PLUS_EXPR, unsigned_type_node, flags, t);
6756 if (depend)
6757 depend = OMP_CLAUSE_DECL (depend);
6758 else
6759 depend = build_int_cst (ptr_type_node, 0);
6760 if (priority)
6761 priority = fold_convert (integer_type_node,
6762 OMP_CLAUSE_PRIORITY_EXPR (priority));
6763 else
6764 priority = integer_zero_node;
6766 gsi = gsi_last_bb (bb);
6767 tree t = gimple_omp_task_data_arg (entry_stmt);
6768 if (t == NULL)
6769 t2 = null_pointer_node;
6770 else
6771 t2 = build_fold_addr_expr_loc (loc, t);
6772 t1 = build_fold_addr_expr_loc (loc, gimple_omp_task_child_fn (entry_stmt));
6773 t = gimple_omp_task_copy_fn (entry_stmt);
6774 if (t == NULL)
6775 t3 = null_pointer_node;
6776 else
6777 t3 = build_fold_addr_expr_loc (loc, t);
6779 if (taskloop_p)
6780 t = build_call_expr (ull
6781 ? builtin_decl_explicit (BUILT_IN_GOMP_TASKLOOP_ULL)
6782 : builtin_decl_explicit (BUILT_IN_GOMP_TASKLOOP),
6783 11, t1, t2, t3,
6784 gimple_omp_task_arg_size (entry_stmt),
6785 gimple_omp_task_arg_align (entry_stmt), flags,
6786 num_tasks, priority, startvar, endvar, step);
6787 else
6788 t = build_call_expr (builtin_decl_explicit (BUILT_IN_GOMP_TASK),
6789 9, t1, t2, t3,
6790 gimple_omp_task_arg_size (entry_stmt),
6791 gimple_omp_task_arg_align (entry_stmt), cond, flags,
6792 depend, priority);
6794 force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
6795 false, GSI_CONTINUE_LINKING);
6799 /* If exceptions are enabled, wrap the statements in BODY in a MUST_NOT_THROW
6800 catch handler and return it. This prevents programs from violating the
6801 structured block semantics with throws. */
6803 static gimple_seq
6804 maybe_catch_exception (gimple_seq body)
6806 gimple *g;
6807 tree decl;
6809 if (!flag_exceptions)
6810 return body;
6812 if (lang_hooks.eh_protect_cleanup_actions != NULL)
6813 decl = lang_hooks.eh_protect_cleanup_actions ();
6814 else
6815 decl = builtin_decl_explicit (BUILT_IN_TRAP);
6817 g = gimple_build_eh_must_not_throw (decl);
6818 g = gimple_build_try (body, gimple_seq_alloc_with_stmt (g),
6819 GIMPLE_TRY_CATCH);
6821 return gimple_seq_alloc_with_stmt (g);
6824 /* Chain all the DECLs in LIST by their TREE_CHAIN fields. */
6826 static tree
6827 vec2chain (vec<tree, va_gc> *v)
6829 tree chain = NULL_TREE, t;
6830 unsigned ix;
6832 FOR_EACH_VEC_SAFE_ELT_REVERSE (v, ix, t)
6834 DECL_CHAIN (t) = chain;
6835 chain = t;
6838 return chain;
6842 /* Remove barriers in REGION->EXIT's block. Note that this is only
6843 valid for GIMPLE_OMP_PARALLEL regions. Since the end of a parallel region
6844 is an implicit barrier, any workshare inside the GIMPLE_OMP_PARALLEL that
6845 left a barrier at the end of the GIMPLE_OMP_PARALLEL region can now be
6846 removed. */
6848 static void
6849 remove_exit_barrier (struct omp_region *region)
6851 gimple_stmt_iterator gsi;
6852 basic_block exit_bb;
6853 edge_iterator ei;
6854 edge e;
6855 gimple *stmt;
6856 int any_addressable_vars = -1;
6858 exit_bb = region->exit;
6860 /* If the parallel region doesn't return, we don't have REGION->EXIT
6861 block at all. */
6862 if (! exit_bb)
6863 return;
6865 /* The last insn in the block will be the parallel's GIMPLE_OMP_RETURN. The
6866 workshare's GIMPLE_OMP_RETURN will be in a preceding block. The kinds of
6867 statements that can appear in between are extremely limited -- no
6868 memory operations at all. Here, we allow nothing at all, so the
6869 only thing we allow to precede this GIMPLE_OMP_RETURN is a label. */
6870 gsi = gsi_last_bb (exit_bb);
6871 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
6872 gsi_prev (&gsi);
6873 if (!gsi_end_p (gsi) && gimple_code (gsi_stmt (gsi)) != GIMPLE_LABEL)
6874 return;
6876 FOR_EACH_EDGE (e, ei, exit_bb->preds)
6878 gsi = gsi_last_bb (e->src);
6879 if (gsi_end_p (gsi))
6880 continue;
6881 stmt = gsi_stmt (gsi);
6882 if (gimple_code (stmt) == GIMPLE_OMP_RETURN
6883 && !gimple_omp_return_nowait_p (stmt))
6885 /* OpenMP 3.0 tasks unfortunately prevent this optimization
6886 in many cases. If there could be tasks queued, the barrier
6887 might be needed to let the tasks run before some local
6888 variable of the parallel that the task uses as shared
6889 runs out of scope. The task can be spawned either
6890 from within current function (this would be easy to check)
6891 or from some function it calls and gets passed an address
6892 of such a variable. */
6893 if (any_addressable_vars < 0)
6895 gomp_parallel *parallel_stmt
6896 = as_a <gomp_parallel *> (last_stmt (region->entry));
6897 tree child_fun = gimple_omp_parallel_child_fn (parallel_stmt);
6898 tree local_decls, block, decl;
6899 unsigned ix;
6901 any_addressable_vars = 0;
6902 FOR_EACH_LOCAL_DECL (DECL_STRUCT_FUNCTION (child_fun), ix, decl)
6903 if (TREE_ADDRESSABLE (decl))
6905 any_addressable_vars = 1;
6906 break;
6908 for (block = gimple_block (stmt);
6909 !any_addressable_vars
6910 && block
6911 && TREE_CODE (block) == BLOCK;
6912 block = BLOCK_SUPERCONTEXT (block))
6914 for (local_decls = BLOCK_VARS (block);
6915 local_decls;
6916 local_decls = DECL_CHAIN (local_decls))
6917 if (TREE_ADDRESSABLE (local_decls))
6919 any_addressable_vars = 1;
6920 break;
6922 if (block == gimple_block (parallel_stmt))
6923 break;
6926 if (!any_addressable_vars)
6927 gimple_omp_return_set_nowait (stmt);
6932 static void
6933 remove_exit_barriers (struct omp_region *region)
6935 if (region->type == GIMPLE_OMP_PARALLEL)
6936 remove_exit_barrier (region);
6938 if (region->inner)
6940 region = region->inner;
6941 remove_exit_barriers (region);
6942 while (region->next)
6944 region = region->next;
6945 remove_exit_barriers (region);
6950 /* Optimize omp_get_thread_num () and omp_get_num_threads ()
6951 calls. These can't be declared as const functions, but
6952 within one parallel body they are constant, so they can be
6953 transformed there into __builtin_omp_get_{thread_num,num_threads} ()
6954 which are declared const. Similarly for task body, except
6955 that in untied task omp_get_thread_num () can change at any task
6956 scheduling point. */
6958 static void
6959 optimize_omp_library_calls (gimple *entry_stmt)
6961 basic_block bb;
6962 gimple_stmt_iterator gsi;
6963 tree thr_num_tree = builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM);
6964 tree thr_num_id = DECL_ASSEMBLER_NAME (thr_num_tree);
6965 tree num_thr_tree = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS);
6966 tree num_thr_id = DECL_ASSEMBLER_NAME (num_thr_tree);
6967 bool untied_task = (gimple_code (entry_stmt) == GIMPLE_OMP_TASK
6968 && find_omp_clause (gimple_omp_task_clauses (entry_stmt),
6969 OMP_CLAUSE_UNTIED) != NULL);
6971 FOR_EACH_BB_FN (bb, cfun)
6972 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6974 gimple *call = gsi_stmt (gsi);
6975 tree decl;
6977 if (is_gimple_call (call)
6978 && (decl = gimple_call_fndecl (call))
6979 && DECL_EXTERNAL (decl)
6980 && TREE_PUBLIC (decl)
6981 && DECL_INITIAL (decl) == NULL)
6983 tree built_in;
6985 if (DECL_NAME (decl) == thr_num_id)
6987 /* In #pragma omp task untied omp_get_thread_num () can change
6988 during the execution of the task region. */
6989 if (untied_task)
6990 continue;
6991 built_in = builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM);
6993 else if (DECL_NAME (decl) == num_thr_id)
6994 built_in = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS);
6995 else
6996 continue;
6998 if (DECL_ASSEMBLER_NAME (decl) != DECL_ASSEMBLER_NAME (built_in)
6999 || gimple_call_num_args (call) != 0)
7000 continue;
7002 if (flag_exceptions && !TREE_NOTHROW (decl))
7003 continue;
7005 if (TREE_CODE (TREE_TYPE (decl)) != FUNCTION_TYPE
7006 || !types_compatible_p (TREE_TYPE (TREE_TYPE (decl)),
7007 TREE_TYPE (TREE_TYPE (built_in))))
7008 continue;
7010 gimple_call_set_fndecl (call, built_in);
7015 /* Callback for expand_omp_build_assign. Return non-NULL if *tp needs to be
7016 regimplified. */
7018 static tree
7019 expand_omp_regimplify_p (tree *tp, int *walk_subtrees, void *)
7021 tree t = *tp;
7023 /* Any variable with DECL_VALUE_EXPR needs to be regimplified. */
7024 if (TREE_CODE (t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (t))
7025 return t;
7027 if (TREE_CODE (t) == ADDR_EXPR)
7028 recompute_tree_invariant_for_addr_expr (t);
7030 *walk_subtrees = !TYPE_P (t) && !DECL_P (t);
7031 return NULL_TREE;
7034 /* Prepend or append TO = FROM assignment before or after *GSI_P. */
7036 static void
7037 expand_omp_build_assign (gimple_stmt_iterator *gsi_p, tree to, tree from,
7038 bool after)
7040 bool simple_p = DECL_P (to) && TREE_ADDRESSABLE (to);
7041 from = force_gimple_operand_gsi (gsi_p, from, simple_p, NULL_TREE,
7042 !after, after ? GSI_CONTINUE_LINKING
7043 : GSI_SAME_STMT);
7044 gimple *stmt = gimple_build_assign (to, from);
7045 if (after)
7046 gsi_insert_after (gsi_p, stmt, GSI_CONTINUE_LINKING);
7047 else
7048 gsi_insert_before (gsi_p, stmt, GSI_SAME_STMT);
7049 if (walk_tree (&from, expand_omp_regimplify_p, NULL, NULL)
7050 || walk_tree (&to, expand_omp_regimplify_p, NULL, NULL))
7052 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
7053 gimple_regimplify_operands (stmt, &gsi);
7057 /* Expand the OpenMP parallel or task directive starting at REGION. */
7059 static void
7060 expand_omp_taskreg (struct omp_region *region)
7062 basic_block entry_bb, exit_bb, new_bb;
7063 struct function *child_cfun;
7064 tree child_fn, block, t;
7065 gimple_stmt_iterator gsi;
7066 gimple *entry_stmt, *stmt;
7067 edge e;
7068 vec<tree, va_gc> *ws_args;
7070 entry_stmt = last_stmt (region->entry);
7071 child_fn = gimple_omp_taskreg_child_fn (entry_stmt);
7072 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
7074 entry_bb = region->entry;
7075 if (gimple_code (entry_stmt) == GIMPLE_OMP_TASK)
7076 exit_bb = region->cont;
7077 else
7078 exit_bb = region->exit;
7080 bool is_cilk_for
7081 = (flag_cilkplus
7082 && gimple_code (entry_stmt) == GIMPLE_OMP_PARALLEL
7083 && find_omp_clause (gimple_omp_parallel_clauses (entry_stmt),
7084 OMP_CLAUSE__CILK_FOR_COUNT_) != NULL_TREE);
7086 if (is_cilk_for)
7087 /* If it is a _Cilk_for statement, it is modelled *like* a parallel for,
7088 and the inner statement contains the name of the built-in function
7089 and grain. */
7090 ws_args = region->inner->ws_args;
7091 else if (is_combined_parallel (region))
7092 ws_args = region->ws_args;
7093 else
7094 ws_args = NULL;
7096 if (child_cfun->cfg)
7098 /* Due to inlining, it may happen that we have already outlined
7099 the region, in which case all we need to do is make the
7100 sub-graph unreachable and emit the parallel call. */
7101 edge entry_succ_e, exit_succ_e;
7103 entry_succ_e = single_succ_edge (entry_bb);
7105 gsi = gsi_last_bb (entry_bb);
7106 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_PARALLEL
7107 || gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_TASK);
7108 gsi_remove (&gsi, true);
7110 new_bb = entry_bb;
7111 if (exit_bb)
7113 exit_succ_e = single_succ_edge (exit_bb);
7114 make_edge (new_bb, exit_succ_e->dest, EDGE_FALLTHRU);
7116 remove_edge_and_dominated_blocks (entry_succ_e);
7118 else
7120 unsigned srcidx, dstidx, num;
7122 /* If the parallel region needs data sent from the parent
7123 function, then the very first statement (except possible
7124 tree profile counter updates) of the parallel body
7125 is a copy assignment .OMP_DATA_I = &.OMP_DATA_O. Since
7126 &.OMP_DATA_O is passed as an argument to the child function,
7127 we need to replace it with the argument as seen by the child
7128 function.
7130 In most cases, this will end up being the identity assignment
7131 .OMP_DATA_I = .OMP_DATA_I. However, if the parallel body had
7132 a function call that has been inlined, the original PARM_DECL
7133 .OMP_DATA_I may have been converted into a different local
7134 variable. In which case, we need to keep the assignment. */
7135 if (gimple_omp_taskreg_data_arg (entry_stmt))
7137 basic_block entry_succ_bb
7138 = single_succ_p (entry_bb) ? single_succ (entry_bb)
7139 : FALLTHRU_EDGE (entry_bb)->dest;
7140 tree arg;
7141 gimple *parcopy_stmt = NULL;
7143 for (gsi = gsi_start_bb (entry_succ_bb); ; gsi_next (&gsi))
7145 gimple *stmt;
7147 gcc_assert (!gsi_end_p (gsi));
7148 stmt = gsi_stmt (gsi);
7149 if (gimple_code (stmt) != GIMPLE_ASSIGN)
7150 continue;
7152 if (gimple_num_ops (stmt) == 2)
7154 tree arg = gimple_assign_rhs1 (stmt);
7156 /* We're ignore the subcode because we're
7157 effectively doing a STRIP_NOPS. */
7159 if (TREE_CODE (arg) == ADDR_EXPR
7160 && TREE_OPERAND (arg, 0)
7161 == gimple_omp_taskreg_data_arg (entry_stmt))
7163 parcopy_stmt = stmt;
7164 break;
7169 gcc_assert (parcopy_stmt != NULL);
7170 arg = DECL_ARGUMENTS (child_fn);
7172 if (!gimple_in_ssa_p (cfun))
7174 if (gimple_assign_lhs (parcopy_stmt) == arg)
7175 gsi_remove (&gsi, true);
7176 else
7178 /* ?? Is setting the subcode really necessary ?? */
7179 gimple_omp_set_subcode (parcopy_stmt, TREE_CODE (arg));
7180 gimple_assign_set_rhs1 (parcopy_stmt, arg);
7183 else
7185 tree lhs = gimple_assign_lhs (parcopy_stmt);
7186 gcc_assert (SSA_NAME_VAR (lhs) == arg);
7187 /* We'd like to set the rhs to the default def in the child_fn,
7188 but it's too early to create ssa names in the child_fn.
7189 Instead, we set the rhs to the parm. In
7190 move_sese_region_to_fn, we introduce a default def for the
7191 parm, map the parm to it's default def, and once we encounter
7192 this stmt, replace the parm with the default def. */
7193 gimple_assign_set_rhs1 (parcopy_stmt, arg);
7194 update_stmt (parcopy_stmt);
7198 /* Declare local variables needed in CHILD_CFUN. */
7199 block = DECL_INITIAL (child_fn);
7200 BLOCK_VARS (block) = vec2chain (child_cfun->local_decls);
7201 /* The gimplifier could record temporaries in parallel/task block
7202 rather than in containing function's local_decls chain,
7203 which would mean cgraph missed finalizing them. Do it now. */
7204 for (t = BLOCK_VARS (block); t; t = DECL_CHAIN (t))
7205 if (TREE_CODE (t) == VAR_DECL
7206 && TREE_STATIC (t)
7207 && !DECL_EXTERNAL (t))
7208 varpool_node::finalize_decl (t);
7209 DECL_SAVED_TREE (child_fn) = NULL;
7210 /* We'll create a CFG for child_fn, so no gimple body is needed. */
7211 gimple_set_body (child_fn, NULL);
7212 TREE_USED (block) = 1;
7214 /* Reset DECL_CONTEXT on function arguments. */
7215 for (t = DECL_ARGUMENTS (child_fn); t; t = DECL_CHAIN (t))
7216 DECL_CONTEXT (t) = child_fn;
7218 /* Split ENTRY_BB at GIMPLE_OMP_PARALLEL or GIMPLE_OMP_TASK,
7219 so that it can be moved to the child function. */
7220 gsi = gsi_last_bb (entry_bb);
7221 stmt = gsi_stmt (gsi);
7222 gcc_assert (stmt && (gimple_code (stmt) == GIMPLE_OMP_PARALLEL
7223 || gimple_code (stmt) == GIMPLE_OMP_TASK));
7224 e = split_block (entry_bb, stmt);
7225 gsi_remove (&gsi, true);
7226 entry_bb = e->dest;
7227 edge e2 = NULL;
7228 if (gimple_code (entry_stmt) == GIMPLE_OMP_PARALLEL)
7229 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
7230 else
7232 e2 = make_edge (e->src, BRANCH_EDGE (entry_bb)->dest, EDGE_ABNORMAL);
7233 gcc_assert (e2->dest == region->exit);
7234 remove_edge (BRANCH_EDGE (entry_bb));
7235 set_immediate_dominator (CDI_DOMINATORS, e2->dest, e->src);
7236 gsi = gsi_last_bb (region->exit);
7237 gcc_assert (!gsi_end_p (gsi)
7238 && gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
7239 gsi_remove (&gsi, true);
7242 /* Convert GIMPLE_OMP_{RETURN,CONTINUE} into a RETURN_EXPR. */
7243 if (exit_bb)
7245 gsi = gsi_last_bb (exit_bb);
7246 gcc_assert (!gsi_end_p (gsi)
7247 && (gimple_code (gsi_stmt (gsi))
7248 == (e2 ? GIMPLE_OMP_CONTINUE : GIMPLE_OMP_RETURN)));
7249 stmt = gimple_build_return (NULL);
7250 gsi_insert_after (&gsi, stmt, GSI_SAME_STMT);
7251 gsi_remove (&gsi, true);
7254 /* Move the parallel region into CHILD_CFUN. */
7256 if (gimple_in_ssa_p (cfun))
7258 init_tree_ssa (child_cfun);
7259 init_ssa_operands (child_cfun);
7260 child_cfun->gimple_df->in_ssa_p = true;
7261 block = NULL_TREE;
7263 else
7264 block = gimple_block (entry_stmt);
7266 new_bb = move_sese_region_to_fn (child_cfun, entry_bb, exit_bb, block);
7267 if (exit_bb)
7268 single_succ_edge (new_bb)->flags = EDGE_FALLTHRU;
7269 if (e2)
7271 basic_block dest_bb = e2->dest;
7272 if (!exit_bb)
7273 make_edge (new_bb, dest_bb, EDGE_FALLTHRU);
7274 remove_edge (e2);
7275 set_immediate_dominator (CDI_DOMINATORS, dest_bb, new_bb);
7277 /* When the OMP expansion process cannot guarantee an up-to-date
7278 loop tree arrange for the child function to fixup loops. */
7279 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP))
7280 child_cfun->x_current_loops->state |= LOOPS_NEED_FIXUP;
7282 /* Remove non-local VAR_DECLs from child_cfun->local_decls list. */
7283 num = vec_safe_length (child_cfun->local_decls);
7284 for (srcidx = 0, dstidx = 0; srcidx < num; srcidx++)
7286 t = (*child_cfun->local_decls)[srcidx];
7287 if (DECL_CONTEXT (t) == cfun->decl)
7288 continue;
7289 if (srcidx != dstidx)
7290 (*child_cfun->local_decls)[dstidx] = t;
7291 dstidx++;
7293 if (dstidx != num)
7294 vec_safe_truncate (child_cfun->local_decls, dstidx);
7296 /* Inform the callgraph about the new function. */
7297 child_cfun->curr_properties = cfun->curr_properties;
7298 child_cfun->has_simduid_loops |= cfun->has_simduid_loops;
7299 child_cfun->has_force_vectorize_loops |= cfun->has_force_vectorize_loops;
7300 cgraph_node *node = cgraph_node::get_create (child_fn);
7301 node->parallelized_function = 1;
7302 cgraph_node::add_new_function (child_fn, true);
7304 bool need_asm = DECL_ASSEMBLER_NAME_SET_P (current_function_decl)
7305 && !DECL_ASSEMBLER_NAME_SET_P (child_fn);
7307 /* Fix the callgraph edges for child_cfun. Those for cfun will be
7308 fixed in a following pass. */
7309 push_cfun (child_cfun);
7310 if (need_asm)
7311 assign_assembler_name_if_neeeded (child_fn);
7313 if (optimize)
7314 optimize_omp_library_calls (entry_stmt);
7315 cgraph_edge::rebuild_edges ();
7317 /* Some EH regions might become dead, see PR34608. If
7318 pass_cleanup_cfg isn't the first pass to happen with the
7319 new child, these dead EH edges might cause problems.
7320 Clean them up now. */
7321 if (flag_exceptions)
7323 basic_block bb;
7324 bool changed = false;
7326 FOR_EACH_BB_FN (bb, cfun)
7327 changed |= gimple_purge_dead_eh_edges (bb);
7328 if (changed)
7329 cleanup_tree_cfg ();
7331 if (gimple_in_ssa_p (cfun))
7332 update_ssa (TODO_update_ssa);
7333 if (flag_checking && !loops_state_satisfies_p (LOOPS_NEED_FIXUP))
7334 verify_loop_structure ();
7335 pop_cfun ();
7337 if (dump_file && !gimple_in_ssa_p (cfun))
7339 omp_any_child_fn_dumped = true;
7340 dump_function_header (dump_file, child_fn, dump_flags);
7341 dump_function_to_file (child_fn, dump_file, dump_flags);
7345 /* Emit a library call to launch the children threads. */
7346 if (is_cilk_for)
7347 expand_cilk_for_call (new_bb,
7348 as_a <gomp_parallel *> (entry_stmt), ws_args);
7349 else if (gimple_code (entry_stmt) == GIMPLE_OMP_PARALLEL)
7350 expand_parallel_call (region, new_bb,
7351 as_a <gomp_parallel *> (entry_stmt), ws_args);
7352 else
7353 expand_task_call (region, new_bb, as_a <gomp_task *> (entry_stmt));
7354 if (gimple_in_ssa_p (cfun))
7355 update_ssa (TODO_update_ssa_only_virtuals);
7358 /* Information about members of an OpenACC collapsed loop nest. */
7360 struct oacc_collapse
7362 tree base; /* Base value. */
7363 tree iters; /* Number of steps. */
7364 tree step; /* step size. */
7367 /* Helper for expand_oacc_for. Determine collapsed loop information.
7368 Fill in COUNTS array. Emit any initialization code before GSI.
7369 Return the calculated outer loop bound of BOUND_TYPE. */
7371 static tree
7372 expand_oacc_collapse_init (const struct omp_for_data *fd,
7373 gimple_stmt_iterator *gsi,
7374 oacc_collapse *counts, tree bound_type)
7376 tree total = build_int_cst (bound_type, 1);
7377 int ix;
7379 gcc_assert (integer_onep (fd->loop.step));
7380 gcc_assert (integer_zerop (fd->loop.n1));
7382 for (ix = 0; ix != fd->collapse; ix++)
7384 const omp_for_data_loop *loop = &fd->loops[ix];
7386 tree iter_type = TREE_TYPE (loop->v);
7387 tree diff_type = iter_type;
7388 tree plus_type = iter_type;
7390 gcc_assert (loop->cond_code == fd->loop.cond_code);
7392 if (POINTER_TYPE_P (iter_type))
7393 plus_type = sizetype;
7394 if (POINTER_TYPE_P (diff_type) || TYPE_UNSIGNED (diff_type))
7395 diff_type = signed_type_for (diff_type);
7397 tree b = loop->n1;
7398 tree e = loop->n2;
7399 tree s = loop->step;
7400 bool up = loop->cond_code == LT_EXPR;
7401 tree dir = build_int_cst (diff_type, up ? +1 : -1);
7402 bool negating;
7403 tree expr;
7405 b = force_gimple_operand_gsi (gsi, b, true, NULL_TREE,
7406 true, GSI_SAME_STMT);
7407 e = force_gimple_operand_gsi (gsi, e, true, NULL_TREE,
7408 true, GSI_SAME_STMT);
7410 /* Convert the step, avoiding possible unsigned->signed overflow. */
7411 negating = !up && TYPE_UNSIGNED (TREE_TYPE (s));
7412 if (negating)
7413 s = fold_build1 (NEGATE_EXPR, TREE_TYPE (s), s);
7414 s = fold_convert (diff_type, s);
7415 if (negating)
7416 s = fold_build1 (NEGATE_EXPR, diff_type, s);
7417 s = force_gimple_operand_gsi (gsi, s, true, NULL_TREE,
7418 true, GSI_SAME_STMT);
7420 /* Determine the range, avoiding possible unsigned->signed overflow. */
7421 negating = !up && TYPE_UNSIGNED (iter_type);
7422 expr = fold_build2 (MINUS_EXPR, plus_type,
7423 fold_convert (plus_type, negating ? b : e),
7424 fold_convert (plus_type, negating ? e : b));
7425 expr = fold_convert (diff_type, expr);
7426 if (negating)
7427 expr = fold_build1 (NEGATE_EXPR, diff_type, expr);
7428 tree range = force_gimple_operand_gsi
7429 (gsi, expr, true, NULL_TREE, true, GSI_SAME_STMT);
7431 /* Determine number of iterations. */
7432 expr = fold_build2 (MINUS_EXPR, diff_type, range, dir);
7433 expr = fold_build2 (PLUS_EXPR, diff_type, expr, s);
7434 expr = fold_build2 (TRUNC_DIV_EXPR, diff_type, expr, s);
7436 tree iters = force_gimple_operand_gsi (gsi, expr, true, NULL_TREE,
7437 true, GSI_SAME_STMT);
7439 counts[ix].base = b;
7440 counts[ix].iters = iters;
7441 counts[ix].step = s;
7443 total = fold_build2 (MULT_EXPR, bound_type, total,
7444 fold_convert (bound_type, iters));
7447 return total;
7450 /* Emit initializers for collapsed loop members. IVAR is the outer
7451 loop iteration variable, from which collapsed loop iteration values
7452 are calculated. COUNTS array has been initialized by
7453 expand_oacc_collapse_inits. */
7455 static void
7456 expand_oacc_collapse_vars (const struct omp_for_data *fd,
7457 gimple_stmt_iterator *gsi,
7458 const oacc_collapse *counts, tree ivar)
7460 tree ivar_type = TREE_TYPE (ivar);
7462 /* The most rapidly changing iteration variable is the innermost
7463 one. */
7464 for (int ix = fd->collapse; ix--;)
7466 const omp_for_data_loop *loop = &fd->loops[ix];
7467 const oacc_collapse *collapse = &counts[ix];
7468 tree iter_type = TREE_TYPE (loop->v);
7469 tree diff_type = TREE_TYPE (collapse->step);
7470 tree plus_type = iter_type;
7471 enum tree_code plus_code = PLUS_EXPR;
7472 tree expr;
7474 if (POINTER_TYPE_P (iter_type))
7476 plus_code = POINTER_PLUS_EXPR;
7477 plus_type = sizetype;
7480 expr = fold_build2 (TRUNC_MOD_EXPR, ivar_type, ivar,
7481 fold_convert (ivar_type, collapse->iters));
7482 expr = fold_build2 (MULT_EXPR, diff_type, fold_convert (diff_type, expr),
7483 collapse->step);
7484 expr = fold_build2 (plus_code, iter_type, collapse->base,
7485 fold_convert (plus_type, expr));
7486 expr = force_gimple_operand_gsi (gsi, expr, false, NULL_TREE,
7487 true, GSI_SAME_STMT);
7488 gassign *ass = gimple_build_assign (loop->v, expr);
7489 gsi_insert_before (gsi, ass, GSI_SAME_STMT);
7491 if (ix)
7493 expr = fold_build2 (TRUNC_DIV_EXPR, ivar_type, ivar,
7494 fold_convert (ivar_type, collapse->iters));
7495 ivar = force_gimple_operand_gsi (gsi, expr, true, NULL_TREE,
7496 true, GSI_SAME_STMT);
7502 /* Helper function for expand_omp_{for_*,simd}. If this is the outermost
7503 of the combined collapse > 1 loop constructs, generate code like:
7504 if (__builtin_expect (N32 cond3 N31, 0)) goto ZERO_ITER_BB;
7505 if (cond3 is <)
7506 adj = STEP3 - 1;
7507 else
7508 adj = STEP3 + 1;
7509 count3 = (adj + N32 - N31) / STEP3;
7510 if (__builtin_expect (N22 cond2 N21, 0)) goto ZERO_ITER_BB;
7511 if (cond2 is <)
7512 adj = STEP2 - 1;
7513 else
7514 adj = STEP2 + 1;
7515 count2 = (adj + N22 - N21) / STEP2;
7516 if (__builtin_expect (N12 cond1 N11, 0)) goto ZERO_ITER_BB;
7517 if (cond1 is <)
7518 adj = STEP1 - 1;
7519 else
7520 adj = STEP1 + 1;
7521 count1 = (adj + N12 - N11) / STEP1;
7522 count = count1 * count2 * count3;
7523 Furthermore, if ZERO_ITER_BB is NULL, create a BB which does:
7524 count = 0;
7525 and set ZERO_ITER_BB to that bb. If this isn't the outermost
7526 of the combined loop constructs, just initialize COUNTS array
7527 from the _looptemp_ clauses. */
7529 /* NOTE: It *could* be better to moosh all of the BBs together,
7530 creating one larger BB with all the computation and the unexpected
7531 jump at the end. I.e.
7533 bool zero3, zero2, zero1, zero;
7535 zero3 = N32 c3 N31;
7536 count3 = (N32 - N31) /[cl] STEP3;
7537 zero2 = N22 c2 N21;
7538 count2 = (N22 - N21) /[cl] STEP2;
7539 zero1 = N12 c1 N11;
7540 count1 = (N12 - N11) /[cl] STEP1;
7541 zero = zero3 || zero2 || zero1;
7542 count = count1 * count2 * count3;
7543 if (__builtin_expect(zero, false)) goto zero_iter_bb;
7545 After all, we expect the zero=false, and thus we expect to have to
7546 evaluate all of the comparison expressions, so short-circuiting
7547 oughtn't be a win. Since the condition isn't protecting a
7548 denominator, we're not concerned about divide-by-zero, so we can
7549 fully evaluate count even if a numerator turned out to be wrong.
7551 It seems like putting this all together would create much better
7552 scheduling opportunities, and less pressure on the chip's branch
7553 predictor. */
7555 static void
7556 expand_omp_for_init_counts (struct omp_for_data *fd, gimple_stmt_iterator *gsi,
7557 basic_block &entry_bb, tree *counts,
7558 basic_block &zero_iter1_bb, int &first_zero_iter1,
7559 basic_block &zero_iter2_bb, int &first_zero_iter2,
7560 basic_block &l2_dom_bb)
7562 tree t, type = TREE_TYPE (fd->loop.v);
7563 edge e, ne;
7564 int i;
7566 /* Collapsed loops need work for expansion into SSA form. */
7567 gcc_assert (!gimple_in_ssa_p (cfun));
7569 if (gimple_omp_for_combined_into_p (fd->for_stmt)
7570 && TREE_CODE (fd->loop.n2) != INTEGER_CST)
7572 gcc_assert (fd->ordered == 0);
7573 /* First two _looptemp_ clauses are for istart/iend, counts[0]
7574 isn't supposed to be handled, as the inner loop doesn't
7575 use it. */
7576 tree innerc = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
7577 OMP_CLAUSE__LOOPTEMP_);
7578 gcc_assert (innerc);
7579 for (i = 0; i < fd->collapse; i++)
7581 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
7582 OMP_CLAUSE__LOOPTEMP_);
7583 gcc_assert (innerc);
7584 if (i)
7585 counts[i] = OMP_CLAUSE_DECL (innerc);
7586 else
7587 counts[0] = NULL_TREE;
7589 return;
7592 for (i = fd->collapse; i < fd->ordered; i++)
7594 tree itype = TREE_TYPE (fd->loops[i].v);
7595 counts[i] = NULL_TREE;
7596 t = fold_binary (fd->loops[i].cond_code, boolean_type_node,
7597 fold_convert (itype, fd->loops[i].n1),
7598 fold_convert (itype, fd->loops[i].n2));
7599 if (t && integer_zerop (t))
7601 for (i = fd->collapse; i < fd->ordered; i++)
7602 counts[i] = build_int_cst (type, 0);
7603 break;
7606 for (i = 0; i < (fd->ordered ? fd->ordered : fd->collapse); i++)
7608 tree itype = TREE_TYPE (fd->loops[i].v);
7610 if (i >= fd->collapse && counts[i])
7611 continue;
7612 if ((SSA_VAR_P (fd->loop.n2) || i >= fd->collapse)
7613 && ((t = fold_binary (fd->loops[i].cond_code, boolean_type_node,
7614 fold_convert (itype, fd->loops[i].n1),
7615 fold_convert (itype, fd->loops[i].n2)))
7616 == NULL_TREE || !integer_onep (t)))
7618 gcond *cond_stmt;
7619 tree n1, n2;
7620 n1 = fold_convert (itype, unshare_expr (fd->loops[i].n1));
7621 n1 = force_gimple_operand_gsi (gsi, n1, true, NULL_TREE,
7622 true, GSI_SAME_STMT);
7623 n2 = fold_convert (itype, unshare_expr (fd->loops[i].n2));
7624 n2 = force_gimple_operand_gsi (gsi, n2, true, NULL_TREE,
7625 true, GSI_SAME_STMT);
7626 cond_stmt = gimple_build_cond (fd->loops[i].cond_code, n1, n2,
7627 NULL_TREE, NULL_TREE);
7628 gsi_insert_before (gsi, cond_stmt, GSI_SAME_STMT);
7629 if (walk_tree (gimple_cond_lhs_ptr (cond_stmt),
7630 expand_omp_regimplify_p, NULL, NULL)
7631 || walk_tree (gimple_cond_rhs_ptr (cond_stmt),
7632 expand_omp_regimplify_p, NULL, NULL))
7634 *gsi = gsi_for_stmt (cond_stmt);
7635 gimple_regimplify_operands (cond_stmt, gsi);
7637 e = split_block (entry_bb, cond_stmt);
7638 basic_block &zero_iter_bb
7639 = i < fd->collapse ? zero_iter1_bb : zero_iter2_bb;
7640 int &first_zero_iter
7641 = i < fd->collapse ? first_zero_iter1 : first_zero_iter2;
7642 if (zero_iter_bb == NULL)
7644 gassign *assign_stmt;
7645 first_zero_iter = i;
7646 zero_iter_bb = create_empty_bb (entry_bb);
7647 add_bb_to_loop (zero_iter_bb, entry_bb->loop_father);
7648 *gsi = gsi_after_labels (zero_iter_bb);
7649 if (i < fd->collapse)
7650 assign_stmt = gimple_build_assign (fd->loop.n2,
7651 build_zero_cst (type));
7652 else
7654 counts[i] = create_tmp_reg (type, ".count");
7655 assign_stmt
7656 = gimple_build_assign (counts[i], build_zero_cst (type));
7658 gsi_insert_before (gsi, assign_stmt, GSI_SAME_STMT);
7659 set_immediate_dominator (CDI_DOMINATORS, zero_iter_bb,
7660 entry_bb);
7662 ne = make_edge (entry_bb, zero_iter_bb, EDGE_FALSE_VALUE);
7663 ne->probability = REG_BR_PROB_BASE / 2000 - 1;
7664 e->flags = EDGE_TRUE_VALUE;
7665 e->probability = REG_BR_PROB_BASE - ne->probability;
7666 if (l2_dom_bb == NULL)
7667 l2_dom_bb = entry_bb;
7668 entry_bb = e->dest;
7669 *gsi = gsi_last_bb (entry_bb);
7672 if (POINTER_TYPE_P (itype))
7673 itype = signed_type_for (itype);
7674 t = build_int_cst (itype, (fd->loops[i].cond_code == LT_EXPR
7675 ? -1 : 1));
7676 t = fold_build2 (PLUS_EXPR, itype,
7677 fold_convert (itype, fd->loops[i].step), t);
7678 t = fold_build2 (PLUS_EXPR, itype, t,
7679 fold_convert (itype, fd->loops[i].n2));
7680 t = fold_build2 (MINUS_EXPR, itype, t,
7681 fold_convert (itype, fd->loops[i].n1));
7682 /* ?? We could probably use CEIL_DIV_EXPR instead of
7683 TRUNC_DIV_EXPR and adjusting by hand. Unless we can't
7684 generate the same code in the end because generically we
7685 don't know that the values involved must be negative for
7686 GT?? */
7687 if (TYPE_UNSIGNED (itype) && fd->loops[i].cond_code == GT_EXPR)
7688 t = fold_build2 (TRUNC_DIV_EXPR, itype,
7689 fold_build1 (NEGATE_EXPR, itype, t),
7690 fold_build1 (NEGATE_EXPR, itype,
7691 fold_convert (itype,
7692 fd->loops[i].step)));
7693 else
7694 t = fold_build2 (TRUNC_DIV_EXPR, itype, t,
7695 fold_convert (itype, fd->loops[i].step));
7696 t = fold_convert (type, t);
7697 if (TREE_CODE (t) == INTEGER_CST)
7698 counts[i] = t;
7699 else
7701 if (i < fd->collapse || i != first_zero_iter2)
7702 counts[i] = create_tmp_reg (type, ".count");
7703 expand_omp_build_assign (gsi, counts[i], t);
7705 if (SSA_VAR_P (fd->loop.n2) && i < fd->collapse)
7707 if (i == 0)
7708 t = counts[0];
7709 else
7710 t = fold_build2 (MULT_EXPR, type, fd->loop.n2, counts[i]);
7711 expand_omp_build_assign (gsi, fd->loop.n2, t);
7717 /* Helper function for expand_omp_{for_*,simd}. Generate code like:
7718 T = V;
7719 V3 = N31 + (T % count3) * STEP3;
7720 T = T / count3;
7721 V2 = N21 + (T % count2) * STEP2;
7722 T = T / count2;
7723 V1 = N11 + T * STEP1;
7724 if this loop doesn't have an inner loop construct combined with it.
7725 If it does have an inner loop construct combined with it and the
7726 iteration count isn't known constant, store values from counts array
7727 into its _looptemp_ temporaries instead. */
7729 static void
7730 expand_omp_for_init_vars (struct omp_for_data *fd, gimple_stmt_iterator *gsi,
7731 tree *counts, gimple *inner_stmt, tree startvar)
7733 int i;
7734 if (gimple_omp_for_combined_p (fd->for_stmt))
7736 /* If fd->loop.n2 is constant, then no propagation of the counts
7737 is needed, they are constant. */
7738 if (TREE_CODE (fd->loop.n2) == INTEGER_CST)
7739 return;
7741 tree clauses = gimple_code (inner_stmt) != GIMPLE_OMP_FOR
7742 ? gimple_omp_taskreg_clauses (inner_stmt)
7743 : gimple_omp_for_clauses (inner_stmt);
7744 /* First two _looptemp_ clauses are for istart/iend, counts[0]
7745 isn't supposed to be handled, as the inner loop doesn't
7746 use it. */
7747 tree innerc = find_omp_clause (clauses, OMP_CLAUSE__LOOPTEMP_);
7748 gcc_assert (innerc);
7749 for (i = 0; i < fd->collapse; i++)
7751 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
7752 OMP_CLAUSE__LOOPTEMP_);
7753 gcc_assert (innerc);
7754 if (i)
7756 tree tem = OMP_CLAUSE_DECL (innerc);
7757 tree t = fold_convert (TREE_TYPE (tem), counts[i]);
7758 t = force_gimple_operand_gsi (gsi, t, false, NULL_TREE,
7759 false, GSI_CONTINUE_LINKING);
7760 gassign *stmt = gimple_build_assign (tem, t);
7761 gsi_insert_after (gsi, stmt, GSI_CONTINUE_LINKING);
7764 return;
7767 tree type = TREE_TYPE (fd->loop.v);
7768 tree tem = create_tmp_reg (type, ".tem");
7769 gassign *stmt = gimple_build_assign (tem, startvar);
7770 gsi_insert_after (gsi, stmt, GSI_CONTINUE_LINKING);
7772 for (i = fd->collapse - 1; i >= 0; i--)
7774 tree vtype = TREE_TYPE (fd->loops[i].v), itype, t;
7775 itype = vtype;
7776 if (POINTER_TYPE_P (vtype))
7777 itype = signed_type_for (vtype);
7778 if (i != 0)
7779 t = fold_build2 (TRUNC_MOD_EXPR, type, tem, counts[i]);
7780 else
7781 t = tem;
7782 t = fold_convert (itype, t);
7783 t = fold_build2 (MULT_EXPR, itype, t,
7784 fold_convert (itype, fd->loops[i].step));
7785 if (POINTER_TYPE_P (vtype))
7786 t = fold_build_pointer_plus (fd->loops[i].n1, t);
7787 else
7788 t = fold_build2 (PLUS_EXPR, itype, fd->loops[i].n1, t);
7789 t = force_gimple_operand_gsi (gsi, t,
7790 DECL_P (fd->loops[i].v)
7791 && TREE_ADDRESSABLE (fd->loops[i].v),
7792 NULL_TREE, false,
7793 GSI_CONTINUE_LINKING);
7794 stmt = gimple_build_assign (fd->loops[i].v, t);
7795 gsi_insert_after (gsi, stmt, GSI_CONTINUE_LINKING);
7796 if (i != 0)
7798 t = fold_build2 (TRUNC_DIV_EXPR, type, tem, counts[i]);
7799 t = force_gimple_operand_gsi (gsi, t, false, NULL_TREE,
7800 false, GSI_CONTINUE_LINKING);
7801 stmt = gimple_build_assign (tem, t);
7802 gsi_insert_after (gsi, stmt, GSI_CONTINUE_LINKING);
7808 /* Helper function for expand_omp_for_*. Generate code like:
7809 L10:
7810 V3 += STEP3;
7811 if (V3 cond3 N32) goto BODY_BB; else goto L11;
7812 L11:
7813 V3 = N31;
7814 V2 += STEP2;
7815 if (V2 cond2 N22) goto BODY_BB; else goto L12;
7816 L12:
7817 V2 = N21;
7818 V1 += STEP1;
7819 goto BODY_BB; */
7821 static basic_block
7822 extract_omp_for_update_vars (struct omp_for_data *fd, basic_block cont_bb,
7823 basic_block body_bb)
7825 basic_block last_bb, bb, collapse_bb = NULL;
7826 int i;
7827 gimple_stmt_iterator gsi;
7828 edge e;
7829 tree t;
7830 gimple *stmt;
7832 last_bb = cont_bb;
7833 for (i = fd->collapse - 1; i >= 0; i--)
7835 tree vtype = TREE_TYPE (fd->loops[i].v);
7837 bb = create_empty_bb (last_bb);
7838 add_bb_to_loop (bb, last_bb->loop_father);
7839 gsi = gsi_start_bb (bb);
7841 if (i < fd->collapse - 1)
7843 e = make_edge (last_bb, bb, EDGE_FALSE_VALUE);
7844 e->probability = REG_BR_PROB_BASE / 8;
7846 t = fd->loops[i + 1].n1;
7847 t = force_gimple_operand_gsi (&gsi, t,
7848 DECL_P (fd->loops[i + 1].v)
7849 && TREE_ADDRESSABLE (fd->loops[i
7850 + 1].v),
7851 NULL_TREE, false,
7852 GSI_CONTINUE_LINKING);
7853 stmt = gimple_build_assign (fd->loops[i + 1].v, t);
7854 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
7856 else
7857 collapse_bb = bb;
7859 set_immediate_dominator (CDI_DOMINATORS, bb, last_bb);
7861 if (POINTER_TYPE_P (vtype))
7862 t = fold_build_pointer_plus (fd->loops[i].v, fd->loops[i].step);
7863 else
7864 t = fold_build2 (PLUS_EXPR, vtype, fd->loops[i].v, fd->loops[i].step);
7865 t = force_gimple_operand_gsi (&gsi, t,
7866 DECL_P (fd->loops[i].v)
7867 && TREE_ADDRESSABLE (fd->loops[i].v),
7868 NULL_TREE, false, GSI_CONTINUE_LINKING);
7869 stmt = gimple_build_assign (fd->loops[i].v, t);
7870 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
7872 if (i > 0)
7874 t = fd->loops[i].n2;
7875 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
7876 false, GSI_CONTINUE_LINKING);
7877 tree v = fd->loops[i].v;
7878 if (DECL_P (v) && TREE_ADDRESSABLE (v))
7879 v = force_gimple_operand_gsi (&gsi, v, true, NULL_TREE,
7880 false, GSI_CONTINUE_LINKING);
7881 t = fold_build2 (fd->loops[i].cond_code, boolean_type_node, v, t);
7882 stmt = gimple_build_cond_empty (t);
7883 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
7884 e = make_edge (bb, body_bb, EDGE_TRUE_VALUE);
7885 e->probability = REG_BR_PROB_BASE * 7 / 8;
7887 else
7888 make_edge (bb, body_bb, EDGE_FALLTHRU);
7889 last_bb = bb;
7892 return collapse_bb;
7896 /* Expand #pragma omp ordered depend(source). */
7898 static void
7899 expand_omp_ordered_source (gimple_stmt_iterator *gsi, struct omp_for_data *fd,
7900 tree *counts, location_t loc)
7902 enum built_in_function source_ix
7903 = fd->iter_type == long_integer_type_node
7904 ? BUILT_IN_GOMP_DOACROSS_POST : BUILT_IN_GOMP_DOACROSS_ULL_POST;
7905 gimple *g
7906 = gimple_build_call (builtin_decl_explicit (source_ix), 1,
7907 build_fold_addr_expr (counts[fd->ordered]));
7908 gimple_set_location (g, loc);
7909 gsi_insert_before (gsi, g, GSI_SAME_STMT);
7912 /* Expand a single depend from #pragma omp ordered depend(sink:...). */
7914 static void
7915 expand_omp_ordered_sink (gimple_stmt_iterator *gsi, struct omp_for_data *fd,
7916 tree *counts, tree c, location_t loc)
7918 auto_vec<tree, 10> args;
7919 enum built_in_function sink_ix
7920 = fd->iter_type == long_integer_type_node
7921 ? BUILT_IN_GOMP_DOACROSS_WAIT : BUILT_IN_GOMP_DOACROSS_ULL_WAIT;
7922 tree t, off, coff = NULL_TREE, deps = OMP_CLAUSE_DECL (c), cond = NULL_TREE;
7923 int i;
7924 gimple_stmt_iterator gsi2 = *gsi;
7925 bool warned_step = false;
7927 for (i = 0; i < fd->ordered; i++)
7929 off = TREE_PURPOSE (deps);
7930 if (!integer_zerop (off))
7932 gcc_assert (fd->loops[i].cond_code == LT_EXPR
7933 || fd->loops[i].cond_code == GT_EXPR);
7934 bool forward = fd->loops[i].cond_code == LT_EXPR;
7935 if (forward ^ OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
7936 warning_at (loc, 0, "%<depend(sink)%> clause waiting for "
7937 "lexically later iteration");
7938 break;
7940 deps = TREE_CHAIN (deps);
7942 /* If all offsets corresponding to the collapsed loops are zero,
7943 this depend clause can be ignored. FIXME: but there is still a
7944 flush needed. We need to emit one __sync_synchronize () for it
7945 though (perhaps conditionally)? Solve this together with the
7946 conservative dependence folding optimization.
7947 if (i >= fd->collapse)
7948 return; */
7950 deps = OMP_CLAUSE_DECL (c);
7951 gsi_prev (&gsi2);
7952 edge e1 = split_block (gsi_bb (gsi2), gsi_stmt (gsi2));
7953 edge e2 = split_block_after_labels (e1->dest);
7955 *gsi = gsi_after_labels (e1->dest);
7956 for (i = 0; i < fd->ordered; i++)
7958 tree itype = TREE_TYPE (fd->loops[i].v);
7959 if (POINTER_TYPE_P (itype))
7960 itype = sizetype;
7961 if (i)
7962 deps = TREE_CHAIN (deps);
7963 off = TREE_PURPOSE (deps);
7964 tree s = fold_convert_loc (loc, itype, fd->loops[i].step);
7966 if (integer_zerop (off))
7967 t = boolean_true_node;
7968 else
7970 tree a;
7971 tree co = fold_convert_loc (loc, itype, off);
7972 if (POINTER_TYPE_P (TREE_TYPE (fd->loops[i].v)))
7974 if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
7975 co = fold_build1_loc (loc, NEGATE_EXPR, itype, co);
7976 a = fold_build2_loc (loc, POINTER_PLUS_EXPR,
7977 TREE_TYPE (fd->loops[i].v), fd->loops[i].v,
7978 co);
7980 else if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
7981 a = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (fd->loops[i].v),
7982 fd->loops[i].v, co);
7983 else
7984 a = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (fd->loops[i].v),
7985 fd->loops[i].v, co);
7986 if (fd->loops[i].cond_code == LT_EXPR)
7988 if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
7989 t = fold_build2_loc (loc, GE_EXPR, boolean_type_node, a,
7990 fd->loops[i].n1);
7991 else
7992 t = fold_build2_loc (loc, LT_EXPR, boolean_type_node, a,
7993 fd->loops[i].n2);
7995 else if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
7996 t = fold_build2_loc (loc, GT_EXPR, boolean_type_node, a,
7997 fd->loops[i].n2);
7998 else
7999 t = fold_build2_loc (loc, LE_EXPR, boolean_type_node, a,
8000 fd->loops[i].n1);
8002 if (cond)
8003 cond = fold_build2_loc (loc, BIT_AND_EXPR, boolean_type_node, cond, t);
8004 else
8005 cond = t;
8007 off = fold_convert_loc (loc, itype, off);
8009 if (fd->loops[i].cond_code == LT_EXPR
8010 ? !integer_onep (fd->loops[i].step)
8011 : !integer_minus_onep (fd->loops[i].step))
8013 if (TYPE_UNSIGNED (itype) && fd->loops[i].cond_code == GT_EXPR)
8014 t = fold_build2_loc (loc, TRUNC_MOD_EXPR, itype, off,
8015 fold_build1_loc (loc, NEGATE_EXPR, itype,
8016 s));
8017 else
8018 t = fold_build2_loc (loc, TRUNC_MOD_EXPR, itype, off, s);
8019 t = fold_build2_loc (loc, EQ_EXPR, boolean_type_node, t,
8020 build_int_cst (itype, 0));
8021 if (integer_zerop (t) && !warned_step)
8023 warning_at (loc, 0, "%<depend(sink)%> refers to iteration never "
8024 "in the iteration space");
8025 warned_step = true;
8027 cond = fold_build2_loc (loc, BIT_AND_EXPR, boolean_type_node,
8028 cond, t);
8031 if (i <= fd->collapse - 1 && fd->collapse > 1)
8032 t = fd->loop.v;
8033 else if (counts[i])
8034 t = counts[i];
8035 else
8037 t = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (fd->loops[i].v),
8038 fd->loops[i].v, fd->loops[i].n1);
8039 t = fold_convert_loc (loc, fd->iter_type, t);
8041 if (TYPE_UNSIGNED (itype) && fd->loops[i].cond_code == GT_EXPR)
8042 off = fold_build2_loc (loc, TRUNC_DIV_EXPR, itype, off,
8043 fold_build1_loc (loc, NEGATE_EXPR, itype,
8044 s));
8045 else
8046 off = fold_build2_loc (loc, TRUNC_DIV_EXPR, itype, off, s);
8047 if (OMP_CLAUSE_DEPEND_SINK_NEGATIVE (deps))
8048 off = fold_build1_loc (loc, NEGATE_EXPR, itype, off);
8049 off = fold_convert_loc (loc, fd->iter_type, off);
8050 if (i <= fd->collapse - 1 && fd->collapse > 1)
8052 if (i)
8053 off = fold_build2_loc (loc, PLUS_EXPR, fd->iter_type, coff,
8054 off);
8055 if (i < fd->collapse - 1)
8057 coff = fold_build2_loc (loc, MULT_EXPR, fd->iter_type, off,
8058 counts[i]);
8059 continue;
8062 off = unshare_expr (off);
8063 t = fold_build2_loc (loc, PLUS_EXPR, fd->iter_type, t, off);
8064 t = force_gimple_operand_gsi (gsi, t, true, NULL_TREE,
8065 true, GSI_SAME_STMT);
8066 args.safe_push (t);
8068 gimple *g = gimple_build_call_vec (builtin_decl_explicit (sink_ix), args);
8069 gimple_set_location (g, loc);
8070 gsi_insert_before (gsi, g, GSI_SAME_STMT);
8072 *gsi = gsi_last_bb (e1->src);
8073 cond = unshare_expr (cond);
8074 cond = force_gimple_operand_gsi (gsi, cond, true, NULL_TREE, false,
8075 GSI_CONTINUE_LINKING);
8076 gsi_insert_after (gsi, gimple_build_cond_empty (cond), GSI_NEW_STMT);
8077 edge e3 = make_edge (e1->src, e2->dest, EDGE_FALSE_VALUE);
8078 e3->probability = REG_BR_PROB_BASE / 8;
8079 e1->probability = REG_BR_PROB_BASE - e3->probability;
8080 e1->flags = EDGE_TRUE_VALUE;
8081 set_immediate_dominator (CDI_DOMINATORS, e2->dest, e1->src);
8083 *gsi = gsi_after_labels (e2->dest);
8086 /* Expand all #pragma omp ordered depend(source) and
8087 #pragma omp ordered depend(sink:...) constructs in the current
8088 #pragma omp for ordered(n) region. */
8090 static void
8091 expand_omp_ordered_source_sink (struct omp_region *region,
8092 struct omp_for_data *fd, tree *counts,
8093 basic_block cont_bb)
8095 struct omp_region *inner;
8096 int i;
8097 for (i = fd->collapse - 1; i < fd->ordered; i++)
8098 if (i == fd->collapse - 1 && fd->collapse > 1)
8099 counts[i] = NULL_TREE;
8100 else if (i >= fd->collapse && !cont_bb)
8101 counts[i] = build_zero_cst (fd->iter_type);
8102 else if (!POINTER_TYPE_P (TREE_TYPE (fd->loops[i].v))
8103 && integer_onep (fd->loops[i].step))
8104 counts[i] = NULL_TREE;
8105 else
8106 counts[i] = create_tmp_var (fd->iter_type, ".orditer");
8107 tree atype
8108 = build_array_type_nelts (fd->iter_type, fd->ordered - fd->collapse + 1);
8109 counts[fd->ordered] = create_tmp_var (atype, ".orditera");
8110 TREE_ADDRESSABLE (counts[fd->ordered]) = 1;
8112 for (inner = region->inner; inner; inner = inner->next)
8113 if (inner->type == GIMPLE_OMP_ORDERED)
8115 gomp_ordered *ord_stmt = inner->ord_stmt;
8116 gimple_stmt_iterator gsi = gsi_for_stmt (ord_stmt);
8117 location_t loc = gimple_location (ord_stmt);
8118 tree c;
8119 for (c = gimple_omp_ordered_clauses (ord_stmt);
8120 c; c = OMP_CLAUSE_CHAIN (c))
8121 if (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SOURCE)
8122 break;
8123 if (c)
8124 expand_omp_ordered_source (&gsi, fd, counts, loc);
8125 for (c = gimple_omp_ordered_clauses (ord_stmt);
8126 c; c = OMP_CLAUSE_CHAIN (c))
8127 if (OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SINK)
8128 expand_omp_ordered_sink (&gsi, fd, counts, c, loc);
8129 gsi_remove (&gsi, true);
8133 /* Wrap the body into fd->ordered - fd->collapse loops that aren't
8134 collapsed. */
8136 static basic_block
8137 expand_omp_for_ordered_loops (struct omp_for_data *fd, tree *counts,
8138 basic_block cont_bb, basic_block body_bb,
8139 bool ordered_lastprivate)
8141 if (fd->ordered == fd->collapse)
8142 return cont_bb;
8144 if (!cont_bb)
8146 gimple_stmt_iterator gsi = gsi_after_labels (body_bb);
8147 for (int i = fd->collapse; i < fd->ordered; i++)
8149 tree type = TREE_TYPE (fd->loops[i].v);
8150 tree n1 = fold_convert (type, fd->loops[i].n1);
8151 expand_omp_build_assign (&gsi, fd->loops[i].v, n1);
8152 tree aref = build4 (ARRAY_REF, fd->iter_type, counts[fd->ordered],
8153 size_int (i - fd->collapse + 1),
8154 NULL_TREE, NULL_TREE);
8155 expand_omp_build_assign (&gsi, aref, build_zero_cst (fd->iter_type));
8157 return NULL;
8160 for (int i = fd->ordered - 1; i >= fd->collapse; i--)
8162 tree t, type = TREE_TYPE (fd->loops[i].v);
8163 gimple_stmt_iterator gsi = gsi_after_labels (body_bb);
8164 expand_omp_build_assign (&gsi, fd->loops[i].v,
8165 fold_convert (type, fd->loops[i].n1));
8166 if (counts[i])
8167 expand_omp_build_assign (&gsi, counts[i],
8168 build_zero_cst (fd->iter_type));
8169 tree aref = build4 (ARRAY_REF, fd->iter_type, counts[fd->ordered],
8170 size_int (i - fd->collapse + 1),
8171 NULL_TREE, NULL_TREE);
8172 expand_omp_build_assign (&gsi, aref, build_zero_cst (fd->iter_type));
8173 if (!gsi_end_p (gsi))
8174 gsi_prev (&gsi);
8175 else
8176 gsi = gsi_last_bb (body_bb);
8177 edge e1 = split_block (body_bb, gsi_stmt (gsi));
8178 basic_block new_body = e1->dest;
8179 if (body_bb == cont_bb)
8180 cont_bb = new_body;
8181 edge e2 = NULL;
8182 basic_block new_header;
8183 if (EDGE_COUNT (cont_bb->preds) > 0)
8185 gsi = gsi_last_bb (cont_bb);
8186 if (POINTER_TYPE_P (type))
8187 t = fold_build_pointer_plus (fd->loops[i].v,
8188 fold_convert (sizetype,
8189 fd->loops[i].step));
8190 else
8191 t = fold_build2 (PLUS_EXPR, type, fd->loops[i].v,
8192 fold_convert (type, fd->loops[i].step));
8193 expand_omp_build_assign (&gsi, fd->loops[i].v, t);
8194 if (counts[i])
8196 t = fold_build2 (PLUS_EXPR, fd->iter_type, counts[i],
8197 build_int_cst (fd->iter_type, 1));
8198 expand_omp_build_assign (&gsi, counts[i], t);
8199 t = counts[i];
8201 else
8203 t = fold_build2 (MINUS_EXPR, TREE_TYPE (fd->loops[i].v),
8204 fd->loops[i].v, fd->loops[i].n1);
8205 t = fold_convert (fd->iter_type, t);
8206 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8207 true, GSI_SAME_STMT);
8209 aref = build4 (ARRAY_REF, fd->iter_type, counts[fd->ordered],
8210 size_int (i - fd->collapse + 1),
8211 NULL_TREE, NULL_TREE);
8212 expand_omp_build_assign (&gsi, aref, t);
8213 gsi_prev (&gsi);
8214 e2 = split_block (cont_bb, gsi_stmt (gsi));
8215 new_header = e2->dest;
8217 else
8218 new_header = cont_bb;
8219 gsi = gsi_after_labels (new_header);
8220 tree v = force_gimple_operand_gsi (&gsi, fd->loops[i].v, true, NULL_TREE,
8221 true, GSI_SAME_STMT);
8222 tree n2
8223 = force_gimple_operand_gsi (&gsi, fold_convert (type, fd->loops[i].n2),
8224 true, NULL_TREE, true, GSI_SAME_STMT);
8225 t = build2 (fd->loops[i].cond_code, boolean_type_node, v, n2);
8226 gsi_insert_before (&gsi, gimple_build_cond_empty (t), GSI_NEW_STMT);
8227 edge e3 = split_block (new_header, gsi_stmt (gsi));
8228 cont_bb = e3->dest;
8229 remove_edge (e1);
8230 make_edge (body_bb, new_header, EDGE_FALLTHRU);
8231 e3->flags = EDGE_FALSE_VALUE;
8232 e3->probability = REG_BR_PROB_BASE / 8;
8233 e1 = make_edge (new_header, new_body, EDGE_TRUE_VALUE);
8234 e1->probability = REG_BR_PROB_BASE - e3->probability;
8236 set_immediate_dominator (CDI_DOMINATORS, new_header, body_bb);
8237 set_immediate_dominator (CDI_DOMINATORS, new_body, new_header);
8239 if (e2)
8241 struct loop *loop = alloc_loop ();
8242 loop->header = new_header;
8243 loop->latch = e2->src;
8244 add_loop (loop, body_bb->loop_father);
8248 /* If there are any lastprivate clauses and it is possible some loops
8249 might have zero iterations, ensure all the decls are initialized,
8250 otherwise we could crash evaluating C++ class iterators with lastprivate
8251 clauses. */
8252 bool need_inits = false;
8253 for (int i = fd->collapse; ordered_lastprivate && i < fd->ordered; i++)
8254 if (need_inits)
8256 tree type = TREE_TYPE (fd->loops[i].v);
8257 gimple_stmt_iterator gsi = gsi_after_labels (body_bb);
8258 expand_omp_build_assign (&gsi, fd->loops[i].v,
8259 fold_convert (type, fd->loops[i].n1));
8261 else
8263 tree type = TREE_TYPE (fd->loops[i].v);
8264 tree this_cond = fold_build2 (fd->loops[i].cond_code,
8265 boolean_type_node,
8266 fold_convert (type, fd->loops[i].n1),
8267 fold_convert (type, fd->loops[i].n2));
8268 if (!integer_onep (this_cond))
8269 need_inits = true;
8272 return cont_bb;
8276 /* A subroutine of expand_omp_for. Generate code for a parallel
8277 loop with any schedule. Given parameters:
8279 for (V = N1; V cond N2; V += STEP) BODY;
8281 where COND is "<" or ">", we generate pseudocode
8283 more = GOMP_loop_foo_start (N1, N2, STEP, CHUNK, &istart0, &iend0);
8284 if (more) goto L0; else goto L3;
8286 V = istart0;
8287 iend = iend0;
8289 BODY;
8290 V += STEP;
8291 if (V cond iend) goto L1; else goto L2;
8293 if (GOMP_loop_foo_next (&istart0, &iend0)) goto L0; else goto L3;
8296 If this is a combined omp parallel loop, instead of the call to
8297 GOMP_loop_foo_start, we call GOMP_loop_foo_next.
8298 If this is gimple_omp_for_combined_p loop, then instead of assigning
8299 V and iend in L0 we assign the first two _looptemp_ clause decls of the
8300 inner GIMPLE_OMP_FOR and V += STEP; and
8301 if (V cond iend) goto L1; else goto L2; are removed.
8303 For collapsed loops, given parameters:
8304 collapse(3)
8305 for (V1 = N11; V1 cond1 N12; V1 += STEP1)
8306 for (V2 = N21; V2 cond2 N22; V2 += STEP2)
8307 for (V3 = N31; V3 cond3 N32; V3 += STEP3)
8308 BODY;
8310 we generate pseudocode
8312 if (__builtin_expect (N32 cond3 N31, 0)) goto Z0;
8313 if (cond3 is <)
8314 adj = STEP3 - 1;
8315 else
8316 adj = STEP3 + 1;
8317 count3 = (adj + N32 - N31) / STEP3;
8318 if (__builtin_expect (N22 cond2 N21, 0)) goto Z0;
8319 if (cond2 is <)
8320 adj = STEP2 - 1;
8321 else
8322 adj = STEP2 + 1;
8323 count2 = (adj + N22 - N21) / STEP2;
8324 if (__builtin_expect (N12 cond1 N11, 0)) goto Z0;
8325 if (cond1 is <)
8326 adj = STEP1 - 1;
8327 else
8328 adj = STEP1 + 1;
8329 count1 = (adj + N12 - N11) / STEP1;
8330 count = count1 * count2 * count3;
8331 goto Z1;
8333 count = 0;
8335 more = GOMP_loop_foo_start (0, count, 1, CHUNK, &istart0, &iend0);
8336 if (more) goto L0; else goto L3;
8338 V = istart0;
8339 T = V;
8340 V3 = N31 + (T % count3) * STEP3;
8341 T = T / count3;
8342 V2 = N21 + (T % count2) * STEP2;
8343 T = T / count2;
8344 V1 = N11 + T * STEP1;
8345 iend = iend0;
8347 BODY;
8348 V += 1;
8349 if (V < iend) goto L10; else goto L2;
8350 L10:
8351 V3 += STEP3;
8352 if (V3 cond3 N32) goto L1; else goto L11;
8353 L11:
8354 V3 = N31;
8355 V2 += STEP2;
8356 if (V2 cond2 N22) goto L1; else goto L12;
8357 L12:
8358 V2 = N21;
8359 V1 += STEP1;
8360 goto L1;
8362 if (GOMP_loop_foo_next (&istart0, &iend0)) goto L0; else goto L3;
8367 static void
8368 expand_omp_for_generic (struct omp_region *region,
8369 struct omp_for_data *fd,
8370 enum built_in_function start_fn,
8371 enum built_in_function next_fn,
8372 gimple *inner_stmt)
8374 tree type, istart0, iend0, iend;
8375 tree t, vmain, vback, bias = NULL_TREE;
8376 basic_block entry_bb, cont_bb, exit_bb, l0_bb, l1_bb, collapse_bb;
8377 basic_block l2_bb = NULL, l3_bb = NULL;
8378 gimple_stmt_iterator gsi;
8379 gassign *assign_stmt;
8380 bool in_combined_parallel = is_combined_parallel (region);
8381 bool broken_loop = region->cont == NULL;
8382 edge e, ne;
8383 tree *counts = NULL;
8384 int i;
8385 bool ordered_lastprivate = false;
8387 gcc_assert (!broken_loop || !in_combined_parallel);
8388 gcc_assert (fd->iter_type == long_integer_type_node
8389 || !in_combined_parallel);
8391 entry_bb = region->entry;
8392 cont_bb = region->cont;
8393 collapse_bb = NULL;
8394 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
8395 gcc_assert (broken_loop
8396 || BRANCH_EDGE (entry_bb)->dest == FALLTHRU_EDGE (cont_bb)->dest);
8397 l0_bb = split_edge (FALLTHRU_EDGE (entry_bb));
8398 l1_bb = single_succ (l0_bb);
8399 if (!broken_loop)
8401 l2_bb = create_empty_bb (cont_bb);
8402 gcc_assert (BRANCH_EDGE (cont_bb)->dest == l1_bb
8403 || (single_succ_edge (BRANCH_EDGE (cont_bb)->dest)->dest
8404 == l1_bb));
8405 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
8407 else
8408 l2_bb = NULL;
8409 l3_bb = BRANCH_EDGE (entry_bb)->dest;
8410 exit_bb = region->exit;
8412 gsi = gsi_last_bb (entry_bb);
8414 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
8415 if (fd->ordered
8416 && find_omp_clause (gimple_omp_for_clauses (gsi_stmt (gsi)),
8417 OMP_CLAUSE_LASTPRIVATE))
8418 ordered_lastprivate = false;
8419 if (fd->collapse > 1 || fd->ordered)
8421 int first_zero_iter1 = -1, first_zero_iter2 = -1;
8422 basic_block zero_iter1_bb = NULL, zero_iter2_bb = NULL, l2_dom_bb = NULL;
8424 counts = XALLOCAVEC (tree, fd->ordered ? fd->ordered + 1 : fd->collapse);
8425 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
8426 zero_iter1_bb, first_zero_iter1,
8427 zero_iter2_bb, first_zero_iter2, l2_dom_bb);
8429 if (zero_iter1_bb)
8431 /* Some counts[i] vars might be uninitialized if
8432 some loop has zero iterations. But the body shouldn't
8433 be executed in that case, so just avoid uninit warnings. */
8434 for (i = first_zero_iter1;
8435 i < (fd->ordered ? fd->ordered : fd->collapse); i++)
8436 if (SSA_VAR_P (counts[i]))
8437 TREE_NO_WARNING (counts[i]) = 1;
8438 gsi_prev (&gsi);
8439 e = split_block (entry_bb, gsi_stmt (gsi));
8440 entry_bb = e->dest;
8441 make_edge (zero_iter1_bb, entry_bb, EDGE_FALLTHRU);
8442 gsi = gsi_last_bb (entry_bb);
8443 set_immediate_dominator (CDI_DOMINATORS, entry_bb,
8444 get_immediate_dominator (CDI_DOMINATORS,
8445 zero_iter1_bb));
8447 if (zero_iter2_bb)
8449 /* Some counts[i] vars might be uninitialized if
8450 some loop has zero iterations. But the body shouldn't
8451 be executed in that case, so just avoid uninit warnings. */
8452 for (i = first_zero_iter2; i < fd->ordered; i++)
8453 if (SSA_VAR_P (counts[i]))
8454 TREE_NO_WARNING (counts[i]) = 1;
8455 if (zero_iter1_bb)
8456 make_edge (zero_iter2_bb, entry_bb, EDGE_FALLTHRU);
8457 else
8459 gsi_prev (&gsi);
8460 e = split_block (entry_bb, gsi_stmt (gsi));
8461 entry_bb = e->dest;
8462 make_edge (zero_iter2_bb, entry_bb, EDGE_FALLTHRU);
8463 gsi = gsi_last_bb (entry_bb);
8464 set_immediate_dominator (CDI_DOMINATORS, entry_bb,
8465 get_immediate_dominator
8466 (CDI_DOMINATORS, zero_iter2_bb));
8469 if (fd->collapse == 1)
8471 counts[0] = fd->loop.n2;
8472 fd->loop = fd->loops[0];
8476 type = TREE_TYPE (fd->loop.v);
8477 istart0 = create_tmp_var (fd->iter_type, ".istart0");
8478 iend0 = create_tmp_var (fd->iter_type, ".iend0");
8479 TREE_ADDRESSABLE (istart0) = 1;
8480 TREE_ADDRESSABLE (iend0) = 1;
8482 /* See if we need to bias by LLONG_MIN. */
8483 if (fd->iter_type == long_long_unsigned_type_node
8484 && TREE_CODE (type) == INTEGER_TYPE
8485 && !TYPE_UNSIGNED (type)
8486 && fd->ordered == 0)
8488 tree n1, n2;
8490 if (fd->loop.cond_code == LT_EXPR)
8492 n1 = fd->loop.n1;
8493 n2 = fold_build2 (PLUS_EXPR, type, fd->loop.n2, fd->loop.step);
8495 else
8497 n1 = fold_build2 (MINUS_EXPR, type, fd->loop.n2, fd->loop.step);
8498 n2 = fd->loop.n1;
8500 if (TREE_CODE (n1) != INTEGER_CST
8501 || TREE_CODE (n2) != INTEGER_CST
8502 || ((tree_int_cst_sgn (n1) < 0) ^ (tree_int_cst_sgn (n2) < 0)))
8503 bias = fold_convert (fd->iter_type, TYPE_MIN_VALUE (type));
8506 gimple_stmt_iterator gsif = gsi;
8507 gsi_prev (&gsif);
8509 tree arr = NULL_TREE;
8510 if (in_combined_parallel)
8512 gcc_assert (fd->ordered == 0);
8513 /* In a combined parallel loop, emit a call to
8514 GOMP_loop_foo_next. */
8515 t = build_call_expr (builtin_decl_explicit (next_fn), 2,
8516 build_fold_addr_expr (istart0),
8517 build_fold_addr_expr (iend0));
8519 else
8521 tree t0, t1, t2, t3, t4;
8522 /* If this is not a combined parallel loop, emit a call to
8523 GOMP_loop_foo_start in ENTRY_BB. */
8524 t4 = build_fold_addr_expr (iend0);
8525 t3 = build_fold_addr_expr (istart0);
8526 if (fd->ordered)
8528 t0 = build_int_cst (unsigned_type_node,
8529 fd->ordered - fd->collapse + 1);
8530 arr = create_tmp_var (build_array_type_nelts (fd->iter_type,
8531 fd->ordered
8532 - fd->collapse + 1),
8533 ".omp_counts");
8534 DECL_NAMELESS (arr) = 1;
8535 TREE_ADDRESSABLE (arr) = 1;
8536 TREE_STATIC (arr) = 1;
8537 vec<constructor_elt, va_gc> *v;
8538 vec_alloc (v, fd->ordered - fd->collapse + 1);
8539 int idx;
8541 for (idx = 0; idx < fd->ordered - fd->collapse + 1; idx++)
8543 tree c;
8544 if (idx == 0 && fd->collapse > 1)
8545 c = fd->loop.n2;
8546 else
8547 c = counts[idx + fd->collapse - 1];
8548 tree purpose = size_int (idx);
8549 CONSTRUCTOR_APPEND_ELT (v, purpose, c);
8550 if (TREE_CODE (c) != INTEGER_CST)
8551 TREE_STATIC (arr) = 0;
8554 DECL_INITIAL (arr) = build_constructor (TREE_TYPE (arr), v);
8555 if (!TREE_STATIC (arr))
8556 force_gimple_operand_gsi (&gsi, build1 (DECL_EXPR,
8557 void_type_node, arr),
8558 true, NULL_TREE, true, GSI_SAME_STMT);
8559 t1 = build_fold_addr_expr (arr);
8560 t2 = NULL_TREE;
8562 else
8564 t2 = fold_convert (fd->iter_type, fd->loop.step);
8565 t1 = fd->loop.n2;
8566 t0 = fd->loop.n1;
8567 if (gimple_omp_for_combined_into_p (fd->for_stmt))
8569 tree innerc
8570 = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
8571 OMP_CLAUSE__LOOPTEMP_);
8572 gcc_assert (innerc);
8573 t0 = OMP_CLAUSE_DECL (innerc);
8574 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
8575 OMP_CLAUSE__LOOPTEMP_);
8576 gcc_assert (innerc);
8577 t1 = OMP_CLAUSE_DECL (innerc);
8579 if (POINTER_TYPE_P (TREE_TYPE (t0))
8580 && TYPE_PRECISION (TREE_TYPE (t0))
8581 != TYPE_PRECISION (fd->iter_type))
8583 /* Avoid casting pointers to integer of a different size. */
8584 tree itype = signed_type_for (type);
8585 t1 = fold_convert (fd->iter_type, fold_convert (itype, t1));
8586 t0 = fold_convert (fd->iter_type, fold_convert (itype, t0));
8588 else
8590 t1 = fold_convert (fd->iter_type, t1);
8591 t0 = fold_convert (fd->iter_type, t0);
8593 if (bias)
8595 t1 = fold_build2 (PLUS_EXPR, fd->iter_type, t1, bias);
8596 t0 = fold_build2 (PLUS_EXPR, fd->iter_type, t0, bias);
8599 if (fd->iter_type == long_integer_type_node || fd->ordered)
8601 if (fd->chunk_size)
8603 t = fold_convert (fd->iter_type, fd->chunk_size);
8604 t = omp_adjust_chunk_size (t, fd->simd_schedule);
8605 if (fd->ordered)
8606 t = build_call_expr (builtin_decl_explicit (start_fn),
8607 5, t0, t1, t, t3, t4);
8608 else
8609 t = build_call_expr (builtin_decl_explicit (start_fn),
8610 6, t0, t1, t2, t, t3, t4);
8612 else if (fd->ordered)
8613 t = build_call_expr (builtin_decl_explicit (start_fn),
8614 4, t0, t1, t3, t4);
8615 else
8616 t = build_call_expr (builtin_decl_explicit (start_fn),
8617 5, t0, t1, t2, t3, t4);
8619 else
8621 tree t5;
8622 tree c_bool_type;
8623 tree bfn_decl;
8625 /* The GOMP_loop_ull_*start functions have additional boolean
8626 argument, true for < loops and false for > loops.
8627 In Fortran, the C bool type can be different from
8628 boolean_type_node. */
8629 bfn_decl = builtin_decl_explicit (start_fn);
8630 c_bool_type = TREE_TYPE (TREE_TYPE (bfn_decl));
8631 t5 = build_int_cst (c_bool_type,
8632 fd->loop.cond_code == LT_EXPR ? 1 : 0);
8633 if (fd->chunk_size)
8635 tree bfn_decl = builtin_decl_explicit (start_fn);
8636 t = fold_convert (fd->iter_type, fd->chunk_size);
8637 t = omp_adjust_chunk_size (t, fd->simd_schedule);
8638 t = build_call_expr (bfn_decl, 7, t5, t0, t1, t2, t, t3, t4);
8640 else
8641 t = build_call_expr (builtin_decl_explicit (start_fn),
8642 6, t5, t0, t1, t2, t3, t4);
8645 if (TREE_TYPE (t) != boolean_type_node)
8646 t = fold_build2 (NE_EXPR, boolean_type_node,
8647 t, build_int_cst (TREE_TYPE (t), 0));
8648 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8649 true, GSI_SAME_STMT);
8650 if (arr && !TREE_STATIC (arr))
8652 tree clobber = build_constructor (TREE_TYPE (arr), NULL);
8653 TREE_THIS_VOLATILE (clobber) = 1;
8654 gsi_insert_before (&gsi, gimple_build_assign (arr, clobber),
8655 GSI_SAME_STMT);
8657 gsi_insert_after (&gsi, gimple_build_cond_empty (t), GSI_SAME_STMT);
8659 /* Remove the GIMPLE_OMP_FOR statement. */
8660 gsi_remove (&gsi, true);
8662 if (gsi_end_p (gsif))
8663 gsif = gsi_after_labels (gsi_bb (gsif));
8664 gsi_next (&gsif);
8666 /* Iteration setup for sequential loop goes in L0_BB. */
8667 tree startvar = fd->loop.v;
8668 tree endvar = NULL_TREE;
8670 if (gimple_omp_for_combined_p (fd->for_stmt))
8672 gcc_assert (gimple_code (inner_stmt) == GIMPLE_OMP_FOR
8673 && gimple_omp_for_kind (inner_stmt)
8674 == GF_OMP_FOR_KIND_SIMD);
8675 tree innerc = find_omp_clause (gimple_omp_for_clauses (inner_stmt),
8676 OMP_CLAUSE__LOOPTEMP_);
8677 gcc_assert (innerc);
8678 startvar = OMP_CLAUSE_DECL (innerc);
8679 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
8680 OMP_CLAUSE__LOOPTEMP_);
8681 gcc_assert (innerc);
8682 endvar = OMP_CLAUSE_DECL (innerc);
8685 gsi = gsi_start_bb (l0_bb);
8686 t = istart0;
8687 if (fd->ordered && fd->collapse == 1)
8688 t = fold_build2 (MULT_EXPR, fd->iter_type, t,
8689 fold_convert (fd->iter_type, fd->loop.step));
8690 else if (bias)
8691 t = fold_build2 (MINUS_EXPR, fd->iter_type, t, bias);
8692 if (fd->ordered && fd->collapse == 1)
8694 if (POINTER_TYPE_P (TREE_TYPE (startvar)))
8695 t = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (startvar),
8696 fd->loop.n1, fold_convert (sizetype, t));
8697 else
8699 t = fold_convert (TREE_TYPE (startvar), t);
8700 t = fold_build2 (PLUS_EXPR, TREE_TYPE (startvar),
8701 fd->loop.n1, t);
8704 else
8706 if (POINTER_TYPE_P (TREE_TYPE (startvar)))
8707 t = fold_convert (signed_type_for (TREE_TYPE (startvar)), t);
8708 t = fold_convert (TREE_TYPE (startvar), t);
8710 t = force_gimple_operand_gsi (&gsi, t,
8711 DECL_P (startvar)
8712 && TREE_ADDRESSABLE (startvar),
8713 NULL_TREE, false, GSI_CONTINUE_LINKING);
8714 assign_stmt = gimple_build_assign (startvar, t);
8715 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
8717 t = iend0;
8718 if (fd->ordered && fd->collapse == 1)
8719 t = fold_build2 (MULT_EXPR, fd->iter_type, t,
8720 fold_convert (fd->iter_type, fd->loop.step));
8721 else if (bias)
8722 t = fold_build2 (MINUS_EXPR, fd->iter_type, t, bias);
8723 if (fd->ordered && fd->collapse == 1)
8725 if (POINTER_TYPE_P (TREE_TYPE (startvar)))
8726 t = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (startvar),
8727 fd->loop.n1, fold_convert (sizetype, t));
8728 else
8730 t = fold_convert (TREE_TYPE (startvar), t);
8731 t = fold_build2 (PLUS_EXPR, TREE_TYPE (startvar),
8732 fd->loop.n1, t);
8735 else
8737 if (POINTER_TYPE_P (TREE_TYPE (startvar)))
8738 t = fold_convert (signed_type_for (TREE_TYPE (startvar)), t);
8739 t = fold_convert (TREE_TYPE (startvar), t);
8741 iend = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8742 false, GSI_CONTINUE_LINKING);
8743 if (endvar)
8745 assign_stmt = gimple_build_assign (endvar, iend);
8746 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
8747 if (useless_type_conversion_p (TREE_TYPE (fd->loop.v), TREE_TYPE (iend)))
8748 assign_stmt = gimple_build_assign (fd->loop.v, iend);
8749 else
8750 assign_stmt = gimple_build_assign (fd->loop.v, NOP_EXPR, iend);
8751 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
8753 /* Handle linear clause adjustments. */
8754 tree itercnt = NULL_TREE;
8755 if (gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_FOR)
8756 for (tree c = gimple_omp_for_clauses (fd->for_stmt);
8757 c; c = OMP_CLAUSE_CHAIN (c))
8758 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
8759 && !OMP_CLAUSE_LINEAR_NO_COPYIN (c))
8761 tree d = OMP_CLAUSE_DECL (c);
8762 bool is_ref = is_reference (d);
8763 tree t = d, a, dest;
8764 if (is_ref)
8765 t = build_simple_mem_ref_loc (OMP_CLAUSE_LOCATION (c), t);
8766 tree type = TREE_TYPE (t);
8767 if (POINTER_TYPE_P (type))
8768 type = sizetype;
8769 dest = unshare_expr (t);
8770 tree v = create_tmp_var (TREE_TYPE (t), NULL);
8771 expand_omp_build_assign (&gsif, v, t);
8772 if (itercnt == NULL_TREE)
8774 itercnt = startvar;
8775 tree n1 = fd->loop.n1;
8776 if (POINTER_TYPE_P (TREE_TYPE (itercnt)))
8778 itercnt
8779 = fold_convert (signed_type_for (TREE_TYPE (itercnt)),
8780 itercnt);
8781 n1 = fold_convert (TREE_TYPE (itercnt), n1);
8783 itercnt = fold_build2 (MINUS_EXPR, TREE_TYPE (itercnt),
8784 itercnt, n1);
8785 itercnt = fold_build2 (EXACT_DIV_EXPR, TREE_TYPE (itercnt),
8786 itercnt, fd->loop.step);
8787 itercnt = force_gimple_operand_gsi (&gsi, itercnt, true,
8788 NULL_TREE, false,
8789 GSI_CONTINUE_LINKING);
8791 a = fold_build2 (MULT_EXPR, type,
8792 fold_convert (type, itercnt),
8793 fold_convert (type, OMP_CLAUSE_LINEAR_STEP (c)));
8794 t = fold_build2 (type == TREE_TYPE (t) ? PLUS_EXPR
8795 : POINTER_PLUS_EXPR, TREE_TYPE (t), v, a);
8796 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8797 false, GSI_CONTINUE_LINKING);
8798 assign_stmt = gimple_build_assign (dest, t);
8799 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
8801 if (fd->collapse > 1)
8802 expand_omp_for_init_vars (fd, &gsi, counts, inner_stmt, startvar);
8804 if (fd->ordered)
8806 /* Until now, counts array contained number of iterations or
8807 variable containing it for ith loop. From now on, we need
8808 those counts only for collapsed loops, and only for the 2nd
8809 till the last collapsed one. Move those one element earlier,
8810 we'll use counts[fd->collapse - 1] for the first source/sink
8811 iteration counter and so on and counts[fd->ordered]
8812 as the array holding the current counter values for
8813 depend(source). */
8814 if (fd->collapse > 1)
8815 memmove (counts, counts + 1, (fd->collapse - 1) * sizeof (counts[0]));
8816 if (broken_loop)
8818 int i;
8819 for (i = fd->collapse; i < fd->ordered; i++)
8821 tree type = TREE_TYPE (fd->loops[i].v);
8822 tree this_cond
8823 = fold_build2 (fd->loops[i].cond_code, boolean_type_node,
8824 fold_convert (type, fd->loops[i].n1),
8825 fold_convert (type, fd->loops[i].n2));
8826 if (!integer_onep (this_cond))
8827 break;
8829 if (i < fd->ordered)
8831 cont_bb
8832 = create_empty_bb (EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb);
8833 add_bb_to_loop (cont_bb, l1_bb->loop_father);
8834 gimple_stmt_iterator gsi = gsi_after_labels (cont_bb);
8835 gimple *g = gimple_build_omp_continue (fd->loop.v, fd->loop.v);
8836 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
8837 make_edge (cont_bb, l3_bb, EDGE_FALLTHRU);
8838 make_edge (cont_bb, l1_bb, 0);
8839 l2_bb = create_empty_bb (cont_bb);
8840 broken_loop = false;
8843 expand_omp_ordered_source_sink (region, fd, counts, cont_bb);
8844 cont_bb = expand_omp_for_ordered_loops (fd, counts, cont_bb, l1_bb,
8845 ordered_lastprivate);
8846 if (counts[fd->collapse - 1])
8848 gcc_assert (fd->collapse == 1);
8849 gsi = gsi_last_bb (l0_bb);
8850 expand_omp_build_assign (&gsi, counts[fd->collapse - 1],
8851 istart0, true);
8852 gsi = gsi_last_bb (cont_bb);
8853 t = fold_build2 (PLUS_EXPR, fd->iter_type, counts[fd->collapse - 1],
8854 build_int_cst (fd->iter_type, 1));
8855 expand_omp_build_assign (&gsi, counts[fd->collapse - 1], t);
8856 tree aref = build4 (ARRAY_REF, fd->iter_type, counts[fd->ordered],
8857 size_zero_node, NULL_TREE, NULL_TREE);
8858 expand_omp_build_assign (&gsi, aref, counts[fd->collapse - 1]);
8859 t = counts[fd->collapse - 1];
8861 else if (fd->collapse > 1)
8862 t = fd->loop.v;
8863 else
8865 t = fold_build2 (MINUS_EXPR, TREE_TYPE (fd->loops[0].v),
8866 fd->loops[0].v, fd->loops[0].n1);
8867 t = fold_convert (fd->iter_type, t);
8869 gsi = gsi_last_bb (l0_bb);
8870 tree aref = build4 (ARRAY_REF, fd->iter_type, counts[fd->ordered],
8871 size_zero_node, NULL_TREE, NULL_TREE);
8872 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8873 false, GSI_CONTINUE_LINKING);
8874 expand_omp_build_assign (&gsi, aref, t, true);
8877 if (!broken_loop)
8879 /* Code to control the increment and predicate for the sequential
8880 loop goes in the CONT_BB. */
8881 gsi = gsi_last_bb (cont_bb);
8882 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
8883 gcc_assert (gimple_code (cont_stmt) == GIMPLE_OMP_CONTINUE);
8884 vmain = gimple_omp_continue_control_use (cont_stmt);
8885 vback = gimple_omp_continue_control_def (cont_stmt);
8887 if (!gimple_omp_for_combined_p (fd->for_stmt))
8889 if (POINTER_TYPE_P (type))
8890 t = fold_build_pointer_plus (vmain, fd->loop.step);
8891 else
8892 t = fold_build2 (PLUS_EXPR, type, vmain, fd->loop.step);
8893 t = force_gimple_operand_gsi (&gsi, t,
8894 DECL_P (vback)
8895 && TREE_ADDRESSABLE (vback),
8896 NULL_TREE, true, GSI_SAME_STMT);
8897 assign_stmt = gimple_build_assign (vback, t);
8898 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
8900 if (fd->ordered && counts[fd->collapse - 1] == NULL_TREE)
8902 if (fd->collapse > 1)
8903 t = fd->loop.v;
8904 else
8906 t = fold_build2 (MINUS_EXPR, TREE_TYPE (fd->loops[0].v),
8907 fd->loops[0].v, fd->loops[0].n1);
8908 t = fold_convert (fd->iter_type, t);
8910 tree aref = build4 (ARRAY_REF, fd->iter_type,
8911 counts[fd->ordered], size_zero_node,
8912 NULL_TREE, NULL_TREE);
8913 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8914 true, GSI_SAME_STMT);
8915 expand_omp_build_assign (&gsi, aref, t);
8918 t = build2 (fd->loop.cond_code, boolean_type_node,
8919 DECL_P (vback) && TREE_ADDRESSABLE (vback) ? t : vback,
8920 iend);
8921 gcond *cond_stmt = gimple_build_cond_empty (t);
8922 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
8925 /* Remove GIMPLE_OMP_CONTINUE. */
8926 gsi_remove (&gsi, true);
8928 if (fd->collapse > 1 && !gimple_omp_for_combined_p (fd->for_stmt))
8929 collapse_bb = extract_omp_for_update_vars (fd, cont_bb, l1_bb);
8931 /* Emit code to get the next parallel iteration in L2_BB. */
8932 gsi = gsi_start_bb (l2_bb);
8934 t = build_call_expr (builtin_decl_explicit (next_fn), 2,
8935 build_fold_addr_expr (istart0),
8936 build_fold_addr_expr (iend0));
8937 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
8938 false, GSI_CONTINUE_LINKING);
8939 if (TREE_TYPE (t) != boolean_type_node)
8940 t = fold_build2 (NE_EXPR, boolean_type_node,
8941 t, build_int_cst (TREE_TYPE (t), 0));
8942 gcond *cond_stmt = gimple_build_cond_empty (t);
8943 gsi_insert_after (&gsi, cond_stmt, GSI_CONTINUE_LINKING);
8946 /* Add the loop cleanup function. */
8947 gsi = gsi_last_bb (exit_bb);
8948 if (gimple_omp_return_nowait_p (gsi_stmt (gsi)))
8949 t = builtin_decl_explicit (BUILT_IN_GOMP_LOOP_END_NOWAIT);
8950 else if (gimple_omp_return_lhs (gsi_stmt (gsi)))
8951 t = builtin_decl_explicit (BUILT_IN_GOMP_LOOP_END_CANCEL);
8952 else
8953 t = builtin_decl_explicit (BUILT_IN_GOMP_LOOP_END);
8954 gcall *call_stmt = gimple_build_call (t, 0);
8955 if (gimple_omp_return_lhs (gsi_stmt (gsi)))
8956 gimple_call_set_lhs (call_stmt, gimple_omp_return_lhs (gsi_stmt (gsi)));
8957 gsi_insert_after (&gsi, call_stmt, GSI_SAME_STMT);
8958 if (fd->ordered)
8960 tree arr = counts[fd->ordered];
8961 tree clobber = build_constructor (TREE_TYPE (arr), NULL);
8962 TREE_THIS_VOLATILE (clobber) = 1;
8963 gsi_insert_after (&gsi, gimple_build_assign (arr, clobber),
8964 GSI_SAME_STMT);
8966 gsi_remove (&gsi, true);
8968 /* Connect the new blocks. */
8969 find_edge (entry_bb, l0_bb)->flags = EDGE_TRUE_VALUE;
8970 find_edge (entry_bb, l3_bb)->flags = EDGE_FALSE_VALUE;
8972 if (!broken_loop)
8974 gimple_seq phis;
8976 e = find_edge (cont_bb, l3_bb);
8977 ne = make_edge (l2_bb, l3_bb, EDGE_FALSE_VALUE);
8979 phis = phi_nodes (l3_bb);
8980 for (gsi = gsi_start (phis); !gsi_end_p (gsi); gsi_next (&gsi))
8982 gimple *phi = gsi_stmt (gsi);
8983 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, ne),
8984 PHI_ARG_DEF_FROM_EDGE (phi, e));
8986 remove_edge (e);
8988 make_edge (cont_bb, l2_bb, EDGE_FALSE_VALUE);
8989 e = find_edge (cont_bb, l1_bb);
8990 if (e == NULL)
8992 e = BRANCH_EDGE (cont_bb);
8993 gcc_assert (single_succ (e->dest) == l1_bb);
8995 if (gimple_omp_for_combined_p (fd->for_stmt))
8997 remove_edge (e);
8998 e = NULL;
9000 else if (fd->collapse > 1)
9002 remove_edge (e);
9003 e = make_edge (cont_bb, collapse_bb, EDGE_TRUE_VALUE);
9005 else
9006 e->flags = EDGE_TRUE_VALUE;
9007 if (e)
9009 e->probability = REG_BR_PROB_BASE * 7 / 8;
9010 find_edge (cont_bb, l2_bb)->probability = REG_BR_PROB_BASE / 8;
9012 else
9014 e = find_edge (cont_bb, l2_bb);
9015 e->flags = EDGE_FALLTHRU;
9017 make_edge (l2_bb, l0_bb, EDGE_TRUE_VALUE);
9019 if (gimple_in_ssa_p (cfun))
9021 /* Add phis to the outer loop that connect to the phis in the inner,
9022 original loop, and move the loop entry value of the inner phi to
9023 the loop entry value of the outer phi. */
9024 gphi_iterator psi;
9025 for (psi = gsi_start_phis (l3_bb); !gsi_end_p (psi); gsi_next (&psi))
9027 source_location locus;
9028 gphi *nphi;
9029 gphi *exit_phi = psi.phi ();
9031 edge l2_to_l3 = find_edge (l2_bb, l3_bb);
9032 tree exit_res = PHI_ARG_DEF_FROM_EDGE (exit_phi, l2_to_l3);
9034 basic_block latch = BRANCH_EDGE (cont_bb)->dest;
9035 edge latch_to_l1 = find_edge (latch, l1_bb);
9036 gphi *inner_phi
9037 = find_phi_with_arg_on_edge (exit_res, latch_to_l1);
9039 tree t = gimple_phi_result (exit_phi);
9040 tree new_res = copy_ssa_name (t, NULL);
9041 nphi = create_phi_node (new_res, l0_bb);
9043 edge l0_to_l1 = find_edge (l0_bb, l1_bb);
9044 t = PHI_ARG_DEF_FROM_EDGE (inner_phi, l0_to_l1);
9045 locus = gimple_phi_arg_location_from_edge (inner_phi, l0_to_l1);
9046 edge entry_to_l0 = find_edge (entry_bb, l0_bb);
9047 add_phi_arg (nphi, t, entry_to_l0, locus);
9049 edge l2_to_l0 = find_edge (l2_bb, l0_bb);
9050 add_phi_arg (nphi, exit_res, l2_to_l0, UNKNOWN_LOCATION);
9052 add_phi_arg (inner_phi, new_res, l0_to_l1, UNKNOWN_LOCATION);
9056 set_immediate_dominator (CDI_DOMINATORS, l2_bb,
9057 recompute_dominator (CDI_DOMINATORS, l2_bb));
9058 set_immediate_dominator (CDI_DOMINATORS, l3_bb,
9059 recompute_dominator (CDI_DOMINATORS, l3_bb));
9060 set_immediate_dominator (CDI_DOMINATORS, l0_bb,
9061 recompute_dominator (CDI_DOMINATORS, l0_bb));
9062 set_immediate_dominator (CDI_DOMINATORS, l1_bb,
9063 recompute_dominator (CDI_DOMINATORS, l1_bb));
9065 /* We enter expand_omp_for_generic with a loop. This original loop may
9066 have its own loop struct, or it may be part of an outer loop struct
9067 (which may be the fake loop). */
9068 struct loop *outer_loop = entry_bb->loop_father;
9069 bool orig_loop_has_loop_struct = l1_bb->loop_father != outer_loop;
9071 add_bb_to_loop (l2_bb, outer_loop);
9073 /* We've added a new loop around the original loop. Allocate the
9074 corresponding loop struct. */
9075 struct loop *new_loop = alloc_loop ();
9076 new_loop->header = l0_bb;
9077 new_loop->latch = l2_bb;
9078 add_loop (new_loop, outer_loop);
9080 /* Allocate a loop structure for the original loop unless we already
9081 had one. */
9082 if (!orig_loop_has_loop_struct
9083 && !gimple_omp_for_combined_p (fd->for_stmt))
9085 struct loop *orig_loop = alloc_loop ();
9086 orig_loop->header = l1_bb;
9087 /* The loop may have multiple latches. */
9088 add_loop (orig_loop, new_loop);
9094 /* A subroutine of expand_omp_for. Generate code for a parallel
9095 loop with static schedule and no specified chunk size. Given
9096 parameters:
9098 for (V = N1; V cond N2; V += STEP) BODY;
9100 where COND is "<" or ">", we generate pseudocode
9102 if ((__typeof (V)) -1 > 0 && N2 cond N1) goto L2;
9103 if (cond is <)
9104 adj = STEP - 1;
9105 else
9106 adj = STEP + 1;
9107 if ((__typeof (V)) -1 > 0 && cond is >)
9108 n = -(adj + N2 - N1) / -STEP;
9109 else
9110 n = (adj + N2 - N1) / STEP;
9111 q = n / nthreads;
9112 tt = n % nthreads;
9113 if (threadid < tt) goto L3; else goto L4;
9115 tt = 0;
9116 q = q + 1;
9118 s0 = q * threadid + tt;
9119 e0 = s0 + q;
9120 V = s0 * STEP + N1;
9121 if (s0 >= e0) goto L2; else goto L0;
9123 e = e0 * STEP + N1;
9125 BODY;
9126 V += STEP;
9127 if (V cond e) goto L1;
9131 static void
9132 expand_omp_for_static_nochunk (struct omp_region *region,
9133 struct omp_for_data *fd,
9134 gimple *inner_stmt)
9136 tree n, q, s0, e0, e, t, tt, nthreads, threadid;
9137 tree type, itype, vmain, vback;
9138 basic_block entry_bb, second_bb, third_bb, exit_bb, seq_start_bb;
9139 basic_block body_bb, cont_bb, collapse_bb = NULL;
9140 basic_block fin_bb;
9141 gimple_stmt_iterator gsi;
9142 edge ep;
9143 bool broken_loop = region->cont == NULL;
9144 tree *counts = NULL;
9145 tree n1, n2, step;
9147 itype = type = TREE_TYPE (fd->loop.v);
9148 if (POINTER_TYPE_P (type))
9149 itype = signed_type_for (type);
9151 entry_bb = region->entry;
9152 cont_bb = region->cont;
9153 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
9154 fin_bb = BRANCH_EDGE (entry_bb)->dest;
9155 gcc_assert (broken_loop
9156 || (fin_bb == FALLTHRU_EDGE (cont_bb)->dest));
9157 seq_start_bb = split_edge (FALLTHRU_EDGE (entry_bb));
9158 body_bb = single_succ (seq_start_bb);
9159 if (!broken_loop)
9161 gcc_assert (BRANCH_EDGE (cont_bb)->dest == body_bb
9162 || single_succ (BRANCH_EDGE (cont_bb)->dest) == body_bb);
9163 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
9165 exit_bb = region->exit;
9167 /* Iteration space partitioning goes in ENTRY_BB. */
9168 gsi = gsi_last_bb (entry_bb);
9169 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
9171 if (fd->collapse > 1)
9173 int first_zero_iter = -1, dummy = -1;
9174 basic_block l2_dom_bb = NULL, dummy_bb = NULL;
9176 counts = XALLOCAVEC (tree, fd->collapse);
9177 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
9178 fin_bb, first_zero_iter,
9179 dummy_bb, dummy, l2_dom_bb);
9180 t = NULL_TREE;
9182 else if (gimple_omp_for_combined_into_p (fd->for_stmt))
9183 t = integer_one_node;
9184 else
9185 t = fold_binary (fd->loop.cond_code, boolean_type_node,
9186 fold_convert (type, fd->loop.n1),
9187 fold_convert (type, fd->loop.n2));
9188 if (fd->collapse == 1
9189 && TYPE_UNSIGNED (type)
9190 && (t == NULL_TREE || !integer_onep (t)))
9192 n1 = fold_convert (type, unshare_expr (fd->loop.n1));
9193 n1 = force_gimple_operand_gsi (&gsi, n1, true, NULL_TREE,
9194 true, GSI_SAME_STMT);
9195 n2 = fold_convert (type, unshare_expr (fd->loop.n2));
9196 n2 = force_gimple_operand_gsi (&gsi, n2, true, NULL_TREE,
9197 true, GSI_SAME_STMT);
9198 gcond *cond_stmt = gimple_build_cond (fd->loop.cond_code, n1, n2,
9199 NULL_TREE, NULL_TREE);
9200 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
9201 if (walk_tree (gimple_cond_lhs_ptr (cond_stmt),
9202 expand_omp_regimplify_p, NULL, NULL)
9203 || walk_tree (gimple_cond_rhs_ptr (cond_stmt),
9204 expand_omp_regimplify_p, NULL, NULL))
9206 gsi = gsi_for_stmt (cond_stmt);
9207 gimple_regimplify_operands (cond_stmt, &gsi);
9209 ep = split_block (entry_bb, cond_stmt);
9210 ep->flags = EDGE_TRUE_VALUE;
9211 entry_bb = ep->dest;
9212 ep->probability = REG_BR_PROB_BASE - (REG_BR_PROB_BASE / 2000 - 1);
9213 ep = make_edge (ep->src, fin_bb, EDGE_FALSE_VALUE);
9214 ep->probability = REG_BR_PROB_BASE / 2000 - 1;
9215 if (gimple_in_ssa_p (cfun))
9217 int dest_idx = find_edge (entry_bb, fin_bb)->dest_idx;
9218 for (gphi_iterator gpi = gsi_start_phis (fin_bb);
9219 !gsi_end_p (gpi); gsi_next (&gpi))
9221 gphi *phi = gpi.phi ();
9222 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
9223 ep, UNKNOWN_LOCATION);
9226 gsi = gsi_last_bb (entry_bb);
9229 switch (gimple_omp_for_kind (fd->for_stmt))
9231 case GF_OMP_FOR_KIND_FOR:
9232 nthreads = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS);
9233 threadid = builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM);
9234 break;
9235 case GF_OMP_FOR_KIND_DISTRIBUTE:
9236 nthreads = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_TEAMS);
9237 threadid = builtin_decl_explicit (BUILT_IN_OMP_GET_TEAM_NUM);
9238 break;
9239 default:
9240 gcc_unreachable ();
9242 nthreads = build_call_expr (nthreads, 0);
9243 nthreads = fold_convert (itype, nthreads);
9244 nthreads = force_gimple_operand_gsi (&gsi, nthreads, true, NULL_TREE,
9245 true, GSI_SAME_STMT);
9246 threadid = build_call_expr (threadid, 0);
9247 threadid = fold_convert (itype, threadid);
9248 threadid = force_gimple_operand_gsi (&gsi, threadid, true, NULL_TREE,
9249 true, GSI_SAME_STMT);
9251 n1 = fd->loop.n1;
9252 n2 = fd->loop.n2;
9253 step = fd->loop.step;
9254 if (gimple_omp_for_combined_into_p (fd->for_stmt))
9256 tree innerc = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
9257 OMP_CLAUSE__LOOPTEMP_);
9258 gcc_assert (innerc);
9259 n1 = OMP_CLAUSE_DECL (innerc);
9260 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9261 OMP_CLAUSE__LOOPTEMP_);
9262 gcc_assert (innerc);
9263 n2 = OMP_CLAUSE_DECL (innerc);
9265 n1 = force_gimple_operand_gsi (&gsi, fold_convert (type, n1),
9266 true, NULL_TREE, true, GSI_SAME_STMT);
9267 n2 = force_gimple_operand_gsi (&gsi, fold_convert (itype, n2),
9268 true, NULL_TREE, true, GSI_SAME_STMT);
9269 step = force_gimple_operand_gsi (&gsi, fold_convert (itype, step),
9270 true, NULL_TREE, true, GSI_SAME_STMT);
9272 t = build_int_cst (itype, (fd->loop.cond_code == LT_EXPR ? -1 : 1));
9273 t = fold_build2 (PLUS_EXPR, itype, step, t);
9274 t = fold_build2 (PLUS_EXPR, itype, t, n2);
9275 t = fold_build2 (MINUS_EXPR, itype, t, fold_convert (itype, n1));
9276 if (TYPE_UNSIGNED (itype) && fd->loop.cond_code == GT_EXPR)
9277 t = fold_build2 (TRUNC_DIV_EXPR, itype,
9278 fold_build1 (NEGATE_EXPR, itype, t),
9279 fold_build1 (NEGATE_EXPR, itype, step));
9280 else
9281 t = fold_build2 (TRUNC_DIV_EXPR, itype, t, step);
9282 t = fold_convert (itype, t);
9283 n = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE, true, GSI_SAME_STMT);
9285 q = create_tmp_reg (itype, "q");
9286 t = fold_build2 (TRUNC_DIV_EXPR, itype, n, nthreads);
9287 t = force_gimple_operand_gsi (&gsi, t, false, NULL_TREE, true, GSI_SAME_STMT);
9288 gsi_insert_before (&gsi, gimple_build_assign (q, t), GSI_SAME_STMT);
9290 tt = create_tmp_reg (itype, "tt");
9291 t = fold_build2 (TRUNC_MOD_EXPR, itype, n, nthreads);
9292 t = force_gimple_operand_gsi (&gsi, t, false, NULL_TREE, true, GSI_SAME_STMT);
9293 gsi_insert_before (&gsi, gimple_build_assign (tt, t), GSI_SAME_STMT);
9295 t = build2 (LT_EXPR, boolean_type_node, threadid, tt);
9296 gcond *cond_stmt = gimple_build_cond_empty (t);
9297 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
9299 second_bb = split_block (entry_bb, cond_stmt)->dest;
9300 gsi = gsi_last_bb (second_bb);
9301 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
9303 gsi_insert_before (&gsi, gimple_build_assign (tt, build_int_cst (itype, 0)),
9304 GSI_SAME_STMT);
9305 gassign *assign_stmt
9306 = gimple_build_assign (q, PLUS_EXPR, q, build_int_cst (itype, 1));
9307 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
9309 third_bb = split_block (second_bb, assign_stmt)->dest;
9310 gsi = gsi_last_bb (third_bb);
9311 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
9313 t = build2 (MULT_EXPR, itype, q, threadid);
9314 t = build2 (PLUS_EXPR, itype, t, tt);
9315 s0 = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE, true, GSI_SAME_STMT);
9317 t = fold_build2 (PLUS_EXPR, itype, s0, q);
9318 e0 = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE, true, GSI_SAME_STMT);
9320 t = build2 (GE_EXPR, boolean_type_node, s0, e0);
9321 gsi_insert_before (&gsi, gimple_build_cond_empty (t), GSI_SAME_STMT);
9323 /* Remove the GIMPLE_OMP_FOR statement. */
9324 gsi_remove (&gsi, true);
9326 /* Setup code for sequential iteration goes in SEQ_START_BB. */
9327 gsi = gsi_start_bb (seq_start_bb);
9329 tree startvar = fd->loop.v;
9330 tree endvar = NULL_TREE;
9332 if (gimple_omp_for_combined_p (fd->for_stmt))
9334 tree clauses = gimple_code (inner_stmt) == GIMPLE_OMP_PARALLEL
9335 ? gimple_omp_parallel_clauses (inner_stmt)
9336 : gimple_omp_for_clauses (inner_stmt);
9337 tree innerc = find_omp_clause (clauses, OMP_CLAUSE__LOOPTEMP_);
9338 gcc_assert (innerc);
9339 startvar = OMP_CLAUSE_DECL (innerc);
9340 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9341 OMP_CLAUSE__LOOPTEMP_);
9342 gcc_assert (innerc);
9343 endvar = OMP_CLAUSE_DECL (innerc);
9344 if (fd->collapse > 1 && TREE_CODE (fd->loop.n2) != INTEGER_CST
9345 && gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_DISTRIBUTE)
9347 int i;
9348 for (i = 1; i < fd->collapse; i++)
9350 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9351 OMP_CLAUSE__LOOPTEMP_);
9352 gcc_assert (innerc);
9354 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9355 OMP_CLAUSE__LOOPTEMP_);
9356 if (innerc)
9358 /* If needed (distribute parallel for with lastprivate),
9359 propagate down the total number of iterations. */
9360 tree t = fold_convert (TREE_TYPE (OMP_CLAUSE_DECL (innerc)),
9361 fd->loop.n2);
9362 t = force_gimple_operand_gsi (&gsi, t, false, NULL_TREE, false,
9363 GSI_CONTINUE_LINKING);
9364 assign_stmt = gimple_build_assign (OMP_CLAUSE_DECL (innerc), t);
9365 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9369 t = fold_convert (itype, s0);
9370 t = fold_build2 (MULT_EXPR, itype, t, step);
9371 if (POINTER_TYPE_P (type))
9372 t = fold_build_pointer_plus (n1, t);
9373 else
9374 t = fold_build2 (PLUS_EXPR, type, t, n1);
9375 t = fold_convert (TREE_TYPE (startvar), t);
9376 t = force_gimple_operand_gsi (&gsi, t,
9377 DECL_P (startvar)
9378 && TREE_ADDRESSABLE (startvar),
9379 NULL_TREE, false, GSI_CONTINUE_LINKING);
9380 assign_stmt = gimple_build_assign (startvar, t);
9381 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9383 t = fold_convert (itype, e0);
9384 t = fold_build2 (MULT_EXPR, itype, t, step);
9385 if (POINTER_TYPE_P (type))
9386 t = fold_build_pointer_plus (n1, t);
9387 else
9388 t = fold_build2 (PLUS_EXPR, type, t, n1);
9389 t = fold_convert (TREE_TYPE (startvar), t);
9390 e = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9391 false, GSI_CONTINUE_LINKING);
9392 if (endvar)
9394 assign_stmt = gimple_build_assign (endvar, e);
9395 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9396 if (useless_type_conversion_p (TREE_TYPE (fd->loop.v), TREE_TYPE (e)))
9397 assign_stmt = gimple_build_assign (fd->loop.v, e);
9398 else
9399 assign_stmt = gimple_build_assign (fd->loop.v, NOP_EXPR, e);
9400 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9402 /* Handle linear clause adjustments. */
9403 tree itercnt = NULL_TREE;
9404 if (gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_FOR)
9405 for (tree c = gimple_omp_for_clauses (fd->for_stmt);
9406 c; c = OMP_CLAUSE_CHAIN (c))
9407 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
9408 && !OMP_CLAUSE_LINEAR_NO_COPYIN (c))
9410 tree d = OMP_CLAUSE_DECL (c);
9411 bool is_ref = is_reference (d);
9412 tree t = d, a, dest;
9413 if (is_ref)
9414 t = build_simple_mem_ref_loc (OMP_CLAUSE_LOCATION (c), t);
9415 if (itercnt == NULL_TREE)
9417 if (gimple_omp_for_combined_into_p (fd->for_stmt))
9419 itercnt = fold_build2 (MINUS_EXPR, itype,
9420 fold_convert (itype, n1),
9421 fold_convert (itype, fd->loop.n1));
9422 itercnt = fold_build2 (EXACT_DIV_EXPR, itype, itercnt, step);
9423 itercnt = fold_build2 (PLUS_EXPR, itype, itercnt, s0);
9424 itercnt = force_gimple_operand_gsi (&gsi, itercnt, true,
9425 NULL_TREE, false,
9426 GSI_CONTINUE_LINKING);
9428 else
9429 itercnt = s0;
9431 tree type = TREE_TYPE (t);
9432 if (POINTER_TYPE_P (type))
9433 type = sizetype;
9434 a = fold_build2 (MULT_EXPR, type,
9435 fold_convert (type, itercnt),
9436 fold_convert (type, OMP_CLAUSE_LINEAR_STEP (c)));
9437 dest = unshare_expr (t);
9438 t = fold_build2 (type == TREE_TYPE (t) ? PLUS_EXPR
9439 : POINTER_PLUS_EXPR, TREE_TYPE (t), t, a);
9440 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9441 false, GSI_CONTINUE_LINKING);
9442 assign_stmt = gimple_build_assign (dest, t);
9443 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9445 if (fd->collapse > 1)
9446 expand_omp_for_init_vars (fd, &gsi, counts, inner_stmt, startvar);
9448 if (!broken_loop)
9450 /* The code controlling the sequential loop replaces the
9451 GIMPLE_OMP_CONTINUE. */
9452 gsi = gsi_last_bb (cont_bb);
9453 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
9454 gcc_assert (gimple_code (cont_stmt) == GIMPLE_OMP_CONTINUE);
9455 vmain = gimple_omp_continue_control_use (cont_stmt);
9456 vback = gimple_omp_continue_control_def (cont_stmt);
9458 if (!gimple_omp_for_combined_p (fd->for_stmt))
9460 if (POINTER_TYPE_P (type))
9461 t = fold_build_pointer_plus (vmain, step);
9462 else
9463 t = fold_build2 (PLUS_EXPR, type, vmain, step);
9464 t = force_gimple_operand_gsi (&gsi, t,
9465 DECL_P (vback)
9466 && TREE_ADDRESSABLE (vback),
9467 NULL_TREE, true, GSI_SAME_STMT);
9468 assign_stmt = gimple_build_assign (vback, t);
9469 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
9471 t = build2 (fd->loop.cond_code, boolean_type_node,
9472 DECL_P (vback) && TREE_ADDRESSABLE (vback)
9473 ? t : vback, e);
9474 gsi_insert_before (&gsi, gimple_build_cond_empty (t), GSI_SAME_STMT);
9477 /* Remove the GIMPLE_OMP_CONTINUE statement. */
9478 gsi_remove (&gsi, true);
9480 if (fd->collapse > 1 && !gimple_omp_for_combined_p (fd->for_stmt))
9481 collapse_bb = extract_omp_for_update_vars (fd, cont_bb, body_bb);
9484 /* Replace the GIMPLE_OMP_RETURN with a barrier, or nothing. */
9485 gsi = gsi_last_bb (exit_bb);
9486 if (!gimple_omp_return_nowait_p (gsi_stmt (gsi)))
9488 t = gimple_omp_return_lhs (gsi_stmt (gsi));
9489 gsi_insert_after (&gsi, build_omp_barrier (t), GSI_SAME_STMT);
9491 gsi_remove (&gsi, true);
9493 /* Connect all the blocks. */
9494 ep = make_edge (entry_bb, third_bb, EDGE_FALSE_VALUE);
9495 ep->probability = REG_BR_PROB_BASE / 4 * 3;
9496 ep = find_edge (entry_bb, second_bb);
9497 ep->flags = EDGE_TRUE_VALUE;
9498 ep->probability = REG_BR_PROB_BASE / 4;
9499 find_edge (third_bb, seq_start_bb)->flags = EDGE_FALSE_VALUE;
9500 find_edge (third_bb, fin_bb)->flags = EDGE_TRUE_VALUE;
9502 if (!broken_loop)
9504 ep = find_edge (cont_bb, body_bb);
9505 if (ep == NULL)
9507 ep = BRANCH_EDGE (cont_bb);
9508 gcc_assert (single_succ (ep->dest) == body_bb);
9510 if (gimple_omp_for_combined_p (fd->for_stmt))
9512 remove_edge (ep);
9513 ep = NULL;
9515 else if (fd->collapse > 1)
9517 remove_edge (ep);
9518 ep = make_edge (cont_bb, collapse_bb, EDGE_TRUE_VALUE);
9520 else
9521 ep->flags = EDGE_TRUE_VALUE;
9522 find_edge (cont_bb, fin_bb)->flags
9523 = ep ? EDGE_FALSE_VALUE : EDGE_FALLTHRU;
9526 set_immediate_dominator (CDI_DOMINATORS, second_bb, entry_bb);
9527 set_immediate_dominator (CDI_DOMINATORS, third_bb, entry_bb);
9528 set_immediate_dominator (CDI_DOMINATORS, seq_start_bb, third_bb);
9530 set_immediate_dominator (CDI_DOMINATORS, body_bb,
9531 recompute_dominator (CDI_DOMINATORS, body_bb));
9532 set_immediate_dominator (CDI_DOMINATORS, fin_bb,
9533 recompute_dominator (CDI_DOMINATORS, fin_bb));
9535 struct loop *loop = body_bb->loop_father;
9536 if (loop != entry_bb->loop_father)
9538 gcc_assert (loop->header == body_bb);
9539 gcc_assert (broken_loop
9540 || loop->latch == region->cont
9541 || single_pred (loop->latch) == region->cont);
9542 return;
9545 if (!broken_loop && !gimple_omp_for_combined_p (fd->for_stmt))
9547 loop = alloc_loop ();
9548 loop->header = body_bb;
9549 if (collapse_bb == NULL)
9550 loop->latch = cont_bb;
9551 add_loop (loop, body_bb->loop_father);
9555 /* Return phi in E->DEST with ARG on edge E. */
9557 static gphi *
9558 find_phi_with_arg_on_edge (tree arg, edge e)
9560 basic_block bb = e->dest;
9562 for (gphi_iterator gpi = gsi_start_phis (bb);
9563 !gsi_end_p (gpi);
9564 gsi_next (&gpi))
9566 gphi *phi = gpi.phi ();
9567 if (PHI_ARG_DEF_FROM_EDGE (phi, e) == arg)
9568 return phi;
9571 return NULL;
9574 /* A subroutine of expand_omp_for. Generate code for a parallel
9575 loop with static schedule and a specified chunk size. Given
9576 parameters:
9578 for (V = N1; V cond N2; V += STEP) BODY;
9580 where COND is "<" or ">", we generate pseudocode
9582 if ((__typeof (V)) -1 > 0 && N2 cond N1) goto L2;
9583 if (cond is <)
9584 adj = STEP - 1;
9585 else
9586 adj = STEP + 1;
9587 if ((__typeof (V)) -1 > 0 && cond is >)
9588 n = -(adj + N2 - N1) / -STEP;
9589 else
9590 n = (adj + N2 - N1) / STEP;
9591 trip = 0;
9592 V = threadid * CHUNK * STEP + N1; -- this extra definition of V is
9593 here so that V is defined
9594 if the loop is not entered
9596 s0 = (trip * nthreads + threadid) * CHUNK;
9597 e0 = min(s0 + CHUNK, n);
9598 if (s0 < n) goto L1; else goto L4;
9600 V = s0 * STEP + N1;
9601 e = e0 * STEP + N1;
9603 BODY;
9604 V += STEP;
9605 if (V cond e) goto L2; else goto L3;
9607 trip += 1;
9608 goto L0;
9612 static void
9613 expand_omp_for_static_chunk (struct omp_region *region,
9614 struct omp_for_data *fd, gimple *inner_stmt)
9616 tree n, s0, e0, e, t;
9617 tree trip_var, trip_init, trip_main, trip_back, nthreads, threadid;
9618 tree type, itype, vmain, vback, vextra;
9619 basic_block entry_bb, exit_bb, body_bb, seq_start_bb, iter_part_bb;
9620 basic_block trip_update_bb = NULL, cont_bb, collapse_bb = NULL, fin_bb;
9621 gimple_stmt_iterator gsi;
9622 edge se;
9623 bool broken_loop = region->cont == NULL;
9624 tree *counts = NULL;
9625 tree n1, n2, step;
9627 itype = type = TREE_TYPE (fd->loop.v);
9628 if (POINTER_TYPE_P (type))
9629 itype = signed_type_for (type);
9631 entry_bb = region->entry;
9632 se = split_block (entry_bb, last_stmt (entry_bb));
9633 entry_bb = se->src;
9634 iter_part_bb = se->dest;
9635 cont_bb = region->cont;
9636 gcc_assert (EDGE_COUNT (iter_part_bb->succs) == 2);
9637 fin_bb = BRANCH_EDGE (iter_part_bb)->dest;
9638 gcc_assert (broken_loop
9639 || fin_bb == FALLTHRU_EDGE (cont_bb)->dest);
9640 seq_start_bb = split_edge (FALLTHRU_EDGE (iter_part_bb));
9641 body_bb = single_succ (seq_start_bb);
9642 if (!broken_loop)
9644 gcc_assert (BRANCH_EDGE (cont_bb)->dest == body_bb
9645 || single_succ (BRANCH_EDGE (cont_bb)->dest) == body_bb);
9646 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
9647 trip_update_bb = split_edge (FALLTHRU_EDGE (cont_bb));
9649 exit_bb = region->exit;
9651 /* Trip and adjustment setup goes in ENTRY_BB. */
9652 gsi = gsi_last_bb (entry_bb);
9653 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
9655 if (fd->collapse > 1)
9657 int first_zero_iter = -1, dummy = -1;
9658 basic_block l2_dom_bb = NULL, dummy_bb = NULL;
9660 counts = XALLOCAVEC (tree, fd->collapse);
9661 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
9662 fin_bb, first_zero_iter,
9663 dummy_bb, dummy, l2_dom_bb);
9664 t = NULL_TREE;
9666 else if (gimple_omp_for_combined_into_p (fd->for_stmt))
9667 t = integer_one_node;
9668 else
9669 t = fold_binary (fd->loop.cond_code, boolean_type_node,
9670 fold_convert (type, fd->loop.n1),
9671 fold_convert (type, fd->loop.n2));
9672 if (fd->collapse == 1
9673 && TYPE_UNSIGNED (type)
9674 && (t == NULL_TREE || !integer_onep (t)))
9676 n1 = fold_convert (type, unshare_expr (fd->loop.n1));
9677 n1 = force_gimple_operand_gsi (&gsi, n1, true, NULL_TREE,
9678 true, GSI_SAME_STMT);
9679 n2 = fold_convert (type, unshare_expr (fd->loop.n2));
9680 n2 = force_gimple_operand_gsi (&gsi, n2, true, NULL_TREE,
9681 true, GSI_SAME_STMT);
9682 gcond *cond_stmt = gimple_build_cond (fd->loop.cond_code, n1, n2,
9683 NULL_TREE, NULL_TREE);
9684 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
9685 if (walk_tree (gimple_cond_lhs_ptr (cond_stmt),
9686 expand_omp_regimplify_p, NULL, NULL)
9687 || walk_tree (gimple_cond_rhs_ptr (cond_stmt),
9688 expand_omp_regimplify_p, NULL, NULL))
9690 gsi = gsi_for_stmt (cond_stmt);
9691 gimple_regimplify_operands (cond_stmt, &gsi);
9693 se = split_block (entry_bb, cond_stmt);
9694 se->flags = EDGE_TRUE_VALUE;
9695 entry_bb = se->dest;
9696 se->probability = REG_BR_PROB_BASE - (REG_BR_PROB_BASE / 2000 - 1);
9697 se = make_edge (se->src, fin_bb, EDGE_FALSE_VALUE);
9698 se->probability = REG_BR_PROB_BASE / 2000 - 1;
9699 if (gimple_in_ssa_p (cfun))
9701 int dest_idx = find_edge (iter_part_bb, fin_bb)->dest_idx;
9702 for (gphi_iterator gpi = gsi_start_phis (fin_bb);
9703 !gsi_end_p (gpi); gsi_next (&gpi))
9705 gphi *phi = gpi.phi ();
9706 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
9707 se, UNKNOWN_LOCATION);
9710 gsi = gsi_last_bb (entry_bb);
9713 switch (gimple_omp_for_kind (fd->for_stmt))
9715 case GF_OMP_FOR_KIND_FOR:
9716 nthreads = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS);
9717 threadid = builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM);
9718 break;
9719 case GF_OMP_FOR_KIND_DISTRIBUTE:
9720 nthreads = builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_TEAMS);
9721 threadid = builtin_decl_explicit (BUILT_IN_OMP_GET_TEAM_NUM);
9722 break;
9723 default:
9724 gcc_unreachable ();
9726 nthreads = build_call_expr (nthreads, 0);
9727 nthreads = fold_convert (itype, nthreads);
9728 nthreads = force_gimple_operand_gsi (&gsi, nthreads, true, NULL_TREE,
9729 true, GSI_SAME_STMT);
9730 threadid = build_call_expr (threadid, 0);
9731 threadid = fold_convert (itype, threadid);
9732 threadid = force_gimple_operand_gsi (&gsi, threadid, true, NULL_TREE,
9733 true, GSI_SAME_STMT);
9735 n1 = fd->loop.n1;
9736 n2 = fd->loop.n2;
9737 step = fd->loop.step;
9738 if (gimple_omp_for_combined_into_p (fd->for_stmt))
9740 tree innerc = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
9741 OMP_CLAUSE__LOOPTEMP_);
9742 gcc_assert (innerc);
9743 n1 = OMP_CLAUSE_DECL (innerc);
9744 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9745 OMP_CLAUSE__LOOPTEMP_);
9746 gcc_assert (innerc);
9747 n2 = OMP_CLAUSE_DECL (innerc);
9749 n1 = force_gimple_operand_gsi (&gsi, fold_convert (type, n1),
9750 true, NULL_TREE, true, GSI_SAME_STMT);
9751 n2 = force_gimple_operand_gsi (&gsi, fold_convert (itype, n2),
9752 true, NULL_TREE, true, GSI_SAME_STMT);
9753 step = force_gimple_operand_gsi (&gsi, fold_convert (itype, step),
9754 true, NULL_TREE, true, GSI_SAME_STMT);
9755 tree chunk_size = fold_convert (itype, fd->chunk_size);
9756 chunk_size = omp_adjust_chunk_size (chunk_size, fd->simd_schedule);
9757 chunk_size
9758 = force_gimple_operand_gsi (&gsi, chunk_size, true, NULL_TREE, true,
9759 GSI_SAME_STMT);
9761 t = build_int_cst (itype, (fd->loop.cond_code == LT_EXPR ? -1 : 1));
9762 t = fold_build2 (PLUS_EXPR, itype, step, t);
9763 t = fold_build2 (PLUS_EXPR, itype, t, n2);
9764 t = fold_build2 (MINUS_EXPR, itype, t, fold_convert (itype, n1));
9765 if (TYPE_UNSIGNED (itype) && fd->loop.cond_code == GT_EXPR)
9766 t = fold_build2 (TRUNC_DIV_EXPR, itype,
9767 fold_build1 (NEGATE_EXPR, itype, t),
9768 fold_build1 (NEGATE_EXPR, itype, step));
9769 else
9770 t = fold_build2 (TRUNC_DIV_EXPR, itype, t, step);
9771 t = fold_convert (itype, t);
9772 n = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9773 true, GSI_SAME_STMT);
9775 trip_var = create_tmp_reg (itype, ".trip");
9776 if (gimple_in_ssa_p (cfun))
9778 trip_init = make_ssa_name (trip_var);
9779 trip_main = make_ssa_name (trip_var);
9780 trip_back = make_ssa_name (trip_var);
9782 else
9784 trip_init = trip_var;
9785 trip_main = trip_var;
9786 trip_back = trip_var;
9789 gassign *assign_stmt
9790 = gimple_build_assign (trip_init, build_int_cst (itype, 0));
9791 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
9793 t = fold_build2 (MULT_EXPR, itype, threadid, chunk_size);
9794 t = fold_build2 (MULT_EXPR, itype, t, step);
9795 if (POINTER_TYPE_P (type))
9796 t = fold_build_pointer_plus (n1, t);
9797 else
9798 t = fold_build2 (PLUS_EXPR, type, t, n1);
9799 vextra = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9800 true, GSI_SAME_STMT);
9802 /* Remove the GIMPLE_OMP_FOR. */
9803 gsi_remove (&gsi, true);
9805 gimple_stmt_iterator gsif = gsi;
9807 /* Iteration space partitioning goes in ITER_PART_BB. */
9808 gsi = gsi_last_bb (iter_part_bb);
9810 t = fold_build2 (MULT_EXPR, itype, trip_main, nthreads);
9811 t = fold_build2 (PLUS_EXPR, itype, t, threadid);
9812 t = fold_build2 (MULT_EXPR, itype, t, chunk_size);
9813 s0 = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9814 false, GSI_CONTINUE_LINKING);
9816 t = fold_build2 (PLUS_EXPR, itype, s0, chunk_size);
9817 t = fold_build2 (MIN_EXPR, itype, t, n);
9818 e0 = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9819 false, GSI_CONTINUE_LINKING);
9821 t = build2 (LT_EXPR, boolean_type_node, s0, n);
9822 gsi_insert_after (&gsi, gimple_build_cond_empty (t), GSI_CONTINUE_LINKING);
9824 /* Setup code for sequential iteration goes in SEQ_START_BB. */
9825 gsi = gsi_start_bb (seq_start_bb);
9827 tree startvar = fd->loop.v;
9828 tree endvar = NULL_TREE;
9830 if (gimple_omp_for_combined_p (fd->for_stmt))
9832 tree clauses = gimple_code (inner_stmt) == GIMPLE_OMP_PARALLEL
9833 ? gimple_omp_parallel_clauses (inner_stmt)
9834 : gimple_omp_for_clauses (inner_stmt);
9835 tree innerc = find_omp_clause (clauses, OMP_CLAUSE__LOOPTEMP_);
9836 gcc_assert (innerc);
9837 startvar = OMP_CLAUSE_DECL (innerc);
9838 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9839 OMP_CLAUSE__LOOPTEMP_);
9840 gcc_assert (innerc);
9841 endvar = OMP_CLAUSE_DECL (innerc);
9842 if (fd->collapse > 1 && TREE_CODE (fd->loop.n2) != INTEGER_CST
9843 && gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_DISTRIBUTE)
9845 int i;
9846 for (i = 1; i < fd->collapse; i++)
9848 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9849 OMP_CLAUSE__LOOPTEMP_);
9850 gcc_assert (innerc);
9852 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
9853 OMP_CLAUSE__LOOPTEMP_);
9854 if (innerc)
9856 /* If needed (distribute parallel for with lastprivate),
9857 propagate down the total number of iterations. */
9858 tree t = fold_convert (TREE_TYPE (OMP_CLAUSE_DECL (innerc)),
9859 fd->loop.n2);
9860 t = force_gimple_operand_gsi (&gsi, t, false, NULL_TREE, false,
9861 GSI_CONTINUE_LINKING);
9862 assign_stmt = gimple_build_assign (OMP_CLAUSE_DECL (innerc), t);
9863 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9868 t = fold_convert (itype, s0);
9869 t = fold_build2 (MULT_EXPR, itype, t, step);
9870 if (POINTER_TYPE_P (type))
9871 t = fold_build_pointer_plus (n1, t);
9872 else
9873 t = fold_build2 (PLUS_EXPR, type, t, n1);
9874 t = fold_convert (TREE_TYPE (startvar), t);
9875 t = force_gimple_operand_gsi (&gsi, t,
9876 DECL_P (startvar)
9877 && TREE_ADDRESSABLE (startvar),
9878 NULL_TREE, false, GSI_CONTINUE_LINKING);
9879 assign_stmt = gimple_build_assign (startvar, t);
9880 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9882 t = fold_convert (itype, e0);
9883 t = fold_build2 (MULT_EXPR, itype, t, step);
9884 if (POINTER_TYPE_P (type))
9885 t = fold_build_pointer_plus (n1, t);
9886 else
9887 t = fold_build2 (PLUS_EXPR, type, t, n1);
9888 t = fold_convert (TREE_TYPE (startvar), t);
9889 e = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9890 false, GSI_CONTINUE_LINKING);
9891 if (endvar)
9893 assign_stmt = gimple_build_assign (endvar, e);
9894 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9895 if (useless_type_conversion_p (TREE_TYPE (fd->loop.v), TREE_TYPE (e)))
9896 assign_stmt = gimple_build_assign (fd->loop.v, e);
9897 else
9898 assign_stmt = gimple_build_assign (fd->loop.v, NOP_EXPR, e);
9899 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9901 /* Handle linear clause adjustments. */
9902 tree itercnt = NULL_TREE, itercntbias = NULL_TREE;
9903 if (gimple_omp_for_kind (fd->for_stmt) == GF_OMP_FOR_KIND_FOR)
9904 for (tree c = gimple_omp_for_clauses (fd->for_stmt);
9905 c; c = OMP_CLAUSE_CHAIN (c))
9906 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
9907 && !OMP_CLAUSE_LINEAR_NO_COPYIN (c))
9909 tree d = OMP_CLAUSE_DECL (c);
9910 bool is_ref = is_reference (d);
9911 tree t = d, a, dest;
9912 if (is_ref)
9913 t = build_simple_mem_ref_loc (OMP_CLAUSE_LOCATION (c), t);
9914 tree type = TREE_TYPE (t);
9915 if (POINTER_TYPE_P (type))
9916 type = sizetype;
9917 dest = unshare_expr (t);
9918 tree v = create_tmp_var (TREE_TYPE (t), NULL);
9919 expand_omp_build_assign (&gsif, v, t);
9920 if (itercnt == NULL_TREE)
9922 if (gimple_omp_for_combined_into_p (fd->for_stmt))
9924 itercntbias
9925 = fold_build2 (MINUS_EXPR, itype, fold_convert (itype, n1),
9926 fold_convert (itype, fd->loop.n1));
9927 itercntbias = fold_build2 (EXACT_DIV_EXPR, itype,
9928 itercntbias, step);
9929 itercntbias
9930 = force_gimple_operand_gsi (&gsif, itercntbias, true,
9931 NULL_TREE, true,
9932 GSI_SAME_STMT);
9933 itercnt = fold_build2 (PLUS_EXPR, itype, itercntbias, s0);
9934 itercnt = force_gimple_operand_gsi (&gsi, itercnt, true,
9935 NULL_TREE, false,
9936 GSI_CONTINUE_LINKING);
9938 else
9939 itercnt = s0;
9941 a = fold_build2 (MULT_EXPR, type,
9942 fold_convert (type, itercnt),
9943 fold_convert (type, OMP_CLAUSE_LINEAR_STEP (c)));
9944 t = fold_build2 (type == TREE_TYPE (t) ? PLUS_EXPR
9945 : POINTER_PLUS_EXPR, TREE_TYPE (t), v, a);
9946 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9947 false, GSI_CONTINUE_LINKING);
9948 assign_stmt = gimple_build_assign (dest, t);
9949 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
9951 if (fd->collapse > 1)
9952 expand_omp_for_init_vars (fd, &gsi, counts, inner_stmt, startvar);
9954 if (!broken_loop)
9956 /* The code controlling the sequential loop goes in CONT_BB,
9957 replacing the GIMPLE_OMP_CONTINUE. */
9958 gsi = gsi_last_bb (cont_bb);
9959 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
9960 vmain = gimple_omp_continue_control_use (cont_stmt);
9961 vback = gimple_omp_continue_control_def (cont_stmt);
9963 if (!gimple_omp_for_combined_p (fd->for_stmt))
9965 if (POINTER_TYPE_P (type))
9966 t = fold_build_pointer_plus (vmain, step);
9967 else
9968 t = fold_build2 (PLUS_EXPR, type, vmain, step);
9969 if (DECL_P (vback) && TREE_ADDRESSABLE (vback))
9970 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
9971 true, GSI_SAME_STMT);
9972 assign_stmt = gimple_build_assign (vback, t);
9973 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
9975 if (tree_int_cst_equal (fd->chunk_size, integer_one_node))
9976 t = build2 (EQ_EXPR, boolean_type_node,
9977 build_int_cst (itype, 0),
9978 build_int_cst (itype, 1));
9979 else
9980 t = build2 (fd->loop.cond_code, boolean_type_node,
9981 DECL_P (vback) && TREE_ADDRESSABLE (vback)
9982 ? t : vback, e);
9983 gsi_insert_before (&gsi, gimple_build_cond_empty (t), GSI_SAME_STMT);
9986 /* Remove GIMPLE_OMP_CONTINUE. */
9987 gsi_remove (&gsi, true);
9989 if (fd->collapse > 1 && !gimple_omp_for_combined_p (fd->for_stmt))
9990 collapse_bb = extract_omp_for_update_vars (fd, cont_bb, body_bb);
9992 /* Trip update code goes into TRIP_UPDATE_BB. */
9993 gsi = gsi_start_bb (trip_update_bb);
9995 t = build_int_cst (itype, 1);
9996 t = build2 (PLUS_EXPR, itype, trip_main, t);
9997 assign_stmt = gimple_build_assign (trip_back, t);
9998 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10001 /* Replace the GIMPLE_OMP_RETURN with a barrier, or nothing. */
10002 gsi = gsi_last_bb (exit_bb);
10003 if (!gimple_omp_return_nowait_p (gsi_stmt (gsi)))
10005 t = gimple_omp_return_lhs (gsi_stmt (gsi));
10006 gsi_insert_after (&gsi, build_omp_barrier (t), GSI_SAME_STMT);
10008 gsi_remove (&gsi, true);
10010 /* Connect the new blocks. */
10011 find_edge (iter_part_bb, seq_start_bb)->flags = EDGE_TRUE_VALUE;
10012 find_edge (iter_part_bb, fin_bb)->flags = EDGE_FALSE_VALUE;
10014 if (!broken_loop)
10016 se = find_edge (cont_bb, body_bb);
10017 if (se == NULL)
10019 se = BRANCH_EDGE (cont_bb);
10020 gcc_assert (single_succ (se->dest) == body_bb);
10022 if (gimple_omp_for_combined_p (fd->for_stmt))
10024 remove_edge (se);
10025 se = NULL;
10027 else if (fd->collapse > 1)
10029 remove_edge (se);
10030 se = make_edge (cont_bb, collapse_bb, EDGE_TRUE_VALUE);
10032 else
10033 se->flags = EDGE_TRUE_VALUE;
10034 find_edge (cont_bb, trip_update_bb)->flags
10035 = se ? EDGE_FALSE_VALUE : EDGE_FALLTHRU;
10037 redirect_edge_and_branch (single_succ_edge (trip_update_bb), iter_part_bb);
10040 if (gimple_in_ssa_p (cfun))
10042 gphi_iterator psi;
10043 gphi *phi;
10044 edge re, ene;
10045 edge_var_map *vm;
10046 size_t i;
10048 gcc_assert (fd->collapse == 1 && !broken_loop);
10050 /* When we redirect the edge from trip_update_bb to iter_part_bb, we
10051 remove arguments of the phi nodes in fin_bb. We need to create
10052 appropriate phi nodes in iter_part_bb instead. */
10053 se = find_edge (iter_part_bb, fin_bb);
10054 re = single_succ_edge (trip_update_bb);
10055 vec<edge_var_map> *head = redirect_edge_var_map_vector (re);
10056 ene = single_succ_edge (entry_bb);
10058 psi = gsi_start_phis (fin_bb);
10059 for (i = 0; !gsi_end_p (psi) && head->iterate (i, &vm);
10060 gsi_next (&psi), ++i)
10062 gphi *nphi;
10063 source_location locus;
10065 phi = psi.phi ();
10066 t = gimple_phi_result (phi);
10067 gcc_assert (t == redirect_edge_var_map_result (vm));
10069 if (!single_pred_p (fin_bb))
10070 t = copy_ssa_name (t, phi);
10072 nphi = create_phi_node (t, iter_part_bb);
10074 t = PHI_ARG_DEF_FROM_EDGE (phi, se);
10075 locus = gimple_phi_arg_location_from_edge (phi, se);
10077 /* A special case -- fd->loop.v is not yet computed in
10078 iter_part_bb, we need to use vextra instead. */
10079 if (t == fd->loop.v)
10080 t = vextra;
10081 add_phi_arg (nphi, t, ene, locus);
10082 locus = redirect_edge_var_map_location (vm);
10083 tree back_arg = redirect_edge_var_map_def (vm);
10084 add_phi_arg (nphi, back_arg, re, locus);
10085 edge ce = find_edge (cont_bb, body_bb);
10086 if (ce == NULL)
10088 ce = BRANCH_EDGE (cont_bb);
10089 gcc_assert (single_succ (ce->dest) == body_bb);
10090 ce = single_succ_edge (ce->dest);
10092 gphi *inner_loop_phi = find_phi_with_arg_on_edge (back_arg, ce);
10093 gcc_assert (inner_loop_phi != NULL);
10094 add_phi_arg (inner_loop_phi, gimple_phi_result (nphi),
10095 find_edge (seq_start_bb, body_bb), locus);
10097 if (!single_pred_p (fin_bb))
10098 add_phi_arg (phi, gimple_phi_result (nphi), se, locus);
10100 gcc_assert (gsi_end_p (psi) && (head == NULL || i == head->length ()));
10101 redirect_edge_var_map_clear (re);
10102 if (single_pred_p (fin_bb))
10103 while (1)
10105 psi = gsi_start_phis (fin_bb);
10106 if (gsi_end_p (psi))
10107 break;
10108 remove_phi_node (&psi, false);
10111 /* Make phi node for trip. */
10112 phi = create_phi_node (trip_main, iter_part_bb);
10113 add_phi_arg (phi, trip_back, single_succ_edge (trip_update_bb),
10114 UNKNOWN_LOCATION);
10115 add_phi_arg (phi, trip_init, single_succ_edge (entry_bb),
10116 UNKNOWN_LOCATION);
10119 if (!broken_loop)
10120 set_immediate_dominator (CDI_DOMINATORS, trip_update_bb, cont_bb);
10121 set_immediate_dominator (CDI_DOMINATORS, iter_part_bb,
10122 recompute_dominator (CDI_DOMINATORS, iter_part_bb));
10123 set_immediate_dominator (CDI_DOMINATORS, fin_bb,
10124 recompute_dominator (CDI_DOMINATORS, fin_bb));
10125 set_immediate_dominator (CDI_DOMINATORS, seq_start_bb,
10126 recompute_dominator (CDI_DOMINATORS, seq_start_bb));
10127 set_immediate_dominator (CDI_DOMINATORS, body_bb,
10128 recompute_dominator (CDI_DOMINATORS, body_bb));
10130 if (!broken_loop)
10132 struct loop *loop = body_bb->loop_father;
10133 struct loop *trip_loop = alloc_loop ();
10134 trip_loop->header = iter_part_bb;
10135 trip_loop->latch = trip_update_bb;
10136 add_loop (trip_loop, iter_part_bb->loop_father);
10138 if (loop != entry_bb->loop_father)
10140 gcc_assert (loop->header == body_bb);
10141 gcc_assert (loop->latch == region->cont
10142 || single_pred (loop->latch) == region->cont);
10143 trip_loop->inner = loop;
10144 return;
10147 if (!gimple_omp_for_combined_p (fd->for_stmt))
10149 loop = alloc_loop ();
10150 loop->header = body_bb;
10151 if (collapse_bb == NULL)
10152 loop->latch = cont_bb;
10153 add_loop (loop, trip_loop);
10158 /* A subroutine of expand_omp_for. Generate code for _Cilk_for loop.
10159 Given parameters:
10160 for (V = N1; V cond N2; V += STEP) BODY;
10162 where COND is "<" or ">" or "!=", we generate pseudocode
10164 for (ind_var = low; ind_var < high; ind_var++)
10166 V = n1 + (ind_var * STEP)
10168 <BODY>
10171 In the above pseudocode, low and high are function parameters of the
10172 child function. In the function below, we are inserting a temp.
10173 variable that will be making a call to two OMP functions that will not be
10174 found in the body of _Cilk_for (since OMP_FOR cannot be mixed
10175 with _Cilk_for). These functions are replaced with low and high
10176 by the function that handles taskreg. */
10179 static void
10180 expand_cilk_for (struct omp_region *region, struct omp_for_data *fd)
10182 bool broken_loop = region->cont == NULL;
10183 basic_block entry_bb = region->entry;
10184 basic_block cont_bb = region->cont;
10186 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
10187 gcc_assert (broken_loop
10188 || BRANCH_EDGE (entry_bb)->dest == FALLTHRU_EDGE (cont_bb)->dest);
10189 basic_block l0_bb = FALLTHRU_EDGE (entry_bb)->dest;
10190 basic_block l1_bb, l2_bb;
10192 if (!broken_loop)
10194 gcc_assert (BRANCH_EDGE (cont_bb)->dest == l0_bb);
10195 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
10196 l1_bb = split_block (cont_bb, last_stmt (cont_bb))->dest;
10197 l2_bb = BRANCH_EDGE (entry_bb)->dest;
10199 else
10201 BRANCH_EDGE (entry_bb)->flags &= ~EDGE_ABNORMAL;
10202 l1_bb = split_edge (BRANCH_EDGE (entry_bb));
10203 l2_bb = single_succ (l1_bb);
10205 basic_block exit_bb = region->exit;
10206 basic_block l2_dom_bb = NULL;
10208 gimple_stmt_iterator gsi = gsi_last_bb (entry_bb);
10210 /* Below statements until the "tree high_val = ..." are pseudo statements
10211 used to pass information to be used by expand_omp_taskreg.
10212 low_val and high_val will be replaced by the __low and __high
10213 parameter from the child function.
10215 The call_exprs part is a place-holder, it is mainly used
10216 to distinctly identify to the top-level part that this is
10217 where we should put low and high (reasoning given in header
10218 comment). */
10220 tree child_fndecl
10221 = gimple_omp_parallel_child_fn (
10222 as_a <gomp_parallel *> (last_stmt (region->outer->entry)));
10223 tree t, low_val = NULL_TREE, high_val = NULL_TREE;
10224 for (t = DECL_ARGUMENTS (child_fndecl); t; t = TREE_CHAIN (t))
10226 if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__high"))
10227 high_val = t;
10228 else if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__low"))
10229 low_val = t;
10231 gcc_assert (low_val && high_val);
10233 tree type = TREE_TYPE (low_val);
10234 tree ind_var = create_tmp_reg (type, "__cilk_ind_var");
10235 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
10237 /* Not needed in SSA form right now. */
10238 gcc_assert (!gimple_in_ssa_p (cfun));
10239 if (l2_dom_bb == NULL)
10240 l2_dom_bb = l1_bb;
10242 tree n1 = low_val;
10243 tree n2 = high_val;
10245 gimple *stmt = gimple_build_assign (ind_var, n1);
10247 /* Replace the GIMPLE_OMP_FOR statement. */
10248 gsi_replace (&gsi, stmt, true);
10250 if (!broken_loop)
10252 /* Code to control the increment goes in the CONT_BB. */
10253 gsi = gsi_last_bb (cont_bb);
10254 stmt = gsi_stmt (gsi);
10255 gcc_assert (gimple_code (stmt) == GIMPLE_OMP_CONTINUE);
10256 stmt = gimple_build_assign (ind_var, PLUS_EXPR, ind_var,
10257 build_one_cst (type));
10259 /* Replace GIMPLE_OMP_CONTINUE. */
10260 gsi_replace (&gsi, stmt, true);
10263 /* Emit the condition in L1_BB. */
10264 gsi = gsi_after_labels (l1_bb);
10265 t = fold_build2 (MULT_EXPR, TREE_TYPE (fd->loop.step),
10266 fold_convert (TREE_TYPE (fd->loop.step), ind_var),
10267 fd->loop.step);
10268 if (POINTER_TYPE_P (TREE_TYPE (fd->loop.n1)))
10269 t = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (fd->loop.n1),
10270 fd->loop.n1, fold_convert (sizetype, t));
10271 else
10272 t = fold_build2 (PLUS_EXPR, TREE_TYPE (fd->loop.n1),
10273 fd->loop.n1, fold_convert (TREE_TYPE (fd->loop.n1), t));
10274 t = fold_convert (TREE_TYPE (fd->loop.v), t);
10275 expand_omp_build_assign (&gsi, fd->loop.v, t);
10277 /* The condition is always '<' since the runtime will fill in the low
10278 and high values. */
10279 stmt = gimple_build_cond (LT_EXPR, ind_var, n2, NULL_TREE, NULL_TREE);
10280 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
10282 /* Remove GIMPLE_OMP_RETURN. */
10283 gsi = gsi_last_bb (exit_bb);
10284 gsi_remove (&gsi, true);
10286 /* Connect the new blocks. */
10287 remove_edge (FALLTHRU_EDGE (entry_bb));
10289 edge e, ne;
10290 if (!broken_loop)
10292 remove_edge (BRANCH_EDGE (entry_bb));
10293 make_edge (entry_bb, l1_bb, EDGE_FALLTHRU);
10295 e = BRANCH_EDGE (l1_bb);
10296 ne = FALLTHRU_EDGE (l1_bb);
10297 e->flags = EDGE_TRUE_VALUE;
10299 else
10301 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
10303 ne = single_succ_edge (l1_bb);
10304 e = make_edge (l1_bb, l0_bb, EDGE_TRUE_VALUE);
10307 ne->flags = EDGE_FALSE_VALUE;
10308 e->probability = REG_BR_PROB_BASE * 7 / 8;
10309 ne->probability = REG_BR_PROB_BASE / 8;
10311 set_immediate_dominator (CDI_DOMINATORS, l1_bb, entry_bb);
10312 set_immediate_dominator (CDI_DOMINATORS, l2_bb, l2_dom_bb);
10313 set_immediate_dominator (CDI_DOMINATORS, l0_bb, l1_bb);
10315 if (!broken_loop)
10317 struct loop *loop = alloc_loop ();
10318 loop->header = l1_bb;
10319 loop->latch = cont_bb;
10320 add_loop (loop, l1_bb->loop_father);
10321 loop->safelen = INT_MAX;
10324 /* Pick the correct library function based on the precision of the
10325 induction variable type. */
10326 tree lib_fun = NULL_TREE;
10327 if (TYPE_PRECISION (type) == 32)
10328 lib_fun = cilk_for_32_fndecl;
10329 else if (TYPE_PRECISION (type) == 64)
10330 lib_fun = cilk_for_64_fndecl;
10331 else
10332 gcc_unreachable ();
10334 gcc_assert (fd->sched_kind == OMP_CLAUSE_SCHEDULE_CILKFOR);
10336 /* WS_ARGS contains the library function flavor to call:
10337 __libcilkrts_cilk_for_64 or __libcilkrts_cilk_for_32), and the
10338 user-defined grain value. If the user does not define one, then zero
10339 is passed in by the parser. */
10340 vec_alloc (region->ws_args, 2);
10341 region->ws_args->quick_push (lib_fun);
10342 region->ws_args->quick_push (fd->chunk_size);
10345 /* A subroutine of expand_omp_for. Generate code for a simd non-worksharing
10346 loop. Given parameters:
10348 for (V = N1; V cond N2; V += STEP) BODY;
10350 where COND is "<" or ">", we generate pseudocode
10352 V = N1;
10353 goto L1;
10355 BODY;
10356 V += STEP;
10358 if (V cond N2) goto L0; else goto L2;
10361 For collapsed loops, given parameters:
10362 collapse(3)
10363 for (V1 = N11; V1 cond1 N12; V1 += STEP1)
10364 for (V2 = N21; V2 cond2 N22; V2 += STEP2)
10365 for (V3 = N31; V3 cond3 N32; V3 += STEP3)
10366 BODY;
10368 we generate pseudocode
10370 if (cond3 is <)
10371 adj = STEP3 - 1;
10372 else
10373 adj = STEP3 + 1;
10374 count3 = (adj + N32 - N31) / STEP3;
10375 if (cond2 is <)
10376 adj = STEP2 - 1;
10377 else
10378 adj = STEP2 + 1;
10379 count2 = (adj + N22 - N21) / STEP2;
10380 if (cond1 is <)
10381 adj = STEP1 - 1;
10382 else
10383 adj = STEP1 + 1;
10384 count1 = (adj + N12 - N11) / STEP1;
10385 count = count1 * count2 * count3;
10386 V = 0;
10387 V1 = N11;
10388 V2 = N21;
10389 V3 = N31;
10390 goto L1;
10392 BODY;
10393 V += 1;
10394 V3 += STEP3;
10395 V2 += (V3 cond3 N32) ? 0 : STEP2;
10396 V3 = (V3 cond3 N32) ? V3 : N31;
10397 V1 += (V2 cond2 N22) ? 0 : STEP1;
10398 V2 = (V2 cond2 N22) ? V2 : N21;
10400 if (V < count) goto L0; else goto L2;
10405 static void
10406 expand_omp_simd (struct omp_region *region, struct omp_for_data *fd)
10408 tree type, t;
10409 basic_block entry_bb, cont_bb, exit_bb, l0_bb, l1_bb, l2_bb, l2_dom_bb;
10410 gimple_stmt_iterator gsi;
10411 gimple *stmt;
10412 gcond *cond_stmt;
10413 bool broken_loop = region->cont == NULL;
10414 edge e, ne;
10415 tree *counts = NULL;
10416 int i;
10417 tree safelen = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
10418 OMP_CLAUSE_SAFELEN);
10419 tree simduid = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
10420 OMP_CLAUSE__SIMDUID_);
10421 tree n1, n2;
10423 type = TREE_TYPE (fd->loop.v);
10424 entry_bb = region->entry;
10425 cont_bb = region->cont;
10426 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
10427 gcc_assert (broken_loop
10428 || BRANCH_EDGE (entry_bb)->dest == FALLTHRU_EDGE (cont_bb)->dest);
10429 l0_bb = FALLTHRU_EDGE (entry_bb)->dest;
10430 if (!broken_loop)
10432 gcc_assert (BRANCH_EDGE (cont_bb)->dest == l0_bb);
10433 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
10434 l1_bb = split_block (cont_bb, last_stmt (cont_bb))->dest;
10435 l2_bb = BRANCH_EDGE (entry_bb)->dest;
10437 else
10439 BRANCH_EDGE (entry_bb)->flags &= ~EDGE_ABNORMAL;
10440 l1_bb = split_edge (BRANCH_EDGE (entry_bb));
10441 l2_bb = single_succ (l1_bb);
10443 exit_bb = region->exit;
10444 l2_dom_bb = NULL;
10446 gsi = gsi_last_bb (entry_bb);
10448 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
10449 /* Not needed in SSA form right now. */
10450 gcc_assert (!gimple_in_ssa_p (cfun));
10451 if (fd->collapse > 1)
10453 int first_zero_iter = -1, dummy = -1;
10454 basic_block zero_iter_bb = l2_bb, dummy_bb = NULL;
10456 counts = XALLOCAVEC (tree, fd->collapse);
10457 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
10458 zero_iter_bb, first_zero_iter,
10459 dummy_bb, dummy, l2_dom_bb);
10461 if (l2_dom_bb == NULL)
10462 l2_dom_bb = l1_bb;
10464 n1 = fd->loop.n1;
10465 n2 = fd->loop.n2;
10466 if (gimple_omp_for_combined_into_p (fd->for_stmt))
10468 tree innerc = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
10469 OMP_CLAUSE__LOOPTEMP_);
10470 gcc_assert (innerc);
10471 n1 = OMP_CLAUSE_DECL (innerc);
10472 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
10473 OMP_CLAUSE__LOOPTEMP_);
10474 gcc_assert (innerc);
10475 n2 = OMP_CLAUSE_DECL (innerc);
10476 expand_omp_build_assign (&gsi, fd->loop.v,
10477 fold_convert (type, n1));
10478 if (fd->collapse > 1)
10480 gsi_prev (&gsi);
10481 expand_omp_for_init_vars (fd, &gsi, counts, NULL, n1);
10482 gsi_next (&gsi);
10485 else
10487 expand_omp_build_assign (&gsi, fd->loop.v,
10488 fold_convert (type, fd->loop.n1));
10489 if (fd->collapse > 1)
10490 for (i = 0; i < fd->collapse; i++)
10492 tree itype = TREE_TYPE (fd->loops[i].v);
10493 if (POINTER_TYPE_P (itype))
10494 itype = signed_type_for (itype);
10495 t = fold_convert (TREE_TYPE (fd->loops[i].v), fd->loops[i].n1);
10496 expand_omp_build_assign (&gsi, fd->loops[i].v, t);
10500 /* Remove the GIMPLE_OMP_FOR statement. */
10501 gsi_remove (&gsi, true);
10503 if (!broken_loop)
10505 /* Code to control the increment goes in the CONT_BB. */
10506 gsi = gsi_last_bb (cont_bb);
10507 stmt = gsi_stmt (gsi);
10508 gcc_assert (gimple_code (stmt) == GIMPLE_OMP_CONTINUE);
10510 if (POINTER_TYPE_P (type))
10511 t = fold_build_pointer_plus (fd->loop.v, fd->loop.step);
10512 else
10513 t = fold_build2 (PLUS_EXPR, type, fd->loop.v, fd->loop.step);
10514 expand_omp_build_assign (&gsi, fd->loop.v, t);
10516 if (fd->collapse > 1)
10518 i = fd->collapse - 1;
10519 if (POINTER_TYPE_P (TREE_TYPE (fd->loops[i].v)))
10521 t = fold_convert (sizetype, fd->loops[i].step);
10522 t = fold_build_pointer_plus (fd->loops[i].v, t);
10524 else
10526 t = fold_convert (TREE_TYPE (fd->loops[i].v),
10527 fd->loops[i].step);
10528 t = fold_build2 (PLUS_EXPR, TREE_TYPE (fd->loops[i].v),
10529 fd->loops[i].v, t);
10531 expand_omp_build_assign (&gsi, fd->loops[i].v, t);
10533 for (i = fd->collapse - 1; i > 0; i--)
10535 tree itype = TREE_TYPE (fd->loops[i].v);
10536 tree itype2 = TREE_TYPE (fd->loops[i - 1].v);
10537 if (POINTER_TYPE_P (itype2))
10538 itype2 = signed_type_for (itype2);
10539 t = build3 (COND_EXPR, itype2,
10540 build2 (fd->loops[i].cond_code, boolean_type_node,
10541 fd->loops[i].v,
10542 fold_convert (itype, fd->loops[i].n2)),
10543 build_int_cst (itype2, 0),
10544 fold_convert (itype2, fd->loops[i - 1].step));
10545 if (POINTER_TYPE_P (TREE_TYPE (fd->loops[i - 1].v)))
10546 t = fold_build_pointer_plus (fd->loops[i - 1].v, t);
10547 else
10548 t = fold_build2 (PLUS_EXPR, itype2, fd->loops[i - 1].v, t);
10549 expand_omp_build_assign (&gsi, fd->loops[i - 1].v, t);
10551 t = build3 (COND_EXPR, itype,
10552 build2 (fd->loops[i].cond_code, boolean_type_node,
10553 fd->loops[i].v,
10554 fold_convert (itype, fd->loops[i].n2)),
10555 fd->loops[i].v,
10556 fold_convert (itype, fd->loops[i].n1));
10557 expand_omp_build_assign (&gsi, fd->loops[i].v, t);
10561 /* Remove GIMPLE_OMP_CONTINUE. */
10562 gsi_remove (&gsi, true);
10565 /* Emit the condition in L1_BB. */
10566 gsi = gsi_start_bb (l1_bb);
10568 t = fold_convert (type, n2);
10569 t = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
10570 false, GSI_CONTINUE_LINKING);
10571 tree v = fd->loop.v;
10572 if (DECL_P (v) && TREE_ADDRESSABLE (v))
10573 v = force_gimple_operand_gsi (&gsi, v, true, NULL_TREE,
10574 false, GSI_CONTINUE_LINKING);
10575 t = build2 (fd->loop.cond_code, boolean_type_node, v, t);
10576 cond_stmt = gimple_build_cond_empty (t);
10577 gsi_insert_after (&gsi, cond_stmt, GSI_CONTINUE_LINKING);
10578 if (walk_tree (gimple_cond_lhs_ptr (cond_stmt), expand_omp_regimplify_p,
10579 NULL, NULL)
10580 || walk_tree (gimple_cond_rhs_ptr (cond_stmt), expand_omp_regimplify_p,
10581 NULL, NULL))
10583 gsi = gsi_for_stmt (cond_stmt);
10584 gimple_regimplify_operands (cond_stmt, &gsi);
10587 /* Remove GIMPLE_OMP_RETURN. */
10588 gsi = gsi_last_bb (exit_bb);
10589 gsi_remove (&gsi, true);
10591 /* Connect the new blocks. */
10592 remove_edge (FALLTHRU_EDGE (entry_bb));
10594 if (!broken_loop)
10596 remove_edge (BRANCH_EDGE (entry_bb));
10597 make_edge (entry_bb, l1_bb, EDGE_FALLTHRU);
10599 e = BRANCH_EDGE (l1_bb);
10600 ne = FALLTHRU_EDGE (l1_bb);
10601 e->flags = EDGE_TRUE_VALUE;
10603 else
10605 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
10607 ne = single_succ_edge (l1_bb);
10608 e = make_edge (l1_bb, l0_bb, EDGE_TRUE_VALUE);
10611 ne->flags = EDGE_FALSE_VALUE;
10612 e->probability = REG_BR_PROB_BASE * 7 / 8;
10613 ne->probability = REG_BR_PROB_BASE / 8;
10615 set_immediate_dominator (CDI_DOMINATORS, l1_bb, entry_bb);
10616 set_immediate_dominator (CDI_DOMINATORS, l2_bb, l2_dom_bb);
10617 set_immediate_dominator (CDI_DOMINATORS, l0_bb, l1_bb);
10619 if (!broken_loop)
10621 struct loop *loop = alloc_loop ();
10622 loop->header = l1_bb;
10623 loop->latch = cont_bb;
10624 add_loop (loop, l1_bb->loop_father);
10625 if (safelen == NULL_TREE)
10626 loop->safelen = INT_MAX;
10627 else
10629 safelen = OMP_CLAUSE_SAFELEN_EXPR (safelen);
10630 if (TREE_CODE (safelen) != INTEGER_CST)
10631 loop->safelen = 0;
10632 else if (!tree_fits_uhwi_p (safelen)
10633 || tree_to_uhwi (safelen) > INT_MAX)
10634 loop->safelen = INT_MAX;
10635 else
10636 loop->safelen = tree_to_uhwi (safelen);
10637 if (loop->safelen == 1)
10638 loop->safelen = 0;
10640 if (simduid)
10642 loop->simduid = OMP_CLAUSE__SIMDUID__DECL (simduid);
10643 cfun->has_simduid_loops = true;
10645 /* If not -fno-tree-loop-vectorize, hint that we want to vectorize
10646 the loop. */
10647 if ((flag_tree_loop_vectorize
10648 || (!global_options_set.x_flag_tree_loop_vectorize
10649 && !global_options_set.x_flag_tree_vectorize))
10650 && flag_tree_loop_optimize
10651 && loop->safelen > 1)
10653 loop->force_vectorize = true;
10654 cfun->has_force_vectorize_loops = true;
10657 else if (simduid)
10658 cfun->has_simduid_loops = true;
10661 /* Taskloop construct is represented after gimplification with
10662 two GIMPLE_OMP_FOR constructs with GIMPLE_OMP_TASK sandwiched
10663 in between them. This routine expands the outer GIMPLE_OMP_FOR,
10664 which should just compute all the needed loop temporaries
10665 for GIMPLE_OMP_TASK. */
10667 static void
10668 expand_omp_taskloop_for_outer (struct omp_region *region,
10669 struct omp_for_data *fd,
10670 gimple *inner_stmt)
10672 tree type, bias = NULL_TREE;
10673 basic_block entry_bb, cont_bb, exit_bb;
10674 gimple_stmt_iterator gsi;
10675 gassign *assign_stmt;
10676 tree *counts = NULL;
10677 int i;
10679 gcc_assert (inner_stmt);
10680 gcc_assert (region->cont);
10681 gcc_assert (gimple_code (inner_stmt) == GIMPLE_OMP_TASK
10682 && gimple_omp_task_taskloop_p (inner_stmt));
10683 type = TREE_TYPE (fd->loop.v);
10685 /* See if we need to bias by LLONG_MIN. */
10686 if (fd->iter_type == long_long_unsigned_type_node
10687 && TREE_CODE (type) == INTEGER_TYPE
10688 && !TYPE_UNSIGNED (type))
10690 tree n1, n2;
10692 if (fd->loop.cond_code == LT_EXPR)
10694 n1 = fd->loop.n1;
10695 n2 = fold_build2 (PLUS_EXPR, type, fd->loop.n2, fd->loop.step);
10697 else
10699 n1 = fold_build2 (MINUS_EXPR, type, fd->loop.n2, fd->loop.step);
10700 n2 = fd->loop.n1;
10702 if (TREE_CODE (n1) != INTEGER_CST
10703 || TREE_CODE (n2) != INTEGER_CST
10704 || ((tree_int_cst_sgn (n1) < 0) ^ (tree_int_cst_sgn (n2) < 0)))
10705 bias = fold_convert (fd->iter_type, TYPE_MIN_VALUE (type));
10708 entry_bb = region->entry;
10709 cont_bb = region->cont;
10710 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
10711 gcc_assert (BRANCH_EDGE (entry_bb)->dest == FALLTHRU_EDGE (cont_bb)->dest);
10712 exit_bb = region->exit;
10714 gsi = gsi_last_bb (entry_bb);
10715 gimple *for_stmt = gsi_stmt (gsi);
10716 gcc_assert (gimple_code (for_stmt) == GIMPLE_OMP_FOR);
10717 if (fd->collapse > 1)
10719 int first_zero_iter = -1, dummy = -1;
10720 basic_block zero_iter_bb = NULL, dummy_bb = NULL, l2_dom_bb = NULL;
10722 counts = XALLOCAVEC (tree, fd->collapse);
10723 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
10724 zero_iter_bb, first_zero_iter,
10725 dummy_bb, dummy, l2_dom_bb);
10727 if (zero_iter_bb)
10729 /* Some counts[i] vars might be uninitialized if
10730 some loop has zero iterations. But the body shouldn't
10731 be executed in that case, so just avoid uninit warnings. */
10732 for (i = first_zero_iter; i < fd->collapse; i++)
10733 if (SSA_VAR_P (counts[i]))
10734 TREE_NO_WARNING (counts[i]) = 1;
10735 gsi_prev (&gsi);
10736 edge e = split_block (entry_bb, gsi_stmt (gsi));
10737 entry_bb = e->dest;
10738 make_edge (zero_iter_bb, entry_bb, EDGE_FALLTHRU);
10739 gsi = gsi_last_bb (entry_bb);
10740 set_immediate_dominator (CDI_DOMINATORS, entry_bb,
10741 get_immediate_dominator (CDI_DOMINATORS,
10742 zero_iter_bb));
10746 tree t0, t1;
10747 t1 = fd->loop.n2;
10748 t0 = fd->loop.n1;
10749 if (POINTER_TYPE_P (TREE_TYPE (t0))
10750 && TYPE_PRECISION (TREE_TYPE (t0))
10751 != TYPE_PRECISION (fd->iter_type))
10753 /* Avoid casting pointers to integer of a different size. */
10754 tree itype = signed_type_for (type);
10755 t1 = fold_convert (fd->iter_type, fold_convert (itype, t1));
10756 t0 = fold_convert (fd->iter_type, fold_convert (itype, t0));
10758 else
10760 t1 = fold_convert (fd->iter_type, t1);
10761 t0 = fold_convert (fd->iter_type, t0);
10763 if (bias)
10765 t1 = fold_build2 (PLUS_EXPR, fd->iter_type, t1, bias);
10766 t0 = fold_build2 (PLUS_EXPR, fd->iter_type, t0, bias);
10769 tree innerc = find_omp_clause (gimple_omp_task_clauses (inner_stmt),
10770 OMP_CLAUSE__LOOPTEMP_);
10771 gcc_assert (innerc);
10772 tree startvar = OMP_CLAUSE_DECL (innerc);
10773 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc), OMP_CLAUSE__LOOPTEMP_);
10774 gcc_assert (innerc);
10775 tree endvar = OMP_CLAUSE_DECL (innerc);
10776 if (fd->collapse > 1 && TREE_CODE (fd->loop.n2) != INTEGER_CST)
10778 gcc_assert (innerc);
10779 for (i = 1; i < fd->collapse; i++)
10781 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
10782 OMP_CLAUSE__LOOPTEMP_);
10783 gcc_assert (innerc);
10785 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
10786 OMP_CLAUSE__LOOPTEMP_);
10787 if (innerc)
10789 /* If needed (inner taskloop has lastprivate clause), propagate
10790 down the total number of iterations. */
10791 tree t = force_gimple_operand_gsi (&gsi, fd->loop.n2, false,
10792 NULL_TREE, false,
10793 GSI_CONTINUE_LINKING);
10794 assign_stmt = gimple_build_assign (OMP_CLAUSE_DECL (innerc), t);
10795 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10799 t0 = force_gimple_operand_gsi (&gsi, t0, false, NULL_TREE, false,
10800 GSI_CONTINUE_LINKING);
10801 assign_stmt = gimple_build_assign (startvar, t0);
10802 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10804 t1 = force_gimple_operand_gsi (&gsi, t1, false, NULL_TREE, false,
10805 GSI_CONTINUE_LINKING);
10806 assign_stmt = gimple_build_assign (endvar, t1);
10807 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10808 if (fd->collapse > 1)
10809 expand_omp_for_init_vars (fd, &gsi, counts, inner_stmt, startvar);
10811 /* Remove the GIMPLE_OMP_FOR statement. */
10812 gsi = gsi_for_stmt (for_stmt);
10813 gsi_remove (&gsi, true);
10815 gsi = gsi_last_bb (cont_bb);
10816 gsi_remove (&gsi, true);
10818 gsi = gsi_last_bb (exit_bb);
10819 gsi_remove (&gsi, true);
10821 FALLTHRU_EDGE (entry_bb)->probability = REG_BR_PROB_BASE;
10822 remove_edge (BRANCH_EDGE (entry_bb));
10823 FALLTHRU_EDGE (cont_bb)->probability = REG_BR_PROB_BASE;
10824 remove_edge (BRANCH_EDGE (cont_bb));
10825 set_immediate_dominator (CDI_DOMINATORS, exit_bb, cont_bb);
10826 set_immediate_dominator (CDI_DOMINATORS, region->entry,
10827 recompute_dominator (CDI_DOMINATORS, region->entry));
10830 /* Taskloop construct is represented after gimplification with
10831 two GIMPLE_OMP_FOR constructs with GIMPLE_OMP_TASK sandwiched
10832 in between them. This routine expands the inner GIMPLE_OMP_FOR.
10833 GOMP_taskloop{,_ull} function arranges for each task to be given just
10834 a single range of iterations. */
10836 static void
10837 expand_omp_taskloop_for_inner (struct omp_region *region,
10838 struct omp_for_data *fd,
10839 gimple *inner_stmt)
10841 tree e, t, type, itype, vmain, vback, bias = NULL_TREE;
10842 basic_block entry_bb, exit_bb, body_bb, cont_bb, collapse_bb = NULL;
10843 basic_block fin_bb;
10844 gimple_stmt_iterator gsi;
10845 edge ep;
10846 bool broken_loop = region->cont == NULL;
10847 tree *counts = NULL;
10848 tree n1, n2, step;
10850 itype = type = TREE_TYPE (fd->loop.v);
10851 if (POINTER_TYPE_P (type))
10852 itype = signed_type_for (type);
10854 /* See if we need to bias by LLONG_MIN. */
10855 if (fd->iter_type == long_long_unsigned_type_node
10856 && TREE_CODE (type) == INTEGER_TYPE
10857 && !TYPE_UNSIGNED (type))
10859 tree n1, n2;
10861 if (fd->loop.cond_code == LT_EXPR)
10863 n1 = fd->loop.n1;
10864 n2 = fold_build2 (PLUS_EXPR, type, fd->loop.n2, fd->loop.step);
10866 else
10868 n1 = fold_build2 (MINUS_EXPR, type, fd->loop.n2, fd->loop.step);
10869 n2 = fd->loop.n1;
10871 if (TREE_CODE (n1) != INTEGER_CST
10872 || TREE_CODE (n2) != INTEGER_CST
10873 || ((tree_int_cst_sgn (n1) < 0) ^ (tree_int_cst_sgn (n2) < 0)))
10874 bias = fold_convert (fd->iter_type, TYPE_MIN_VALUE (type));
10877 entry_bb = region->entry;
10878 cont_bb = region->cont;
10879 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2);
10880 fin_bb = BRANCH_EDGE (entry_bb)->dest;
10881 gcc_assert (broken_loop
10882 || (fin_bb == FALLTHRU_EDGE (cont_bb)->dest));
10883 body_bb = FALLTHRU_EDGE (entry_bb)->dest;
10884 if (!broken_loop)
10886 gcc_assert (BRANCH_EDGE (cont_bb)->dest == body_bb);
10887 gcc_assert (EDGE_COUNT (cont_bb->succs) == 2);
10889 exit_bb = region->exit;
10891 /* Iteration space partitioning goes in ENTRY_BB. */
10892 gsi = gsi_last_bb (entry_bb);
10893 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_FOR);
10895 if (fd->collapse > 1)
10897 int first_zero_iter = -1, dummy = -1;
10898 basic_block l2_dom_bb = NULL, dummy_bb = NULL;
10900 counts = XALLOCAVEC (tree, fd->collapse);
10901 expand_omp_for_init_counts (fd, &gsi, entry_bb, counts,
10902 fin_bb, first_zero_iter,
10903 dummy_bb, dummy, l2_dom_bb);
10904 t = NULL_TREE;
10906 else
10907 t = integer_one_node;
10909 step = fd->loop.step;
10910 tree innerc = find_omp_clause (gimple_omp_for_clauses (fd->for_stmt),
10911 OMP_CLAUSE__LOOPTEMP_);
10912 gcc_assert (innerc);
10913 n1 = OMP_CLAUSE_DECL (innerc);
10914 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc), OMP_CLAUSE__LOOPTEMP_);
10915 gcc_assert (innerc);
10916 n2 = OMP_CLAUSE_DECL (innerc);
10917 if (bias)
10919 n1 = fold_build2 (PLUS_EXPR, fd->iter_type, n1, bias);
10920 n2 = fold_build2 (PLUS_EXPR, fd->iter_type, n2, bias);
10922 n1 = force_gimple_operand_gsi (&gsi, fold_convert (type, n1),
10923 true, NULL_TREE, true, GSI_SAME_STMT);
10924 n2 = force_gimple_operand_gsi (&gsi, fold_convert (itype, n2),
10925 true, NULL_TREE, true, GSI_SAME_STMT);
10926 step = force_gimple_operand_gsi (&gsi, fold_convert (itype, step),
10927 true, NULL_TREE, true, GSI_SAME_STMT);
10929 tree startvar = fd->loop.v;
10930 tree endvar = NULL_TREE;
10932 if (gimple_omp_for_combined_p (fd->for_stmt))
10934 tree clauses = gimple_omp_for_clauses (inner_stmt);
10935 tree innerc = find_omp_clause (clauses, OMP_CLAUSE__LOOPTEMP_);
10936 gcc_assert (innerc);
10937 startvar = OMP_CLAUSE_DECL (innerc);
10938 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
10939 OMP_CLAUSE__LOOPTEMP_);
10940 gcc_assert (innerc);
10941 endvar = OMP_CLAUSE_DECL (innerc);
10943 t = fold_convert (TREE_TYPE (startvar), n1);
10944 t = force_gimple_operand_gsi (&gsi, t,
10945 DECL_P (startvar)
10946 && TREE_ADDRESSABLE (startvar),
10947 NULL_TREE, false, GSI_CONTINUE_LINKING);
10948 gimple *assign_stmt = gimple_build_assign (startvar, t);
10949 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10951 t = fold_convert (TREE_TYPE (startvar), n2);
10952 e = force_gimple_operand_gsi (&gsi, t, true, NULL_TREE,
10953 false, GSI_CONTINUE_LINKING);
10954 if (endvar)
10956 assign_stmt = gimple_build_assign (endvar, e);
10957 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10958 if (useless_type_conversion_p (TREE_TYPE (fd->loop.v), TREE_TYPE (e)))
10959 assign_stmt = gimple_build_assign (fd->loop.v, e);
10960 else
10961 assign_stmt = gimple_build_assign (fd->loop.v, NOP_EXPR, e);
10962 gsi_insert_after (&gsi, assign_stmt, GSI_CONTINUE_LINKING);
10964 if (fd->collapse > 1)
10965 expand_omp_for_init_vars (fd, &gsi, counts, inner_stmt, startvar);
10967 if (!broken_loop)
10969 /* The code controlling the sequential loop replaces the
10970 GIMPLE_OMP_CONTINUE. */
10971 gsi = gsi_last_bb (cont_bb);
10972 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
10973 gcc_assert (gimple_code (cont_stmt) == GIMPLE_OMP_CONTINUE);
10974 vmain = gimple_omp_continue_control_use (cont_stmt);
10975 vback = gimple_omp_continue_control_def (cont_stmt);
10977 if (!gimple_omp_for_combined_p (fd->for_stmt))
10979 if (POINTER_TYPE_P (type))
10980 t = fold_build_pointer_plus (vmain, step);
10981 else
10982 t = fold_build2 (PLUS_EXPR, type, vmain, step);
10983 t = force_gimple_operand_gsi (&gsi, t,
10984 DECL_P (vback)
10985 && TREE_ADDRESSABLE (vback),
10986 NULL_TREE, true, GSI_SAME_STMT);
10987 assign_stmt = gimple_build_assign (vback, t);
10988 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
10990 t = build2 (fd->loop.cond_code, boolean_type_node,
10991 DECL_P (vback) && TREE_ADDRESSABLE (vback)
10992 ? t : vback, e);
10993 gsi_insert_before (&gsi, gimple_build_cond_empty (t), GSI_SAME_STMT);
10996 /* Remove the GIMPLE_OMP_CONTINUE statement. */
10997 gsi_remove (&gsi, true);
10999 if (fd->collapse > 1 && !gimple_omp_for_combined_p (fd->for_stmt))
11000 collapse_bb = extract_omp_for_update_vars (fd, cont_bb, body_bb);
11003 /* Remove the GIMPLE_OMP_FOR statement. */
11004 gsi = gsi_for_stmt (fd->for_stmt);
11005 gsi_remove (&gsi, true);
11007 /* Remove the GIMPLE_OMP_RETURN statement. */
11008 gsi = gsi_last_bb (exit_bb);
11009 gsi_remove (&gsi, true);
11011 FALLTHRU_EDGE (entry_bb)->probability = REG_BR_PROB_BASE;
11012 if (!broken_loop)
11013 remove_edge (BRANCH_EDGE (entry_bb));
11014 else
11016 remove_edge_and_dominated_blocks (BRANCH_EDGE (entry_bb));
11017 region->outer->cont = NULL;
11020 /* Connect all the blocks. */
11021 if (!broken_loop)
11023 ep = find_edge (cont_bb, body_bb);
11024 if (gimple_omp_for_combined_p (fd->for_stmt))
11026 remove_edge (ep);
11027 ep = NULL;
11029 else if (fd->collapse > 1)
11031 remove_edge (ep);
11032 ep = make_edge (cont_bb, collapse_bb, EDGE_TRUE_VALUE);
11034 else
11035 ep->flags = EDGE_TRUE_VALUE;
11036 find_edge (cont_bb, fin_bb)->flags
11037 = ep ? EDGE_FALSE_VALUE : EDGE_FALLTHRU;
11040 set_immediate_dominator (CDI_DOMINATORS, body_bb,
11041 recompute_dominator (CDI_DOMINATORS, body_bb));
11042 if (!broken_loop)
11043 set_immediate_dominator (CDI_DOMINATORS, fin_bb,
11044 recompute_dominator (CDI_DOMINATORS, fin_bb));
11046 if (!broken_loop && !gimple_omp_for_combined_p (fd->for_stmt))
11048 struct loop *loop = alloc_loop ();
11049 loop->header = body_bb;
11050 if (collapse_bb == NULL)
11051 loop->latch = cont_bb;
11052 add_loop (loop, body_bb->loop_father);
11056 /* A subroutine of expand_omp_for. Generate code for an OpenACC
11057 partitioned loop. The lowering here is abstracted, in that the
11058 loop parameters are passed through internal functions, which are
11059 further lowered by oacc_device_lower, once we get to the target
11060 compiler. The loop is of the form:
11062 for (V = B; V LTGT E; V += S) {BODY}
11064 where LTGT is < or >. We may have a specified chunking size, CHUNKING
11065 (constant 0 for no chunking) and we will have a GWV partitioning
11066 mask, specifying dimensions over which the loop is to be
11067 partitioned (see note below). We generate code that looks like:
11069 <entry_bb> [incoming FALL->body, BRANCH->exit]
11070 typedef signedintify (typeof (V)) T; // underlying signed integral type
11071 T range = E - B;
11072 T chunk_no = 0;
11073 T DIR = LTGT == '<' ? +1 : -1;
11074 T chunk_max = GOACC_LOOP_CHUNK (dir, range, S, CHUNK_SIZE, GWV);
11075 T step = GOACC_LOOP_STEP (dir, range, S, CHUNK_SIZE, GWV);
11077 <head_bb> [created by splitting end of entry_bb]
11078 T offset = GOACC_LOOP_OFFSET (dir, range, S, CHUNK_SIZE, GWV, chunk_no);
11079 T bound = GOACC_LOOP_BOUND (dir, range, S, CHUNK_SIZE, GWV, offset);
11080 if (!(offset LTGT bound)) goto bottom_bb;
11082 <body_bb> [incoming]
11083 V = B + offset;
11084 {BODY}
11086 <cont_bb> [incoming, may == body_bb FALL->exit_bb, BRANCH->body_bb]
11087 offset += step;
11088 if (offset LTGT bound) goto body_bb; [*]
11090 <bottom_bb> [created by splitting start of exit_bb] insert BRANCH->head_bb
11091 chunk_no++;
11092 if (chunk < chunk_max) goto head_bb;
11094 <exit_bb> [incoming]
11095 V = B + ((range -/+ 1) / S +/- 1) * S [*]
11097 [*] Needed if V live at end of loop
11099 Note: CHUNKING & GWV mask are specified explicitly here. This is a
11100 transition, and will be specified by a more general mechanism shortly.
11103 static void
11104 expand_oacc_for (struct omp_region *region, struct omp_for_data *fd)
11106 tree v = fd->loop.v;
11107 enum tree_code cond_code = fd->loop.cond_code;
11108 enum tree_code plus_code = PLUS_EXPR;
11110 tree chunk_size = integer_minus_one_node;
11111 tree gwv = integer_zero_node;
11112 tree iter_type = TREE_TYPE (v);
11113 tree diff_type = iter_type;
11114 tree plus_type = iter_type;
11115 struct oacc_collapse *counts = NULL;
11117 gcc_checking_assert (gimple_omp_for_kind (fd->for_stmt)
11118 == GF_OMP_FOR_KIND_OACC_LOOP);
11119 gcc_assert (!gimple_omp_for_combined_into_p (fd->for_stmt));
11120 gcc_assert (cond_code == LT_EXPR || cond_code == GT_EXPR);
11122 if (POINTER_TYPE_P (iter_type))
11124 plus_code = POINTER_PLUS_EXPR;
11125 plus_type = sizetype;
11127 if (POINTER_TYPE_P (diff_type) || TYPE_UNSIGNED (diff_type))
11128 diff_type = signed_type_for (diff_type);
11130 basic_block entry_bb = region->entry; /* BB ending in OMP_FOR */
11131 basic_block exit_bb = region->exit; /* BB ending in OMP_RETURN */
11132 basic_block cont_bb = region->cont; /* BB ending in OMP_CONTINUE */
11133 basic_block bottom_bb = NULL;
11135 /* entry_bb has two sucessors; the branch edge is to the exit
11136 block, fallthrough edge to body. */
11137 gcc_assert (EDGE_COUNT (entry_bb->succs) == 2
11138 && BRANCH_EDGE (entry_bb)->dest == exit_bb);
11140 /* If cont_bb non-NULL, it has 2 successors. The branch successor is
11141 body_bb, or to a block whose only successor is the body_bb. Its
11142 fallthrough successor is the final block (same as the branch
11143 successor of the entry_bb). */
11144 if (cont_bb)
11146 basic_block body_bb = FALLTHRU_EDGE (entry_bb)->dest;
11147 basic_block bed = BRANCH_EDGE (cont_bb)->dest;
11149 gcc_assert (FALLTHRU_EDGE (cont_bb)->dest == exit_bb);
11150 gcc_assert (bed == body_bb || single_succ_edge (bed)->dest == body_bb);
11152 else
11153 gcc_assert (!gimple_in_ssa_p (cfun));
11155 /* The exit block only has entry_bb and cont_bb as predecessors. */
11156 gcc_assert (EDGE_COUNT (exit_bb->preds) == 1 + (cont_bb != NULL));
11158 tree chunk_no;
11159 tree chunk_max = NULL_TREE;
11160 tree bound, offset;
11161 tree step = create_tmp_var (diff_type, ".step");
11162 bool up = cond_code == LT_EXPR;
11163 tree dir = build_int_cst (diff_type, up ? +1 : -1);
11164 bool chunking = !gimple_in_ssa_p (cfun);;
11165 bool negating;
11167 /* SSA instances. */
11168 tree offset_incr = NULL_TREE;
11169 tree offset_init = NULL_TREE;
11171 gimple_stmt_iterator gsi;
11172 gassign *ass;
11173 gcall *call;
11174 gimple *stmt;
11175 tree expr;
11176 location_t loc;
11177 edge split, be, fte;
11179 /* Split the end of entry_bb to create head_bb. */
11180 split = split_block (entry_bb, last_stmt (entry_bb));
11181 basic_block head_bb = split->dest;
11182 entry_bb = split->src;
11184 /* Chunk setup goes at end of entry_bb, replacing the omp_for. */
11185 gsi = gsi_last_bb (entry_bb);
11186 gomp_for *for_stmt = as_a <gomp_for *> (gsi_stmt (gsi));
11187 loc = gimple_location (for_stmt);
11189 if (gimple_in_ssa_p (cfun))
11191 offset_init = gimple_omp_for_index (for_stmt, 0);
11192 gcc_assert (integer_zerop (fd->loop.n1));
11193 /* The SSA parallelizer does gang parallelism. */
11194 gwv = build_int_cst (integer_type_node, GOMP_DIM_MASK (GOMP_DIM_GANG));
11197 if (fd->collapse > 1)
11199 counts = XALLOCAVEC (struct oacc_collapse, fd->collapse);
11200 tree total = expand_oacc_collapse_init (fd, &gsi, counts,
11201 TREE_TYPE (fd->loop.n2));
11203 if (SSA_VAR_P (fd->loop.n2))
11205 total = force_gimple_operand_gsi (&gsi, total, false, NULL_TREE,
11206 true, GSI_SAME_STMT);
11207 ass = gimple_build_assign (fd->loop.n2, total);
11208 gsi_insert_before (&gsi, ass, GSI_SAME_STMT);
11213 tree b = fd->loop.n1;
11214 tree e = fd->loop.n2;
11215 tree s = fd->loop.step;
11217 b = force_gimple_operand_gsi (&gsi, b, true, NULL_TREE, true, GSI_SAME_STMT);
11218 e = force_gimple_operand_gsi (&gsi, e, true, NULL_TREE, true, GSI_SAME_STMT);
11220 /* Convert the step, avoiding possible unsigned->signed overflow. */
11221 negating = !up && TYPE_UNSIGNED (TREE_TYPE (s));
11222 if (negating)
11223 s = fold_build1 (NEGATE_EXPR, TREE_TYPE (s), s);
11224 s = fold_convert (diff_type, s);
11225 if (negating)
11226 s = fold_build1 (NEGATE_EXPR, diff_type, s);
11227 s = force_gimple_operand_gsi (&gsi, s, true, NULL_TREE, true, GSI_SAME_STMT);
11229 if (!chunking)
11230 chunk_size = integer_zero_node;
11231 expr = fold_convert (diff_type, chunk_size);
11232 chunk_size = force_gimple_operand_gsi (&gsi, expr, true,
11233 NULL_TREE, true, GSI_SAME_STMT);
11234 /* Determine the range, avoiding possible unsigned->signed overflow. */
11235 negating = !up && TYPE_UNSIGNED (iter_type);
11236 expr = fold_build2 (MINUS_EXPR, plus_type,
11237 fold_convert (plus_type, negating ? b : e),
11238 fold_convert (plus_type, negating ? e : b));
11239 expr = fold_convert (diff_type, expr);
11240 if (negating)
11241 expr = fold_build1 (NEGATE_EXPR, diff_type, expr);
11242 tree range = force_gimple_operand_gsi (&gsi, expr, true,
11243 NULL_TREE, true, GSI_SAME_STMT);
11245 chunk_no = build_int_cst (diff_type, 0);
11246 if (chunking)
11248 gcc_assert (!gimple_in_ssa_p (cfun));
11250 expr = chunk_no;
11251 chunk_max = create_tmp_var (diff_type, ".chunk_max");
11252 chunk_no = create_tmp_var (diff_type, ".chunk_no");
11254 ass = gimple_build_assign (chunk_no, expr);
11255 gsi_insert_before (&gsi, ass, GSI_SAME_STMT);
11257 call = gimple_build_call_internal (IFN_GOACC_LOOP, 6,
11258 build_int_cst (integer_type_node,
11259 IFN_GOACC_LOOP_CHUNKS),
11260 dir, range, s, chunk_size, gwv);
11261 gimple_call_set_lhs (call, chunk_max);
11262 gimple_set_location (call, loc);
11263 gsi_insert_before (&gsi, call, GSI_SAME_STMT);
11265 else
11266 chunk_size = chunk_no;
11268 call = gimple_build_call_internal (IFN_GOACC_LOOP, 6,
11269 build_int_cst (integer_type_node,
11270 IFN_GOACC_LOOP_STEP),
11271 dir, range, s, chunk_size, gwv);
11272 gimple_call_set_lhs (call, step);
11273 gimple_set_location (call, loc);
11274 gsi_insert_before (&gsi, call, GSI_SAME_STMT);
11276 /* Remove the GIMPLE_OMP_FOR. */
11277 gsi_remove (&gsi, true);
11279 /* Fixup edges from head_bb */
11280 be = BRANCH_EDGE (head_bb);
11281 fte = FALLTHRU_EDGE (head_bb);
11282 be->flags |= EDGE_FALSE_VALUE;
11283 fte->flags ^= EDGE_FALLTHRU | EDGE_TRUE_VALUE;
11285 basic_block body_bb = fte->dest;
11287 if (gimple_in_ssa_p (cfun))
11289 gsi = gsi_last_bb (cont_bb);
11290 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
11292 offset = gimple_omp_continue_control_use (cont_stmt);
11293 offset_incr = gimple_omp_continue_control_def (cont_stmt);
11295 else
11297 offset = create_tmp_var (diff_type, ".offset");
11298 offset_init = offset_incr = offset;
11300 bound = create_tmp_var (TREE_TYPE (offset), ".bound");
11302 /* Loop offset & bound go into head_bb. */
11303 gsi = gsi_start_bb (head_bb);
11305 call = gimple_build_call_internal (IFN_GOACC_LOOP, 7,
11306 build_int_cst (integer_type_node,
11307 IFN_GOACC_LOOP_OFFSET),
11308 dir, range, s,
11309 chunk_size, gwv, chunk_no);
11310 gimple_call_set_lhs (call, offset_init);
11311 gimple_set_location (call, loc);
11312 gsi_insert_after (&gsi, call, GSI_CONTINUE_LINKING);
11314 call = gimple_build_call_internal (IFN_GOACC_LOOP, 7,
11315 build_int_cst (integer_type_node,
11316 IFN_GOACC_LOOP_BOUND),
11317 dir, range, s,
11318 chunk_size, gwv, offset_init);
11319 gimple_call_set_lhs (call, bound);
11320 gimple_set_location (call, loc);
11321 gsi_insert_after (&gsi, call, GSI_CONTINUE_LINKING);
11323 expr = build2 (cond_code, boolean_type_node, offset_init, bound);
11324 gsi_insert_after (&gsi, gimple_build_cond_empty (expr),
11325 GSI_CONTINUE_LINKING);
11327 /* V assignment goes into body_bb. */
11328 if (!gimple_in_ssa_p (cfun))
11330 gsi = gsi_start_bb (body_bb);
11332 expr = build2 (plus_code, iter_type, b,
11333 fold_convert (plus_type, offset));
11334 expr = force_gimple_operand_gsi (&gsi, expr, false, NULL_TREE,
11335 true, GSI_SAME_STMT);
11336 ass = gimple_build_assign (v, expr);
11337 gsi_insert_before (&gsi, ass, GSI_SAME_STMT);
11338 if (fd->collapse > 1)
11339 expand_oacc_collapse_vars (fd, &gsi, counts, v);
11342 /* Loop increment goes into cont_bb. If this is not a loop, we
11343 will have spawned threads as if it was, and each one will
11344 execute one iteration. The specification is not explicit about
11345 whether such constructs are ill-formed or not, and they can
11346 occur, especially when noreturn routines are involved. */
11347 if (cont_bb)
11349 gsi = gsi_last_bb (cont_bb);
11350 gomp_continue *cont_stmt = as_a <gomp_continue *> (gsi_stmt (gsi));
11351 loc = gimple_location (cont_stmt);
11353 /* Increment offset. */
11354 if (gimple_in_ssa_p (cfun))
11355 expr= build2 (plus_code, iter_type, offset,
11356 fold_convert (plus_type, step));
11357 else
11358 expr = build2 (PLUS_EXPR, diff_type, offset, step);
11359 expr = force_gimple_operand_gsi (&gsi, expr, false, NULL_TREE,
11360 true, GSI_SAME_STMT);
11361 ass = gimple_build_assign (offset_incr, expr);
11362 gsi_insert_before (&gsi, ass, GSI_SAME_STMT);
11363 expr = build2 (cond_code, boolean_type_node, offset_incr, bound);
11364 gsi_insert_before (&gsi, gimple_build_cond_empty (expr), GSI_SAME_STMT);
11366 /* Remove the GIMPLE_OMP_CONTINUE. */
11367 gsi_remove (&gsi, true);
11369 /* Fixup edges from cont_bb */
11370 be = BRANCH_EDGE (cont_bb);
11371 fte = FALLTHRU_EDGE (cont_bb);
11372 be->flags |= EDGE_TRUE_VALUE;
11373 fte->flags ^= EDGE_FALLTHRU | EDGE_FALSE_VALUE;
11375 if (chunking)
11377 /* Split the beginning of exit_bb to make bottom_bb. We
11378 need to insert a nop at the start, because splitting is
11379 after a stmt, not before. */
11380 gsi = gsi_start_bb (exit_bb);
11381 stmt = gimple_build_nop ();
11382 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
11383 split = split_block (exit_bb, stmt);
11384 bottom_bb = split->src;
11385 exit_bb = split->dest;
11386 gsi = gsi_last_bb (bottom_bb);
11388 /* Chunk increment and test goes into bottom_bb. */
11389 expr = build2 (PLUS_EXPR, diff_type, chunk_no,
11390 build_int_cst (diff_type, 1));
11391 ass = gimple_build_assign (chunk_no, expr);
11392 gsi_insert_after (&gsi, ass, GSI_CONTINUE_LINKING);
11394 /* Chunk test at end of bottom_bb. */
11395 expr = build2 (LT_EXPR, boolean_type_node, chunk_no, chunk_max);
11396 gsi_insert_after (&gsi, gimple_build_cond_empty (expr),
11397 GSI_CONTINUE_LINKING);
11399 /* Fixup edges from bottom_bb. */
11400 split->flags ^= EDGE_FALLTHRU | EDGE_FALSE_VALUE;
11401 make_edge (bottom_bb, head_bb, EDGE_TRUE_VALUE);
11405 gsi = gsi_last_bb (exit_bb);
11406 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
11407 loc = gimple_location (gsi_stmt (gsi));
11409 if (!gimple_in_ssa_p (cfun))
11411 /* Insert the final value of V, in case it is live. This is the
11412 value for the only thread that survives past the join. */
11413 expr = fold_build2 (MINUS_EXPR, diff_type, range, dir);
11414 expr = fold_build2 (PLUS_EXPR, diff_type, expr, s);
11415 expr = fold_build2 (TRUNC_DIV_EXPR, diff_type, expr, s);
11416 expr = fold_build2 (MULT_EXPR, diff_type, expr, s);
11417 expr = build2 (plus_code, iter_type, b, fold_convert (plus_type, expr));
11418 expr = force_gimple_operand_gsi (&gsi, expr, false, NULL_TREE,
11419 true, GSI_SAME_STMT);
11420 ass = gimple_build_assign (v, expr);
11421 gsi_insert_before (&gsi, ass, GSI_SAME_STMT);
11424 /* Remove the OMP_RETURN. */
11425 gsi_remove (&gsi, true);
11427 if (cont_bb)
11429 /* We now have one or two nested loops. Update the loop
11430 structures. */
11431 struct loop *parent = entry_bb->loop_father;
11432 struct loop *body = body_bb->loop_father;
11434 if (chunking)
11436 struct loop *chunk_loop = alloc_loop ();
11437 chunk_loop->header = head_bb;
11438 chunk_loop->latch = bottom_bb;
11439 add_loop (chunk_loop, parent);
11440 parent = chunk_loop;
11442 else if (parent != body)
11444 gcc_assert (body->header == body_bb);
11445 gcc_assert (body->latch == cont_bb
11446 || single_pred (body->latch) == cont_bb);
11447 parent = NULL;
11450 if (parent)
11452 struct loop *body_loop = alloc_loop ();
11453 body_loop->header = body_bb;
11454 body_loop->latch = cont_bb;
11455 add_loop (body_loop, parent);
11460 /* Expand the OMP loop defined by REGION. */
11462 static void
11463 expand_omp_for (struct omp_region *region, gimple *inner_stmt)
11465 struct omp_for_data fd;
11466 struct omp_for_data_loop *loops;
11468 loops
11469 = (struct omp_for_data_loop *)
11470 alloca (gimple_omp_for_collapse (last_stmt (region->entry))
11471 * sizeof (struct omp_for_data_loop));
11472 extract_omp_for_data (as_a <gomp_for *> (last_stmt (region->entry)),
11473 &fd, loops);
11474 region->sched_kind = fd.sched_kind;
11475 region->sched_modifiers = fd.sched_modifiers;
11477 gcc_assert (EDGE_COUNT (region->entry->succs) == 2);
11478 BRANCH_EDGE (region->entry)->flags &= ~EDGE_ABNORMAL;
11479 FALLTHRU_EDGE (region->entry)->flags &= ~EDGE_ABNORMAL;
11480 if (region->cont)
11482 gcc_assert (EDGE_COUNT (region->cont->succs) == 2);
11483 BRANCH_EDGE (region->cont)->flags &= ~EDGE_ABNORMAL;
11484 FALLTHRU_EDGE (region->cont)->flags &= ~EDGE_ABNORMAL;
11486 else
11487 /* If there isn't a continue then this is a degerate case where
11488 the introduction of abnormal edges during lowering will prevent
11489 original loops from being detected. Fix that up. */
11490 loops_state_set (LOOPS_NEED_FIXUP);
11492 if (gimple_omp_for_kind (fd.for_stmt) & GF_OMP_FOR_SIMD)
11493 expand_omp_simd (region, &fd);
11494 else if (gimple_omp_for_kind (fd.for_stmt) == GF_OMP_FOR_KIND_CILKFOR)
11495 expand_cilk_for (region, &fd);
11496 else if (gimple_omp_for_kind (fd.for_stmt) == GF_OMP_FOR_KIND_OACC_LOOP)
11498 gcc_assert (!inner_stmt);
11499 expand_oacc_for (region, &fd);
11501 else if (gimple_omp_for_kind (fd.for_stmt) == GF_OMP_FOR_KIND_TASKLOOP)
11503 if (gimple_omp_for_combined_into_p (fd.for_stmt))
11504 expand_omp_taskloop_for_inner (region, &fd, inner_stmt);
11505 else
11506 expand_omp_taskloop_for_outer (region, &fd, inner_stmt);
11508 else if (fd.sched_kind == OMP_CLAUSE_SCHEDULE_STATIC
11509 && !fd.have_ordered)
11511 if (fd.chunk_size == NULL)
11512 expand_omp_for_static_nochunk (region, &fd, inner_stmt);
11513 else
11514 expand_omp_for_static_chunk (region, &fd, inner_stmt);
11516 else
11518 int fn_index, start_ix, next_ix;
11520 gcc_assert (gimple_omp_for_kind (fd.for_stmt)
11521 == GF_OMP_FOR_KIND_FOR);
11522 if (fd.chunk_size == NULL
11523 && fd.sched_kind == OMP_CLAUSE_SCHEDULE_STATIC)
11524 fd.chunk_size = integer_zero_node;
11525 gcc_assert (fd.sched_kind != OMP_CLAUSE_SCHEDULE_AUTO);
11526 switch (fd.sched_kind)
11528 case OMP_CLAUSE_SCHEDULE_RUNTIME:
11529 fn_index = 3;
11530 break;
11531 case OMP_CLAUSE_SCHEDULE_DYNAMIC:
11532 case OMP_CLAUSE_SCHEDULE_GUIDED:
11533 if ((fd.sched_modifiers & OMP_CLAUSE_SCHEDULE_NONMONOTONIC)
11534 && !fd.ordered
11535 && !fd.have_ordered)
11537 fn_index = 3 + fd.sched_kind;
11538 break;
11540 /* FALLTHRU */
11541 default:
11542 fn_index = fd.sched_kind;
11543 break;
11545 if (!fd.ordered)
11546 fn_index += fd.have_ordered * 6;
11547 if (fd.ordered)
11548 start_ix = ((int)BUILT_IN_GOMP_LOOP_DOACROSS_STATIC_START) + fn_index;
11549 else
11550 start_ix = ((int)BUILT_IN_GOMP_LOOP_STATIC_START) + fn_index;
11551 next_ix = ((int)BUILT_IN_GOMP_LOOP_STATIC_NEXT) + fn_index;
11552 if (fd.iter_type == long_long_unsigned_type_node)
11554 start_ix += ((int)BUILT_IN_GOMP_LOOP_ULL_STATIC_START
11555 - (int)BUILT_IN_GOMP_LOOP_STATIC_START);
11556 next_ix += ((int)BUILT_IN_GOMP_LOOP_ULL_STATIC_NEXT
11557 - (int)BUILT_IN_GOMP_LOOP_STATIC_NEXT);
11559 expand_omp_for_generic (region, &fd, (enum built_in_function) start_ix,
11560 (enum built_in_function) next_ix, inner_stmt);
11563 if (gimple_in_ssa_p (cfun))
11564 update_ssa (TODO_update_ssa_only_virtuals);
11568 /* Expand code for an OpenMP sections directive. In pseudo code, we generate
11570 v = GOMP_sections_start (n);
11572 switch (v)
11574 case 0:
11575 goto L2;
11576 case 1:
11577 section 1;
11578 goto L1;
11579 case 2:
11581 case n:
11583 default:
11584 abort ();
11587 v = GOMP_sections_next ();
11588 goto L0;
11590 reduction;
11592 If this is a combined parallel sections, replace the call to
11593 GOMP_sections_start with call to GOMP_sections_next. */
11595 static void
11596 expand_omp_sections (struct omp_region *region)
11598 tree t, u, vin = NULL, vmain, vnext, l2;
11599 unsigned len;
11600 basic_block entry_bb, l0_bb, l1_bb, l2_bb, default_bb;
11601 gimple_stmt_iterator si, switch_si;
11602 gomp_sections *sections_stmt;
11603 gimple *stmt;
11604 gomp_continue *cont;
11605 edge_iterator ei;
11606 edge e;
11607 struct omp_region *inner;
11608 unsigned i, casei;
11609 bool exit_reachable = region->cont != NULL;
11611 gcc_assert (region->exit != NULL);
11612 entry_bb = region->entry;
11613 l0_bb = single_succ (entry_bb);
11614 l1_bb = region->cont;
11615 l2_bb = region->exit;
11616 if (single_pred_p (l2_bb) && single_pred (l2_bb) == l0_bb)
11617 l2 = gimple_block_label (l2_bb);
11618 else
11620 /* This can happen if there are reductions. */
11621 len = EDGE_COUNT (l0_bb->succs);
11622 gcc_assert (len > 0);
11623 e = EDGE_SUCC (l0_bb, len - 1);
11624 si = gsi_last_bb (e->dest);
11625 l2 = NULL_TREE;
11626 if (gsi_end_p (si)
11627 || gimple_code (gsi_stmt (si)) != GIMPLE_OMP_SECTION)
11628 l2 = gimple_block_label (e->dest);
11629 else
11630 FOR_EACH_EDGE (e, ei, l0_bb->succs)
11632 si = gsi_last_bb (e->dest);
11633 if (gsi_end_p (si)
11634 || gimple_code (gsi_stmt (si)) != GIMPLE_OMP_SECTION)
11636 l2 = gimple_block_label (e->dest);
11637 break;
11641 if (exit_reachable)
11642 default_bb = create_empty_bb (l1_bb->prev_bb);
11643 else
11644 default_bb = create_empty_bb (l0_bb);
11646 /* We will build a switch() with enough cases for all the
11647 GIMPLE_OMP_SECTION regions, a '0' case to handle the end of more work
11648 and a default case to abort if something goes wrong. */
11649 len = EDGE_COUNT (l0_bb->succs);
11651 /* Use vec::quick_push on label_vec throughout, since we know the size
11652 in advance. */
11653 auto_vec<tree> label_vec (len);
11655 /* The call to GOMP_sections_start goes in ENTRY_BB, replacing the
11656 GIMPLE_OMP_SECTIONS statement. */
11657 si = gsi_last_bb (entry_bb);
11658 sections_stmt = as_a <gomp_sections *> (gsi_stmt (si));
11659 gcc_assert (gimple_code (sections_stmt) == GIMPLE_OMP_SECTIONS);
11660 vin = gimple_omp_sections_control (sections_stmt);
11661 if (!is_combined_parallel (region))
11663 /* If we are not inside a combined parallel+sections region,
11664 call GOMP_sections_start. */
11665 t = build_int_cst (unsigned_type_node, len - 1);
11666 u = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_START);
11667 stmt = gimple_build_call (u, 1, t);
11669 else
11671 /* Otherwise, call GOMP_sections_next. */
11672 u = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_NEXT);
11673 stmt = gimple_build_call (u, 0);
11675 gimple_call_set_lhs (stmt, vin);
11676 gsi_insert_after (&si, stmt, GSI_SAME_STMT);
11677 gsi_remove (&si, true);
11679 /* The switch() statement replacing GIMPLE_OMP_SECTIONS_SWITCH goes in
11680 L0_BB. */
11681 switch_si = gsi_last_bb (l0_bb);
11682 gcc_assert (gimple_code (gsi_stmt (switch_si)) == GIMPLE_OMP_SECTIONS_SWITCH);
11683 if (exit_reachable)
11685 cont = as_a <gomp_continue *> (last_stmt (l1_bb));
11686 gcc_assert (gimple_code (cont) == GIMPLE_OMP_CONTINUE);
11687 vmain = gimple_omp_continue_control_use (cont);
11688 vnext = gimple_omp_continue_control_def (cont);
11690 else
11692 vmain = vin;
11693 vnext = NULL_TREE;
11696 t = build_case_label (build_int_cst (unsigned_type_node, 0), NULL, l2);
11697 label_vec.quick_push (t);
11698 i = 1;
11700 /* Convert each GIMPLE_OMP_SECTION into a CASE_LABEL_EXPR. */
11701 for (inner = region->inner, casei = 1;
11702 inner;
11703 inner = inner->next, i++, casei++)
11705 basic_block s_entry_bb, s_exit_bb;
11707 /* Skip optional reduction region. */
11708 if (inner->type == GIMPLE_OMP_ATOMIC_LOAD)
11710 --i;
11711 --casei;
11712 continue;
11715 s_entry_bb = inner->entry;
11716 s_exit_bb = inner->exit;
11718 t = gimple_block_label (s_entry_bb);
11719 u = build_int_cst (unsigned_type_node, casei);
11720 u = build_case_label (u, NULL, t);
11721 label_vec.quick_push (u);
11723 si = gsi_last_bb (s_entry_bb);
11724 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_SECTION);
11725 gcc_assert (i < len || gimple_omp_section_last_p (gsi_stmt (si)));
11726 gsi_remove (&si, true);
11727 single_succ_edge (s_entry_bb)->flags = EDGE_FALLTHRU;
11729 if (s_exit_bb == NULL)
11730 continue;
11732 si = gsi_last_bb (s_exit_bb);
11733 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_RETURN);
11734 gsi_remove (&si, true);
11736 single_succ_edge (s_exit_bb)->flags = EDGE_FALLTHRU;
11739 /* Error handling code goes in DEFAULT_BB. */
11740 t = gimple_block_label (default_bb);
11741 u = build_case_label (NULL, NULL, t);
11742 make_edge (l0_bb, default_bb, 0);
11743 add_bb_to_loop (default_bb, current_loops->tree_root);
11745 stmt = gimple_build_switch (vmain, u, label_vec);
11746 gsi_insert_after (&switch_si, stmt, GSI_SAME_STMT);
11747 gsi_remove (&switch_si, true);
11749 si = gsi_start_bb (default_bb);
11750 stmt = gimple_build_call (builtin_decl_explicit (BUILT_IN_TRAP), 0);
11751 gsi_insert_after (&si, stmt, GSI_CONTINUE_LINKING);
11753 if (exit_reachable)
11755 tree bfn_decl;
11757 /* Code to get the next section goes in L1_BB. */
11758 si = gsi_last_bb (l1_bb);
11759 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_CONTINUE);
11761 bfn_decl = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_NEXT);
11762 stmt = gimple_build_call (bfn_decl, 0);
11763 gimple_call_set_lhs (stmt, vnext);
11764 gsi_insert_after (&si, stmt, GSI_SAME_STMT);
11765 gsi_remove (&si, true);
11767 single_succ_edge (l1_bb)->flags = EDGE_FALLTHRU;
11770 /* Cleanup function replaces GIMPLE_OMP_RETURN in EXIT_BB. */
11771 si = gsi_last_bb (l2_bb);
11772 if (gimple_omp_return_nowait_p (gsi_stmt (si)))
11773 t = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_END_NOWAIT);
11774 else if (gimple_omp_return_lhs (gsi_stmt (si)))
11775 t = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_END_CANCEL);
11776 else
11777 t = builtin_decl_explicit (BUILT_IN_GOMP_SECTIONS_END);
11778 stmt = gimple_build_call (t, 0);
11779 if (gimple_omp_return_lhs (gsi_stmt (si)))
11780 gimple_call_set_lhs (stmt, gimple_omp_return_lhs (gsi_stmt (si)));
11781 gsi_insert_after (&si, stmt, GSI_SAME_STMT);
11782 gsi_remove (&si, true);
11784 set_immediate_dominator (CDI_DOMINATORS, default_bb, l0_bb);
11788 /* Expand code for an OpenMP single directive. We've already expanded
11789 much of the code, here we simply place the GOMP_barrier call. */
11791 static void
11792 expand_omp_single (struct omp_region *region)
11794 basic_block entry_bb, exit_bb;
11795 gimple_stmt_iterator si;
11797 entry_bb = region->entry;
11798 exit_bb = region->exit;
11800 si = gsi_last_bb (entry_bb);
11801 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_SINGLE);
11802 gsi_remove (&si, true);
11803 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
11805 si = gsi_last_bb (exit_bb);
11806 if (!gimple_omp_return_nowait_p (gsi_stmt (si)))
11808 tree t = gimple_omp_return_lhs (gsi_stmt (si));
11809 gsi_insert_after (&si, build_omp_barrier (t), GSI_SAME_STMT);
11811 gsi_remove (&si, true);
11812 single_succ_edge (exit_bb)->flags = EDGE_FALLTHRU;
11816 /* Generic expansion for OpenMP synchronization directives: master,
11817 ordered and critical. All we need to do here is remove the entry
11818 and exit markers for REGION. */
11820 static void
11821 expand_omp_synch (struct omp_region *region)
11823 basic_block entry_bb, exit_bb;
11824 gimple_stmt_iterator si;
11826 entry_bb = region->entry;
11827 exit_bb = region->exit;
11829 si = gsi_last_bb (entry_bb);
11830 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_SINGLE
11831 || gimple_code (gsi_stmt (si)) == GIMPLE_OMP_MASTER
11832 || gimple_code (gsi_stmt (si)) == GIMPLE_OMP_TASKGROUP
11833 || gimple_code (gsi_stmt (si)) == GIMPLE_OMP_ORDERED
11834 || gimple_code (gsi_stmt (si)) == GIMPLE_OMP_CRITICAL
11835 || gimple_code (gsi_stmt (si)) == GIMPLE_OMP_TEAMS);
11836 gsi_remove (&si, true);
11837 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
11839 if (exit_bb)
11841 si = gsi_last_bb (exit_bb);
11842 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_RETURN);
11843 gsi_remove (&si, true);
11844 single_succ_edge (exit_bb)->flags = EDGE_FALLTHRU;
11848 /* A subroutine of expand_omp_atomic. Attempt to implement the atomic
11849 operation as a normal volatile load. */
11851 static bool
11852 expand_omp_atomic_load (basic_block load_bb, tree addr,
11853 tree loaded_val, int index)
11855 enum built_in_function tmpbase;
11856 gimple_stmt_iterator gsi;
11857 basic_block store_bb;
11858 location_t loc;
11859 gimple *stmt;
11860 tree decl, call, type, itype;
11862 gsi = gsi_last_bb (load_bb);
11863 stmt = gsi_stmt (gsi);
11864 gcc_assert (gimple_code (stmt) == GIMPLE_OMP_ATOMIC_LOAD);
11865 loc = gimple_location (stmt);
11867 /* ??? If the target does not implement atomic_load_optab[mode], and mode
11868 is smaller than word size, then expand_atomic_load assumes that the load
11869 is atomic. We could avoid the builtin entirely in this case. */
11871 tmpbase = (enum built_in_function) (BUILT_IN_ATOMIC_LOAD_N + index + 1);
11872 decl = builtin_decl_explicit (tmpbase);
11873 if (decl == NULL_TREE)
11874 return false;
11876 type = TREE_TYPE (loaded_val);
11877 itype = TREE_TYPE (TREE_TYPE (decl));
11879 call = build_call_expr_loc (loc, decl, 2, addr,
11880 build_int_cst (NULL,
11881 gimple_omp_atomic_seq_cst_p (stmt)
11882 ? MEMMODEL_SEQ_CST
11883 : MEMMODEL_RELAXED));
11884 if (!useless_type_conversion_p (type, itype))
11885 call = fold_build1_loc (loc, VIEW_CONVERT_EXPR, type, call);
11886 call = build2_loc (loc, MODIFY_EXPR, void_type_node, loaded_val, call);
11888 force_gimple_operand_gsi (&gsi, call, true, NULL_TREE, true, GSI_SAME_STMT);
11889 gsi_remove (&gsi, true);
11891 store_bb = single_succ (load_bb);
11892 gsi = gsi_last_bb (store_bb);
11893 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_ATOMIC_STORE);
11894 gsi_remove (&gsi, true);
11896 if (gimple_in_ssa_p (cfun))
11897 update_ssa (TODO_update_ssa_no_phi);
11899 return true;
11902 /* A subroutine of expand_omp_atomic. Attempt to implement the atomic
11903 operation as a normal volatile store. */
11905 static bool
11906 expand_omp_atomic_store (basic_block load_bb, tree addr,
11907 tree loaded_val, tree stored_val, int index)
11909 enum built_in_function tmpbase;
11910 gimple_stmt_iterator gsi;
11911 basic_block store_bb = single_succ (load_bb);
11912 location_t loc;
11913 gimple *stmt;
11914 tree decl, call, type, itype;
11915 machine_mode imode;
11916 bool exchange;
11918 gsi = gsi_last_bb (load_bb);
11919 stmt = gsi_stmt (gsi);
11920 gcc_assert (gimple_code (stmt) == GIMPLE_OMP_ATOMIC_LOAD);
11922 /* If the load value is needed, then this isn't a store but an exchange. */
11923 exchange = gimple_omp_atomic_need_value_p (stmt);
11925 gsi = gsi_last_bb (store_bb);
11926 stmt = gsi_stmt (gsi);
11927 gcc_assert (gimple_code (stmt) == GIMPLE_OMP_ATOMIC_STORE);
11928 loc = gimple_location (stmt);
11930 /* ??? If the target does not implement atomic_store_optab[mode], and mode
11931 is smaller than word size, then expand_atomic_store assumes that the store
11932 is atomic. We could avoid the builtin entirely in this case. */
11934 tmpbase = (exchange ? BUILT_IN_ATOMIC_EXCHANGE_N : BUILT_IN_ATOMIC_STORE_N);
11935 tmpbase = (enum built_in_function) ((int) tmpbase + index + 1);
11936 decl = builtin_decl_explicit (tmpbase);
11937 if (decl == NULL_TREE)
11938 return false;
11940 type = TREE_TYPE (stored_val);
11942 /* Dig out the type of the function's second argument. */
11943 itype = TREE_TYPE (decl);
11944 itype = TYPE_ARG_TYPES (itype);
11945 itype = TREE_CHAIN (itype);
11946 itype = TREE_VALUE (itype);
11947 imode = TYPE_MODE (itype);
11949 if (exchange && !can_atomic_exchange_p (imode, true))
11950 return false;
11952 if (!useless_type_conversion_p (itype, type))
11953 stored_val = fold_build1_loc (loc, VIEW_CONVERT_EXPR, itype, stored_val);
11954 call = build_call_expr_loc (loc, decl, 3, addr, stored_val,
11955 build_int_cst (NULL,
11956 gimple_omp_atomic_seq_cst_p (stmt)
11957 ? MEMMODEL_SEQ_CST
11958 : MEMMODEL_RELAXED));
11959 if (exchange)
11961 if (!useless_type_conversion_p (type, itype))
11962 call = build1_loc (loc, VIEW_CONVERT_EXPR, type, call);
11963 call = build2_loc (loc, MODIFY_EXPR, void_type_node, loaded_val, call);
11966 force_gimple_operand_gsi (&gsi, call, true, NULL_TREE, true, GSI_SAME_STMT);
11967 gsi_remove (&gsi, true);
11969 /* Remove the GIMPLE_OMP_ATOMIC_LOAD that we verified above. */
11970 gsi = gsi_last_bb (load_bb);
11971 gsi_remove (&gsi, true);
11973 if (gimple_in_ssa_p (cfun))
11974 update_ssa (TODO_update_ssa_no_phi);
11976 return true;
11979 /* A subroutine of expand_omp_atomic. Attempt to implement the atomic
11980 operation as a __atomic_fetch_op builtin. INDEX is log2 of the
11981 size of the data type, and thus usable to find the index of the builtin
11982 decl. Returns false if the expression is not of the proper form. */
11984 static bool
11985 expand_omp_atomic_fetch_op (basic_block load_bb,
11986 tree addr, tree loaded_val,
11987 tree stored_val, int index)
11989 enum built_in_function oldbase, newbase, tmpbase;
11990 tree decl, itype, call;
11991 tree lhs, rhs;
11992 basic_block store_bb = single_succ (load_bb);
11993 gimple_stmt_iterator gsi;
11994 gimple *stmt;
11995 location_t loc;
11996 enum tree_code code;
11997 bool need_old, need_new;
11998 machine_mode imode;
11999 bool seq_cst;
12001 /* We expect to find the following sequences:
12003 load_bb:
12004 GIMPLE_OMP_ATOMIC_LOAD (tmp, mem)
12006 store_bb:
12007 val = tmp OP something; (or: something OP tmp)
12008 GIMPLE_OMP_STORE (val)
12010 ???FIXME: Allow a more flexible sequence.
12011 Perhaps use data flow to pick the statements.
12015 gsi = gsi_after_labels (store_bb);
12016 stmt = gsi_stmt (gsi);
12017 loc = gimple_location (stmt);
12018 if (!is_gimple_assign (stmt))
12019 return false;
12020 gsi_next (&gsi);
12021 if (gimple_code (gsi_stmt (gsi)) != GIMPLE_OMP_ATOMIC_STORE)
12022 return false;
12023 need_new = gimple_omp_atomic_need_value_p (gsi_stmt (gsi));
12024 need_old = gimple_omp_atomic_need_value_p (last_stmt (load_bb));
12025 seq_cst = gimple_omp_atomic_seq_cst_p (last_stmt (load_bb));
12026 gcc_checking_assert (!need_old || !need_new);
12028 if (!operand_equal_p (gimple_assign_lhs (stmt), stored_val, 0))
12029 return false;
12031 /* Check for one of the supported fetch-op operations. */
12032 code = gimple_assign_rhs_code (stmt);
12033 switch (code)
12035 case PLUS_EXPR:
12036 case POINTER_PLUS_EXPR:
12037 oldbase = BUILT_IN_ATOMIC_FETCH_ADD_N;
12038 newbase = BUILT_IN_ATOMIC_ADD_FETCH_N;
12039 break;
12040 case MINUS_EXPR:
12041 oldbase = BUILT_IN_ATOMIC_FETCH_SUB_N;
12042 newbase = BUILT_IN_ATOMIC_SUB_FETCH_N;
12043 break;
12044 case BIT_AND_EXPR:
12045 oldbase = BUILT_IN_ATOMIC_FETCH_AND_N;
12046 newbase = BUILT_IN_ATOMIC_AND_FETCH_N;
12047 break;
12048 case BIT_IOR_EXPR:
12049 oldbase = BUILT_IN_ATOMIC_FETCH_OR_N;
12050 newbase = BUILT_IN_ATOMIC_OR_FETCH_N;
12051 break;
12052 case BIT_XOR_EXPR:
12053 oldbase = BUILT_IN_ATOMIC_FETCH_XOR_N;
12054 newbase = BUILT_IN_ATOMIC_XOR_FETCH_N;
12055 break;
12056 default:
12057 return false;
12060 /* Make sure the expression is of the proper form. */
12061 if (operand_equal_p (gimple_assign_rhs1 (stmt), loaded_val, 0))
12062 rhs = gimple_assign_rhs2 (stmt);
12063 else if (commutative_tree_code (gimple_assign_rhs_code (stmt))
12064 && operand_equal_p (gimple_assign_rhs2 (stmt), loaded_val, 0))
12065 rhs = gimple_assign_rhs1 (stmt);
12066 else
12067 return false;
12069 tmpbase = ((enum built_in_function)
12070 ((need_new ? newbase : oldbase) + index + 1));
12071 decl = builtin_decl_explicit (tmpbase);
12072 if (decl == NULL_TREE)
12073 return false;
12074 itype = TREE_TYPE (TREE_TYPE (decl));
12075 imode = TYPE_MODE (itype);
12077 /* We could test all of the various optabs involved, but the fact of the
12078 matter is that (with the exception of i486 vs i586 and xadd) all targets
12079 that support any atomic operaton optab also implements compare-and-swap.
12080 Let optabs.c take care of expanding any compare-and-swap loop. */
12081 if (!can_compare_and_swap_p (imode, true))
12082 return false;
12084 gsi = gsi_last_bb (load_bb);
12085 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_ATOMIC_LOAD);
12087 /* OpenMP does not imply any barrier-like semantics on its atomic ops.
12088 It only requires that the operation happen atomically. Thus we can
12089 use the RELAXED memory model. */
12090 call = build_call_expr_loc (loc, decl, 3, addr,
12091 fold_convert_loc (loc, itype, rhs),
12092 build_int_cst (NULL,
12093 seq_cst ? MEMMODEL_SEQ_CST
12094 : MEMMODEL_RELAXED));
12096 if (need_old || need_new)
12098 lhs = need_old ? loaded_val : stored_val;
12099 call = fold_convert_loc (loc, TREE_TYPE (lhs), call);
12100 call = build2_loc (loc, MODIFY_EXPR, void_type_node, lhs, call);
12102 else
12103 call = fold_convert_loc (loc, void_type_node, call);
12104 force_gimple_operand_gsi (&gsi, call, true, NULL_TREE, true, GSI_SAME_STMT);
12105 gsi_remove (&gsi, true);
12107 gsi = gsi_last_bb (store_bb);
12108 gcc_assert (gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_ATOMIC_STORE);
12109 gsi_remove (&gsi, true);
12110 gsi = gsi_last_bb (store_bb);
12111 stmt = gsi_stmt (gsi);
12112 gsi_remove (&gsi, true);
12114 if (gimple_in_ssa_p (cfun))
12116 release_defs (stmt);
12117 update_ssa (TODO_update_ssa_no_phi);
12120 return true;
12123 /* A subroutine of expand_omp_atomic. Implement the atomic operation as:
12125 oldval = *addr;
12126 repeat:
12127 newval = rhs; // with oldval replacing *addr in rhs
12128 oldval = __sync_val_compare_and_swap (addr, oldval, newval);
12129 if (oldval != newval)
12130 goto repeat;
12132 INDEX is log2 of the size of the data type, and thus usable to find the
12133 index of the builtin decl. */
12135 static bool
12136 expand_omp_atomic_pipeline (basic_block load_bb, basic_block store_bb,
12137 tree addr, tree loaded_val, tree stored_val,
12138 int index)
12140 tree loadedi, storedi, initial, new_storedi, old_vali;
12141 tree type, itype, cmpxchg, iaddr;
12142 gimple_stmt_iterator si;
12143 basic_block loop_header = single_succ (load_bb);
12144 gimple *phi, *stmt;
12145 edge e;
12146 enum built_in_function fncode;
12148 /* ??? We need a non-pointer interface to __atomic_compare_exchange in
12149 order to use the RELAXED memory model effectively. */
12150 fncode = (enum built_in_function)((int)BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
12151 + index + 1);
12152 cmpxchg = builtin_decl_explicit (fncode);
12153 if (cmpxchg == NULL_TREE)
12154 return false;
12155 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
12156 itype = TREE_TYPE (TREE_TYPE (cmpxchg));
12158 if (!can_compare_and_swap_p (TYPE_MODE (itype), true))
12159 return false;
12161 /* Load the initial value, replacing the GIMPLE_OMP_ATOMIC_LOAD. */
12162 si = gsi_last_bb (load_bb);
12163 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_ATOMIC_LOAD);
12165 /* For floating-point values, we'll need to view-convert them to integers
12166 so that we can perform the atomic compare and swap. Simplify the
12167 following code by always setting up the "i"ntegral variables. */
12168 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
12170 tree iaddr_val;
12172 iaddr = create_tmp_reg (build_pointer_type_for_mode (itype, ptr_mode,
12173 true));
12174 iaddr_val
12175 = force_gimple_operand_gsi (&si,
12176 fold_convert (TREE_TYPE (iaddr), addr),
12177 false, NULL_TREE, true, GSI_SAME_STMT);
12178 stmt = gimple_build_assign (iaddr, iaddr_val);
12179 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12180 loadedi = create_tmp_var (itype);
12181 if (gimple_in_ssa_p (cfun))
12182 loadedi = make_ssa_name (loadedi);
12184 else
12186 iaddr = addr;
12187 loadedi = loaded_val;
12190 fncode = (enum built_in_function) (BUILT_IN_ATOMIC_LOAD_N + index + 1);
12191 tree loaddecl = builtin_decl_explicit (fncode);
12192 if (loaddecl)
12193 initial
12194 = fold_convert (TREE_TYPE (TREE_TYPE (iaddr)),
12195 build_call_expr (loaddecl, 2, iaddr,
12196 build_int_cst (NULL_TREE,
12197 MEMMODEL_RELAXED)));
12198 else
12199 initial = build2 (MEM_REF, TREE_TYPE (TREE_TYPE (iaddr)), iaddr,
12200 build_int_cst (TREE_TYPE (iaddr), 0));
12202 initial
12203 = force_gimple_operand_gsi (&si, initial, true, NULL_TREE, true,
12204 GSI_SAME_STMT);
12206 /* Move the value to the LOADEDI temporary. */
12207 if (gimple_in_ssa_p (cfun))
12209 gcc_assert (gimple_seq_empty_p (phi_nodes (loop_header)));
12210 phi = create_phi_node (loadedi, loop_header);
12211 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, single_succ_edge (load_bb)),
12212 initial);
12214 else
12215 gsi_insert_before (&si,
12216 gimple_build_assign (loadedi, initial),
12217 GSI_SAME_STMT);
12218 if (loadedi != loaded_val)
12220 gimple_stmt_iterator gsi2;
12221 tree x;
12223 x = build1 (VIEW_CONVERT_EXPR, type, loadedi);
12224 gsi2 = gsi_start_bb (loop_header);
12225 if (gimple_in_ssa_p (cfun))
12227 gassign *stmt;
12228 x = force_gimple_operand_gsi (&gsi2, x, true, NULL_TREE,
12229 true, GSI_SAME_STMT);
12230 stmt = gimple_build_assign (loaded_val, x);
12231 gsi_insert_before (&gsi2, stmt, GSI_SAME_STMT);
12233 else
12235 x = build2 (MODIFY_EXPR, TREE_TYPE (loaded_val), loaded_val, x);
12236 force_gimple_operand_gsi (&gsi2, x, true, NULL_TREE,
12237 true, GSI_SAME_STMT);
12240 gsi_remove (&si, true);
12242 si = gsi_last_bb (store_bb);
12243 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_ATOMIC_STORE);
12245 if (iaddr == addr)
12246 storedi = stored_val;
12247 else
12248 storedi =
12249 force_gimple_operand_gsi (&si,
12250 build1 (VIEW_CONVERT_EXPR, itype,
12251 stored_val), true, NULL_TREE, true,
12252 GSI_SAME_STMT);
12254 /* Build the compare&swap statement. */
12255 new_storedi = build_call_expr (cmpxchg, 3, iaddr, loadedi, storedi);
12256 new_storedi = force_gimple_operand_gsi (&si,
12257 fold_convert (TREE_TYPE (loadedi),
12258 new_storedi),
12259 true, NULL_TREE,
12260 true, GSI_SAME_STMT);
12262 if (gimple_in_ssa_p (cfun))
12263 old_vali = loadedi;
12264 else
12266 old_vali = create_tmp_var (TREE_TYPE (loadedi));
12267 stmt = gimple_build_assign (old_vali, loadedi);
12268 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12270 stmt = gimple_build_assign (loadedi, new_storedi);
12271 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12274 /* Note that we always perform the comparison as an integer, even for
12275 floating point. This allows the atomic operation to properly
12276 succeed even with NaNs and -0.0. */
12277 stmt = gimple_build_cond_empty
12278 (build2 (NE_EXPR, boolean_type_node,
12279 new_storedi, old_vali));
12280 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12282 /* Update cfg. */
12283 e = single_succ_edge (store_bb);
12284 e->flags &= ~EDGE_FALLTHRU;
12285 e->flags |= EDGE_FALSE_VALUE;
12287 e = make_edge (store_bb, loop_header, EDGE_TRUE_VALUE);
12289 /* Copy the new value to loadedi (we already did that before the condition
12290 if we are not in SSA). */
12291 if (gimple_in_ssa_p (cfun))
12293 phi = gimple_seq_first_stmt (phi_nodes (loop_header));
12294 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e), new_storedi);
12297 /* Remove GIMPLE_OMP_ATOMIC_STORE. */
12298 gsi_remove (&si, true);
12300 struct loop *loop = alloc_loop ();
12301 loop->header = loop_header;
12302 loop->latch = store_bb;
12303 add_loop (loop, loop_header->loop_father);
12305 if (gimple_in_ssa_p (cfun))
12306 update_ssa (TODO_update_ssa_no_phi);
12308 return true;
12311 /* A subroutine of expand_omp_atomic. Implement the atomic operation as:
12313 GOMP_atomic_start ();
12314 *addr = rhs;
12315 GOMP_atomic_end ();
12317 The result is not globally atomic, but works so long as all parallel
12318 references are within #pragma omp atomic directives. According to
12319 responses received from omp@openmp.org, appears to be within spec.
12320 Which makes sense, since that's how several other compilers handle
12321 this situation as well.
12322 LOADED_VAL and ADDR are the operands of GIMPLE_OMP_ATOMIC_LOAD we're
12323 expanding. STORED_VAL is the operand of the matching
12324 GIMPLE_OMP_ATOMIC_STORE.
12326 We replace
12327 GIMPLE_OMP_ATOMIC_LOAD (loaded_val, addr) with
12328 loaded_val = *addr;
12330 and replace
12331 GIMPLE_OMP_ATOMIC_STORE (stored_val) with
12332 *addr = stored_val;
12335 static bool
12336 expand_omp_atomic_mutex (basic_block load_bb, basic_block store_bb,
12337 tree addr, tree loaded_val, tree stored_val)
12339 gimple_stmt_iterator si;
12340 gassign *stmt;
12341 tree t;
12343 si = gsi_last_bb (load_bb);
12344 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_ATOMIC_LOAD);
12346 t = builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_START);
12347 t = build_call_expr (t, 0);
12348 force_gimple_operand_gsi (&si, t, true, NULL_TREE, true, GSI_SAME_STMT);
12350 stmt = gimple_build_assign (loaded_val, build_simple_mem_ref (addr));
12351 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12352 gsi_remove (&si, true);
12354 si = gsi_last_bb (store_bb);
12355 gcc_assert (gimple_code (gsi_stmt (si)) == GIMPLE_OMP_ATOMIC_STORE);
12357 stmt = gimple_build_assign (build_simple_mem_ref (unshare_expr (addr)),
12358 stored_val);
12359 gsi_insert_before (&si, stmt, GSI_SAME_STMT);
12361 t = builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_END);
12362 t = build_call_expr (t, 0);
12363 force_gimple_operand_gsi (&si, t, true, NULL_TREE, true, GSI_SAME_STMT);
12364 gsi_remove (&si, true);
12366 if (gimple_in_ssa_p (cfun))
12367 update_ssa (TODO_update_ssa_no_phi);
12368 return true;
12371 /* Expand an GIMPLE_OMP_ATOMIC statement. We try to expand
12372 using expand_omp_atomic_fetch_op. If it failed, we try to
12373 call expand_omp_atomic_pipeline, and if it fails too, the
12374 ultimate fallback is wrapping the operation in a mutex
12375 (expand_omp_atomic_mutex). REGION is the atomic region built
12376 by build_omp_regions_1(). */
12378 static void
12379 expand_omp_atomic (struct omp_region *region)
12381 basic_block load_bb = region->entry, store_bb = region->exit;
12382 gomp_atomic_load *load = as_a <gomp_atomic_load *> (last_stmt (load_bb));
12383 gomp_atomic_store *store = as_a <gomp_atomic_store *> (last_stmt (store_bb));
12384 tree loaded_val = gimple_omp_atomic_load_lhs (load);
12385 tree addr = gimple_omp_atomic_load_rhs (load);
12386 tree stored_val = gimple_omp_atomic_store_val (store);
12387 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
12388 HOST_WIDE_INT index;
12390 /* Make sure the type is one of the supported sizes. */
12391 index = tree_to_uhwi (TYPE_SIZE_UNIT (type));
12392 index = exact_log2 (index);
12393 if (index >= 0 && index <= 4)
12395 unsigned int align = TYPE_ALIGN_UNIT (type);
12397 /* __sync builtins require strict data alignment. */
12398 if (exact_log2 (align) >= index)
12400 /* Atomic load. */
12401 if (loaded_val == stored_val
12402 && (GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT
12403 || GET_MODE_CLASS (TYPE_MODE (type)) == MODE_FLOAT)
12404 && GET_MODE_BITSIZE (TYPE_MODE (type)) <= BITS_PER_WORD
12405 && expand_omp_atomic_load (load_bb, addr, loaded_val, index))
12406 return;
12408 /* Atomic store. */
12409 if ((GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT
12410 || GET_MODE_CLASS (TYPE_MODE (type)) == MODE_FLOAT)
12411 && GET_MODE_BITSIZE (TYPE_MODE (type)) <= BITS_PER_WORD
12412 && store_bb == single_succ (load_bb)
12413 && first_stmt (store_bb) == store
12414 && expand_omp_atomic_store (load_bb, addr, loaded_val,
12415 stored_val, index))
12416 return;
12418 /* When possible, use specialized atomic update functions. */
12419 if ((INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
12420 && store_bb == single_succ (load_bb)
12421 && expand_omp_atomic_fetch_op (load_bb, addr,
12422 loaded_val, stored_val, index))
12423 return;
12425 /* If we don't have specialized __sync builtins, try and implement
12426 as a compare and swap loop. */
12427 if (expand_omp_atomic_pipeline (load_bb, store_bb, addr,
12428 loaded_val, stored_val, index))
12429 return;
12433 /* The ultimate fallback is wrapping the operation in a mutex. */
12434 expand_omp_atomic_mutex (load_bb, store_bb, addr, loaded_val, stored_val);
12438 /* Encode an oacc launch argument. This matches the GOMP_LAUNCH_PACK
12439 macro on gomp-constants.h. We do not check for overflow. */
12441 static tree
12442 oacc_launch_pack (unsigned code, tree device, unsigned op)
12444 tree res;
12446 res = build_int_cst (unsigned_type_node, GOMP_LAUNCH_PACK (code, 0, op));
12447 if (device)
12449 device = fold_build2 (LSHIFT_EXPR, unsigned_type_node,
12450 device, build_int_cst (unsigned_type_node,
12451 GOMP_LAUNCH_DEVICE_SHIFT));
12452 res = fold_build2 (BIT_IOR_EXPR, unsigned_type_node, res, device);
12454 return res;
12457 /* Look for compute grid dimension clauses and convert to an attribute
12458 attached to FN. This permits the target-side code to (a) massage
12459 the dimensions, (b) emit that data and (c) optimize. Non-constant
12460 dimensions are pushed onto ARGS.
12462 The attribute value is a TREE_LIST. A set of dimensions is
12463 represented as a list of INTEGER_CST. Those that are runtime
12464 exprs are represented as an INTEGER_CST of zero.
12466 TOOO. Normally the attribute will just contain a single such list. If
12467 however it contains a list of lists, this will represent the use of
12468 device_type. Each member of the outer list is an assoc list of
12469 dimensions, keyed by the device type. The first entry will be the
12470 default. Well, that's the plan. */
12472 #define OACC_FN_ATTRIB "oacc function"
12474 /* Replace any existing oacc fn attribute with updated dimensions. */
12476 void
12477 replace_oacc_fn_attrib (tree fn, tree dims)
12479 tree ident = get_identifier (OACC_FN_ATTRIB);
12480 tree attribs = DECL_ATTRIBUTES (fn);
12482 /* If we happen to be present as the first attrib, drop it. */
12483 if (attribs && TREE_PURPOSE (attribs) == ident)
12484 attribs = TREE_CHAIN (attribs);
12485 DECL_ATTRIBUTES (fn) = tree_cons (ident, dims, attribs);
12488 /* Scan CLAUSES for launch dimensions and attach them to the oacc
12489 function attribute. Push any that are non-constant onto the ARGS
12490 list, along with an appropriate GOMP_LAUNCH_DIM tag. IS_KERNEL is
12491 true, if these are for a kernels region offload function. */
12493 void
12494 set_oacc_fn_attrib (tree fn, tree clauses, bool is_kernel, vec<tree> *args)
12496 /* Must match GOMP_DIM ordering. */
12497 static const omp_clause_code ids[]
12498 = { OMP_CLAUSE_NUM_GANGS, OMP_CLAUSE_NUM_WORKERS,
12499 OMP_CLAUSE_VECTOR_LENGTH };
12500 unsigned ix;
12501 tree dims[GOMP_DIM_MAX];
12502 tree attr = NULL_TREE;
12503 unsigned non_const = 0;
12505 for (ix = GOMP_DIM_MAX; ix--;)
12507 tree clause = find_omp_clause (clauses, ids[ix]);
12508 tree dim = NULL_TREE;
12510 if (clause)
12511 dim = OMP_CLAUSE_EXPR (clause, ids[ix]);
12512 dims[ix] = dim;
12513 if (dim && TREE_CODE (dim) != INTEGER_CST)
12515 dim = integer_zero_node;
12516 non_const |= GOMP_DIM_MASK (ix);
12518 attr = tree_cons (NULL_TREE, dim, attr);
12519 /* Note kernelness with TREE_PUBLIC. */
12520 if (is_kernel)
12521 TREE_PUBLIC (attr) = 1;
12524 replace_oacc_fn_attrib (fn, attr);
12526 if (non_const)
12528 /* Push a dynamic argument set. */
12529 args->safe_push (oacc_launch_pack (GOMP_LAUNCH_DIM,
12530 NULL_TREE, non_const));
12531 for (unsigned ix = 0; ix != GOMP_DIM_MAX; ix++)
12532 if (non_const & GOMP_DIM_MASK (ix))
12533 args->safe_push (dims[ix]);
12537 /* Process the routine's dimension clauess to generate an attribute
12538 value. Issue diagnostics as appropriate. We default to SEQ
12539 (OpenACC 2.5 clarifies this). All dimensions have a size of zero
12540 (dynamic). TREE_PURPOSE is set to indicate whether that dimension
12541 can have a loop partitioned on it. non-zero indicates
12542 yes, zero indicates no. By construction once a non-zero has been
12543 reached, further inner dimensions must also be non-zero. We set
12544 TREE_VALUE to zero for the dimensions that may be partitioned and
12545 1 for the other ones -- if a loop is (erroneously) spawned at
12546 an outer level, we don't want to try and partition it. */
12548 tree
12549 build_oacc_routine_dims (tree clauses)
12551 /* Must match GOMP_DIM ordering. */
12552 static const omp_clause_code ids[] =
12553 {OMP_CLAUSE_GANG, OMP_CLAUSE_WORKER, OMP_CLAUSE_VECTOR, OMP_CLAUSE_SEQ};
12554 int ix;
12555 int level = -1;
12557 for (; clauses; clauses = OMP_CLAUSE_CHAIN (clauses))
12558 for (ix = GOMP_DIM_MAX + 1; ix--;)
12559 if (OMP_CLAUSE_CODE (clauses) == ids[ix])
12561 if (level >= 0)
12562 error_at (OMP_CLAUSE_LOCATION (clauses),
12563 "multiple loop axes specified for routine");
12564 level = ix;
12565 break;
12568 /* Default to SEQ. */
12569 if (level < 0)
12570 level = GOMP_DIM_MAX;
12572 tree dims = NULL_TREE;
12574 for (ix = GOMP_DIM_MAX; ix--;)
12575 dims = tree_cons (build_int_cst (boolean_type_node, ix >= level),
12576 build_int_cst (integer_type_node, ix < level), dims);
12578 return dims;
12581 /* Retrieve the oacc function attrib and return it. Non-oacc
12582 functions will return NULL. */
12584 tree
12585 get_oacc_fn_attrib (tree fn)
12587 return lookup_attribute (OACC_FN_ATTRIB, DECL_ATTRIBUTES (fn));
12590 /* Return true if this oacc fn attrib is for a kernels offload
12591 region. We use the TREE_PUBLIC flag of each dimension -- only
12592 need to check the first one. */
12594 bool
12595 oacc_fn_attrib_kernels_p (tree attr)
12597 return TREE_PUBLIC (TREE_VALUE (attr));
12600 /* Return level at which oacc routine may spawn a partitioned loop, or
12601 -1 if it is not a routine (i.e. is an offload fn). */
12603 static int
12604 oacc_fn_attrib_level (tree attr)
12606 tree pos = TREE_VALUE (attr);
12608 if (!TREE_PURPOSE (pos))
12609 return -1;
12611 int ix = 0;
12612 for (ix = 0; ix != GOMP_DIM_MAX;
12613 ix++, pos = TREE_CHAIN (pos))
12614 if (!integer_zerop (TREE_PURPOSE (pos)))
12615 break;
12617 return ix;
12620 /* Extract an oacc execution dimension from FN. FN must be an
12621 offloaded function or routine that has already had its execution
12622 dimensions lowered to the target-specific values. */
12625 get_oacc_fn_dim_size (tree fn, int axis)
12627 tree attrs = get_oacc_fn_attrib (fn);
12629 gcc_assert (axis < GOMP_DIM_MAX);
12631 tree dims = TREE_VALUE (attrs);
12632 while (axis--)
12633 dims = TREE_CHAIN (dims);
12635 int size = TREE_INT_CST_LOW (TREE_VALUE (dims));
12637 return size;
12640 /* Extract the dimension axis from an IFN_GOACC_DIM_POS or
12641 IFN_GOACC_DIM_SIZE call. */
12644 get_oacc_ifn_dim_arg (const gimple *stmt)
12646 gcc_checking_assert (gimple_call_internal_fn (stmt) == IFN_GOACC_DIM_SIZE
12647 || gimple_call_internal_fn (stmt) == IFN_GOACC_DIM_POS);
12648 tree arg = gimple_call_arg (stmt, 0);
12649 HOST_WIDE_INT axis = TREE_INT_CST_LOW (arg);
12651 gcc_checking_assert (axis >= 0 && axis < GOMP_DIM_MAX);
12652 return (int) axis;
12655 /* Mark the loops inside the kernels region starting at REGION_ENTRY and ending
12656 at REGION_EXIT. */
12658 static void
12659 mark_loops_in_oacc_kernels_region (basic_block region_entry,
12660 basic_block region_exit)
12662 struct loop *outer = region_entry->loop_father;
12663 gcc_assert (region_exit == NULL || outer == region_exit->loop_father);
12665 /* Don't parallelize the kernels region if it contains more than one outer
12666 loop. */
12667 unsigned int nr_outer_loops = 0;
12668 struct loop *single_outer = NULL;
12669 for (struct loop *loop = outer->inner; loop != NULL; loop = loop->next)
12671 gcc_assert (loop_outer (loop) == outer);
12673 if (!dominated_by_p (CDI_DOMINATORS, loop->header, region_entry))
12674 continue;
12676 if (region_exit != NULL
12677 && dominated_by_p (CDI_DOMINATORS, loop->header, region_exit))
12678 continue;
12680 nr_outer_loops++;
12681 single_outer = loop;
12683 if (nr_outer_loops != 1)
12684 return;
12686 for (struct loop *loop = single_outer->inner; loop != NULL; loop = loop->inner)
12687 if (loop->next)
12688 return;
12690 /* Mark the loops in the region. */
12691 for (struct loop *loop = single_outer; loop != NULL; loop = loop->inner)
12692 loop->in_oacc_kernels_region = true;
12695 /* Types used to pass grid and wortkgroup sizes to kernel invocation. */
12697 struct GTY(()) grid_launch_attributes_trees
12699 tree kernel_dim_array_type;
12700 tree kernel_lattrs_dimnum_decl;
12701 tree kernel_lattrs_grid_decl;
12702 tree kernel_lattrs_group_decl;
12703 tree kernel_launch_attributes_type;
12706 static GTY(()) struct grid_launch_attributes_trees *grid_attr_trees;
12708 /* Create types used to pass kernel launch attributes to target. */
12710 static void
12711 grid_create_kernel_launch_attr_types (void)
12713 if (grid_attr_trees)
12714 return;
12715 grid_attr_trees = ggc_alloc <grid_launch_attributes_trees> ();
12717 tree dim_arr_index_type
12718 = build_index_type (build_int_cst (integer_type_node, 2));
12719 grid_attr_trees->kernel_dim_array_type
12720 = build_array_type (uint32_type_node, dim_arr_index_type);
12722 grid_attr_trees->kernel_launch_attributes_type = make_node (RECORD_TYPE);
12723 grid_attr_trees->kernel_lattrs_dimnum_decl
12724 = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("ndim"),
12725 uint32_type_node);
12726 DECL_CHAIN (grid_attr_trees->kernel_lattrs_dimnum_decl) = NULL_TREE;
12728 grid_attr_trees->kernel_lattrs_grid_decl
12729 = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("grid_size"),
12730 grid_attr_trees->kernel_dim_array_type);
12731 DECL_CHAIN (grid_attr_trees->kernel_lattrs_grid_decl)
12732 = grid_attr_trees->kernel_lattrs_dimnum_decl;
12733 grid_attr_trees->kernel_lattrs_group_decl
12734 = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("group_size"),
12735 grid_attr_trees->kernel_dim_array_type);
12736 DECL_CHAIN (grid_attr_trees->kernel_lattrs_group_decl)
12737 = grid_attr_trees->kernel_lattrs_grid_decl;
12738 finish_builtin_struct (grid_attr_trees->kernel_launch_attributes_type,
12739 "__gomp_kernel_launch_attributes",
12740 grid_attr_trees->kernel_lattrs_group_decl, NULL_TREE);
12743 /* Insert before the current statement in GSI a store of VALUE to INDEX of
12744 array (of type kernel_dim_array_type) FLD_DECL of RANGE_VAR. VALUE must be
12745 of type uint32_type_node. */
12747 static void
12748 grid_insert_store_range_dim (gimple_stmt_iterator *gsi, tree range_var,
12749 tree fld_decl, int index, tree value)
12751 tree ref = build4 (ARRAY_REF, uint32_type_node,
12752 build3 (COMPONENT_REF,
12753 grid_attr_trees->kernel_dim_array_type,
12754 range_var, fld_decl, NULL_TREE),
12755 build_int_cst (integer_type_node, index),
12756 NULL_TREE, NULL_TREE);
12757 gsi_insert_before (gsi, gimple_build_assign (ref, value), GSI_SAME_STMT);
12760 /* Return a tree representation of a pointer to a structure with grid and
12761 work-group size information. Statements filling that information will be
12762 inserted before GSI, TGT_STMT is the target statement which has the
12763 necessary information in it. */
12765 static tree
12766 grid_get_kernel_launch_attributes (gimple_stmt_iterator *gsi,
12767 gomp_target *tgt_stmt)
12769 grid_create_kernel_launch_attr_types ();
12770 tree u32_one = build_one_cst (uint32_type_node);
12771 tree lattrs = create_tmp_var (grid_attr_trees->kernel_launch_attributes_type,
12772 "__kernel_launch_attrs");
12774 unsigned max_dim = 0;
12775 for (tree clause = gimple_omp_target_clauses (tgt_stmt);
12776 clause;
12777 clause = OMP_CLAUSE_CHAIN (clause))
12779 if (OMP_CLAUSE_CODE (clause) != OMP_CLAUSE__GRIDDIM_)
12780 continue;
12782 unsigned dim = OMP_CLAUSE__GRIDDIM__DIMENSION (clause);
12783 max_dim = MAX (dim, max_dim);
12785 grid_insert_store_range_dim (gsi, lattrs,
12786 grid_attr_trees->kernel_lattrs_grid_decl,
12787 dim, OMP_CLAUSE__GRIDDIM__SIZE (clause));
12788 grid_insert_store_range_dim (gsi, lattrs,
12789 grid_attr_trees->kernel_lattrs_group_decl,
12790 dim, OMP_CLAUSE__GRIDDIM__GROUP (clause));
12793 tree dimref = build3 (COMPONENT_REF, uint32_type_node, lattrs,
12794 grid_attr_trees->kernel_lattrs_dimnum_decl, NULL_TREE);
12795 /* At this moment we cannot gridify a loop with a collapse clause. */
12796 /* TODO: Adjust when we support bigger collapse. */
12797 gcc_assert (max_dim == 0);
12798 gsi_insert_before (gsi, gimple_build_assign (dimref, u32_one), GSI_SAME_STMT);
12799 TREE_ADDRESSABLE (lattrs) = 1;
12800 return build_fold_addr_expr (lattrs);
12803 /* Build target argument identifier from the DEVICE identifier, value
12804 identifier ID and whether the element also has a SUBSEQUENT_PARAM. */
12806 static tree
12807 get_target_argument_identifier_1 (int device, bool subseqent_param, int id)
12809 tree t = build_int_cst (integer_type_node, device);
12810 if (subseqent_param)
12811 t = fold_build2 (BIT_IOR_EXPR, integer_type_node, t,
12812 build_int_cst (integer_type_node,
12813 GOMP_TARGET_ARG_SUBSEQUENT_PARAM));
12814 t = fold_build2 (BIT_IOR_EXPR, integer_type_node, t,
12815 build_int_cst (integer_type_node, id));
12816 return t;
12819 /* Like above but return it in type that can be directly stored as an element
12820 of the argument array. */
12822 static tree
12823 get_target_argument_identifier (int device, bool subseqent_param, int id)
12825 tree t = get_target_argument_identifier_1 (device, subseqent_param, id);
12826 return fold_convert (ptr_type_node, t);
12829 /* Return a target argument consisting of DEVICE identifier, value identifier
12830 ID, and the actual VALUE. */
12832 static tree
12833 get_target_argument_value (gimple_stmt_iterator *gsi, int device, int id,
12834 tree value)
12836 tree t = fold_build2 (LSHIFT_EXPR, integer_type_node,
12837 fold_convert (integer_type_node, value),
12838 build_int_cst (unsigned_type_node,
12839 GOMP_TARGET_ARG_VALUE_SHIFT));
12840 t = fold_build2 (BIT_IOR_EXPR, integer_type_node, t,
12841 get_target_argument_identifier_1 (device, false, id));
12842 t = fold_convert (ptr_type_node, t);
12843 return force_gimple_operand_gsi (gsi, t, true, NULL, true, GSI_SAME_STMT);
12846 /* If VALUE is an integer constant greater than -2^15 and smaller than 2^15,
12847 push one argument to ARGS with both the DEVICE, ID and VALUE embedded in it,
12848 otherwise push an identifier (with DEVICE and ID) and the VALUE in two
12849 arguments. */
12851 static void
12852 push_target_argument_according_to_value (gimple_stmt_iterator *gsi, int device,
12853 int id, tree value, vec <tree> *args)
12855 if (tree_fits_shwi_p (value)
12856 && tree_to_shwi (value) > -(1 << 15)
12857 && tree_to_shwi (value) < (1 << 15))
12858 args->quick_push (get_target_argument_value (gsi, device, id, value));
12859 else
12861 args->quick_push (get_target_argument_identifier (device, true, id));
12862 value = fold_convert (ptr_type_node, value);
12863 value = force_gimple_operand_gsi (gsi, value, true, NULL, true,
12864 GSI_SAME_STMT);
12865 args->quick_push (value);
12869 /* Create an array of arguments that is then passed to GOMP_target. */
12871 static tree
12872 get_target_arguments (gimple_stmt_iterator *gsi, gomp_target *tgt_stmt)
12874 auto_vec <tree, 6> args;
12875 tree clauses = gimple_omp_target_clauses (tgt_stmt);
12876 tree t, c = find_omp_clause (clauses, OMP_CLAUSE_NUM_TEAMS);
12877 if (c)
12878 t = OMP_CLAUSE_NUM_TEAMS_EXPR (c);
12879 else
12880 t = integer_minus_one_node;
12881 push_target_argument_according_to_value (gsi, GOMP_TARGET_ARG_DEVICE_ALL,
12882 GOMP_TARGET_ARG_NUM_TEAMS, t, &args);
12884 c = find_omp_clause (clauses, OMP_CLAUSE_THREAD_LIMIT);
12885 if (c)
12886 t = OMP_CLAUSE_THREAD_LIMIT_EXPR (c);
12887 else
12888 t = integer_minus_one_node;
12889 push_target_argument_according_to_value (gsi, GOMP_TARGET_ARG_DEVICE_ALL,
12890 GOMP_TARGET_ARG_THREAD_LIMIT, t,
12891 &args);
12893 /* Add HSA-specific grid sizes, if available. */
12894 if (find_omp_clause (gimple_omp_target_clauses (tgt_stmt),
12895 OMP_CLAUSE__GRIDDIM_))
12897 t = get_target_argument_identifier (GOMP_DEVICE_HSA, true,
12898 GOMP_TARGET_ARG_HSA_KERNEL_ATTRIBUTES);
12899 args.quick_push (t);
12900 args.quick_push (grid_get_kernel_launch_attributes (gsi, tgt_stmt));
12903 /* Produce more, perhaps device specific, arguments here. */
12905 tree argarray = create_tmp_var (build_array_type_nelts (ptr_type_node,
12906 args.length () + 1),
12907 ".omp_target_args");
12908 for (unsigned i = 0; i < args.length (); i++)
12910 tree ref = build4 (ARRAY_REF, ptr_type_node, argarray,
12911 build_int_cst (integer_type_node, i),
12912 NULL_TREE, NULL_TREE);
12913 gsi_insert_before (gsi, gimple_build_assign (ref, args[i]),
12914 GSI_SAME_STMT);
12916 tree ref = build4 (ARRAY_REF, ptr_type_node, argarray,
12917 build_int_cst (integer_type_node, args.length ()),
12918 NULL_TREE, NULL_TREE);
12919 gsi_insert_before (gsi, gimple_build_assign (ref, null_pointer_node),
12920 GSI_SAME_STMT);
12921 TREE_ADDRESSABLE (argarray) = 1;
12922 return build_fold_addr_expr (argarray);
12925 /* Expand the GIMPLE_OMP_TARGET starting at REGION. */
12927 static void
12928 expand_omp_target (struct omp_region *region)
12930 basic_block entry_bb, exit_bb, new_bb;
12931 struct function *child_cfun;
12932 tree child_fn, block, t;
12933 gimple_stmt_iterator gsi;
12934 gomp_target *entry_stmt;
12935 gimple *stmt;
12936 edge e;
12937 bool offloaded, data_region;
12939 entry_stmt = as_a <gomp_target *> (last_stmt (region->entry));
12940 new_bb = region->entry;
12942 offloaded = is_gimple_omp_offloaded (entry_stmt);
12943 switch (gimple_omp_target_kind (entry_stmt))
12945 case GF_OMP_TARGET_KIND_REGION:
12946 case GF_OMP_TARGET_KIND_UPDATE:
12947 case GF_OMP_TARGET_KIND_ENTER_DATA:
12948 case GF_OMP_TARGET_KIND_EXIT_DATA:
12949 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
12950 case GF_OMP_TARGET_KIND_OACC_KERNELS:
12951 case GF_OMP_TARGET_KIND_OACC_UPDATE:
12952 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
12953 case GF_OMP_TARGET_KIND_OACC_DECLARE:
12954 data_region = false;
12955 break;
12956 case GF_OMP_TARGET_KIND_DATA:
12957 case GF_OMP_TARGET_KIND_OACC_DATA:
12958 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
12959 data_region = true;
12960 break;
12961 default:
12962 gcc_unreachable ();
12965 child_fn = NULL_TREE;
12966 child_cfun = NULL;
12967 if (offloaded)
12969 child_fn = gimple_omp_target_child_fn (entry_stmt);
12970 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
12973 /* Supported by expand_omp_taskreg, but not here. */
12974 if (child_cfun != NULL)
12975 gcc_checking_assert (!child_cfun->cfg);
12976 gcc_checking_assert (!gimple_in_ssa_p (cfun));
12978 entry_bb = region->entry;
12979 exit_bb = region->exit;
12981 if (gimple_omp_target_kind (entry_stmt) == GF_OMP_TARGET_KIND_OACC_KERNELS)
12982 mark_loops_in_oacc_kernels_region (region->entry, region->exit);
12984 if (offloaded)
12986 unsigned srcidx, dstidx, num;
12988 /* If the offloading region needs data sent from the parent
12989 function, then the very first statement (except possible
12990 tree profile counter updates) of the offloading body
12991 is a copy assignment .OMP_DATA_I = &.OMP_DATA_O. Since
12992 &.OMP_DATA_O is passed as an argument to the child function,
12993 we need to replace it with the argument as seen by the child
12994 function.
12996 In most cases, this will end up being the identity assignment
12997 .OMP_DATA_I = .OMP_DATA_I. However, if the offloading body had
12998 a function call that has been inlined, the original PARM_DECL
12999 .OMP_DATA_I may have been converted into a different local
13000 variable. In which case, we need to keep the assignment. */
13001 tree data_arg = gimple_omp_target_data_arg (entry_stmt);
13002 if (data_arg)
13004 basic_block entry_succ_bb = single_succ (entry_bb);
13005 gimple_stmt_iterator gsi;
13006 tree arg;
13007 gimple *tgtcopy_stmt = NULL;
13008 tree sender = TREE_VEC_ELT (data_arg, 0);
13010 for (gsi = gsi_start_bb (entry_succ_bb); ; gsi_next (&gsi))
13012 gcc_assert (!gsi_end_p (gsi));
13013 stmt = gsi_stmt (gsi);
13014 if (gimple_code (stmt) != GIMPLE_ASSIGN)
13015 continue;
13017 if (gimple_num_ops (stmt) == 2)
13019 tree arg = gimple_assign_rhs1 (stmt);
13021 /* We're ignoring the subcode because we're
13022 effectively doing a STRIP_NOPS. */
13024 if (TREE_CODE (arg) == ADDR_EXPR
13025 && TREE_OPERAND (arg, 0) == sender)
13027 tgtcopy_stmt = stmt;
13028 break;
13033 gcc_assert (tgtcopy_stmt != NULL);
13034 arg = DECL_ARGUMENTS (child_fn);
13036 gcc_assert (gimple_assign_lhs (tgtcopy_stmt) == arg);
13037 gsi_remove (&gsi, true);
13040 /* Declare local variables needed in CHILD_CFUN. */
13041 block = DECL_INITIAL (child_fn);
13042 BLOCK_VARS (block) = vec2chain (child_cfun->local_decls);
13043 /* The gimplifier could record temporaries in the offloading block
13044 rather than in containing function's local_decls chain,
13045 which would mean cgraph missed finalizing them. Do it now. */
13046 for (t = BLOCK_VARS (block); t; t = DECL_CHAIN (t))
13047 if (TREE_CODE (t) == VAR_DECL
13048 && TREE_STATIC (t)
13049 && !DECL_EXTERNAL (t))
13050 varpool_node::finalize_decl (t);
13051 DECL_SAVED_TREE (child_fn) = NULL;
13052 /* We'll create a CFG for child_fn, so no gimple body is needed. */
13053 gimple_set_body (child_fn, NULL);
13054 TREE_USED (block) = 1;
13056 /* Reset DECL_CONTEXT on function arguments. */
13057 for (t = DECL_ARGUMENTS (child_fn); t; t = DECL_CHAIN (t))
13058 DECL_CONTEXT (t) = child_fn;
13060 /* Split ENTRY_BB at GIMPLE_*,
13061 so that it can be moved to the child function. */
13062 gsi = gsi_last_bb (entry_bb);
13063 stmt = gsi_stmt (gsi);
13064 gcc_assert (stmt
13065 && gimple_code (stmt) == gimple_code (entry_stmt));
13066 e = split_block (entry_bb, stmt);
13067 gsi_remove (&gsi, true);
13068 entry_bb = e->dest;
13069 single_succ_edge (entry_bb)->flags = EDGE_FALLTHRU;
13071 /* Convert GIMPLE_OMP_RETURN into a RETURN_EXPR. */
13072 if (exit_bb)
13074 gsi = gsi_last_bb (exit_bb);
13075 gcc_assert (!gsi_end_p (gsi)
13076 && gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
13077 stmt = gimple_build_return (NULL);
13078 gsi_insert_after (&gsi, stmt, GSI_SAME_STMT);
13079 gsi_remove (&gsi, true);
13082 /* Move the offloading region into CHILD_CFUN. */
13084 block = gimple_block (entry_stmt);
13086 new_bb = move_sese_region_to_fn (child_cfun, entry_bb, exit_bb, block);
13087 if (exit_bb)
13088 single_succ_edge (new_bb)->flags = EDGE_FALLTHRU;
13089 /* When the OMP expansion process cannot guarantee an up-to-date
13090 loop tree arrange for the child function to fixup loops. */
13091 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP))
13092 child_cfun->x_current_loops->state |= LOOPS_NEED_FIXUP;
13094 /* Remove non-local VAR_DECLs from child_cfun->local_decls list. */
13095 num = vec_safe_length (child_cfun->local_decls);
13096 for (srcidx = 0, dstidx = 0; srcidx < num; srcidx++)
13098 t = (*child_cfun->local_decls)[srcidx];
13099 if (DECL_CONTEXT (t) == cfun->decl)
13100 continue;
13101 if (srcidx != dstidx)
13102 (*child_cfun->local_decls)[dstidx] = t;
13103 dstidx++;
13105 if (dstidx != num)
13106 vec_safe_truncate (child_cfun->local_decls, dstidx);
13108 /* Inform the callgraph about the new function. */
13109 child_cfun->curr_properties = cfun->curr_properties;
13110 child_cfun->has_simduid_loops |= cfun->has_simduid_loops;
13111 child_cfun->has_force_vectorize_loops |= cfun->has_force_vectorize_loops;
13112 cgraph_node *node = cgraph_node::get_create (child_fn);
13113 node->parallelized_function = 1;
13114 cgraph_node::add_new_function (child_fn, true);
13116 /* Add the new function to the offload table. */
13117 if (ENABLE_OFFLOADING)
13118 vec_safe_push (offload_funcs, child_fn);
13120 bool need_asm = DECL_ASSEMBLER_NAME_SET_P (current_function_decl)
13121 && !DECL_ASSEMBLER_NAME_SET_P (child_fn);
13123 /* Fix the callgraph edges for child_cfun. Those for cfun will be
13124 fixed in a following pass. */
13125 push_cfun (child_cfun);
13126 if (need_asm)
13127 assign_assembler_name_if_neeeded (child_fn);
13128 cgraph_edge::rebuild_edges ();
13130 /* Some EH regions might become dead, see PR34608. If
13131 pass_cleanup_cfg isn't the first pass to happen with the
13132 new child, these dead EH edges might cause problems.
13133 Clean them up now. */
13134 if (flag_exceptions)
13136 basic_block bb;
13137 bool changed = false;
13139 FOR_EACH_BB_FN (bb, cfun)
13140 changed |= gimple_purge_dead_eh_edges (bb);
13141 if (changed)
13142 cleanup_tree_cfg ();
13144 if (flag_checking && !loops_state_satisfies_p (LOOPS_NEED_FIXUP))
13145 verify_loop_structure ();
13146 pop_cfun ();
13148 if (dump_file && !gimple_in_ssa_p (cfun))
13150 omp_any_child_fn_dumped = true;
13151 dump_function_header (dump_file, child_fn, dump_flags);
13152 dump_function_to_file (child_fn, dump_file, dump_flags);
13156 /* Emit a library call to launch the offloading region, or do data
13157 transfers. */
13158 tree t1, t2, t3, t4, device, cond, depend, c, clauses;
13159 enum built_in_function start_ix;
13160 location_t clause_loc;
13161 unsigned int flags_i = 0;
13162 bool oacc_kernels_p = false;
13164 switch (gimple_omp_target_kind (entry_stmt))
13166 case GF_OMP_TARGET_KIND_REGION:
13167 start_ix = BUILT_IN_GOMP_TARGET;
13168 break;
13169 case GF_OMP_TARGET_KIND_DATA:
13170 start_ix = BUILT_IN_GOMP_TARGET_DATA;
13171 break;
13172 case GF_OMP_TARGET_KIND_UPDATE:
13173 start_ix = BUILT_IN_GOMP_TARGET_UPDATE;
13174 break;
13175 case GF_OMP_TARGET_KIND_ENTER_DATA:
13176 start_ix = BUILT_IN_GOMP_TARGET_ENTER_EXIT_DATA;
13177 break;
13178 case GF_OMP_TARGET_KIND_EXIT_DATA:
13179 start_ix = BUILT_IN_GOMP_TARGET_ENTER_EXIT_DATA;
13180 flags_i |= GOMP_TARGET_FLAG_EXIT_DATA;
13181 break;
13182 case GF_OMP_TARGET_KIND_OACC_KERNELS:
13183 oacc_kernels_p = true;
13184 /* FALLTHROUGH */
13185 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
13186 start_ix = BUILT_IN_GOACC_PARALLEL;
13187 break;
13188 case GF_OMP_TARGET_KIND_OACC_DATA:
13189 start_ix = BUILT_IN_GOACC_DATA_START;
13190 break;
13191 case GF_OMP_TARGET_KIND_OACC_UPDATE:
13192 start_ix = BUILT_IN_GOACC_UPDATE;
13193 break;
13194 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
13195 start_ix = BUILT_IN_GOACC_ENTER_EXIT_DATA;
13196 break;
13197 case GF_OMP_TARGET_KIND_OACC_DECLARE:
13198 start_ix = BUILT_IN_GOACC_DECLARE;
13199 break;
13200 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
13201 start_ix = BUILT_IN_GOACC_HOST_DATA;
13202 break;
13203 default:
13204 gcc_unreachable ();
13207 clauses = gimple_omp_target_clauses (entry_stmt);
13209 /* By default, the value of DEVICE is GOMP_DEVICE_ICV (let runtime
13210 library choose) and there is no conditional. */
13211 cond = NULL_TREE;
13212 device = build_int_cst (integer_type_node, GOMP_DEVICE_ICV);
13214 c = find_omp_clause (clauses, OMP_CLAUSE_IF);
13215 if (c)
13216 cond = OMP_CLAUSE_IF_EXPR (c);
13218 c = find_omp_clause (clauses, OMP_CLAUSE_DEVICE);
13219 if (c)
13221 /* Even if we pass it to all library function calls, it is currently only
13222 defined/used for the OpenMP target ones. */
13223 gcc_checking_assert (start_ix == BUILT_IN_GOMP_TARGET
13224 || start_ix == BUILT_IN_GOMP_TARGET_DATA
13225 || start_ix == BUILT_IN_GOMP_TARGET_UPDATE
13226 || start_ix == BUILT_IN_GOMP_TARGET_ENTER_EXIT_DATA);
13228 device = OMP_CLAUSE_DEVICE_ID (c);
13229 clause_loc = OMP_CLAUSE_LOCATION (c);
13231 else
13232 clause_loc = gimple_location (entry_stmt);
13234 c = find_omp_clause (clauses, OMP_CLAUSE_NOWAIT);
13235 if (c)
13236 flags_i |= GOMP_TARGET_FLAG_NOWAIT;
13238 /* Ensure 'device' is of the correct type. */
13239 device = fold_convert_loc (clause_loc, integer_type_node, device);
13241 /* If we found the clause 'if (cond)', build
13242 (cond ? device : GOMP_DEVICE_HOST_FALLBACK). */
13243 if (cond)
13245 cond = gimple_boolify (cond);
13247 basic_block cond_bb, then_bb, else_bb;
13248 edge e;
13249 tree tmp_var;
13251 tmp_var = create_tmp_var (TREE_TYPE (device));
13252 if (offloaded)
13253 e = split_block_after_labels (new_bb);
13254 else
13256 gsi = gsi_last_bb (new_bb);
13257 gsi_prev (&gsi);
13258 e = split_block (new_bb, gsi_stmt (gsi));
13260 cond_bb = e->src;
13261 new_bb = e->dest;
13262 remove_edge (e);
13264 then_bb = create_empty_bb (cond_bb);
13265 else_bb = create_empty_bb (then_bb);
13266 set_immediate_dominator (CDI_DOMINATORS, then_bb, cond_bb);
13267 set_immediate_dominator (CDI_DOMINATORS, else_bb, cond_bb);
13269 stmt = gimple_build_cond_empty (cond);
13270 gsi = gsi_last_bb (cond_bb);
13271 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
13273 gsi = gsi_start_bb (then_bb);
13274 stmt = gimple_build_assign (tmp_var, device);
13275 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
13277 gsi = gsi_start_bb (else_bb);
13278 stmt = gimple_build_assign (tmp_var,
13279 build_int_cst (integer_type_node,
13280 GOMP_DEVICE_HOST_FALLBACK));
13281 gsi_insert_after (&gsi, stmt, GSI_CONTINUE_LINKING);
13283 make_edge (cond_bb, then_bb, EDGE_TRUE_VALUE);
13284 make_edge (cond_bb, else_bb, EDGE_FALSE_VALUE);
13285 add_bb_to_loop (then_bb, cond_bb->loop_father);
13286 add_bb_to_loop (else_bb, cond_bb->loop_father);
13287 make_edge (then_bb, new_bb, EDGE_FALLTHRU);
13288 make_edge (else_bb, new_bb, EDGE_FALLTHRU);
13290 device = tmp_var;
13293 gsi = gsi_last_bb (new_bb);
13294 t = gimple_omp_target_data_arg (entry_stmt);
13295 if (t == NULL)
13297 t1 = size_zero_node;
13298 t2 = build_zero_cst (ptr_type_node);
13299 t3 = t2;
13300 t4 = t2;
13302 else
13304 t1 = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (TREE_VEC_ELT (t, 1))));
13305 t1 = size_binop (PLUS_EXPR, t1, size_int (1));
13306 t2 = build_fold_addr_expr (TREE_VEC_ELT (t, 0));
13307 t3 = build_fold_addr_expr (TREE_VEC_ELT (t, 1));
13308 t4 = build_fold_addr_expr (TREE_VEC_ELT (t, 2));
13311 gimple *g;
13312 bool tagging = false;
13313 /* The maximum number used by any start_ix, without varargs. */
13314 auto_vec<tree, 11> args;
13315 args.quick_push (device);
13316 if (offloaded)
13317 args.quick_push (build_fold_addr_expr (child_fn));
13318 args.quick_push (t1);
13319 args.quick_push (t2);
13320 args.quick_push (t3);
13321 args.quick_push (t4);
13322 switch (start_ix)
13324 case BUILT_IN_GOACC_DATA_START:
13325 case BUILT_IN_GOACC_DECLARE:
13326 case BUILT_IN_GOMP_TARGET_DATA:
13327 case BUILT_IN_GOACC_HOST_DATA:
13328 break;
13329 case BUILT_IN_GOMP_TARGET:
13330 case BUILT_IN_GOMP_TARGET_UPDATE:
13331 case BUILT_IN_GOMP_TARGET_ENTER_EXIT_DATA:
13332 args.quick_push (build_int_cst (unsigned_type_node, flags_i));
13333 c = find_omp_clause (clauses, OMP_CLAUSE_DEPEND);
13334 if (c)
13335 depend = OMP_CLAUSE_DECL (c);
13336 else
13337 depend = build_int_cst (ptr_type_node, 0);
13338 args.quick_push (depend);
13339 if (start_ix == BUILT_IN_GOMP_TARGET)
13340 args.quick_push (get_target_arguments (&gsi, entry_stmt));
13341 break;
13342 case BUILT_IN_GOACC_PARALLEL:
13344 set_oacc_fn_attrib (child_fn, clauses, oacc_kernels_p, &args);
13345 tagging = true;
13347 /* FALLTHRU */
13348 case BUILT_IN_GOACC_ENTER_EXIT_DATA:
13349 case BUILT_IN_GOACC_UPDATE:
13351 tree t_async = NULL_TREE;
13353 /* If present, use the value specified by the respective
13354 clause, making sure that is of the correct type. */
13355 c = find_omp_clause (clauses, OMP_CLAUSE_ASYNC);
13356 if (c)
13357 t_async = fold_convert_loc (OMP_CLAUSE_LOCATION (c),
13358 integer_type_node,
13359 OMP_CLAUSE_ASYNC_EXPR (c));
13360 else if (!tagging)
13361 /* Default values for t_async. */
13362 t_async = fold_convert_loc (gimple_location (entry_stmt),
13363 integer_type_node,
13364 build_int_cst (integer_type_node,
13365 GOMP_ASYNC_SYNC));
13366 if (tagging && t_async)
13368 unsigned HOST_WIDE_INT i_async = GOMP_LAUNCH_OP_MAX;
13370 if (TREE_CODE (t_async) == INTEGER_CST)
13372 /* See if we can pack the async arg in to the tag's
13373 operand. */
13374 i_async = TREE_INT_CST_LOW (t_async);
13375 if (i_async < GOMP_LAUNCH_OP_MAX)
13376 t_async = NULL_TREE;
13377 else
13378 i_async = GOMP_LAUNCH_OP_MAX;
13380 args.safe_push (oacc_launch_pack (GOMP_LAUNCH_ASYNC, NULL_TREE,
13381 i_async));
13383 if (t_async)
13384 args.safe_push (t_async);
13386 /* Save the argument index, and ... */
13387 unsigned t_wait_idx = args.length ();
13388 unsigned num_waits = 0;
13389 c = find_omp_clause (clauses, OMP_CLAUSE_WAIT);
13390 if (!tagging || c)
13391 /* ... push a placeholder. */
13392 args.safe_push (integer_zero_node);
13394 for (; c; c = OMP_CLAUSE_CHAIN (c))
13395 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_WAIT)
13397 args.safe_push (fold_convert_loc (OMP_CLAUSE_LOCATION (c),
13398 integer_type_node,
13399 OMP_CLAUSE_WAIT_EXPR (c)));
13400 num_waits++;
13403 if (!tagging || num_waits)
13405 tree len;
13407 /* Now that we know the number, update the placeholder. */
13408 if (tagging)
13409 len = oacc_launch_pack (GOMP_LAUNCH_WAIT, NULL_TREE, num_waits);
13410 else
13411 len = build_int_cst (integer_type_node, num_waits);
13412 len = fold_convert_loc (gimple_location (entry_stmt),
13413 unsigned_type_node, len);
13414 args[t_wait_idx] = len;
13417 break;
13418 default:
13419 gcc_unreachable ();
13421 if (tagging)
13422 /* Push terminal marker - zero. */
13423 args.safe_push (oacc_launch_pack (0, NULL_TREE, 0));
13425 g = gimple_build_call_vec (builtin_decl_explicit (start_ix), args);
13426 gimple_set_location (g, gimple_location (entry_stmt));
13427 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
13428 if (!offloaded)
13430 g = gsi_stmt (gsi);
13431 gcc_assert (g && gimple_code (g) == GIMPLE_OMP_TARGET);
13432 gsi_remove (&gsi, true);
13434 if (data_region && region->exit)
13436 gsi = gsi_last_bb (region->exit);
13437 g = gsi_stmt (gsi);
13438 gcc_assert (g && gimple_code (g) == GIMPLE_OMP_RETURN);
13439 gsi_remove (&gsi, true);
13443 /* Expand KFOR loop as a GPGPU kernel, i.e. as a body only with iteration
13444 variable derived from the thread number. */
13446 static void
13447 grid_expand_omp_for_loop (struct omp_region *kfor)
13449 tree t, threadid;
13450 tree type, itype;
13451 gimple_stmt_iterator gsi;
13452 tree n1, step;
13453 struct omp_for_data fd;
13455 gomp_for *for_stmt = as_a <gomp_for *> (last_stmt (kfor->entry));
13456 gcc_checking_assert (gimple_omp_for_kind (for_stmt)
13457 == GF_OMP_FOR_KIND_GRID_LOOP);
13458 basic_block body_bb = FALLTHRU_EDGE (kfor->entry)->dest;
13460 gcc_assert (gimple_omp_for_collapse (for_stmt) == 1);
13461 gcc_assert (kfor->cont);
13462 extract_omp_for_data (for_stmt, &fd, NULL);
13464 itype = type = TREE_TYPE (fd.loop.v);
13465 if (POINTER_TYPE_P (type))
13466 itype = signed_type_for (type);
13468 gsi = gsi_start_bb (body_bb);
13470 n1 = fd.loop.n1;
13471 step = fd.loop.step;
13472 n1 = force_gimple_operand_gsi (&gsi, fold_convert (type, n1),
13473 true, NULL_TREE, true, GSI_SAME_STMT);
13474 step = force_gimple_operand_gsi (&gsi, fold_convert (itype, step),
13475 true, NULL_TREE, true, GSI_SAME_STMT);
13476 threadid = build_call_expr (builtin_decl_explicit
13477 (BUILT_IN_OMP_GET_THREAD_NUM), 0);
13478 threadid = fold_convert (itype, threadid);
13479 threadid = force_gimple_operand_gsi (&gsi, threadid, true, NULL_TREE,
13480 true, GSI_SAME_STMT);
13482 tree startvar = fd.loop.v;
13483 t = fold_build2 (MULT_EXPR, itype, threadid, step);
13484 if (POINTER_TYPE_P (type))
13485 t = fold_build_pointer_plus (n1, t);
13486 else
13487 t = fold_build2 (PLUS_EXPR, type, t, n1);
13488 t = fold_convert (type, t);
13489 t = force_gimple_operand_gsi (&gsi, t,
13490 DECL_P (startvar)
13491 && TREE_ADDRESSABLE (startvar),
13492 NULL_TREE, true, GSI_SAME_STMT);
13493 gassign *assign_stmt = gimple_build_assign (startvar, t);
13494 gsi_insert_before (&gsi, assign_stmt, GSI_SAME_STMT);
13496 /* Remove the omp for statement */
13497 gsi = gsi_last_bb (kfor->entry);
13498 gsi_remove (&gsi, true);
13500 /* Remove the GIMPLE_OMP_CONTINUE statement. */
13501 gsi = gsi_last_bb (kfor->cont);
13502 gcc_assert (!gsi_end_p (gsi)
13503 && gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_CONTINUE);
13504 gsi_remove (&gsi, true);
13506 /* Replace the GIMPLE_OMP_RETURN with a real return. */
13507 gsi = gsi_last_bb (kfor->exit);
13508 gcc_assert (!gsi_end_p (gsi)
13509 && gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
13510 gsi_remove (&gsi, true);
13512 /* Fixup the much simpler CFG. */
13513 remove_edge (find_edge (kfor->cont, body_bb));
13515 if (kfor->cont != body_bb)
13516 set_immediate_dominator (CDI_DOMINATORS, kfor->cont, body_bb);
13517 set_immediate_dominator (CDI_DOMINATORS, kfor->exit, kfor->cont);
13520 /* Structure passed to grid_remap_kernel_arg_accesses so that it can remap
13521 argument_decls. */
13523 struct grid_arg_decl_map
13525 tree old_arg;
13526 tree new_arg;
13529 /* Invoked through walk_gimple_op, will remap all PARM_DECLs to the ones
13530 pertaining to kernel function. */
13532 static tree
13533 grid_remap_kernel_arg_accesses (tree *tp, int *walk_subtrees, void *data)
13535 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
13536 struct grid_arg_decl_map *adm = (struct grid_arg_decl_map *) wi->info;
13537 tree t = *tp;
13539 if (t == adm->old_arg)
13540 *tp = adm->new_arg;
13541 *walk_subtrees = !TYPE_P (t) && !DECL_P (t);
13542 return NULL_TREE;
13545 static void expand_omp (struct omp_region *region);
13547 /* If TARGET region contains a kernel body for loop, remove its region from the
13548 TARGET and expand it in GPGPU kernel fashion. */
13550 static void
13551 grid_expand_target_grid_body (struct omp_region *target)
13553 if (!hsa_gen_requested_p ())
13554 return;
13556 gomp_target *tgt_stmt = as_a <gomp_target *> (last_stmt (target->entry));
13557 struct omp_region **pp;
13559 for (pp = &target->inner; *pp; pp = &(*pp)->next)
13560 if ((*pp)->type == GIMPLE_OMP_GRID_BODY)
13561 break;
13563 struct omp_region *gpukernel = *pp;
13565 tree orig_child_fndecl = gimple_omp_target_child_fn (tgt_stmt);
13566 if (!gpukernel)
13568 /* HSA cannot handle OACC stuff. */
13569 if (gimple_omp_target_kind (tgt_stmt) != GF_OMP_TARGET_KIND_REGION)
13570 return;
13571 gcc_checking_assert (orig_child_fndecl);
13572 gcc_assert (!find_omp_clause (gimple_omp_target_clauses (tgt_stmt),
13573 OMP_CLAUSE__GRIDDIM_));
13574 cgraph_node *n = cgraph_node::get (orig_child_fndecl);
13576 hsa_register_kernel (n);
13577 return;
13580 gcc_assert (find_omp_clause (gimple_omp_target_clauses (tgt_stmt),
13581 OMP_CLAUSE__GRIDDIM_));
13582 tree inside_block = gimple_block (first_stmt (single_succ (gpukernel->entry)));
13583 *pp = gpukernel->next;
13584 for (pp = &gpukernel->inner; *pp; pp = &(*pp)->next)
13585 if ((*pp)->type == GIMPLE_OMP_FOR)
13586 break;
13588 struct omp_region *kfor = *pp;
13589 gcc_assert (kfor);
13590 gcc_assert (gimple_omp_for_kind (last_stmt ((kfor)->entry))
13591 == GF_OMP_FOR_KIND_GRID_LOOP);
13592 *pp = kfor->next;
13593 if (kfor->inner)
13594 expand_omp (kfor->inner);
13595 if (gpukernel->inner)
13596 expand_omp (gpukernel->inner);
13598 tree kern_fndecl = copy_node (orig_child_fndecl);
13599 DECL_NAME (kern_fndecl) = clone_function_name (kern_fndecl, "kernel");
13600 SET_DECL_ASSEMBLER_NAME (kern_fndecl, DECL_NAME (kern_fndecl));
13601 tree tgtblock = gimple_block (tgt_stmt);
13602 tree fniniblock = make_node (BLOCK);
13603 BLOCK_ABSTRACT_ORIGIN (fniniblock) = tgtblock;
13604 BLOCK_SOURCE_LOCATION (fniniblock) = BLOCK_SOURCE_LOCATION (tgtblock);
13605 BLOCK_SOURCE_END_LOCATION (fniniblock) = BLOCK_SOURCE_END_LOCATION (tgtblock);
13606 DECL_INITIAL (kern_fndecl) = fniniblock;
13607 push_struct_function (kern_fndecl);
13608 cfun->function_end_locus = gimple_location (tgt_stmt);
13609 pop_cfun ();
13611 tree old_parm_decl = DECL_ARGUMENTS (kern_fndecl);
13612 gcc_assert (!DECL_CHAIN (old_parm_decl));
13613 tree new_parm_decl = copy_node (DECL_ARGUMENTS (kern_fndecl));
13614 DECL_CONTEXT (new_parm_decl) = kern_fndecl;
13615 DECL_ARGUMENTS (kern_fndecl) = new_parm_decl;
13616 struct function *kern_cfun = DECL_STRUCT_FUNCTION (kern_fndecl);
13617 kern_cfun->curr_properties = cfun->curr_properties;
13619 remove_edge (BRANCH_EDGE (kfor->entry));
13620 grid_expand_omp_for_loop (kfor);
13622 /* Remove the omp for statement */
13623 gimple_stmt_iterator gsi = gsi_last_bb (gpukernel->entry);
13624 gsi_remove (&gsi, true);
13625 /* Replace the GIMPLE_OMP_RETURN at the end of the kernel region with a real
13626 return. */
13627 gsi = gsi_last_bb (gpukernel->exit);
13628 gcc_assert (!gsi_end_p (gsi)
13629 && gimple_code (gsi_stmt (gsi)) == GIMPLE_OMP_RETURN);
13630 gimple *ret_stmt = gimple_build_return (NULL);
13631 gsi_insert_after (&gsi, ret_stmt, GSI_SAME_STMT);
13632 gsi_remove (&gsi, true);
13634 /* Statements in the first BB in the target construct have been produced by
13635 target lowering and must be copied inside the GPUKERNEL, with the two
13636 exceptions of the first OMP statement and the OMP_DATA assignment
13637 statement. */
13638 gsi = gsi_start_bb (single_succ (gpukernel->entry));
13639 tree data_arg = gimple_omp_target_data_arg (tgt_stmt);
13640 tree sender = data_arg ? TREE_VEC_ELT (data_arg, 0) : NULL;
13641 for (gimple_stmt_iterator tsi = gsi_start_bb (single_succ (target->entry));
13642 !gsi_end_p (tsi); gsi_next (&tsi))
13644 gimple *stmt = gsi_stmt (tsi);
13645 if (is_gimple_omp (stmt))
13646 break;
13647 if (sender
13648 && is_gimple_assign (stmt)
13649 && TREE_CODE (gimple_assign_rhs1 (stmt)) == ADDR_EXPR
13650 && TREE_OPERAND (gimple_assign_rhs1 (stmt), 0) == sender)
13651 continue;
13652 gimple *copy = gimple_copy (stmt);
13653 gsi_insert_before (&gsi, copy, GSI_SAME_STMT);
13654 gimple_set_block (copy, fniniblock);
13657 move_sese_region_to_fn (kern_cfun, single_succ (gpukernel->entry),
13658 gpukernel->exit, inside_block);
13660 cgraph_node *kcn = cgraph_node::get_create (kern_fndecl);
13661 kcn->mark_force_output ();
13662 cgraph_node *orig_child = cgraph_node::get (orig_child_fndecl);
13664 hsa_register_kernel (kcn, orig_child);
13666 cgraph_node::add_new_function (kern_fndecl, true);
13667 push_cfun (kern_cfun);
13668 cgraph_edge::rebuild_edges ();
13670 /* Re-map any mention of the PARM_DECL of the original function to the
13671 PARM_DECL of the new one.
13673 TODO: It would be great if lowering produced references into the GPU
13674 kernel decl straight away and we did not have to do this. */
13675 struct grid_arg_decl_map adm;
13676 adm.old_arg = old_parm_decl;
13677 adm.new_arg = new_parm_decl;
13678 basic_block bb;
13679 FOR_EACH_BB_FN (bb, kern_cfun)
13681 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
13683 gimple *stmt = gsi_stmt (gsi);
13684 struct walk_stmt_info wi;
13685 memset (&wi, 0, sizeof (wi));
13686 wi.info = &adm;
13687 walk_gimple_op (stmt, grid_remap_kernel_arg_accesses, &wi);
13690 pop_cfun ();
13692 return;
13695 /* Expand the parallel region tree rooted at REGION. Expansion
13696 proceeds in depth-first order. Innermost regions are expanded
13697 first. This way, parallel regions that require a new function to
13698 be created (e.g., GIMPLE_OMP_PARALLEL) can be expanded without having any
13699 internal dependencies in their body. */
13701 static void
13702 expand_omp (struct omp_region *region)
13704 omp_any_child_fn_dumped = false;
13705 while (region)
13707 location_t saved_location;
13708 gimple *inner_stmt = NULL;
13710 /* First, determine whether this is a combined parallel+workshare
13711 region. */
13712 if (region->type == GIMPLE_OMP_PARALLEL)
13713 determine_parallel_type (region);
13714 else if (region->type == GIMPLE_OMP_TARGET)
13715 grid_expand_target_grid_body (region);
13717 if (region->type == GIMPLE_OMP_FOR
13718 && gimple_omp_for_combined_p (last_stmt (region->entry)))
13719 inner_stmt = last_stmt (region->inner->entry);
13721 if (region->inner)
13722 expand_omp (region->inner);
13724 saved_location = input_location;
13725 if (gimple_has_location (last_stmt (region->entry)))
13726 input_location = gimple_location (last_stmt (region->entry));
13728 switch (region->type)
13730 case GIMPLE_OMP_PARALLEL:
13731 case GIMPLE_OMP_TASK:
13732 expand_omp_taskreg (region);
13733 break;
13735 case GIMPLE_OMP_FOR:
13736 expand_omp_for (region, inner_stmt);
13737 break;
13739 case GIMPLE_OMP_SECTIONS:
13740 expand_omp_sections (region);
13741 break;
13743 case GIMPLE_OMP_SECTION:
13744 /* Individual omp sections are handled together with their
13745 parent GIMPLE_OMP_SECTIONS region. */
13746 break;
13748 case GIMPLE_OMP_SINGLE:
13749 expand_omp_single (region);
13750 break;
13752 case GIMPLE_OMP_ORDERED:
13754 gomp_ordered *ord_stmt
13755 = as_a <gomp_ordered *> (last_stmt (region->entry));
13756 if (find_omp_clause (gimple_omp_ordered_clauses (ord_stmt),
13757 OMP_CLAUSE_DEPEND))
13759 /* We'll expand these when expanding corresponding
13760 worksharing region with ordered(n) clause. */
13761 gcc_assert (region->outer
13762 && region->outer->type == GIMPLE_OMP_FOR);
13763 region->ord_stmt = ord_stmt;
13764 break;
13767 /* FALLTHRU */
13768 case GIMPLE_OMP_MASTER:
13769 case GIMPLE_OMP_TASKGROUP:
13770 case GIMPLE_OMP_CRITICAL:
13771 case GIMPLE_OMP_TEAMS:
13772 expand_omp_synch (region);
13773 break;
13775 case GIMPLE_OMP_ATOMIC_LOAD:
13776 expand_omp_atomic (region);
13777 break;
13779 case GIMPLE_OMP_TARGET:
13780 expand_omp_target (region);
13781 break;
13783 default:
13784 gcc_unreachable ();
13787 input_location = saved_location;
13788 region = region->next;
13790 if (omp_any_child_fn_dumped)
13792 if (dump_file)
13793 dump_function_header (dump_file, current_function_decl, dump_flags);
13794 omp_any_child_fn_dumped = false;
13799 /* Helper for build_omp_regions. Scan the dominator tree starting at
13800 block BB. PARENT is the region that contains BB. If SINGLE_TREE is
13801 true, the function ends once a single tree is built (otherwise, whole
13802 forest of OMP constructs may be built). */
13804 static void
13805 build_omp_regions_1 (basic_block bb, struct omp_region *parent,
13806 bool single_tree)
13808 gimple_stmt_iterator gsi;
13809 gimple *stmt;
13810 basic_block son;
13812 gsi = gsi_last_bb (bb);
13813 if (!gsi_end_p (gsi) && is_gimple_omp (gsi_stmt (gsi)))
13815 struct omp_region *region;
13816 enum gimple_code code;
13818 stmt = gsi_stmt (gsi);
13819 code = gimple_code (stmt);
13820 if (code == GIMPLE_OMP_RETURN)
13822 /* STMT is the return point out of region PARENT. Mark it
13823 as the exit point and make PARENT the immediately
13824 enclosing region. */
13825 gcc_assert (parent);
13826 region = parent;
13827 region->exit = bb;
13828 parent = parent->outer;
13830 else if (code == GIMPLE_OMP_ATOMIC_STORE)
13832 /* GIMPLE_OMP_ATOMIC_STORE is analoguous to
13833 GIMPLE_OMP_RETURN, but matches with
13834 GIMPLE_OMP_ATOMIC_LOAD. */
13835 gcc_assert (parent);
13836 gcc_assert (parent->type == GIMPLE_OMP_ATOMIC_LOAD);
13837 region = parent;
13838 region->exit = bb;
13839 parent = parent->outer;
13841 else if (code == GIMPLE_OMP_CONTINUE)
13843 gcc_assert (parent);
13844 parent->cont = bb;
13846 else if (code == GIMPLE_OMP_SECTIONS_SWITCH)
13848 /* GIMPLE_OMP_SECTIONS_SWITCH is part of
13849 GIMPLE_OMP_SECTIONS, and we do nothing for it. */
13851 else
13853 region = new_omp_region (bb, code, parent);
13854 /* Otherwise... */
13855 if (code == GIMPLE_OMP_TARGET)
13857 switch (gimple_omp_target_kind (stmt))
13859 case GF_OMP_TARGET_KIND_REGION:
13860 case GF_OMP_TARGET_KIND_DATA:
13861 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
13862 case GF_OMP_TARGET_KIND_OACC_KERNELS:
13863 case GF_OMP_TARGET_KIND_OACC_DATA:
13864 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
13865 break;
13866 case GF_OMP_TARGET_KIND_UPDATE:
13867 case GF_OMP_TARGET_KIND_ENTER_DATA:
13868 case GF_OMP_TARGET_KIND_EXIT_DATA:
13869 case GF_OMP_TARGET_KIND_OACC_UPDATE:
13870 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
13871 case GF_OMP_TARGET_KIND_OACC_DECLARE:
13872 /* ..., other than for those stand-alone directives... */
13873 region = NULL;
13874 break;
13875 default:
13876 gcc_unreachable ();
13879 else if (code == GIMPLE_OMP_ORDERED
13880 && find_omp_clause (gimple_omp_ordered_clauses
13881 (as_a <gomp_ordered *> (stmt)),
13882 OMP_CLAUSE_DEPEND))
13883 /* #pragma omp ordered depend is also just a stand-alone
13884 directive. */
13885 region = NULL;
13886 /* ..., this directive becomes the parent for a new region. */
13887 if (region)
13888 parent = region;
13892 if (single_tree && !parent)
13893 return;
13895 for (son = first_dom_son (CDI_DOMINATORS, bb);
13896 son;
13897 son = next_dom_son (CDI_DOMINATORS, son))
13898 build_omp_regions_1 (son, parent, single_tree);
13901 /* Builds the tree of OMP regions rooted at ROOT, storing it to
13902 root_omp_region. */
13904 static void
13905 build_omp_regions_root (basic_block root)
13907 gcc_assert (root_omp_region == NULL);
13908 build_omp_regions_1 (root, NULL, true);
13909 gcc_assert (root_omp_region != NULL);
13912 /* Expands omp construct (and its subconstructs) starting in HEAD. */
13914 void
13915 omp_expand_local (basic_block head)
13917 build_omp_regions_root (head);
13918 if (dump_file && (dump_flags & TDF_DETAILS))
13920 fprintf (dump_file, "\nOMP region tree\n\n");
13921 dump_omp_region (dump_file, root_omp_region, 0);
13922 fprintf (dump_file, "\n");
13925 remove_exit_barriers (root_omp_region);
13926 expand_omp (root_omp_region);
13928 free_omp_regions ();
13931 /* Scan the CFG and build a tree of OMP regions. Return the root of
13932 the OMP region tree. */
13934 static void
13935 build_omp_regions (void)
13937 gcc_assert (root_omp_region == NULL);
13938 calculate_dominance_info (CDI_DOMINATORS);
13939 build_omp_regions_1 (ENTRY_BLOCK_PTR_FOR_FN (cfun), NULL, false);
13942 /* Main entry point for expanding OMP-GIMPLE into runtime calls. */
13944 static unsigned int
13945 execute_expand_omp (void)
13947 build_omp_regions ();
13949 if (!root_omp_region)
13950 return 0;
13952 if (dump_file)
13954 fprintf (dump_file, "\nOMP region tree\n\n");
13955 dump_omp_region (dump_file, root_omp_region, 0);
13956 fprintf (dump_file, "\n");
13959 remove_exit_barriers (root_omp_region);
13961 expand_omp (root_omp_region);
13963 if (flag_checking && !loops_state_satisfies_p (LOOPS_NEED_FIXUP))
13964 verify_loop_structure ();
13965 cleanup_tree_cfg ();
13967 free_omp_regions ();
13969 return 0;
13972 /* OMP expansion -- the default pass, run before creation of SSA form. */
13974 namespace {
13976 const pass_data pass_data_expand_omp =
13978 GIMPLE_PASS, /* type */
13979 "ompexp", /* name */
13980 OPTGROUP_NONE, /* optinfo_flags */
13981 TV_NONE, /* tv_id */
13982 PROP_gimple_any, /* properties_required */
13983 PROP_gimple_eomp, /* properties_provided */
13984 0, /* properties_destroyed */
13985 0, /* todo_flags_start */
13986 0, /* todo_flags_finish */
13989 class pass_expand_omp : public gimple_opt_pass
13991 public:
13992 pass_expand_omp (gcc::context *ctxt)
13993 : gimple_opt_pass (pass_data_expand_omp, ctxt)
13996 /* opt_pass methods: */
13997 virtual unsigned int execute (function *)
13999 bool gate = ((flag_cilkplus != 0 || flag_openacc != 0 || flag_openmp != 0
14000 || flag_openmp_simd != 0)
14001 && !seen_error ());
14003 /* This pass always runs, to provide PROP_gimple_eomp.
14004 But often, there is nothing to do. */
14005 if (!gate)
14006 return 0;
14008 return execute_expand_omp ();
14011 }; // class pass_expand_omp
14013 } // anon namespace
14015 gimple_opt_pass *
14016 make_pass_expand_omp (gcc::context *ctxt)
14018 return new pass_expand_omp (ctxt);
14021 namespace {
14023 const pass_data pass_data_expand_omp_ssa =
14025 GIMPLE_PASS, /* type */
14026 "ompexpssa", /* name */
14027 OPTGROUP_NONE, /* optinfo_flags */
14028 TV_NONE, /* tv_id */
14029 PROP_cfg | PROP_ssa, /* properties_required */
14030 PROP_gimple_eomp, /* properties_provided */
14031 0, /* properties_destroyed */
14032 0, /* todo_flags_start */
14033 TODO_cleanup_cfg | TODO_rebuild_alias, /* todo_flags_finish */
14036 class pass_expand_omp_ssa : public gimple_opt_pass
14038 public:
14039 pass_expand_omp_ssa (gcc::context *ctxt)
14040 : gimple_opt_pass (pass_data_expand_omp_ssa, ctxt)
14043 /* opt_pass methods: */
14044 virtual bool gate (function *fun)
14046 return !(fun->curr_properties & PROP_gimple_eomp);
14048 virtual unsigned int execute (function *) { return execute_expand_omp (); }
14049 opt_pass * clone () { return new pass_expand_omp_ssa (m_ctxt); }
14051 }; // class pass_expand_omp_ssa
14053 } // anon namespace
14055 gimple_opt_pass *
14056 make_pass_expand_omp_ssa (gcc::context *ctxt)
14058 return new pass_expand_omp_ssa (ctxt);
14061 /* Routines to lower OMP directives into OMP-GIMPLE. */
14063 /* If ctx is a worksharing context inside of a cancellable parallel
14064 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
14065 and conditional branch to parallel's cancel_label to handle
14066 cancellation in the implicit barrier. */
14068 static void
14069 maybe_add_implicit_barrier_cancel (omp_context *ctx, gimple_seq *body)
14071 gimple *omp_return = gimple_seq_last_stmt (*body);
14072 gcc_assert (gimple_code (omp_return) == GIMPLE_OMP_RETURN);
14073 if (gimple_omp_return_nowait_p (omp_return))
14074 return;
14075 if (ctx->outer
14076 && gimple_code (ctx->outer->stmt) == GIMPLE_OMP_PARALLEL
14077 && ctx->outer->cancellable)
14079 tree fndecl = builtin_decl_explicit (BUILT_IN_GOMP_CANCEL);
14080 tree c_bool_type = TREE_TYPE (TREE_TYPE (fndecl));
14081 tree lhs = create_tmp_var (c_bool_type);
14082 gimple_omp_return_set_lhs (omp_return, lhs);
14083 tree fallthru_label = create_artificial_label (UNKNOWN_LOCATION);
14084 gimple *g = gimple_build_cond (NE_EXPR, lhs,
14085 fold_convert (c_bool_type,
14086 boolean_false_node),
14087 ctx->outer->cancel_label, fallthru_label);
14088 gimple_seq_add_stmt (body, g);
14089 gimple_seq_add_stmt (body, gimple_build_label (fallthru_label));
14093 /* Lower the OpenMP sections directive in the current statement in GSI_P.
14094 CTX is the enclosing OMP context for the current statement. */
14096 static void
14097 lower_omp_sections (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14099 tree block, control;
14100 gimple_stmt_iterator tgsi;
14101 gomp_sections *stmt;
14102 gimple *t;
14103 gbind *new_stmt, *bind;
14104 gimple_seq ilist, dlist, olist, new_body;
14106 stmt = as_a <gomp_sections *> (gsi_stmt (*gsi_p));
14108 push_gimplify_context ();
14110 dlist = NULL;
14111 ilist = NULL;
14112 lower_rec_input_clauses (gimple_omp_sections_clauses (stmt),
14113 &ilist, &dlist, ctx, NULL);
14115 new_body = gimple_omp_body (stmt);
14116 gimple_omp_set_body (stmt, NULL);
14117 tgsi = gsi_start (new_body);
14118 for (; !gsi_end_p (tgsi); gsi_next (&tgsi))
14120 omp_context *sctx;
14121 gimple *sec_start;
14123 sec_start = gsi_stmt (tgsi);
14124 sctx = maybe_lookup_ctx (sec_start);
14125 gcc_assert (sctx);
14127 lower_omp (gimple_omp_body_ptr (sec_start), sctx);
14128 gsi_insert_seq_after (&tgsi, gimple_omp_body (sec_start),
14129 GSI_CONTINUE_LINKING);
14130 gimple_omp_set_body (sec_start, NULL);
14132 if (gsi_one_before_end_p (tgsi))
14134 gimple_seq l = NULL;
14135 lower_lastprivate_clauses (gimple_omp_sections_clauses (stmt), NULL,
14136 &l, ctx);
14137 gsi_insert_seq_after (&tgsi, l, GSI_CONTINUE_LINKING);
14138 gimple_omp_section_set_last (sec_start);
14141 gsi_insert_after (&tgsi, gimple_build_omp_return (false),
14142 GSI_CONTINUE_LINKING);
14145 block = make_node (BLOCK);
14146 bind = gimple_build_bind (NULL, new_body, block);
14148 olist = NULL;
14149 lower_reduction_clauses (gimple_omp_sections_clauses (stmt), &olist, ctx);
14151 block = make_node (BLOCK);
14152 new_stmt = gimple_build_bind (NULL, NULL, block);
14153 gsi_replace (gsi_p, new_stmt, true);
14155 pop_gimplify_context (new_stmt);
14156 gimple_bind_append_vars (new_stmt, ctx->block_vars);
14157 BLOCK_VARS (block) = gimple_bind_vars (bind);
14158 if (BLOCK_VARS (block))
14159 TREE_USED (block) = 1;
14161 new_body = NULL;
14162 gimple_seq_add_seq (&new_body, ilist);
14163 gimple_seq_add_stmt (&new_body, stmt);
14164 gimple_seq_add_stmt (&new_body, gimple_build_omp_sections_switch ());
14165 gimple_seq_add_stmt (&new_body, bind);
14167 control = create_tmp_var (unsigned_type_node, ".section");
14168 t = gimple_build_omp_continue (control, control);
14169 gimple_omp_sections_set_control (stmt, control);
14170 gimple_seq_add_stmt (&new_body, t);
14172 gimple_seq_add_seq (&new_body, olist);
14173 if (ctx->cancellable)
14174 gimple_seq_add_stmt (&new_body, gimple_build_label (ctx->cancel_label));
14175 gimple_seq_add_seq (&new_body, dlist);
14177 new_body = maybe_catch_exception (new_body);
14179 t = gimple_build_omp_return
14180 (!!find_omp_clause (gimple_omp_sections_clauses (stmt),
14181 OMP_CLAUSE_NOWAIT));
14182 gimple_seq_add_stmt (&new_body, t);
14183 maybe_add_implicit_barrier_cancel (ctx, &new_body);
14185 gimple_bind_set_body (new_stmt, new_body);
14189 /* A subroutine of lower_omp_single. Expand the simple form of
14190 a GIMPLE_OMP_SINGLE, without a copyprivate clause:
14192 if (GOMP_single_start ())
14193 BODY;
14194 [ GOMP_barrier (); ] -> unless 'nowait' is present.
14196 FIXME. It may be better to delay expanding the logic of this until
14197 pass_expand_omp. The expanded logic may make the job more difficult
14198 to a synchronization analysis pass. */
14200 static void
14201 lower_omp_single_simple (gomp_single *single_stmt, gimple_seq *pre_p)
14203 location_t loc = gimple_location (single_stmt);
14204 tree tlabel = create_artificial_label (loc);
14205 tree flabel = create_artificial_label (loc);
14206 gimple *call, *cond;
14207 tree lhs, decl;
14209 decl = builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_START);
14210 lhs = create_tmp_var (TREE_TYPE (TREE_TYPE (decl)));
14211 call = gimple_build_call (decl, 0);
14212 gimple_call_set_lhs (call, lhs);
14213 gimple_seq_add_stmt (pre_p, call);
14215 cond = gimple_build_cond (EQ_EXPR, lhs,
14216 fold_convert_loc (loc, TREE_TYPE (lhs),
14217 boolean_true_node),
14218 tlabel, flabel);
14219 gimple_seq_add_stmt (pre_p, cond);
14220 gimple_seq_add_stmt (pre_p, gimple_build_label (tlabel));
14221 gimple_seq_add_seq (pre_p, gimple_omp_body (single_stmt));
14222 gimple_seq_add_stmt (pre_p, gimple_build_label (flabel));
14226 /* A subroutine of lower_omp_single. Expand the simple form of
14227 a GIMPLE_OMP_SINGLE, with a copyprivate clause:
14229 #pragma omp single copyprivate (a, b, c)
14231 Create a new structure to hold copies of 'a', 'b' and 'c' and emit:
14234 if ((copyout_p = GOMP_single_copy_start ()) == NULL)
14236 BODY;
14237 copyout.a = a;
14238 copyout.b = b;
14239 copyout.c = c;
14240 GOMP_single_copy_end (&copyout);
14242 else
14244 a = copyout_p->a;
14245 b = copyout_p->b;
14246 c = copyout_p->c;
14248 GOMP_barrier ();
14251 FIXME. It may be better to delay expanding the logic of this until
14252 pass_expand_omp. The expanded logic may make the job more difficult
14253 to a synchronization analysis pass. */
14255 static void
14256 lower_omp_single_copy (gomp_single *single_stmt, gimple_seq *pre_p,
14257 omp_context *ctx)
14259 tree ptr_type, t, l0, l1, l2, bfn_decl;
14260 gimple_seq copyin_seq;
14261 location_t loc = gimple_location (single_stmt);
14263 ctx->sender_decl = create_tmp_var (ctx->record_type, ".omp_copy_o");
14265 ptr_type = build_pointer_type (ctx->record_type);
14266 ctx->receiver_decl = create_tmp_var (ptr_type, ".omp_copy_i");
14268 l0 = create_artificial_label (loc);
14269 l1 = create_artificial_label (loc);
14270 l2 = create_artificial_label (loc);
14272 bfn_decl = builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_COPY_START);
14273 t = build_call_expr_loc (loc, bfn_decl, 0);
14274 t = fold_convert_loc (loc, ptr_type, t);
14275 gimplify_assign (ctx->receiver_decl, t, pre_p);
14277 t = build2 (EQ_EXPR, boolean_type_node, ctx->receiver_decl,
14278 build_int_cst (ptr_type, 0));
14279 t = build3 (COND_EXPR, void_type_node, t,
14280 build_and_jump (&l0), build_and_jump (&l1));
14281 gimplify_and_add (t, pre_p);
14283 gimple_seq_add_stmt (pre_p, gimple_build_label (l0));
14285 gimple_seq_add_seq (pre_p, gimple_omp_body (single_stmt));
14287 copyin_seq = NULL;
14288 lower_copyprivate_clauses (gimple_omp_single_clauses (single_stmt), pre_p,
14289 &copyin_seq, ctx);
14291 t = build_fold_addr_expr_loc (loc, ctx->sender_decl);
14292 bfn_decl = builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_COPY_END);
14293 t = build_call_expr_loc (loc, bfn_decl, 1, t);
14294 gimplify_and_add (t, pre_p);
14296 t = build_and_jump (&l2);
14297 gimplify_and_add (t, pre_p);
14299 gimple_seq_add_stmt (pre_p, gimple_build_label (l1));
14301 gimple_seq_add_seq (pre_p, copyin_seq);
14303 gimple_seq_add_stmt (pre_p, gimple_build_label (l2));
14307 /* Expand code for an OpenMP single directive. */
14309 static void
14310 lower_omp_single (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14312 tree block;
14313 gimple *t;
14314 gomp_single *single_stmt = as_a <gomp_single *> (gsi_stmt (*gsi_p));
14315 gbind *bind;
14316 gimple_seq bind_body, bind_body_tail = NULL, dlist;
14318 push_gimplify_context ();
14320 block = make_node (BLOCK);
14321 bind = gimple_build_bind (NULL, NULL, block);
14322 gsi_replace (gsi_p, bind, true);
14323 bind_body = NULL;
14324 dlist = NULL;
14325 lower_rec_input_clauses (gimple_omp_single_clauses (single_stmt),
14326 &bind_body, &dlist, ctx, NULL);
14327 lower_omp (gimple_omp_body_ptr (single_stmt), ctx);
14329 gimple_seq_add_stmt (&bind_body, single_stmt);
14331 if (ctx->record_type)
14332 lower_omp_single_copy (single_stmt, &bind_body, ctx);
14333 else
14334 lower_omp_single_simple (single_stmt, &bind_body);
14336 gimple_omp_set_body (single_stmt, NULL);
14338 gimple_seq_add_seq (&bind_body, dlist);
14340 bind_body = maybe_catch_exception (bind_body);
14342 t = gimple_build_omp_return
14343 (!!find_omp_clause (gimple_omp_single_clauses (single_stmt),
14344 OMP_CLAUSE_NOWAIT));
14345 gimple_seq_add_stmt (&bind_body_tail, t);
14346 maybe_add_implicit_barrier_cancel (ctx, &bind_body_tail);
14347 if (ctx->record_type)
14349 gimple_stmt_iterator gsi = gsi_start (bind_body_tail);
14350 tree clobber = build_constructor (ctx->record_type, NULL);
14351 TREE_THIS_VOLATILE (clobber) = 1;
14352 gsi_insert_after (&gsi, gimple_build_assign (ctx->sender_decl,
14353 clobber), GSI_SAME_STMT);
14355 gimple_seq_add_seq (&bind_body, bind_body_tail);
14356 gimple_bind_set_body (bind, bind_body);
14358 pop_gimplify_context (bind);
14360 gimple_bind_append_vars (bind, ctx->block_vars);
14361 BLOCK_VARS (block) = ctx->block_vars;
14362 if (BLOCK_VARS (block))
14363 TREE_USED (block) = 1;
14367 /* Expand code for an OpenMP master directive. */
14369 static void
14370 lower_omp_master (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14372 tree block, lab = NULL, x, bfn_decl;
14373 gimple *stmt = gsi_stmt (*gsi_p);
14374 gbind *bind;
14375 location_t loc = gimple_location (stmt);
14376 gimple_seq tseq;
14378 push_gimplify_context ();
14380 block = make_node (BLOCK);
14381 bind = gimple_build_bind (NULL, NULL, block);
14382 gsi_replace (gsi_p, bind, true);
14383 gimple_bind_add_stmt (bind, stmt);
14385 bfn_decl = builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM);
14386 x = build_call_expr_loc (loc, bfn_decl, 0);
14387 x = build2 (EQ_EXPR, boolean_type_node, x, integer_zero_node);
14388 x = build3 (COND_EXPR, void_type_node, x, NULL, build_and_jump (&lab));
14389 tseq = NULL;
14390 gimplify_and_add (x, &tseq);
14391 gimple_bind_add_seq (bind, tseq);
14393 lower_omp (gimple_omp_body_ptr (stmt), ctx);
14394 gimple_omp_set_body (stmt, maybe_catch_exception (gimple_omp_body (stmt)));
14395 gimple_bind_add_seq (bind, gimple_omp_body (stmt));
14396 gimple_omp_set_body (stmt, NULL);
14398 gimple_bind_add_stmt (bind, gimple_build_label (lab));
14400 gimple_bind_add_stmt (bind, gimple_build_omp_return (true));
14402 pop_gimplify_context (bind);
14404 gimple_bind_append_vars (bind, ctx->block_vars);
14405 BLOCK_VARS (block) = ctx->block_vars;
14409 /* Expand code for an OpenMP taskgroup directive. */
14411 static void
14412 lower_omp_taskgroup (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14414 gimple *stmt = gsi_stmt (*gsi_p);
14415 gcall *x;
14416 gbind *bind;
14417 tree block = make_node (BLOCK);
14419 bind = gimple_build_bind (NULL, NULL, block);
14420 gsi_replace (gsi_p, bind, true);
14421 gimple_bind_add_stmt (bind, stmt);
14423 x = gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_TASKGROUP_START),
14425 gimple_bind_add_stmt (bind, x);
14427 lower_omp (gimple_omp_body_ptr (stmt), ctx);
14428 gimple_bind_add_seq (bind, gimple_omp_body (stmt));
14429 gimple_omp_set_body (stmt, NULL);
14431 gimple_bind_add_stmt (bind, gimple_build_omp_return (true));
14433 gimple_bind_append_vars (bind, ctx->block_vars);
14434 BLOCK_VARS (block) = ctx->block_vars;
14438 /* Fold the OMP_ORDERED_CLAUSES for the OMP_ORDERED in STMT if possible. */
14440 static void
14441 lower_omp_ordered_clauses (gimple_stmt_iterator *gsi_p, gomp_ordered *ord_stmt,
14442 omp_context *ctx)
14444 struct omp_for_data fd;
14445 if (!ctx->outer || gimple_code (ctx->outer->stmt) != GIMPLE_OMP_FOR)
14446 return;
14448 unsigned int len = gimple_omp_for_collapse (ctx->outer->stmt);
14449 struct omp_for_data_loop *loops = XALLOCAVEC (struct omp_for_data_loop, len);
14450 extract_omp_for_data (as_a <gomp_for *> (ctx->outer->stmt), &fd, loops);
14451 if (!fd.ordered)
14452 return;
14454 tree *list_p = gimple_omp_ordered_clauses_ptr (ord_stmt);
14455 tree c = gimple_omp_ordered_clauses (ord_stmt);
14456 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
14457 && OMP_CLAUSE_DEPEND_KIND (c) == OMP_CLAUSE_DEPEND_SINK)
14459 /* Merge depend clauses from multiple adjacent
14460 #pragma omp ordered depend(sink:...) constructs
14461 into one #pragma omp ordered depend(sink:...), so that
14462 we can optimize them together. */
14463 gimple_stmt_iterator gsi = *gsi_p;
14464 gsi_next (&gsi);
14465 while (!gsi_end_p (gsi))
14467 gimple *stmt = gsi_stmt (gsi);
14468 if (is_gimple_debug (stmt)
14469 || gimple_code (stmt) == GIMPLE_NOP)
14471 gsi_next (&gsi);
14472 continue;
14474 if (gimple_code (stmt) != GIMPLE_OMP_ORDERED)
14475 break;
14476 gomp_ordered *ord_stmt2 = as_a <gomp_ordered *> (stmt);
14477 c = gimple_omp_ordered_clauses (ord_stmt2);
14478 if (c == NULL_TREE
14479 || OMP_CLAUSE_CODE (c) != OMP_CLAUSE_DEPEND
14480 || OMP_CLAUSE_DEPEND_KIND (c) != OMP_CLAUSE_DEPEND_SINK)
14481 break;
14482 while (*list_p)
14483 list_p = &OMP_CLAUSE_CHAIN (*list_p);
14484 *list_p = c;
14485 gsi_remove (&gsi, true);
14489 /* Canonicalize sink dependence clauses into one folded clause if
14490 possible.
14492 The basic algorithm is to create a sink vector whose first
14493 element is the GCD of all the first elements, and whose remaining
14494 elements are the minimum of the subsequent columns.
14496 We ignore dependence vectors whose first element is zero because
14497 such dependencies are known to be executed by the same thread.
14499 We take into account the direction of the loop, so a minimum
14500 becomes a maximum if the loop is iterating forwards. We also
14501 ignore sink clauses where the loop direction is unknown, or where
14502 the offsets are clearly invalid because they are not a multiple
14503 of the loop increment.
14505 For example:
14507 #pragma omp for ordered(2)
14508 for (i=0; i < N; ++i)
14509 for (j=0; j < M; ++j)
14511 #pragma omp ordered \
14512 depend(sink:i-8,j-2) \
14513 depend(sink:i,j-1) \ // Completely ignored because i+0.
14514 depend(sink:i-4,j-3) \
14515 depend(sink:i-6,j-4)
14516 #pragma omp ordered depend(source)
14519 Folded clause is:
14521 depend(sink:-gcd(8,4,6),-min(2,3,4))
14522 -or-
14523 depend(sink:-2,-2)
14526 /* FIXME: Computing GCD's where the first element is zero is
14527 non-trivial in the presence of collapsed loops. Do this later. */
14528 if (fd.collapse > 1)
14529 return;
14531 wide_int *folded_deps = XALLOCAVEC (wide_int, 2 * len - 1);
14532 memset (folded_deps, 0, sizeof (*folded_deps) * (2 * len - 1));
14533 tree folded_dep = NULL_TREE;
14534 /* TRUE if the first dimension's offset is negative. */
14535 bool neg_offset_p = false;
14537 list_p = gimple_omp_ordered_clauses_ptr (ord_stmt);
14538 unsigned int i;
14539 while ((c = *list_p) != NULL)
14541 bool remove = false;
14543 gcc_assert (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND);
14544 if (OMP_CLAUSE_DEPEND_KIND (c) != OMP_CLAUSE_DEPEND_SINK)
14545 goto next_ordered_clause;
14547 tree vec;
14548 for (vec = OMP_CLAUSE_DECL (c), i = 0;
14549 vec && TREE_CODE (vec) == TREE_LIST;
14550 vec = TREE_CHAIN (vec), ++i)
14552 gcc_assert (i < len);
14554 /* extract_omp_for_data has canonicalized the condition. */
14555 gcc_assert (fd.loops[i].cond_code == LT_EXPR
14556 || fd.loops[i].cond_code == GT_EXPR);
14557 bool forward = fd.loops[i].cond_code == LT_EXPR;
14558 bool maybe_lexically_later = true;
14560 /* While the committee makes up its mind, bail if we have any
14561 non-constant steps. */
14562 if (TREE_CODE (fd.loops[i].step) != INTEGER_CST)
14563 goto lower_omp_ordered_ret;
14565 tree itype = TREE_TYPE (TREE_VALUE (vec));
14566 if (POINTER_TYPE_P (itype))
14567 itype = sizetype;
14568 wide_int offset = wide_int::from (TREE_PURPOSE (vec),
14569 TYPE_PRECISION (itype),
14570 TYPE_SIGN (itype));
14572 /* Ignore invalid offsets that are not multiples of the step. */
14573 if (!wi::multiple_of_p
14574 (wi::abs (offset), wi::abs ((wide_int) fd.loops[i].step),
14575 UNSIGNED))
14577 warning_at (OMP_CLAUSE_LOCATION (c), 0,
14578 "ignoring sink clause with offset that is not "
14579 "a multiple of the loop step");
14580 remove = true;
14581 goto next_ordered_clause;
14584 /* Calculate the first dimension. The first dimension of
14585 the folded dependency vector is the GCD of the first
14586 elements, while ignoring any first elements whose offset
14587 is 0. */
14588 if (i == 0)
14590 /* Ignore dependence vectors whose first dimension is 0. */
14591 if (offset == 0)
14593 remove = true;
14594 goto next_ordered_clause;
14596 else
14598 if (!TYPE_UNSIGNED (itype) && (forward ^ wi::neg_p (offset)))
14600 error_at (OMP_CLAUSE_LOCATION (c),
14601 "first offset must be in opposite direction "
14602 "of loop iterations");
14603 goto lower_omp_ordered_ret;
14605 if (forward)
14606 offset = -offset;
14607 neg_offset_p = forward;
14608 /* Initialize the first time around. */
14609 if (folded_dep == NULL_TREE)
14611 folded_dep = c;
14612 folded_deps[0] = offset;
14614 else
14615 folded_deps[0] = wi::gcd (folded_deps[0],
14616 offset, UNSIGNED);
14619 /* Calculate minimum for the remaining dimensions. */
14620 else
14622 folded_deps[len + i - 1] = offset;
14623 if (folded_dep == c)
14624 folded_deps[i] = offset;
14625 else if (maybe_lexically_later
14626 && !wi::eq_p (folded_deps[i], offset))
14628 if (forward ^ wi::gts_p (folded_deps[i], offset))
14630 unsigned int j;
14631 folded_dep = c;
14632 for (j = 1; j <= i; j++)
14633 folded_deps[j] = folded_deps[len + j - 1];
14635 else
14636 maybe_lexically_later = false;
14640 gcc_assert (i == len);
14642 remove = true;
14644 next_ordered_clause:
14645 if (remove)
14646 *list_p = OMP_CLAUSE_CHAIN (c);
14647 else
14648 list_p = &OMP_CLAUSE_CHAIN (c);
14651 if (folded_dep)
14653 if (neg_offset_p)
14654 folded_deps[0] = -folded_deps[0];
14656 tree itype = TREE_TYPE (TREE_VALUE (OMP_CLAUSE_DECL (folded_dep)));
14657 if (POINTER_TYPE_P (itype))
14658 itype = sizetype;
14660 TREE_PURPOSE (OMP_CLAUSE_DECL (folded_dep))
14661 = wide_int_to_tree (itype, folded_deps[0]);
14662 OMP_CLAUSE_CHAIN (folded_dep) = gimple_omp_ordered_clauses (ord_stmt);
14663 *gimple_omp_ordered_clauses_ptr (ord_stmt) = folded_dep;
14666 lower_omp_ordered_ret:
14668 /* Ordered without clauses is #pragma omp threads, while we want
14669 a nop instead if we remove all clauses. */
14670 if (gimple_omp_ordered_clauses (ord_stmt) == NULL_TREE)
14671 gsi_replace (gsi_p, gimple_build_nop (), true);
14675 /* Expand code for an OpenMP ordered directive. */
14677 static void
14678 lower_omp_ordered (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14680 tree block;
14681 gimple *stmt = gsi_stmt (*gsi_p);
14682 gomp_ordered *ord_stmt = as_a <gomp_ordered *> (stmt);
14683 gcall *x;
14684 gbind *bind;
14685 bool simd = find_omp_clause (gimple_omp_ordered_clauses (ord_stmt),
14686 OMP_CLAUSE_SIMD);
14687 bool threads = find_omp_clause (gimple_omp_ordered_clauses (ord_stmt),
14688 OMP_CLAUSE_THREADS);
14690 if (find_omp_clause (gimple_omp_ordered_clauses (ord_stmt),
14691 OMP_CLAUSE_DEPEND))
14693 /* FIXME: This is needs to be moved to the expansion to verify various
14694 conditions only testable on cfg with dominators computed, and also
14695 all the depend clauses to be merged still might need to be available
14696 for the runtime checks. */
14697 if (0)
14698 lower_omp_ordered_clauses (gsi_p, ord_stmt, ctx);
14699 return;
14702 push_gimplify_context ();
14704 block = make_node (BLOCK);
14705 bind = gimple_build_bind (NULL, NULL, block);
14706 gsi_replace (gsi_p, bind, true);
14707 gimple_bind_add_stmt (bind, stmt);
14709 if (simd)
14711 x = gimple_build_call_internal (IFN_GOMP_SIMD_ORDERED_START, 1,
14712 build_int_cst (NULL_TREE, threads));
14713 cfun->has_simduid_loops = true;
14715 else
14716 x = gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ORDERED_START),
14718 gimple_bind_add_stmt (bind, x);
14720 lower_omp (gimple_omp_body_ptr (stmt), ctx);
14721 gimple_omp_set_body (stmt, maybe_catch_exception (gimple_omp_body (stmt)));
14722 gimple_bind_add_seq (bind, gimple_omp_body (stmt));
14723 gimple_omp_set_body (stmt, NULL);
14725 if (simd)
14726 x = gimple_build_call_internal (IFN_GOMP_SIMD_ORDERED_END, 1,
14727 build_int_cst (NULL_TREE, threads));
14728 else
14729 x = gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ORDERED_END),
14731 gimple_bind_add_stmt (bind, x);
14733 gimple_bind_add_stmt (bind, gimple_build_omp_return (true));
14735 pop_gimplify_context (bind);
14737 gimple_bind_append_vars (bind, ctx->block_vars);
14738 BLOCK_VARS (block) = gimple_bind_vars (bind);
14742 /* Gimplify a GIMPLE_OMP_CRITICAL statement. This is a relatively simple
14743 substitution of a couple of function calls. But in the NAMED case,
14744 requires that languages coordinate a symbol name. It is therefore
14745 best put here in common code. */
14747 static GTY(()) hash_map<tree, tree> *critical_name_mutexes;
14749 static void
14750 lower_omp_critical (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14752 tree block;
14753 tree name, lock, unlock;
14754 gomp_critical *stmt = as_a <gomp_critical *> (gsi_stmt (*gsi_p));
14755 gbind *bind;
14756 location_t loc = gimple_location (stmt);
14757 gimple_seq tbody;
14759 name = gimple_omp_critical_name (stmt);
14760 if (name)
14762 tree decl;
14764 if (!critical_name_mutexes)
14765 critical_name_mutexes = hash_map<tree, tree>::create_ggc (10);
14767 tree *n = critical_name_mutexes->get (name);
14768 if (n == NULL)
14770 char *new_str;
14772 decl = create_tmp_var_raw (ptr_type_node);
14774 new_str = ACONCAT ((".gomp_critical_user_",
14775 IDENTIFIER_POINTER (name), NULL));
14776 DECL_NAME (decl) = get_identifier (new_str);
14777 TREE_PUBLIC (decl) = 1;
14778 TREE_STATIC (decl) = 1;
14779 DECL_COMMON (decl) = 1;
14780 DECL_ARTIFICIAL (decl) = 1;
14781 DECL_IGNORED_P (decl) = 1;
14783 varpool_node::finalize_decl (decl);
14785 critical_name_mutexes->put (name, decl);
14787 else
14788 decl = *n;
14790 /* If '#pragma omp critical' is inside offloaded region or
14791 inside function marked as offloadable, the symbol must be
14792 marked as offloadable too. */
14793 omp_context *octx;
14794 if (cgraph_node::get (current_function_decl)->offloadable)
14795 varpool_node::get_create (decl)->offloadable = 1;
14796 else
14797 for (octx = ctx->outer; octx; octx = octx->outer)
14798 if (is_gimple_omp_offloaded (octx->stmt))
14800 varpool_node::get_create (decl)->offloadable = 1;
14801 break;
14804 lock = builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_NAME_START);
14805 lock = build_call_expr_loc (loc, lock, 1, build_fold_addr_expr_loc (loc, decl));
14807 unlock = builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_NAME_END);
14808 unlock = build_call_expr_loc (loc, unlock, 1,
14809 build_fold_addr_expr_loc (loc, decl));
14811 else
14813 lock = builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_START);
14814 lock = build_call_expr_loc (loc, lock, 0);
14816 unlock = builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_END);
14817 unlock = build_call_expr_loc (loc, unlock, 0);
14820 push_gimplify_context ();
14822 block = make_node (BLOCK);
14823 bind = gimple_build_bind (NULL, NULL, block);
14824 gsi_replace (gsi_p, bind, true);
14825 gimple_bind_add_stmt (bind, stmt);
14827 tbody = gimple_bind_body (bind);
14828 gimplify_and_add (lock, &tbody);
14829 gimple_bind_set_body (bind, tbody);
14831 lower_omp (gimple_omp_body_ptr (stmt), ctx);
14832 gimple_omp_set_body (stmt, maybe_catch_exception (gimple_omp_body (stmt)));
14833 gimple_bind_add_seq (bind, gimple_omp_body (stmt));
14834 gimple_omp_set_body (stmt, NULL);
14836 tbody = gimple_bind_body (bind);
14837 gimplify_and_add (unlock, &tbody);
14838 gimple_bind_set_body (bind, tbody);
14840 gimple_bind_add_stmt (bind, gimple_build_omp_return (true));
14842 pop_gimplify_context (bind);
14843 gimple_bind_append_vars (bind, ctx->block_vars);
14844 BLOCK_VARS (block) = gimple_bind_vars (bind);
14848 /* A subroutine of lower_omp_for. Generate code to emit the predicate
14849 for a lastprivate clause. Given a loop control predicate of (V
14850 cond N2), we gate the clause on (!(V cond N2)). The lowered form
14851 is appended to *DLIST, iterator initialization is appended to
14852 *BODY_P. */
14854 static void
14855 lower_omp_for_lastprivate (struct omp_for_data *fd, gimple_seq *body_p,
14856 gimple_seq *dlist, struct omp_context *ctx)
14858 tree clauses, cond, vinit;
14859 enum tree_code cond_code;
14860 gimple_seq stmts;
14862 cond_code = fd->loop.cond_code;
14863 cond_code = cond_code == LT_EXPR ? GE_EXPR : LE_EXPR;
14865 /* When possible, use a strict equality expression. This can let VRP
14866 type optimizations deduce the value and remove a copy. */
14867 if (tree_fits_shwi_p (fd->loop.step))
14869 HOST_WIDE_INT step = tree_to_shwi (fd->loop.step);
14870 if (step == 1 || step == -1)
14871 cond_code = EQ_EXPR;
14874 tree n2 = fd->loop.n2;
14875 if (fd->collapse > 1
14876 && TREE_CODE (n2) != INTEGER_CST
14877 && gimple_omp_for_combined_into_p (fd->for_stmt))
14879 struct omp_context *taskreg_ctx = NULL;
14880 if (gimple_code (ctx->outer->stmt) == GIMPLE_OMP_FOR)
14882 gomp_for *gfor = as_a <gomp_for *> (ctx->outer->stmt);
14883 if (gimple_omp_for_kind (gfor) == GF_OMP_FOR_KIND_FOR
14884 || gimple_omp_for_kind (gfor) == GF_OMP_FOR_KIND_DISTRIBUTE)
14886 if (gimple_omp_for_combined_into_p (gfor))
14888 gcc_assert (ctx->outer->outer
14889 && is_parallel_ctx (ctx->outer->outer));
14890 taskreg_ctx = ctx->outer->outer;
14892 else
14894 struct omp_for_data outer_fd;
14895 extract_omp_for_data (gfor, &outer_fd, NULL);
14896 n2 = fold_convert (TREE_TYPE (n2), outer_fd.loop.n2);
14899 else if (gimple_omp_for_kind (gfor) == GF_OMP_FOR_KIND_TASKLOOP)
14900 taskreg_ctx = ctx->outer->outer;
14902 else if (is_taskreg_ctx (ctx->outer))
14903 taskreg_ctx = ctx->outer;
14904 if (taskreg_ctx)
14906 int i;
14907 tree innerc
14908 = find_omp_clause (gimple_omp_taskreg_clauses (taskreg_ctx->stmt),
14909 OMP_CLAUSE__LOOPTEMP_);
14910 gcc_assert (innerc);
14911 for (i = 0; i < fd->collapse; i++)
14913 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
14914 OMP_CLAUSE__LOOPTEMP_);
14915 gcc_assert (innerc);
14917 innerc = find_omp_clause (OMP_CLAUSE_CHAIN (innerc),
14918 OMP_CLAUSE__LOOPTEMP_);
14919 if (innerc)
14920 n2 = fold_convert (TREE_TYPE (n2),
14921 lookup_decl (OMP_CLAUSE_DECL (innerc),
14922 taskreg_ctx));
14925 cond = build2 (cond_code, boolean_type_node, fd->loop.v, n2);
14927 clauses = gimple_omp_for_clauses (fd->for_stmt);
14928 stmts = NULL;
14929 lower_lastprivate_clauses (clauses, cond, &stmts, ctx);
14930 if (!gimple_seq_empty_p (stmts))
14932 gimple_seq_add_seq (&stmts, *dlist);
14933 *dlist = stmts;
14935 /* Optimize: v = 0; is usually cheaper than v = some_other_constant. */
14936 vinit = fd->loop.n1;
14937 if (cond_code == EQ_EXPR
14938 && tree_fits_shwi_p (fd->loop.n2)
14939 && ! integer_zerop (fd->loop.n2))
14940 vinit = build_int_cst (TREE_TYPE (fd->loop.v), 0);
14941 else
14942 vinit = unshare_expr (vinit);
14944 /* Initialize the iterator variable, so that threads that don't execute
14945 any iterations don't execute the lastprivate clauses by accident. */
14946 gimplify_assign (fd->loop.v, vinit, body_p);
14951 /* Lower code for an OMP loop directive. */
14953 static void
14954 lower_omp_for (gimple_stmt_iterator *gsi_p, omp_context *ctx)
14956 tree *rhs_p, block;
14957 struct omp_for_data fd, *fdp = NULL;
14958 gomp_for *stmt = as_a <gomp_for *> (gsi_stmt (*gsi_p));
14959 gbind *new_stmt;
14960 gimple_seq omp_for_body, body, dlist;
14961 gimple_seq oacc_head = NULL, oacc_tail = NULL;
14962 size_t i;
14964 push_gimplify_context ();
14966 lower_omp (gimple_omp_for_pre_body_ptr (stmt), ctx);
14968 block = make_node (BLOCK);
14969 new_stmt = gimple_build_bind (NULL, NULL, block);
14970 /* Replace at gsi right away, so that 'stmt' is no member
14971 of a sequence anymore as we're going to add to a different
14972 one below. */
14973 gsi_replace (gsi_p, new_stmt, true);
14975 /* Move declaration of temporaries in the loop body before we make
14976 it go away. */
14977 omp_for_body = gimple_omp_body (stmt);
14978 if (!gimple_seq_empty_p (omp_for_body)
14979 && gimple_code (gimple_seq_first_stmt (omp_for_body)) == GIMPLE_BIND)
14981 gbind *inner_bind
14982 = as_a <gbind *> (gimple_seq_first_stmt (omp_for_body));
14983 tree vars = gimple_bind_vars (inner_bind);
14984 gimple_bind_append_vars (new_stmt, vars);
14985 /* bind_vars/BLOCK_VARS are being moved to new_stmt/block, don't
14986 keep them on the inner_bind and it's block. */
14987 gimple_bind_set_vars (inner_bind, NULL_TREE);
14988 if (gimple_bind_block (inner_bind))
14989 BLOCK_VARS (gimple_bind_block (inner_bind)) = NULL_TREE;
14992 if (gimple_omp_for_combined_into_p (stmt))
14994 extract_omp_for_data (stmt, &fd, NULL);
14995 fdp = &fd;
14997 /* We need two temporaries with fd.loop.v type (istart/iend)
14998 and then (fd.collapse - 1) temporaries with the same
14999 type for count2 ... countN-1 vars if not constant. */
15000 size_t count = 2;
15001 tree type = fd.iter_type;
15002 if (fd.collapse > 1
15003 && TREE_CODE (fd.loop.n2) != INTEGER_CST)
15004 count += fd.collapse - 1;
15005 bool taskreg_for
15006 = (gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_FOR
15007 || gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_TASKLOOP);
15008 tree outerc = NULL, *pc = gimple_omp_for_clauses_ptr (stmt);
15009 tree clauses = *pc;
15010 if (taskreg_for)
15011 outerc
15012 = find_omp_clause (gimple_omp_taskreg_clauses (ctx->outer->stmt),
15013 OMP_CLAUSE__LOOPTEMP_);
15014 for (i = 0; i < count; i++)
15016 tree temp;
15017 if (taskreg_for)
15019 gcc_assert (outerc);
15020 temp = lookup_decl (OMP_CLAUSE_DECL (outerc), ctx->outer);
15021 outerc = find_omp_clause (OMP_CLAUSE_CHAIN (outerc),
15022 OMP_CLAUSE__LOOPTEMP_);
15024 else
15026 temp = create_tmp_var (type);
15027 insert_decl_map (&ctx->outer->cb, temp, temp);
15029 *pc = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE__LOOPTEMP_);
15030 OMP_CLAUSE_DECL (*pc) = temp;
15031 pc = &OMP_CLAUSE_CHAIN (*pc);
15033 *pc = clauses;
15036 /* The pre-body and input clauses go before the lowered GIMPLE_OMP_FOR. */
15037 dlist = NULL;
15038 body = NULL;
15039 lower_rec_input_clauses (gimple_omp_for_clauses (stmt), &body, &dlist, ctx,
15040 fdp);
15041 gimple_seq_add_seq (&body, gimple_omp_for_pre_body (stmt));
15043 lower_omp (gimple_omp_body_ptr (stmt), ctx);
15045 /* Lower the header expressions. At this point, we can assume that
15046 the header is of the form:
15048 #pragma omp for (V = VAL1; V {<|>|<=|>=} VAL2; V = V [+-] VAL3)
15050 We just need to make sure that VAL1, VAL2 and VAL3 are lowered
15051 using the .omp_data_s mapping, if needed. */
15052 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
15054 rhs_p = gimple_omp_for_initial_ptr (stmt, i);
15055 if (!is_gimple_min_invariant (*rhs_p))
15056 *rhs_p = get_formal_tmp_var (*rhs_p, &body);
15058 rhs_p = gimple_omp_for_final_ptr (stmt, i);
15059 if (!is_gimple_min_invariant (*rhs_p))
15060 *rhs_p = get_formal_tmp_var (*rhs_p, &body);
15062 rhs_p = &TREE_OPERAND (gimple_omp_for_incr (stmt, i), 1);
15063 if (!is_gimple_min_invariant (*rhs_p))
15064 *rhs_p = get_formal_tmp_var (*rhs_p, &body);
15067 /* Once lowered, extract the bounds and clauses. */
15068 extract_omp_for_data (stmt, &fd, NULL);
15070 if (is_gimple_omp_oacc (ctx->stmt)
15071 && !ctx_in_oacc_kernels_region (ctx))
15072 lower_oacc_head_tail (gimple_location (stmt),
15073 gimple_omp_for_clauses (stmt),
15074 &oacc_head, &oacc_tail, ctx);
15076 /* Add OpenACC partitioning and reduction markers just before the loop */
15077 if (oacc_head)
15078 gimple_seq_add_seq (&body, oacc_head);
15080 lower_omp_for_lastprivate (&fd, &body, &dlist, ctx);
15082 if (gimple_omp_for_kind (stmt) == GF_OMP_FOR_KIND_FOR)
15083 for (tree c = gimple_omp_for_clauses (stmt); c; c = OMP_CLAUSE_CHAIN (c))
15084 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LINEAR
15085 && !OMP_CLAUSE_LINEAR_NO_COPYIN (c))
15087 OMP_CLAUSE_DECL (c) = lookup_decl (OMP_CLAUSE_DECL (c), ctx);
15088 if (DECL_P (OMP_CLAUSE_LINEAR_STEP (c)))
15089 OMP_CLAUSE_LINEAR_STEP (c)
15090 = maybe_lookup_decl_in_outer_ctx (OMP_CLAUSE_LINEAR_STEP (c),
15091 ctx);
15094 if (!gimple_omp_for_grid_phony (stmt))
15095 gimple_seq_add_stmt (&body, stmt);
15096 gimple_seq_add_seq (&body, gimple_omp_body (stmt));
15098 if (!gimple_omp_for_grid_phony (stmt))
15099 gimple_seq_add_stmt (&body, gimple_build_omp_continue (fd.loop.v,
15100 fd.loop.v));
15102 /* After the loop, add exit clauses. */
15103 lower_reduction_clauses (gimple_omp_for_clauses (stmt), &body, ctx);
15105 if (ctx->cancellable)
15106 gimple_seq_add_stmt (&body, gimple_build_label (ctx->cancel_label));
15108 gimple_seq_add_seq (&body, dlist);
15110 body = maybe_catch_exception (body);
15112 if (!gimple_omp_for_grid_phony (stmt))
15114 /* Region exit marker goes at the end of the loop body. */
15115 gimple_seq_add_stmt (&body, gimple_build_omp_return (fd.have_nowait));
15116 maybe_add_implicit_barrier_cancel (ctx, &body);
15119 /* Add OpenACC joining and reduction markers just after the loop. */
15120 if (oacc_tail)
15121 gimple_seq_add_seq (&body, oacc_tail);
15123 pop_gimplify_context (new_stmt);
15125 gimple_bind_append_vars (new_stmt, ctx->block_vars);
15126 BLOCK_VARS (block) = gimple_bind_vars (new_stmt);
15127 if (BLOCK_VARS (block))
15128 TREE_USED (block) = 1;
15130 gimple_bind_set_body (new_stmt, body);
15131 gimple_omp_set_body (stmt, NULL);
15132 gimple_omp_for_set_pre_body (stmt, NULL);
15135 /* Callback for walk_stmts. Check if the current statement only contains
15136 GIMPLE_OMP_FOR or GIMPLE_OMP_SECTIONS. */
15138 static tree
15139 check_combined_parallel (gimple_stmt_iterator *gsi_p,
15140 bool *handled_ops_p,
15141 struct walk_stmt_info *wi)
15143 int *info = (int *) wi->info;
15144 gimple *stmt = gsi_stmt (*gsi_p);
15146 *handled_ops_p = true;
15147 switch (gimple_code (stmt))
15149 WALK_SUBSTMTS;
15151 case GIMPLE_OMP_FOR:
15152 case GIMPLE_OMP_SECTIONS:
15153 *info = *info == 0 ? 1 : -1;
15154 break;
15155 default:
15156 *info = -1;
15157 break;
15159 return NULL;
15162 struct omp_taskcopy_context
15164 /* This field must be at the beginning, as we do "inheritance": Some
15165 callback functions for tree-inline.c (e.g., omp_copy_decl)
15166 receive a copy_body_data pointer that is up-casted to an
15167 omp_context pointer. */
15168 copy_body_data cb;
15169 omp_context *ctx;
15172 static tree
15173 task_copyfn_copy_decl (tree var, copy_body_data *cb)
15175 struct omp_taskcopy_context *tcctx = (struct omp_taskcopy_context *) cb;
15177 if (splay_tree_lookup (tcctx->ctx->sfield_map, (splay_tree_key) var))
15178 return create_tmp_var (TREE_TYPE (var));
15180 return var;
15183 static tree
15184 task_copyfn_remap_type (struct omp_taskcopy_context *tcctx, tree orig_type)
15186 tree name, new_fields = NULL, type, f;
15188 type = lang_hooks.types.make_type (RECORD_TYPE);
15189 name = DECL_NAME (TYPE_NAME (orig_type));
15190 name = build_decl (gimple_location (tcctx->ctx->stmt),
15191 TYPE_DECL, name, type);
15192 TYPE_NAME (type) = name;
15194 for (f = TYPE_FIELDS (orig_type); f ; f = TREE_CHAIN (f))
15196 tree new_f = copy_node (f);
15197 DECL_CONTEXT (new_f) = type;
15198 TREE_TYPE (new_f) = remap_type (TREE_TYPE (f), &tcctx->cb);
15199 TREE_CHAIN (new_f) = new_fields;
15200 walk_tree (&DECL_SIZE (new_f), copy_tree_body_r, &tcctx->cb, NULL);
15201 walk_tree (&DECL_SIZE_UNIT (new_f), copy_tree_body_r, &tcctx->cb, NULL);
15202 walk_tree (&DECL_FIELD_OFFSET (new_f), copy_tree_body_r,
15203 &tcctx->cb, NULL);
15204 new_fields = new_f;
15205 tcctx->cb.decl_map->put (f, new_f);
15207 TYPE_FIELDS (type) = nreverse (new_fields);
15208 layout_type (type);
15209 return type;
15212 /* Create task copyfn. */
15214 static void
15215 create_task_copyfn (gomp_task *task_stmt, omp_context *ctx)
15217 struct function *child_cfun;
15218 tree child_fn, t, c, src, dst, f, sf, arg, sarg, decl;
15219 tree record_type, srecord_type, bind, list;
15220 bool record_needs_remap = false, srecord_needs_remap = false;
15221 splay_tree_node n;
15222 struct omp_taskcopy_context tcctx;
15223 location_t loc = gimple_location (task_stmt);
15225 child_fn = gimple_omp_task_copy_fn (task_stmt);
15226 child_cfun = DECL_STRUCT_FUNCTION (child_fn);
15227 gcc_assert (child_cfun->cfg == NULL);
15228 DECL_SAVED_TREE (child_fn) = alloc_stmt_list ();
15230 /* Reset DECL_CONTEXT on function arguments. */
15231 for (t = DECL_ARGUMENTS (child_fn); t; t = DECL_CHAIN (t))
15232 DECL_CONTEXT (t) = child_fn;
15234 /* Populate the function. */
15235 push_gimplify_context ();
15236 push_cfun (child_cfun);
15238 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
15239 TREE_SIDE_EFFECTS (bind) = 1;
15240 list = NULL;
15241 DECL_SAVED_TREE (child_fn) = bind;
15242 DECL_SOURCE_LOCATION (child_fn) = gimple_location (task_stmt);
15244 /* Remap src and dst argument types if needed. */
15245 record_type = ctx->record_type;
15246 srecord_type = ctx->srecord_type;
15247 for (f = TYPE_FIELDS (record_type); f ; f = DECL_CHAIN (f))
15248 if (variably_modified_type_p (TREE_TYPE (f), ctx->cb.src_fn))
15250 record_needs_remap = true;
15251 break;
15253 for (f = TYPE_FIELDS (srecord_type); f ; f = DECL_CHAIN (f))
15254 if (variably_modified_type_p (TREE_TYPE (f), ctx->cb.src_fn))
15256 srecord_needs_remap = true;
15257 break;
15260 if (record_needs_remap || srecord_needs_remap)
15262 memset (&tcctx, '\0', sizeof (tcctx));
15263 tcctx.cb.src_fn = ctx->cb.src_fn;
15264 tcctx.cb.dst_fn = child_fn;
15265 tcctx.cb.src_node = cgraph_node::get (tcctx.cb.src_fn);
15266 gcc_checking_assert (tcctx.cb.src_node);
15267 tcctx.cb.dst_node = tcctx.cb.src_node;
15268 tcctx.cb.src_cfun = ctx->cb.src_cfun;
15269 tcctx.cb.copy_decl = task_copyfn_copy_decl;
15270 tcctx.cb.eh_lp_nr = 0;
15271 tcctx.cb.transform_call_graph_edges = CB_CGE_MOVE;
15272 tcctx.cb.decl_map = new hash_map<tree, tree>;
15273 tcctx.ctx = ctx;
15275 if (record_needs_remap)
15276 record_type = task_copyfn_remap_type (&tcctx, record_type);
15277 if (srecord_needs_remap)
15278 srecord_type = task_copyfn_remap_type (&tcctx, srecord_type);
15280 else
15281 tcctx.cb.decl_map = NULL;
15283 arg = DECL_ARGUMENTS (child_fn);
15284 TREE_TYPE (arg) = build_pointer_type (record_type);
15285 sarg = DECL_CHAIN (arg);
15286 TREE_TYPE (sarg) = build_pointer_type (srecord_type);
15288 /* First pass: initialize temporaries used in record_type and srecord_type
15289 sizes and field offsets. */
15290 if (tcctx.cb.decl_map)
15291 for (c = gimple_omp_task_clauses (task_stmt); c; c = OMP_CLAUSE_CHAIN (c))
15292 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
15294 tree *p;
15296 decl = OMP_CLAUSE_DECL (c);
15297 p = tcctx.cb.decl_map->get (decl);
15298 if (p == NULL)
15299 continue;
15300 n = splay_tree_lookup (ctx->sfield_map, (splay_tree_key) decl);
15301 sf = (tree) n->value;
15302 sf = *tcctx.cb.decl_map->get (sf);
15303 src = build_simple_mem_ref_loc (loc, sarg);
15304 src = omp_build_component_ref (src, sf);
15305 t = build2 (MODIFY_EXPR, TREE_TYPE (*p), *p, src);
15306 append_to_statement_list (t, &list);
15309 /* Second pass: copy shared var pointers and copy construct non-VLA
15310 firstprivate vars. */
15311 for (c = gimple_omp_task_clauses (task_stmt); c; c = OMP_CLAUSE_CHAIN (c))
15312 switch (OMP_CLAUSE_CODE (c))
15314 splay_tree_key key;
15315 case OMP_CLAUSE_SHARED:
15316 decl = OMP_CLAUSE_DECL (c);
15317 key = (splay_tree_key) decl;
15318 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c))
15319 key = (splay_tree_key) &DECL_UID (decl);
15320 n = splay_tree_lookup (ctx->field_map, key);
15321 if (n == NULL)
15322 break;
15323 f = (tree) n->value;
15324 if (tcctx.cb.decl_map)
15325 f = *tcctx.cb.decl_map->get (f);
15326 n = splay_tree_lookup (ctx->sfield_map, key);
15327 sf = (tree) n->value;
15328 if (tcctx.cb.decl_map)
15329 sf = *tcctx.cb.decl_map->get (sf);
15330 src = build_simple_mem_ref_loc (loc, sarg);
15331 src = omp_build_component_ref (src, sf);
15332 dst = build_simple_mem_ref_loc (loc, arg);
15333 dst = omp_build_component_ref (dst, f);
15334 t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
15335 append_to_statement_list (t, &list);
15336 break;
15337 case OMP_CLAUSE_FIRSTPRIVATE:
15338 decl = OMP_CLAUSE_DECL (c);
15339 if (is_variable_sized (decl))
15340 break;
15341 n = splay_tree_lookup (ctx->field_map, (splay_tree_key) decl);
15342 if (n == NULL)
15343 break;
15344 f = (tree) n->value;
15345 if (tcctx.cb.decl_map)
15346 f = *tcctx.cb.decl_map->get (f);
15347 n = splay_tree_lookup (ctx->sfield_map, (splay_tree_key) decl);
15348 if (n != NULL)
15350 sf = (tree) n->value;
15351 if (tcctx.cb.decl_map)
15352 sf = *tcctx.cb.decl_map->get (sf);
15353 src = build_simple_mem_ref_loc (loc, sarg);
15354 src = omp_build_component_ref (src, sf);
15355 if (use_pointer_for_field (decl, NULL) || is_reference (decl))
15356 src = build_simple_mem_ref_loc (loc, src);
15358 else
15359 src = decl;
15360 dst = build_simple_mem_ref_loc (loc, arg);
15361 dst = omp_build_component_ref (dst, f);
15362 t = lang_hooks.decls.omp_clause_copy_ctor (c, dst, src);
15363 append_to_statement_list (t, &list);
15364 break;
15365 case OMP_CLAUSE_PRIVATE:
15366 if (! OMP_CLAUSE_PRIVATE_OUTER_REF (c))
15367 break;
15368 decl = OMP_CLAUSE_DECL (c);
15369 n = splay_tree_lookup (ctx->field_map, (splay_tree_key) decl);
15370 f = (tree) n->value;
15371 if (tcctx.cb.decl_map)
15372 f = *tcctx.cb.decl_map->get (f);
15373 n = splay_tree_lookup (ctx->sfield_map, (splay_tree_key) decl);
15374 if (n != NULL)
15376 sf = (tree) n->value;
15377 if (tcctx.cb.decl_map)
15378 sf = *tcctx.cb.decl_map->get (sf);
15379 src = build_simple_mem_ref_loc (loc, sarg);
15380 src = omp_build_component_ref (src, sf);
15381 if (use_pointer_for_field (decl, NULL))
15382 src = build_simple_mem_ref_loc (loc, src);
15384 else
15385 src = decl;
15386 dst = build_simple_mem_ref_loc (loc, arg);
15387 dst = omp_build_component_ref (dst, f);
15388 t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
15389 append_to_statement_list (t, &list);
15390 break;
15391 default:
15392 break;
15395 /* Last pass: handle VLA firstprivates. */
15396 if (tcctx.cb.decl_map)
15397 for (c = gimple_omp_task_clauses (task_stmt); c; c = OMP_CLAUSE_CHAIN (c))
15398 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
15400 tree ind, ptr, df;
15402 decl = OMP_CLAUSE_DECL (c);
15403 if (!is_variable_sized (decl))
15404 continue;
15405 n = splay_tree_lookup (ctx->field_map, (splay_tree_key) decl);
15406 if (n == NULL)
15407 continue;
15408 f = (tree) n->value;
15409 f = *tcctx.cb.decl_map->get (f);
15410 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl));
15411 ind = DECL_VALUE_EXPR (decl);
15412 gcc_assert (TREE_CODE (ind) == INDIRECT_REF);
15413 gcc_assert (DECL_P (TREE_OPERAND (ind, 0)));
15414 n = splay_tree_lookup (ctx->sfield_map,
15415 (splay_tree_key) TREE_OPERAND (ind, 0));
15416 sf = (tree) n->value;
15417 sf = *tcctx.cb.decl_map->get (sf);
15418 src = build_simple_mem_ref_loc (loc, sarg);
15419 src = omp_build_component_ref (src, sf);
15420 src = build_simple_mem_ref_loc (loc, src);
15421 dst = build_simple_mem_ref_loc (loc, arg);
15422 dst = omp_build_component_ref (dst, f);
15423 t = lang_hooks.decls.omp_clause_copy_ctor (c, dst, src);
15424 append_to_statement_list (t, &list);
15425 n = splay_tree_lookup (ctx->field_map,
15426 (splay_tree_key) TREE_OPERAND (ind, 0));
15427 df = (tree) n->value;
15428 df = *tcctx.cb.decl_map->get (df);
15429 ptr = build_simple_mem_ref_loc (loc, arg);
15430 ptr = omp_build_component_ref (ptr, df);
15431 t = build2 (MODIFY_EXPR, TREE_TYPE (ptr), ptr,
15432 build_fold_addr_expr_loc (loc, dst));
15433 append_to_statement_list (t, &list);
15436 t = build1 (RETURN_EXPR, void_type_node, NULL);
15437 append_to_statement_list (t, &list);
15439 if (tcctx.cb.decl_map)
15440 delete tcctx.cb.decl_map;
15441 pop_gimplify_context (NULL);
15442 BIND_EXPR_BODY (bind) = list;
15443 pop_cfun ();
15446 static void
15447 lower_depend_clauses (tree *pclauses, gimple_seq *iseq, gimple_seq *oseq)
15449 tree c, clauses;
15450 gimple *g;
15451 size_t n_in = 0, n_out = 0, idx = 2, i;
15453 clauses = find_omp_clause (*pclauses, OMP_CLAUSE_DEPEND);
15454 gcc_assert (clauses);
15455 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
15456 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND)
15457 switch (OMP_CLAUSE_DEPEND_KIND (c))
15459 case OMP_CLAUSE_DEPEND_IN:
15460 n_in++;
15461 break;
15462 case OMP_CLAUSE_DEPEND_OUT:
15463 case OMP_CLAUSE_DEPEND_INOUT:
15464 n_out++;
15465 break;
15466 case OMP_CLAUSE_DEPEND_SOURCE:
15467 case OMP_CLAUSE_DEPEND_SINK:
15468 /* FALLTHRU */
15469 default:
15470 gcc_unreachable ();
15472 tree type = build_array_type_nelts (ptr_type_node, n_in + n_out + 2);
15473 tree array = create_tmp_var (type);
15474 TREE_ADDRESSABLE (array) = 1;
15475 tree r = build4 (ARRAY_REF, ptr_type_node, array, size_int (0), NULL_TREE,
15476 NULL_TREE);
15477 g = gimple_build_assign (r, build_int_cst (ptr_type_node, n_in + n_out));
15478 gimple_seq_add_stmt (iseq, g);
15479 r = build4 (ARRAY_REF, ptr_type_node, array, size_int (1), NULL_TREE,
15480 NULL_TREE);
15481 g = gimple_build_assign (r, build_int_cst (ptr_type_node, n_out));
15482 gimple_seq_add_stmt (iseq, g);
15483 for (i = 0; i < 2; i++)
15485 if ((i ? n_in : n_out) == 0)
15486 continue;
15487 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
15488 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_DEPEND
15489 && ((OMP_CLAUSE_DEPEND_KIND (c) != OMP_CLAUSE_DEPEND_IN) ^ i))
15491 tree t = OMP_CLAUSE_DECL (c);
15492 t = fold_convert (ptr_type_node, t);
15493 gimplify_expr (&t, iseq, NULL, is_gimple_val, fb_rvalue);
15494 r = build4 (ARRAY_REF, ptr_type_node, array, size_int (idx++),
15495 NULL_TREE, NULL_TREE);
15496 g = gimple_build_assign (r, t);
15497 gimple_seq_add_stmt (iseq, g);
15500 c = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE_DEPEND);
15501 OMP_CLAUSE_DECL (c) = build_fold_addr_expr (array);
15502 OMP_CLAUSE_CHAIN (c) = *pclauses;
15503 *pclauses = c;
15504 tree clobber = build_constructor (type, NULL);
15505 TREE_THIS_VOLATILE (clobber) = 1;
15506 g = gimple_build_assign (array, clobber);
15507 gimple_seq_add_stmt (oseq, g);
15510 /* Lower the OpenMP parallel or task directive in the current statement
15511 in GSI_P. CTX holds context information for the directive. */
15513 static void
15514 lower_omp_taskreg (gimple_stmt_iterator *gsi_p, omp_context *ctx)
15516 tree clauses;
15517 tree child_fn, t;
15518 gimple *stmt = gsi_stmt (*gsi_p);
15519 gbind *par_bind, *bind, *dep_bind = NULL;
15520 gimple_seq par_body, olist, ilist, par_olist, par_rlist, par_ilist, new_body;
15521 location_t loc = gimple_location (stmt);
15523 clauses = gimple_omp_taskreg_clauses (stmt);
15524 par_bind
15525 = as_a <gbind *> (gimple_seq_first_stmt (gimple_omp_body (stmt)));
15526 par_body = gimple_bind_body (par_bind);
15527 child_fn = ctx->cb.dst_fn;
15528 if (gimple_code (stmt) == GIMPLE_OMP_PARALLEL
15529 && !gimple_omp_parallel_combined_p (stmt))
15531 struct walk_stmt_info wi;
15532 int ws_num = 0;
15534 memset (&wi, 0, sizeof (wi));
15535 wi.info = &ws_num;
15536 wi.val_only = true;
15537 walk_gimple_seq (par_body, check_combined_parallel, NULL, &wi);
15538 if (ws_num == 1)
15539 gimple_omp_parallel_set_combined_p (stmt, true);
15541 gimple_seq dep_ilist = NULL;
15542 gimple_seq dep_olist = NULL;
15543 if (gimple_code (stmt) == GIMPLE_OMP_TASK
15544 && find_omp_clause (clauses, OMP_CLAUSE_DEPEND))
15546 push_gimplify_context ();
15547 dep_bind = gimple_build_bind (NULL, NULL, make_node (BLOCK));
15548 lower_depend_clauses (gimple_omp_task_clauses_ptr (stmt),
15549 &dep_ilist, &dep_olist);
15552 if (ctx->srecord_type)
15553 create_task_copyfn (as_a <gomp_task *> (stmt), ctx);
15555 push_gimplify_context ();
15557 par_olist = NULL;
15558 par_ilist = NULL;
15559 par_rlist = NULL;
15560 bool phony_construct = gimple_code (stmt) == GIMPLE_OMP_PARALLEL
15561 && gimple_omp_parallel_grid_phony (as_a <gomp_parallel *> (stmt));
15562 if (phony_construct && ctx->record_type)
15564 gcc_checking_assert (!ctx->receiver_decl);
15565 ctx->receiver_decl = create_tmp_var
15566 (build_reference_type (ctx->record_type), ".omp_rec");
15568 lower_rec_input_clauses (clauses, &par_ilist, &par_olist, ctx, NULL);
15569 lower_omp (&par_body, ctx);
15570 if (gimple_code (stmt) == GIMPLE_OMP_PARALLEL)
15571 lower_reduction_clauses (clauses, &par_rlist, ctx);
15573 /* Declare all the variables created by mapping and the variables
15574 declared in the scope of the parallel body. */
15575 record_vars_into (ctx->block_vars, child_fn);
15576 record_vars_into (gimple_bind_vars (par_bind), child_fn);
15578 if (ctx->record_type)
15580 ctx->sender_decl
15581 = create_tmp_var (ctx->srecord_type ? ctx->srecord_type
15582 : ctx->record_type, ".omp_data_o");
15583 DECL_NAMELESS (ctx->sender_decl) = 1;
15584 TREE_ADDRESSABLE (ctx->sender_decl) = 1;
15585 gimple_omp_taskreg_set_data_arg (stmt, ctx->sender_decl);
15588 olist = NULL;
15589 ilist = NULL;
15590 lower_send_clauses (clauses, &ilist, &olist, ctx);
15591 lower_send_shared_vars (&ilist, &olist, ctx);
15593 if (ctx->record_type)
15595 tree clobber = build_constructor (TREE_TYPE (ctx->sender_decl), NULL);
15596 TREE_THIS_VOLATILE (clobber) = 1;
15597 gimple_seq_add_stmt (&olist, gimple_build_assign (ctx->sender_decl,
15598 clobber));
15601 /* Once all the expansions are done, sequence all the different
15602 fragments inside gimple_omp_body. */
15604 new_body = NULL;
15606 if (ctx->record_type)
15608 t = build_fold_addr_expr_loc (loc, ctx->sender_decl);
15609 /* fixup_child_record_type might have changed receiver_decl's type. */
15610 t = fold_convert_loc (loc, TREE_TYPE (ctx->receiver_decl), t);
15611 gimple_seq_add_stmt (&new_body,
15612 gimple_build_assign (ctx->receiver_decl, t));
15615 gimple_seq_add_seq (&new_body, par_ilist);
15616 gimple_seq_add_seq (&new_body, par_body);
15617 gimple_seq_add_seq (&new_body, par_rlist);
15618 if (ctx->cancellable)
15619 gimple_seq_add_stmt (&new_body, gimple_build_label (ctx->cancel_label));
15620 gimple_seq_add_seq (&new_body, par_olist);
15621 new_body = maybe_catch_exception (new_body);
15622 if (gimple_code (stmt) == GIMPLE_OMP_TASK)
15623 gimple_seq_add_stmt (&new_body,
15624 gimple_build_omp_continue (integer_zero_node,
15625 integer_zero_node));
15626 if (!phony_construct)
15628 gimple_seq_add_stmt (&new_body, gimple_build_omp_return (false));
15629 gimple_omp_set_body (stmt, new_body);
15632 bind = gimple_build_bind (NULL, NULL, gimple_bind_block (par_bind));
15633 gsi_replace (gsi_p, dep_bind ? dep_bind : bind, true);
15634 gimple_bind_add_seq (bind, ilist);
15635 if (!phony_construct)
15636 gimple_bind_add_stmt (bind, stmt);
15637 else
15638 gimple_bind_add_seq (bind, new_body);
15639 gimple_bind_add_seq (bind, olist);
15641 pop_gimplify_context (NULL);
15643 if (dep_bind)
15645 gimple_bind_add_seq (dep_bind, dep_ilist);
15646 gimple_bind_add_stmt (dep_bind, bind);
15647 gimple_bind_add_seq (dep_bind, dep_olist);
15648 pop_gimplify_context (dep_bind);
15652 /* Lower the GIMPLE_OMP_TARGET in the current statement
15653 in GSI_P. CTX holds context information for the directive. */
15655 static void
15656 lower_omp_target (gimple_stmt_iterator *gsi_p, omp_context *ctx)
15658 tree clauses;
15659 tree child_fn, t, c;
15660 gomp_target *stmt = as_a <gomp_target *> (gsi_stmt (*gsi_p));
15661 gbind *tgt_bind, *bind, *dep_bind = NULL;
15662 gimple_seq tgt_body, olist, ilist, fplist, new_body;
15663 location_t loc = gimple_location (stmt);
15664 bool offloaded, data_region;
15665 unsigned int map_cnt = 0;
15666 bool has_depend = false;
15668 offloaded = is_gimple_omp_offloaded (stmt);
15669 switch (gimple_omp_target_kind (stmt))
15671 case GF_OMP_TARGET_KIND_REGION:
15672 case GF_OMP_TARGET_KIND_UPDATE:
15673 case GF_OMP_TARGET_KIND_ENTER_DATA:
15674 case GF_OMP_TARGET_KIND_EXIT_DATA:
15675 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
15676 case GF_OMP_TARGET_KIND_OACC_KERNELS:
15677 case GF_OMP_TARGET_KIND_OACC_UPDATE:
15678 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
15679 case GF_OMP_TARGET_KIND_OACC_DECLARE:
15680 data_region = false;
15681 break;
15682 case GF_OMP_TARGET_KIND_DATA:
15683 case GF_OMP_TARGET_KIND_OACC_DATA:
15684 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
15685 data_region = true;
15686 break;
15687 default:
15688 gcc_unreachable ();
15691 clauses = gimple_omp_target_clauses (stmt);
15693 gimple_seq dep_ilist = NULL;
15694 gimple_seq dep_olist = NULL;
15695 if (find_omp_clause (clauses, OMP_CLAUSE_DEPEND))
15697 push_gimplify_context ();
15698 dep_bind = gimple_build_bind (NULL, NULL, make_node (BLOCK));
15699 lower_depend_clauses (gimple_omp_target_clauses_ptr (stmt),
15700 &dep_ilist, &dep_olist);
15701 has_depend = true;
15704 tgt_bind = NULL;
15705 tgt_body = NULL;
15706 if (offloaded)
15708 tgt_bind = gimple_seq_first_stmt_as_a_bind (gimple_omp_body (stmt));
15709 tgt_body = gimple_bind_body (tgt_bind);
15711 else if (data_region)
15712 tgt_body = gimple_omp_body (stmt);
15713 child_fn = ctx->cb.dst_fn;
15715 push_gimplify_context ();
15716 fplist = NULL;
15718 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
15719 switch (OMP_CLAUSE_CODE (c))
15721 tree var, x;
15723 default:
15724 break;
15725 case OMP_CLAUSE_MAP:
15726 #if CHECKING_P
15727 /* First check what we're prepared to handle in the following. */
15728 switch (OMP_CLAUSE_MAP_KIND (c))
15730 case GOMP_MAP_ALLOC:
15731 case GOMP_MAP_TO:
15732 case GOMP_MAP_FROM:
15733 case GOMP_MAP_TOFROM:
15734 case GOMP_MAP_POINTER:
15735 case GOMP_MAP_TO_PSET:
15736 case GOMP_MAP_FORCE_DEALLOC:
15737 case GOMP_MAP_RELEASE:
15738 case GOMP_MAP_ALWAYS_TO:
15739 case GOMP_MAP_ALWAYS_FROM:
15740 case GOMP_MAP_ALWAYS_TOFROM:
15741 case GOMP_MAP_FIRSTPRIVATE_POINTER:
15742 case GOMP_MAP_FIRSTPRIVATE_REFERENCE:
15743 case GOMP_MAP_STRUCT:
15744 case GOMP_MAP_ALWAYS_POINTER:
15745 break;
15746 case GOMP_MAP_FORCE_ALLOC:
15747 case GOMP_MAP_FORCE_TO:
15748 case GOMP_MAP_FORCE_FROM:
15749 case GOMP_MAP_FORCE_TOFROM:
15750 case GOMP_MAP_FORCE_PRESENT:
15751 case GOMP_MAP_FORCE_DEVICEPTR:
15752 case GOMP_MAP_DEVICE_RESIDENT:
15753 case GOMP_MAP_LINK:
15754 gcc_assert (is_gimple_omp_oacc (stmt));
15755 break;
15756 default:
15757 gcc_unreachable ();
15759 #endif
15760 /* FALLTHRU */
15761 case OMP_CLAUSE_TO:
15762 case OMP_CLAUSE_FROM:
15763 oacc_firstprivate:
15764 var = OMP_CLAUSE_DECL (c);
15765 if (!DECL_P (var))
15767 if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_MAP
15768 || (!OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c)
15769 && (OMP_CLAUSE_MAP_KIND (c)
15770 != GOMP_MAP_FIRSTPRIVATE_POINTER)))
15771 map_cnt++;
15772 continue;
15775 if (DECL_SIZE (var)
15776 && TREE_CODE (DECL_SIZE (var)) != INTEGER_CST)
15778 tree var2 = DECL_VALUE_EXPR (var);
15779 gcc_assert (TREE_CODE (var2) == INDIRECT_REF);
15780 var2 = TREE_OPERAND (var2, 0);
15781 gcc_assert (DECL_P (var2));
15782 var = var2;
15785 if (offloaded
15786 && OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
15787 && (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER
15788 || OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_REFERENCE))
15790 if (TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE)
15792 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var, ctx))
15793 && varpool_node::get_create (var)->offloadable)
15794 continue;
15796 tree type = build_pointer_type (TREE_TYPE (var));
15797 tree new_var = lookup_decl (var, ctx);
15798 x = create_tmp_var_raw (type, get_name (new_var));
15799 gimple_add_tmp_var (x);
15800 x = build_simple_mem_ref (x);
15801 SET_DECL_VALUE_EXPR (new_var, x);
15802 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15804 continue;
15807 if (!maybe_lookup_field (var, ctx))
15808 continue;
15810 if (offloaded)
15812 x = build_receiver_ref (var, true, ctx);
15813 tree new_var = lookup_decl (var, ctx);
15815 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
15816 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
15817 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c)
15818 && TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE)
15819 x = build_simple_mem_ref (x);
15820 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
15822 gcc_assert (is_gimple_omp_oacc (ctx->stmt));
15823 if (is_reference (new_var))
15825 /* Create a local object to hold the instance
15826 value. */
15827 tree type = TREE_TYPE (TREE_TYPE (new_var));
15828 const char *id = IDENTIFIER_POINTER (DECL_NAME (new_var));
15829 tree inst = create_tmp_var (type, id);
15830 gimplify_assign (inst, fold_indirect_ref (x), &fplist);
15831 x = build_fold_addr_expr (inst);
15833 gimplify_assign (new_var, x, &fplist);
15835 else if (DECL_P (new_var))
15837 SET_DECL_VALUE_EXPR (new_var, x);
15838 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15840 else
15841 gcc_unreachable ();
15843 map_cnt++;
15844 break;
15846 case OMP_CLAUSE_FIRSTPRIVATE:
15847 if (is_oacc_parallel (ctx))
15848 goto oacc_firstprivate;
15849 map_cnt++;
15850 var = OMP_CLAUSE_DECL (c);
15851 if (!is_reference (var)
15852 && !is_gimple_reg_type (TREE_TYPE (var)))
15854 tree new_var = lookup_decl (var, ctx);
15855 if (is_variable_sized (var))
15857 tree pvar = DECL_VALUE_EXPR (var);
15858 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
15859 pvar = TREE_OPERAND (pvar, 0);
15860 gcc_assert (DECL_P (pvar));
15861 tree new_pvar = lookup_decl (pvar, ctx);
15862 x = build_fold_indirect_ref (new_pvar);
15863 TREE_THIS_NOTRAP (x) = 1;
15865 else
15866 x = build_receiver_ref (var, true, ctx);
15867 SET_DECL_VALUE_EXPR (new_var, x);
15868 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15870 break;
15872 case OMP_CLAUSE_PRIVATE:
15873 if (is_gimple_omp_oacc (ctx->stmt))
15874 break;
15875 var = OMP_CLAUSE_DECL (c);
15876 if (is_variable_sized (var))
15878 tree new_var = lookup_decl (var, ctx);
15879 tree pvar = DECL_VALUE_EXPR (var);
15880 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
15881 pvar = TREE_OPERAND (pvar, 0);
15882 gcc_assert (DECL_P (pvar));
15883 tree new_pvar = lookup_decl (pvar, ctx);
15884 x = build_fold_indirect_ref (new_pvar);
15885 TREE_THIS_NOTRAP (x) = 1;
15886 SET_DECL_VALUE_EXPR (new_var, x);
15887 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15889 break;
15891 case OMP_CLAUSE_USE_DEVICE_PTR:
15892 case OMP_CLAUSE_IS_DEVICE_PTR:
15893 var = OMP_CLAUSE_DECL (c);
15894 map_cnt++;
15895 if (is_variable_sized (var))
15897 tree new_var = lookup_decl (var, ctx);
15898 tree pvar = DECL_VALUE_EXPR (var);
15899 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
15900 pvar = TREE_OPERAND (pvar, 0);
15901 gcc_assert (DECL_P (pvar));
15902 tree new_pvar = lookup_decl (pvar, ctx);
15903 x = build_fold_indirect_ref (new_pvar);
15904 TREE_THIS_NOTRAP (x) = 1;
15905 SET_DECL_VALUE_EXPR (new_var, x);
15906 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15908 else if (TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE)
15910 tree new_var = lookup_decl (var, ctx);
15911 tree type = build_pointer_type (TREE_TYPE (var));
15912 x = create_tmp_var_raw (type, get_name (new_var));
15913 gimple_add_tmp_var (x);
15914 x = build_simple_mem_ref (x);
15915 SET_DECL_VALUE_EXPR (new_var, x);
15916 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15918 else
15920 tree new_var = lookup_decl (var, ctx);
15921 x = create_tmp_var_raw (TREE_TYPE (new_var), get_name (new_var));
15922 gimple_add_tmp_var (x);
15923 SET_DECL_VALUE_EXPR (new_var, x);
15924 DECL_HAS_VALUE_EXPR_P (new_var) = 1;
15926 break;
15929 if (offloaded)
15931 target_nesting_level++;
15932 lower_omp (&tgt_body, ctx);
15933 target_nesting_level--;
15935 else if (data_region)
15936 lower_omp (&tgt_body, ctx);
15938 if (offloaded)
15940 /* Declare all the variables created by mapping and the variables
15941 declared in the scope of the target body. */
15942 record_vars_into (ctx->block_vars, child_fn);
15943 record_vars_into (gimple_bind_vars (tgt_bind), child_fn);
15946 olist = NULL;
15947 ilist = NULL;
15948 if (ctx->record_type)
15950 ctx->sender_decl
15951 = create_tmp_var (ctx->record_type, ".omp_data_arr");
15952 DECL_NAMELESS (ctx->sender_decl) = 1;
15953 TREE_ADDRESSABLE (ctx->sender_decl) = 1;
15954 t = make_tree_vec (3);
15955 TREE_VEC_ELT (t, 0) = ctx->sender_decl;
15956 TREE_VEC_ELT (t, 1)
15957 = create_tmp_var (build_array_type_nelts (size_type_node, map_cnt),
15958 ".omp_data_sizes");
15959 DECL_NAMELESS (TREE_VEC_ELT (t, 1)) = 1;
15960 TREE_ADDRESSABLE (TREE_VEC_ELT (t, 1)) = 1;
15961 TREE_STATIC (TREE_VEC_ELT (t, 1)) = 1;
15962 tree tkind_type = short_unsigned_type_node;
15963 int talign_shift = 8;
15964 TREE_VEC_ELT (t, 2)
15965 = create_tmp_var (build_array_type_nelts (tkind_type, map_cnt),
15966 ".omp_data_kinds");
15967 DECL_NAMELESS (TREE_VEC_ELT (t, 2)) = 1;
15968 TREE_ADDRESSABLE (TREE_VEC_ELT (t, 2)) = 1;
15969 TREE_STATIC (TREE_VEC_ELT (t, 2)) = 1;
15970 gimple_omp_target_set_data_arg (stmt, t);
15972 vec<constructor_elt, va_gc> *vsize;
15973 vec<constructor_elt, va_gc> *vkind;
15974 vec_alloc (vsize, map_cnt);
15975 vec_alloc (vkind, map_cnt);
15976 unsigned int map_idx = 0;
15978 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
15979 switch (OMP_CLAUSE_CODE (c))
15981 tree ovar, nc, s, purpose, var, x, type;
15982 unsigned int talign;
15984 default:
15985 break;
15987 case OMP_CLAUSE_MAP:
15988 case OMP_CLAUSE_TO:
15989 case OMP_CLAUSE_FROM:
15990 oacc_firstprivate_map:
15991 nc = c;
15992 ovar = OMP_CLAUSE_DECL (c);
15993 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
15994 && (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER
15995 || (OMP_CLAUSE_MAP_KIND (c)
15996 == GOMP_MAP_FIRSTPRIVATE_REFERENCE)))
15997 break;
15998 if (!DECL_P (ovar))
16000 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
16001 && OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c))
16003 gcc_checking_assert (OMP_CLAUSE_DECL (OMP_CLAUSE_CHAIN (c))
16004 == get_base_address (ovar));
16005 nc = OMP_CLAUSE_CHAIN (c);
16006 ovar = OMP_CLAUSE_DECL (nc);
16008 else
16010 tree x = build_sender_ref (ovar, ctx);
16011 tree v
16012 = build_fold_addr_expr_with_type (ovar, ptr_type_node);
16013 gimplify_assign (x, v, &ilist);
16014 nc = NULL_TREE;
16017 else
16019 if (DECL_SIZE (ovar)
16020 && TREE_CODE (DECL_SIZE (ovar)) != INTEGER_CST)
16022 tree ovar2 = DECL_VALUE_EXPR (ovar);
16023 gcc_assert (TREE_CODE (ovar2) == INDIRECT_REF);
16024 ovar2 = TREE_OPERAND (ovar2, 0);
16025 gcc_assert (DECL_P (ovar2));
16026 ovar = ovar2;
16028 if (!maybe_lookup_field (ovar, ctx))
16029 continue;
16032 talign = TYPE_ALIGN_UNIT (TREE_TYPE (ovar));
16033 if (DECL_P (ovar) && DECL_ALIGN_UNIT (ovar) > talign)
16034 talign = DECL_ALIGN_UNIT (ovar);
16035 if (nc)
16037 var = lookup_decl_in_outer_ctx (ovar, ctx);
16038 x = build_sender_ref (ovar, ctx);
16040 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_MAP
16041 && OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_POINTER
16042 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c)
16043 && TREE_CODE (TREE_TYPE (ovar)) == ARRAY_TYPE)
16045 gcc_assert (offloaded);
16046 tree avar
16047 = create_tmp_var (TREE_TYPE (TREE_TYPE (x)));
16048 mark_addressable (avar);
16049 gimplify_assign (avar, build_fold_addr_expr (var), &ilist);
16050 talign = DECL_ALIGN_UNIT (avar);
16051 avar = build_fold_addr_expr (avar);
16052 gimplify_assign (x, avar, &ilist);
16054 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
16056 gcc_assert (is_gimple_omp_oacc (ctx->stmt));
16057 if (!is_reference (var))
16058 var = build_fold_addr_expr (var);
16059 else
16060 talign = TYPE_ALIGN_UNIT (TREE_TYPE (TREE_TYPE (ovar)));
16061 gimplify_assign (x, var, &ilist);
16063 else if (is_gimple_reg (var))
16065 gcc_assert (offloaded);
16066 tree avar = create_tmp_var (TREE_TYPE (var));
16067 mark_addressable (avar);
16068 enum gomp_map_kind map_kind = OMP_CLAUSE_MAP_KIND (c);
16069 if (GOMP_MAP_COPY_TO_P (map_kind)
16070 || map_kind == GOMP_MAP_POINTER
16071 || map_kind == GOMP_MAP_TO_PSET
16072 || map_kind == GOMP_MAP_FORCE_DEVICEPTR)
16073 gimplify_assign (avar, var, &ilist);
16074 avar = build_fold_addr_expr (avar);
16075 gimplify_assign (x, avar, &ilist);
16076 if ((GOMP_MAP_COPY_FROM_P (map_kind)
16077 || map_kind == GOMP_MAP_FORCE_DEVICEPTR)
16078 && !TYPE_READONLY (TREE_TYPE (var)))
16080 x = unshare_expr (x);
16081 x = build_simple_mem_ref (x);
16082 gimplify_assign (var, x, &olist);
16085 else
16087 var = build_fold_addr_expr (var);
16088 gimplify_assign (x, var, &ilist);
16091 s = NULL_TREE;
16092 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE)
16094 gcc_checking_assert (is_gimple_omp_oacc (ctx->stmt));
16095 s = TREE_TYPE (ovar);
16096 if (TREE_CODE (s) == REFERENCE_TYPE)
16097 s = TREE_TYPE (s);
16098 s = TYPE_SIZE_UNIT (s);
16100 else
16101 s = OMP_CLAUSE_SIZE (c);
16102 if (s == NULL_TREE)
16103 s = TYPE_SIZE_UNIT (TREE_TYPE (ovar));
16104 s = fold_convert (size_type_node, s);
16105 purpose = size_int (map_idx++);
16106 CONSTRUCTOR_APPEND_ELT (vsize, purpose, s);
16107 if (TREE_CODE (s) != INTEGER_CST)
16108 TREE_STATIC (TREE_VEC_ELT (t, 1)) = 0;
16110 unsigned HOST_WIDE_INT tkind, tkind_zero;
16111 switch (OMP_CLAUSE_CODE (c))
16113 case OMP_CLAUSE_MAP:
16114 tkind = OMP_CLAUSE_MAP_KIND (c);
16115 tkind_zero = tkind;
16116 if (OMP_CLAUSE_MAP_MAYBE_ZERO_LENGTH_ARRAY_SECTION (c))
16117 switch (tkind)
16119 case GOMP_MAP_ALLOC:
16120 case GOMP_MAP_TO:
16121 case GOMP_MAP_FROM:
16122 case GOMP_MAP_TOFROM:
16123 case GOMP_MAP_ALWAYS_TO:
16124 case GOMP_MAP_ALWAYS_FROM:
16125 case GOMP_MAP_ALWAYS_TOFROM:
16126 case GOMP_MAP_RELEASE:
16127 tkind_zero = GOMP_MAP_ZERO_LEN_ARRAY_SECTION;
16128 break;
16129 case GOMP_MAP_DELETE:
16130 tkind_zero = GOMP_MAP_DELETE_ZERO_LEN_ARRAY_SECTION;
16131 default:
16132 break;
16134 if (tkind_zero != tkind)
16136 if (integer_zerop (s))
16137 tkind = tkind_zero;
16138 else if (integer_nonzerop (s))
16139 tkind_zero = tkind;
16141 break;
16142 case OMP_CLAUSE_FIRSTPRIVATE:
16143 gcc_checking_assert (is_gimple_omp_oacc (ctx->stmt));
16144 tkind = GOMP_MAP_TO;
16145 tkind_zero = tkind;
16146 break;
16147 case OMP_CLAUSE_TO:
16148 tkind = GOMP_MAP_TO;
16149 tkind_zero = tkind;
16150 break;
16151 case OMP_CLAUSE_FROM:
16152 tkind = GOMP_MAP_FROM;
16153 tkind_zero = tkind;
16154 break;
16155 default:
16156 gcc_unreachable ();
16158 gcc_checking_assert (tkind
16159 < (HOST_WIDE_INT_C (1U) << talign_shift));
16160 gcc_checking_assert (tkind_zero
16161 < (HOST_WIDE_INT_C (1U) << talign_shift));
16162 talign = ceil_log2 (talign);
16163 tkind |= talign << talign_shift;
16164 tkind_zero |= talign << talign_shift;
16165 gcc_checking_assert (tkind
16166 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type)));
16167 gcc_checking_assert (tkind_zero
16168 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type)));
16169 if (tkind == tkind_zero)
16170 x = build_int_cstu (tkind_type, tkind);
16171 else
16173 TREE_STATIC (TREE_VEC_ELT (t, 2)) = 0;
16174 x = build3 (COND_EXPR, tkind_type,
16175 fold_build2 (EQ_EXPR, boolean_type_node,
16176 unshare_expr (s), size_zero_node),
16177 build_int_cstu (tkind_type, tkind_zero),
16178 build_int_cstu (tkind_type, tkind));
16180 CONSTRUCTOR_APPEND_ELT (vkind, purpose, x);
16181 if (nc && nc != c)
16182 c = nc;
16183 break;
16185 case OMP_CLAUSE_FIRSTPRIVATE:
16186 if (is_oacc_parallel (ctx))
16187 goto oacc_firstprivate_map;
16188 ovar = OMP_CLAUSE_DECL (c);
16189 if (is_reference (ovar))
16190 talign = TYPE_ALIGN_UNIT (TREE_TYPE (TREE_TYPE (ovar)));
16191 else
16192 talign = DECL_ALIGN_UNIT (ovar);
16193 var = lookup_decl_in_outer_ctx (ovar, ctx);
16194 x = build_sender_ref (ovar, ctx);
16195 tkind = GOMP_MAP_FIRSTPRIVATE;
16196 type = TREE_TYPE (ovar);
16197 if (is_reference (ovar))
16198 type = TREE_TYPE (type);
16199 bool use_firstprivate_int, force_addr;
16200 use_firstprivate_int = false;
16201 force_addr = false;
16202 if ((INTEGRAL_TYPE_P (type)
16203 && TYPE_PRECISION (type) <= POINTER_SIZE)
16204 || TREE_CODE (type) == POINTER_TYPE)
16205 use_firstprivate_int = true;
16206 if (has_depend)
16208 if (is_reference (var))
16209 use_firstprivate_int = false;
16210 else if (is_gimple_reg (var))
16212 if (DECL_HAS_VALUE_EXPR_P (var))
16214 tree v = get_base_address (var);
16215 if (DECL_P (v) && TREE_ADDRESSABLE (v))
16217 use_firstprivate_int = false;
16218 force_addr = true;
16220 else
16221 switch (TREE_CODE (v))
16223 case INDIRECT_REF:
16224 case MEM_REF:
16225 use_firstprivate_int = false;
16226 force_addr = true;
16227 break;
16228 default:
16229 break;
16233 else
16234 use_firstprivate_int = false;
16236 if (use_firstprivate_int)
16238 tkind = GOMP_MAP_FIRSTPRIVATE_INT;
16239 tree t = var;
16240 if (is_reference (var))
16241 t = build_simple_mem_ref (var);
16242 if (TREE_CODE (type) != POINTER_TYPE)
16243 t = fold_convert (pointer_sized_int_node, t);
16244 t = fold_convert (TREE_TYPE (x), t);
16245 gimplify_assign (x, t, &ilist);
16247 else if (is_reference (var))
16248 gimplify_assign (x, var, &ilist);
16249 else if (!force_addr && is_gimple_reg (var))
16251 tree avar = create_tmp_var (TREE_TYPE (var));
16252 mark_addressable (avar);
16253 gimplify_assign (avar, var, &ilist);
16254 avar = build_fold_addr_expr (avar);
16255 gimplify_assign (x, avar, &ilist);
16257 else
16259 var = build_fold_addr_expr (var);
16260 gimplify_assign (x, var, &ilist);
16262 if (tkind == GOMP_MAP_FIRSTPRIVATE_INT)
16263 s = size_int (0);
16264 else if (is_reference (var))
16265 s = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ovar)));
16266 else
16267 s = TYPE_SIZE_UNIT (TREE_TYPE (ovar));
16268 s = fold_convert (size_type_node, s);
16269 purpose = size_int (map_idx++);
16270 CONSTRUCTOR_APPEND_ELT (vsize, purpose, s);
16271 if (TREE_CODE (s) != INTEGER_CST)
16272 TREE_STATIC (TREE_VEC_ELT (t, 1)) = 0;
16274 gcc_checking_assert (tkind
16275 < (HOST_WIDE_INT_C (1U) << talign_shift));
16276 talign = ceil_log2 (talign);
16277 tkind |= talign << talign_shift;
16278 gcc_checking_assert (tkind
16279 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type)));
16280 CONSTRUCTOR_APPEND_ELT (vkind, purpose,
16281 build_int_cstu (tkind_type, tkind));
16282 break;
16284 case OMP_CLAUSE_USE_DEVICE_PTR:
16285 case OMP_CLAUSE_IS_DEVICE_PTR:
16286 ovar = OMP_CLAUSE_DECL (c);
16287 var = lookup_decl_in_outer_ctx (ovar, ctx);
16288 x = build_sender_ref (ovar, ctx);
16289 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_USE_DEVICE_PTR)
16290 tkind = GOMP_MAP_USE_DEVICE_PTR;
16291 else
16292 tkind = GOMP_MAP_FIRSTPRIVATE_INT;
16293 type = TREE_TYPE (ovar);
16294 if (TREE_CODE (type) == ARRAY_TYPE)
16295 var = build_fold_addr_expr (var);
16296 else
16298 if (is_reference (ovar))
16300 type = TREE_TYPE (type);
16301 if (TREE_CODE (type) != ARRAY_TYPE)
16302 var = build_simple_mem_ref (var);
16303 var = fold_convert (TREE_TYPE (x), var);
16306 gimplify_assign (x, var, &ilist);
16307 s = size_int (0);
16308 purpose = size_int (map_idx++);
16309 CONSTRUCTOR_APPEND_ELT (vsize, purpose, s);
16310 gcc_checking_assert (tkind
16311 < (HOST_WIDE_INT_C (1U) << talign_shift));
16312 gcc_checking_assert (tkind
16313 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type)));
16314 CONSTRUCTOR_APPEND_ELT (vkind, purpose,
16315 build_int_cstu (tkind_type, tkind));
16316 break;
16319 gcc_assert (map_idx == map_cnt);
16321 DECL_INITIAL (TREE_VEC_ELT (t, 1))
16322 = build_constructor (TREE_TYPE (TREE_VEC_ELT (t, 1)), vsize);
16323 DECL_INITIAL (TREE_VEC_ELT (t, 2))
16324 = build_constructor (TREE_TYPE (TREE_VEC_ELT (t, 2)), vkind);
16325 for (int i = 1; i <= 2; i++)
16326 if (!TREE_STATIC (TREE_VEC_ELT (t, i)))
16328 gimple_seq initlist = NULL;
16329 force_gimple_operand (build1 (DECL_EXPR, void_type_node,
16330 TREE_VEC_ELT (t, i)),
16331 &initlist, true, NULL_TREE);
16332 gimple_seq_add_seq (&ilist, initlist);
16334 tree clobber = build_constructor (TREE_TYPE (TREE_VEC_ELT (t, i)),
16335 NULL);
16336 TREE_THIS_VOLATILE (clobber) = 1;
16337 gimple_seq_add_stmt (&olist,
16338 gimple_build_assign (TREE_VEC_ELT (t, i),
16339 clobber));
16342 tree clobber = build_constructor (ctx->record_type, NULL);
16343 TREE_THIS_VOLATILE (clobber) = 1;
16344 gimple_seq_add_stmt (&olist, gimple_build_assign (ctx->sender_decl,
16345 clobber));
16348 /* Once all the expansions are done, sequence all the different
16349 fragments inside gimple_omp_body. */
16351 new_body = NULL;
16353 if (offloaded
16354 && ctx->record_type)
16356 t = build_fold_addr_expr_loc (loc, ctx->sender_decl);
16357 /* fixup_child_record_type might have changed receiver_decl's type. */
16358 t = fold_convert_loc (loc, TREE_TYPE (ctx->receiver_decl), t);
16359 gimple_seq_add_stmt (&new_body,
16360 gimple_build_assign (ctx->receiver_decl, t));
16362 gimple_seq_add_seq (&new_body, fplist);
16364 if (offloaded || data_region)
16366 tree prev = NULL_TREE;
16367 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
16368 switch (OMP_CLAUSE_CODE (c))
16370 tree var, x;
16371 default:
16372 break;
16373 case OMP_CLAUSE_FIRSTPRIVATE:
16374 if (is_gimple_omp_oacc (ctx->stmt))
16375 break;
16376 var = OMP_CLAUSE_DECL (c);
16377 if (is_reference (var)
16378 || is_gimple_reg_type (TREE_TYPE (var)))
16380 tree new_var = lookup_decl (var, ctx);
16381 tree type;
16382 type = TREE_TYPE (var);
16383 if (is_reference (var))
16384 type = TREE_TYPE (type);
16385 bool use_firstprivate_int;
16386 use_firstprivate_int = false;
16387 if ((INTEGRAL_TYPE_P (type)
16388 && TYPE_PRECISION (type) <= POINTER_SIZE)
16389 || TREE_CODE (type) == POINTER_TYPE)
16390 use_firstprivate_int = true;
16391 if (has_depend)
16393 tree v = lookup_decl_in_outer_ctx (var, ctx);
16394 if (is_reference (v))
16395 use_firstprivate_int = false;
16396 else if (is_gimple_reg (v))
16398 if (DECL_HAS_VALUE_EXPR_P (v))
16400 v = get_base_address (v);
16401 if (DECL_P (v) && TREE_ADDRESSABLE (v))
16402 use_firstprivate_int = false;
16403 else
16404 switch (TREE_CODE (v))
16406 case INDIRECT_REF:
16407 case MEM_REF:
16408 use_firstprivate_int = false;
16409 break;
16410 default:
16411 break;
16415 else
16416 use_firstprivate_int = false;
16418 if (use_firstprivate_int)
16420 x = build_receiver_ref (var, false, ctx);
16421 if (TREE_CODE (type) != POINTER_TYPE)
16422 x = fold_convert (pointer_sized_int_node, x);
16423 x = fold_convert (type, x);
16424 gimplify_expr (&x, &new_body, NULL, is_gimple_val,
16425 fb_rvalue);
16426 if (is_reference (var))
16428 tree v = create_tmp_var_raw (type, get_name (var));
16429 gimple_add_tmp_var (v);
16430 TREE_ADDRESSABLE (v) = 1;
16431 gimple_seq_add_stmt (&new_body,
16432 gimple_build_assign (v, x));
16433 x = build_fold_addr_expr (v);
16435 gimple_seq_add_stmt (&new_body,
16436 gimple_build_assign (new_var, x));
16438 else
16440 x = build_receiver_ref (var, !is_reference (var), ctx);
16441 gimplify_expr (&x, &new_body, NULL, is_gimple_val,
16442 fb_rvalue);
16443 gimple_seq_add_stmt (&new_body,
16444 gimple_build_assign (new_var, x));
16447 else if (is_variable_sized (var))
16449 tree pvar = DECL_VALUE_EXPR (var);
16450 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
16451 pvar = TREE_OPERAND (pvar, 0);
16452 gcc_assert (DECL_P (pvar));
16453 tree new_var = lookup_decl (pvar, ctx);
16454 x = build_receiver_ref (var, false, ctx);
16455 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16456 gimple_seq_add_stmt (&new_body,
16457 gimple_build_assign (new_var, x));
16459 break;
16460 case OMP_CLAUSE_PRIVATE:
16461 if (is_gimple_omp_oacc (ctx->stmt))
16462 break;
16463 var = OMP_CLAUSE_DECL (c);
16464 if (is_reference (var))
16466 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
16467 tree new_var = lookup_decl (var, ctx);
16468 x = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_var)));
16469 if (TREE_CONSTANT (x))
16471 x = create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_var)),
16472 get_name (var));
16473 gimple_add_tmp_var (x);
16474 TREE_ADDRESSABLE (x) = 1;
16475 x = build_fold_addr_expr_loc (clause_loc, x);
16477 else
16479 tree atmp
16480 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
16481 tree rtype = TREE_TYPE (TREE_TYPE (new_var));
16482 tree al = size_int (TYPE_ALIGN (rtype));
16483 x = build_call_expr_loc (clause_loc, atmp, 2, x, al);
16486 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var), x);
16487 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16488 gimple_seq_add_stmt (&new_body,
16489 gimple_build_assign (new_var, x));
16491 break;
16492 case OMP_CLAUSE_USE_DEVICE_PTR:
16493 case OMP_CLAUSE_IS_DEVICE_PTR:
16494 var = OMP_CLAUSE_DECL (c);
16495 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_USE_DEVICE_PTR)
16496 x = build_sender_ref (var, ctx);
16497 else
16498 x = build_receiver_ref (var, false, ctx);
16499 if (is_variable_sized (var))
16501 tree pvar = DECL_VALUE_EXPR (var);
16502 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
16503 pvar = TREE_OPERAND (pvar, 0);
16504 gcc_assert (DECL_P (pvar));
16505 tree new_var = lookup_decl (pvar, ctx);
16506 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16507 gimple_seq_add_stmt (&new_body,
16508 gimple_build_assign (new_var, x));
16510 else if (TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE)
16512 tree new_var = lookup_decl (var, ctx);
16513 new_var = DECL_VALUE_EXPR (new_var);
16514 gcc_assert (TREE_CODE (new_var) == MEM_REF);
16515 new_var = TREE_OPERAND (new_var, 0);
16516 gcc_assert (DECL_P (new_var));
16517 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16518 gimple_seq_add_stmt (&new_body,
16519 gimple_build_assign (new_var, x));
16521 else
16523 tree type = TREE_TYPE (var);
16524 tree new_var = lookup_decl (var, ctx);
16525 if (is_reference (var))
16527 type = TREE_TYPE (type);
16528 if (TREE_CODE (type) != ARRAY_TYPE)
16530 tree v = create_tmp_var_raw (type, get_name (var));
16531 gimple_add_tmp_var (v);
16532 TREE_ADDRESSABLE (v) = 1;
16533 x = fold_convert (type, x);
16534 gimplify_expr (&x, &new_body, NULL, is_gimple_val,
16535 fb_rvalue);
16536 gimple_seq_add_stmt (&new_body,
16537 gimple_build_assign (v, x));
16538 x = build_fold_addr_expr (v);
16541 new_var = DECL_VALUE_EXPR (new_var);
16542 x = fold_convert (TREE_TYPE (new_var), x);
16543 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16544 gimple_seq_add_stmt (&new_body,
16545 gimple_build_assign (new_var, x));
16547 break;
16549 /* Handle GOMP_MAP_FIRSTPRIVATE_{POINTER,REFERENCE} in second pass,
16550 so that firstprivate vars holding OMP_CLAUSE_SIZE if needed
16551 are already handled. */
16552 for (c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
16553 switch (OMP_CLAUSE_CODE (c))
16555 tree var;
16556 default:
16557 break;
16558 case OMP_CLAUSE_MAP:
16559 if (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_POINTER
16560 || OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_REFERENCE)
16562 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
16563 HOST_WIDE_INT offset = 0;
16564 gcc_assert (prev);
16565 var = OMP_CLAUSE_DECL (c);
16566 if (DECL_P (var)
16567 && TREE_CODE (TREE_TYPE (var)) == ARRAY_TYPE
16568 && is_global_var (maybe_lookup_decl_in_outer_ctx (var,
16569 ctx))
16570 && varpool_node::get_create (var)->offloadable)
16571 break;
16572 if (TREE_CODE (var) == INDIRECT_REF
16573 && TREE_CODE (TREE_OPERAND (var, 0)) == COMPONENT_REF)
16574 var = TREE_OPERAND (var, 0);
16575 if (TREE_CODE (var) == COMPONENT_REF)
16577 var = get_addr_base_and_unit_offset (var, &offset);
16578 gcc_assert (var != NULL_TREE && DECL_P (var));
16580 else if (DECL_SIZE (var)
16581 && TREE_CODE (DECL_SIZE (var)) != INTEGER_CST)
16583 tree var2 = DECL_VALUE_EXPR (var);
16584 gcc_assert (TREE_CODE (var2) == INDIRECT_REF);
16585 var2 = TREE_OPERAND (var2, 0);
16586 gcc_assert (DECL_P (var2));
16587 var = var2;
16589 tree new_var = lookup_decl (var, ctx), x;
16590 tree type = TREE_TYPE (new_var);
16591 bool is_ref;
16592 if (TREE_CODE (OMP_CLAUSE_DECL (c)) == INDIRECT_REF
16593 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (c), 0))
16594 == COMPONENT_REF))
16596 type = TREE_TYPE (TREE_OPERAND (OMP_CLAUSE_DECL (c), 0));
16597 is_ref = true;
16598 new_var = build2 (MEM_REF, type,
16599 build_fold_addr_expr (new_var),
16600 build_int_cst (build_pointer_type (type),
16601 offset));
16603 else if (TREE_CODE (OMP_CLAUSE_DECL (c)) == COMPONENT_REF)
16605 type = TREE_TYPE (OMP_CLAUSE_DECL (c));
16606 is_ref = TREE_CODE (type) == REFERENCE_TYPE;
16607 new_var = build2 (MEM_REF, type,
16608 build_fold_addr_expr (new_var),
16609 build_int_cst (build_pointer_type (type),
16610 offset));
16612 else
16613 is_ref = is_reference (var);
16614 if (OMP_CLAUSE_MAP_KIND (c) == GOMP_MAP_FIRSTPRIVATE_REFERENCE)
16615 is_ref = false;
16616 bool ref_to_array = false;
16617 if (is_ref)
16619 type = TREE_TYPE (type);
16620 if (TREE_CODE (type) == ARRAY_TYPE)
16622 type = build_pointer_type (type);
16623 ref_to_array = true;
16626 else if (TREE_CODE (type) == ARRAY_TYPE)
16628 tree decl2 = DECL_VALUE_EXPR (new_var);
16629 gcc_assert (TREE_CODE (decl2) == MEM_REF);
16630 decl2 = TREE_OPERAND (decl2, 0);
16631 gcc_assert (DECL_P (decl2));
16632 new_var = decl2;
16633 type = TREE_TYPE (new_var);
16635 x = build_receiver_ref (OMP_CLAUSE_DECL (prev), false, ctx);
16636 x = fold_convert_loc (clause_loc, type, x);
16637 if (!integer_zerop (OMP_CLAUSE_SIZE (c)))
16639 tree bias = OMP_CLAUSE_SIZE (c);
16640 if (DECL_P (bias))
16641 bias = lookup_decl (bias, ctx);
16642 bias = fold_convert_loc (clause_loc, sizetype, bias);
16643 bias = fold_build1_loc (clause_loc, NEGATE_EXPR, sizetype,
16644 bias);
16645 x = fold_build2_loc (clause_loc, POINTER_PLUS_EXPR,
16646 TREE_TYPE (x), x, bias);
16648 if (ref_to_array)
16649 x = fold_convert_loc (clause_loc, TREE_TYPE (new_var), x);
16650 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16651 if (is_ref && !ref_to_array)
16653 tree t = create_tmp_var_raw (type, get_name (var));
16654 gimple_add_tmp_var (t);
16655 TREE_ADDRESSABLE (t) = 1;
16656 gimple_seq_add_stmt (&new_body,
16657 gimple_build_assign (t, x));
16658 x = build_fold_addr_expr_loc (clause_loc, t);
16660 gimple_seq_add_stmt (&new_body,
16661 gimple_build_assign (new_var, x));
16662 prev = NULL_TREE;
16664 else if (OMP_CLAUSE_CHAIN (c)
16665 && OMP_CLAUSE_CODE (OMP_CLAUSE_CHAIN (c))
16666 == OMP_CLAUSE_MAP
16667 && (OMP_CLAUSE_MAP_KIND (OMP_CLAUSE_CHAIN (c))
16668 == GOMP_MAP_FIRSTPRIVATE_POINTER
16669 || (OMP_CLAUSE_MAP_KIND (OMP_CLAUSE_CHAIN (c))
16670 == GOMP_MAP_FIRSTPRIVATE_REFERENCE)))
16671 prev = c;
16672 break;
16673 case OMP_CLAUSE_PRIVATE:
16674 var = OMP_CLAUSE_DECL (c);
16675 if (is_variable_sized (var))
16677 location_t clause_loc = OMP_CLAUSE_LOCATION (c);
16678 tree new_var = lookup_decl (var, ctx);
16679 tree pvar = DECL_VALUE_EXPR (var);
16680 gcc_assert (TREE_CODE (pvar) == INDIRECT_REF);
16681 pvar = TREE_OPERAND (pvar, 0);
16682 gcc_assert (DECL_P (pvar));
16683 tree new_pvar = lookup_decl (pvar, ctx);
16684 tree atmp = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
16685 tree al = size_int (DECL_ALIGN (var));
16686 tree x = TYPE_SIZE_UNIT (TREE_TYPE (new_var));
16687 x = build_call_expr_loc (clause_loc, atmp, 2, x, al);
16688 x = fold_convert_loc (clause_loc, TREE_TYPE (new_pvar), x);
16689 gimplify_expr (&x, &new_body, NULL, is_gimple_val, fb_rvalue);
16690 gimple_seq_add_stmt (&new_body,
16691 gimple_build_assign (new_pvar, x));
16693 break;
16696 gimple_seq fork_seq = NULL;
16697 gimple_seq join_seq = NULL;
16699 if (is_oacc_parallel (ctx))
16701 /* If there are reductions on the offloaded region itself, treat
16702 them as a dummy GANG loop. */
16703 tree level = build_int_cst (integer_type_node, GOMP_DIM_GANG);
16705 lower_oacc_reductions (gimple_location (ctx->stmt), clauses, level,
16706 false, NULL, NULL, &fork_seq, &join_seq, ctx);
16709 gimple_seq_add_seq (&new_body, fork_seq);
16710 gimple_seq_add_seq (&new_body, tgt_body);
16711 gimple_seq_add_seq (&new_body, join_seq);
16713 if (offloaded)
16714 new_body = maybe_catch_exception (new_body);
16716 gimple_seq_add_stmt (&new_body, gimple_build_omp_return (false));
16717 gimple_omp_set_body (stmt, new_body);
16720 bind = gimple_build_bind (NULL, NULL,
16721 tgt_bind ? gimple_bind_block (tgt_bind)
16722 : NULL_TREE);
16723 gsi_replace (gsi_p, dep_bind ? dep_bind : bind, true);
16724 gimple_bind_add_seq (bind, ilist);
16725 gimple_bind_add_stmt (bind, stmt);
16726 gimple_bind_add_seq (bind, olist);
16728 pop_gimplify_context (NULL);
16730 if (dep_bind)
16732 gimple_bind_add_seq (dep_bind, dep_ilist);
16733 gimple_bind_add_stmt (dep_bind, bind);
16734 gimple_bind_add_seq (dep_bind, dep_olist);
16735 pop_gimplify_context (dep_bind);
16739 /* Expand code for an OpenMP teams directive. */
16741 static void
16742 lower_omp_teams (gimple_stmt_iterator *gsi_p, omp_context *ctx)
16744 gomp_teams *teams_stmt = as_a <gomp_teams *> (gsi_stmt (*gsi_p));
16745 push_gimplify_context ();
16747 tree block = make_node (BLOCK);
16748 gbind *bind = gimple_build_bind (NULL, NULL, block);
16749 gsi_replace (gsi_p, bind, true);
16750 gimple_seq bind_body = NULL;
16751 gimple_seq dlist = NULL;
16752 gimple_seq olist = NULL;
16754 tree num_teams = find_omp_clause (gimple_omp_teams_clauses (teams_stmt),
16755 OMP_CLAUSE_NUM_TEAMS);
16756 if (num_teams == NULL_TREE)
16757 num_teams = build_int_cst (unsigned_type_node, 0);
16758 else
16760 num_teams = OMP_CLAUSE_NUM_TEAMS_EXPR (num_teams);
16761 num_teams = fold_convert (unsigned_type_node, num_teams);
16762 gimplify_expr (&num_teams, &bind_body, NULL, is_gimple_val, fb_rvalue);
16764 tree thread_limit = find_omp_clause (gimple_omp_teams_clauses (teams_stmt),
16765 OMP_CLAUSE_THREAD_LIMIT);
16766 if (thread_limit == NULL_TREE)
16767 thread_limit = build_int_cst (unsigned_type_node, 0);
16768 else
16770 thread_limit = OMP_CLAUSE_THREAD_LIMIT_EXPR (thread_limit);
16771 thread_limit = fold_convert (unsigned_type_node, thread_limit);
16772 gimplify_expr (&thread_limit, &bind_body, NULL, is_gimple_val,
16773 fb_rvalue);
16776 lower_rec_input_clauses (gimple_omp_teams_clauses (teams_stmt),
16777 &bind_body, &dlist, ctx, NULL);
16778 lower_omp (gimple_omp_body_ptr (teams_stmt), ctx);
16779 lower_reduction_clauses (gimple_omp_teams_clauses (teams_stmt), &olist, ctx);
16780 if (!gimple_omp_teams_grid_phony (teams_stmt))
16782 gimple_seq_add_stmt (&bind_body, teams_stmt);
16783 location_t loc = gimple_location (teams_stmt);
16784 tree decl = builtin_decl_explicit (BUILT_IN_GOMP_TEAMS);
16785 gimple *call = gimple_build_call (decl, 2, num_teams, thread_limit);
16786 gimple_set_location (call, loc);
16787 gimple_seq_add_stmt (&bind_body, call);
16790 gimple_seq_add_seq (&bind_body, gimple_omp_body (teams_stmt));
16791 gimple_omp_set_body (teams_stmt, NULL);
16792 gimple_seq_add_seq (&bind_body, olist);
16793 gimple_seq_add_seq (&bind_body, dlist);
16794 if (!gimple_omp_teams_grid_phony (teams_stmt))
16795 gimple_seq_add_stmt (&bind_body, gimple_build_omp_return (true));
16796 gimple_bind_set_body (bind, bind_body);
16798 pop_gimplify_context (bind);
16800 gimple_bind_append_vars (bind, ctx->block_vars);
16801 BLOCK_VARS (block) = ctx->block_vars;
16802 if (BLOCK_VARS (block))
16803 TREE_USED (block) = 1;
16806 /* Expand code within an artificial GIMPLE_OMP_GRID_BODY OMP construct. */
16808 static void
16809 lower_omp_grid_body (gimple_stmt_iterator *gsi_p, omp_context *ctx)
16811 gimple *stmt = gsi_stmt (*gsi_p);
16812 lower_omp (gimple_omp_body_ptr (stmt), ctx);
16813 gimple_seq_add_stmt (gimple_omp_body_ptr (stmt),
16814 gimple_build_omp_return (false));
16818 /* Callback for lower_omp_1. Return non-NULL if *tp needs to be
16819 regimplified. If DATA is non-NULL, lower_omp_1 is outside
16820 of OMP context, but with task_shared_vars set. */
16822 static tree
16823 lower_omp_regimplify_p (tree *tp, int *walk_subtrees,
16824 void *data)
16826 tree t = *tp;
16828 /* Any variable with DECL_VALUE_EXPR needs to be regimplified. */
16829 if (TREE_CODE (t) == VAR_DECL && data == NULL && DECL_HAS_VALUE_EXPR_P (t))
16830 return t;
16832 if (task_shared_vars
16833 && DECL_P (t)
16834 && bitmap_bit_p (task_shared_vars, DECL_UID (t)))
16835 return t;
16837 /* If a global variable has been privatized, TREE_CONSTANT on
16838 ADDR_EXPR might be wrong. */
16839 if (data == NULL && TREE_CODE (t) == ADDR_EXPR)
16840 recompute_tree_invariant_for_addr_expr (t);
16842 *walk_subtrees = !IS_TYPE_OR_DECL_P (t);
16843 return NULL_TREE;
16846 /* Data to be communicated between lower_omp_regimplify_operands and
16847 lower_omp_regimplify_operands_p. */
16849 struct lower_omp_regimplify_operands_data
16851 omp_context *ctx;
16852 vec<tree> *decls;
16855 /* Helper function for lower_omp_regimplify_operands. Find
16856 omp_member_access_dummy_var vars and adjust temporarily their
16857 DECL_VALUE_EXPRs if needed. */
16859 static tree
16860 lower_omp_regimplify_operands_p (tree *tp, int *walk_subtrees,
16861 void *data)
16863 tree t = omp_member_access_dummy_var (*tp);
16864 if (t)
16866 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
16867 lower_omp_regimplify_operands_data *ldata
16868 = (lower_omp_regimplify_operands_data *) wi->info;
16869 tree o = maybe_lookup_decl (t, ldata->ctx);
16870 if (o != t)
16872 ldata->decls->safe_push (DECL_VALUE_EXPR (*tp));
16873 ldata->decls->safe_push (*tp);
16874 tree v = unshare_and_remap (DECL_VALUE_EXPR (*tp), t, o);
16875 SET_DECL_VALUE_EXPR (*tp, v);
16878 *walk_subtrees = !IS_TYPE_OR_DECL_P (*tp);
16879 return NULL_TREE;
16882 /* Wrapper around gimple_regimplify_operands that adjusts DECL_VALUE_EXPRs
16883 of omp_member_access_dummy_var vars during regimplification. */
16885 static void
16886 lower_omp_regimplify_operands (omp_context *ctx, gimple *stmt,
16887 gimple_stmt_iterator *gsi_p)
16889 auto_vec<tree, 10> decls;
16890 if (ctx)
16892 struct walk_stmt_info wi;
16893 memset (&wi, '\0', sizeof (wi));
16894 struct lower_omp_regimplify_operands_data data;
16895 data.ctx = ctx;
16896 data.decls = &decls;
16897 wi.info = &data;
16898 walk_gimple_op (stmt, lower_omp_regimplify_operands_p, &wi);
16900 gimple_regimplify_operands (stmt, gsi_p);
16901 while (!decls.is_empty ())
16903 tree t = decls.pop ();
16904 tree v = decls.pop ();
16905 SET_DECL_VALUE_EXPR (t, v);
16909 static void
16910 lower_omp_1 (gimple_stmt_iterator *gsi_p, omp_context *ctx)
16912 gimple *stmt = gsi_stmt (*gsi_p);
16913 struct walk_stmt_info wi;
16914 gcall *call_stmt;
16916 if (gimple_has_location (stmt))
16917 input_location = gimple_location (stmt);
16919 if (task_shared_vars)
16920 memset (&wi, '\0', sizeof (wi));
16922 /* If we have issued syntax errors, avoid doing any heavy lifting.
16923 Just replace the OMP directives with a NOP to avoid
16924 confusing RTL expansion. */
16925 if (seen_error () && is_gimple_omp (stmt))
16927 gsi_replace (gsi_p, gimple_build_nop (), true);
16928 return;
16931 switch (gimple_code (stmt))
16933 case GIMPLE_COND:
16935 gcond *cond_stmt = as_a <gcond *> (stmt);
16936 if ((ctx || task_shared_vars)
16937 && (walk_tree (gimple_cond_lhs_ptr (cond_stmt),
16938 lower_omp_regimplify_p,
16939 ctx ? NULL : &wi, NULL)
16940 || walk_tree (gimple_cond_rhs_ptr (cond_stmt),
16941 lower_omp_regimplify_p,
16942 ctx ? NULL : &wi, NULL)))
16943 lower_omp_regimplify_operands (ctx, cond_stmt, gsi_p);
16945 break;
16946 case GIMPLE_CATCH:
16947 lower_omp (gimple_catch_handler_ptr (as_a <gcatch *> (stmt)), ctx);
16948 break;
16949 case GIMPLE_EH_FILTER:
16950 lower_omp (gimple_eh_filter_failure_ptr (stmt), ctx);
16951 break;
16952 case GIMPLE_TRY:
16953 lower_omp (gimple_try_eval_ptr (stmt), ctx);
16954 lower_omp (gimple_try_cleanup_ptr (stmt), ctx);
16955 break;
16956 case GIMPLE_TRANSACTION:
16957 lower_omp (gimple_transaction_body_ptr (
16958 as_a <gtransaction *> (stmt)),
16959 ctx);
16960 break;
16961 case GIMPLE_BIND:
16962 lower_omp (gimple_bind_body_ptr (as_a <gbind *> (stmt)), ctx);
16963 break;
16964 case GIMPLE_OMP_PARALLEL:
16965 case GIMPLE_OMP_TASK:
16966 ctx = maybe_lookup_ctx (stmt);
16967 gcc_assert (ctx);
16968 if (ctx->cancellable)
16969 ctx->cancel_label = create_artificial_label (UNKNOWN_LOCATION);
16970 lower_omp_taskreg (gsi_p, ctx);
16971 break;
16972 case GIMPLE_OMP_FOR:
16973 ctx = maybe_lookup_ctx (stmt);
16974 gcc_assert (ctx);
16975 if (ctx->cancellable)
16976 ctx->cancel_label = create_artificial_label (UNKNOWN_LOCATION);
16977 lower_omp_for (gsi_p, ctx);
16978 break;
16979 case GIMPLE_OMP_SECTIONS:
16980 ctx = maybe_lookup_ctx (stmt);
16981 gcc_assert (ctx);
16982 if (ctx->cancellable)
16983 ctx->cancel_label = create_artificial_label (UNKNOWN_LOCATION);
16984 lower_omp_sections (gsi_p, ctx);
16985 break;
16986 case GIMPLE_OMP_SINGLE:
16987 ctx = maybe_lookup_ctx (stmt);
16988 gcc_assert (ctx);
16989 lower_omp_single (gsi_p, ctx);
16990 break;
16991 case GIMPLE_OMP_MASTER:
16992 ctx = maybe_lookup_ctx (stmt);
16993 gcc_assert (ctx);
16994 lower_omp_master (gsi_p, ctx);
16995 break;
16996 case GIMPLE_OMP_TASKGROUP:
16997 ctx = maybe_lookup_ctx (stmt);
16998 gcc_assert (ctx);
16999 lower_omp_taskgroup (gsi_p, ctx);
17000 break;
17001 case GIMPLE_OMP_ORDERED:
17002 ctx = maybe_lookup_ctx (stmt);
17003 gcc_assert (ctx);
17004 lower_omp_ordered (gsi_p, ctx);
17005 break;
17006 case GIMPLE_OMP_CRITICAL:
17007 ctx = maybe_lookup_ctx (stmt);
17008 gcc_assert (ctx);
17009 lower_omp_critical (gsi_p, ctx);
17010 break;
17011 case GIMPLE_OMP_ATOMIC_LOAD:
17012 if ((ctx || task_shared_vars)
17013 && walk_tree (gimple_omp_atomic_load_rhs_ptr (
17014 as_a <gomp_atomic_load *> (stmt)),
17015 lower_omp_regimplify_p, ctx ? NULL : &wi, NULL))
17016 lower_omp_regimplify_operands (ctx, stmt, gsi_p);
17017 break;
17018 case GIMPLE_OMP_TARGET:
17019 ctx = maybe_lookup_ctx (stmt);
17020 gcc_assert (ctx);
17021 lower_omp_target (gsi_p, ctx);
17022 break;
17023 case GIMPLE_OMP_TEAMS:
17024 ctx = maybe_lookup_ctx (stmt);
17025 gcc_assert (ctx);
17026 lower_omp_teams (gsi_p, ctx);
17027 break;
17028 case GIMPLE_OMP_GRID_BODY:
17029 ctx = maybe_lookup_ctx (stmt);
17030 gcc_assert (ctx);
17031 lower_omp_grid_body (gsi_p, ctx);
17032 break;
17033 case GIMPLE_CALL:
17034 tree fndecl;
17035 call_stmt = as_a <gcall *> (stmt);
17036 fndecl = gimple_call_fndecl (call_stmt);
17037 if (fndecl
17038 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
17039 switch (DECL_FUNCTION_CODE (fndecl))
17041 case BUILT_IN_GOMP_BARRIER:
17042 if (ctx == NULL)
17043 break;
17044 /* FALLTHRU */
17045 case BUILT_IN_GOMP_CANCEL:
17046 case BUILT_IN_GOMP_CANCELLATION_POINT:
17047 omp_context *cctx;
17048 cctx = ctx;
17049 if (gimple_code (cctx->stmt) == GIMPLE_OMP_SECTION)
17050 cctx = cctx->outer;
17051 gcc_assert (gimple_call_lhs (call_stmt) == NULL_TREE);
17052 if (!cctx->cancellable)
17054 if (DECL_FUNCTION_CODE (fndecl)
17055 == BUILT_IN_GOMP_CANCELLATION_POINT)
17057 stmt = gimple_build_nop ();
17058 gsi_replace (gsi_p, stmt, false);
17060 break;
17062 if (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_GOMP_BARRIER)
17064 fndecl = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER_CANCEL);
17065 gimple_call_set_fndecl (call_stmt, fndecl);
17066 gimple_call_set_fntype (call_stmt, TREE_TYPE (fndecl));
17068 tree lhs;
17069 lhs = create_tmp_var (TREE_TYPE (TREE_TYPE (fndecl)));
17070 gimple_call_set_lhs (call_stmt, lhs);
17071 tree fallthru_label;
17072 fallthru_label = create_artificial_label (UNKNOWN_LOCATION);
17073 gimple *g;
17074 g = gimple_build_label (fallthru_label);
17075 gsi_insert_after (gsi_p, g, GSI_SAME_STMT);
17076 g = gimple_build_cond (NE_EXPR, lhs,
17077 fold_convert (TREE_TYPE (lhs),
17078 boolean_false_node),
17079 cctx->cancel_label, fallthru_label);
17080 gsi_insert_after (gsi_p, g, GSI_SAME_STMT);
17081 break;
17082 default:
17083 break;
17085 /* FALLTHRU */
17086 default:
17087 if ((ctx || task_shared_vars)
17088 && walk_gimple_op (stmt, lower_omp_regimplify_p,
17089 ctx ? NULL : &wi))
17091 /* Just remove clobbers, this should happen only if we have
17092 "privatized" local addressable variables in SIMD regions,
17093 the clobber isn't needed in that case and gimplifying address
17094 of the ARRAY_REF into a pointer and creating MEM_REF based
17095 clobber would create worse code than we get with the clobber
17096 dropped. */
17097 if (gimple_clobber_p (stmt))
17099 gsi_replace (gsi_p, gimple_build_nop (), true);
17100 break;
17102 lower_omp_regimplify_operands (ctx, stmt, gsi_p);
17104 break;
17108 static void
17109 lower_omp (gimple_seq *body, omp_context *ctx)
17111 location_t saved_location = input_location;
17112 gimple_stmt_iterator gsi;
17113 for (gsi = gsi_start (*body); !gsi_end_p (gsi); gsi_next (&gsi))
17114 lower_omp_1 (&gsi, ctx);
17115 /* During gimplification, we haven't folded statments inside offloading
17116 or taskreg regions (gimplify.c:maybe_fold_stmt); do that now. */
17117 if (target_nesting_level || taskreg_nesting_level)
17118 for (gsi = gsi_start (*body); !gsi_end_p (gsi); gsi_next (&gsi))
17119 fold_stmt (&gsi);
17120 input_location = saved_location;
17123 /* Returen true if STMT is an assignment of a register-type into a local
17124 VAR_DECL. */
17126 static bool
17127 grid_reg_assignment_to_local_var_p (gimple *stmt)
17129 gassign *assign = dyn_cast <gassign *> (stmt);
17130 if (!assign)
17131 return false;
17132 tree lhs = gimple_assign_lhs (assign);
17133 if (TREE_CODE (lhs) != VAR_DECL
17134 || !is_gimple_reg_type (TREE_TYPE (lhs))
17135 || is_global_var (lhs))
17136 return false;
17137 return true;
17140 /* Return true if all statements in SEQ are assignments to local register-type
17141 variables. */
17143 static bool
17144 grid_seq_only_contains_local_assignments (gimple_seq seq)
17146 if (!seq)
17147 return true;
17149 gimple_stmt_iterator gsi;
17150 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
17151 if (!grid_reg_assignment_to_local_var_p (gsi_stmt (gsi)))
17152 return false;
17153 return true;
17156 /* Scan statements in SEQ and call itself recursively on any bind. If during
17157 whole search only assignments to register-type local variables and one
17158 single OMP statement is encountered, return true, otherwise return false.
17159 RET is where we store any OMP statement encountered. TARGET_LOC and NAME
17160 are used for dumping a note about a failure. */
17162 static bool
17163 grid_find_single_omp_among_assignments_1 (gimple_seq seq, location_t target_loc,
17164 const char *name, gimple **ret)
17166 gimple_stmt_iterator gsi;
17167 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
17169 gimple *stmt = gsi_stmt (gsi);
17171 if (grid_reg_assignment_to_local_var_p (stmt))
17172 continue;
17173 if (gbind *bind = dyn_cast <gbind *> (stmt))
17175 if (!grid_find_single_omp_among_assignments_1 (gimple_bind_body (bind),
17176 target_loc, name, ret))
17177 return false;
17179 else if (is_gimple_omp (stmt))
17181 if (*ret)
17183 if (dump_enabled_p ())
17184 dump_printf_loc (MSG_NOTE, target_loc,
17185 "Will not turn target construct into a simple "
17186 "GPGPU kernel because %s construct contains "
17187 "multiple OpenMP constructs\n", name);
17188 return false;
17190 *ret = stmt;
17192 else
17194 if (dump_enabled_p ())
17195 dump_printf_loc (MSG_NOTE, target_loc,
17196 "Will not turn target construct into a simple "
17197 "GPGPU kernel because %s construct contains "
17198 "a complex statement\n", name);
17199 return false;
17202 return true;
17205 /* Scan statements in SEQ and make sure that it and any binds in it contain
17206 only assignments to local register-type variables and one OMP construct. If
17207 so, return that construct, otherwise return NULL. If dumping is enabled and
17208 function fails, use TARGET_LOC and NAME to dump a note with the reason for
17209 failure. */
17211 static gimple *
17212 grid_find_single_omp_among_assignments (gimple_seq seq, location_t target_loc,
17213 const char *name)
17215 if (!seq)
17217 if (dump_enabled_p ())
17218 dump_printf_loc (MSG_NOTE, target_loc,
17219 "Will not turn target construct into a simple "
17220 "GPGPU kernel because %s construct has empty "
17221 "body\n",
17222 name);
17223 return NULL;
17226 gimple *ret = NULL;
17227 if (grid_find_single_omp_among_assignments_1 (seq, target_loc, name, &ret))
17229 if (!ret && dump_enabled_p ())
17230 dump_printf_loc (MSG_NOTE, target_loc,
17231 "Will not turn target construct into a simple "
17232 "GPGPU kernel because %s construct does not contain"
17233 "any other OpenMP construct\n", name);
17234 return ret;
17236 else
17237 return NULL;
17240 /* Walker function looking for statements there is no point gridifying (and for
17241 noreturn function calls which we cannot do). Return non-NULL if such a
17242 function is found. */
17244 static tree
17245 grid_find_ungridifiable_statement (gimple_stmt_iterator *gsi,
17246 bool *handled_ops_p,
17247 struct walk_stmt_info *)
17249 *handled_ops_p = false;
17250 gimple *stmt = gsi_stmt (*gsi);
17251 switch (gimple_code (stmt))
17253 case GIMPLE_CALL:
17254 if (gimple_call_noreturn_p (as_a <gcall *> (stmt)))
17256 *handled_ops_p = true;
17257 return error_mark_node;
17259 break;
17261 /* We may reduce the following list if we find a way to implement the
17262 clauses, but now there is no point trying further. */
17263 case GIMPLE_OMP_CRITICAL:
17264 case GIMPLE_OMP_TASKGROUP:
17265 case GIMPLE_OMP_TASK:
17266 case GIMPLE_OMP_SECTION:
17267 case GIMPLE_OMP_SECTIONS:
17268 case GIMPLE_OMP_SECTIONS_SWITCH:
17269 case GIMPLE_OMP_TARGET:
17270 case GIMPLE_OMP_ORDERED:
17271 *handled_ops_p = true;
17272 return error_mark_node;
17274 default:
17275 break;
17277 return NULL;
17281 /* If TARGET follows a pattern that can be turned into a gridified GPGPU
17282 kernel, return true, otherwise return false. In the case of success, also
17283 fill in GROUP_SIZE_P with the requested group size or NULL if there is
17284 none. */
17286 static bool
17287 grid_target_follows_gridifiable_pattern (gomp_target *target, tree *group_size_p)
17289 if (gimple_omp_target_kind (target) != GF_OMP_TARGET_KIND_REGION)
17290 return false;
17292 location_t tloc = gimple_location (target);
17293 gimple *stmt
17294 = grid_find_single_omp_among_assignments (gimple_omp_body (target),
17295 tloc, "target");
17296 if (!stmt)
17297 return false;
17298 gomp_teams *teams = dyn_cast <gomp_teams *> (stmt);
17299 tree group_size = NULL;
17300 if (!teams)
17302 dump_printf_loc (MSG_NOTE, tloc,
17303 "Will not turn target construct into a simple "
17304 "GPGPU kernel because it does not have a sole teams "
17305 "construct in it.\n");
17306 return false;
17309 tree clauses = gimple_omp_teams_clauses (teams);
17310 while (clauses)
17312 switch (OMP_CLAUSE_CODE (clauses))
17314 case OMP_CLAUSE_NUM_TEAMS:
17315 if (dump_enabled_p ())
17316 dump_printf_loc (MSG_NOTE, tloc,
17317 "Will not turn target construct into a "
17318 "gridified GPGPU kernel because we cannot "
17319 "handle num_teams clause of teams "
17320 "construct\n ");
17321 return false;
17323 case OMP_CLAUSE_REDUCTION:
17324 if (dump_enabled_p ())
17325 dump_printf_loc (MSG_NOTE, tloc,
17326 "Will not turn target construct into a "
17327 "gridified GPGPU kernel because a reduction "
17328 "clause is present\n ");
17329 return false;
17331 case OMP_CLAUSE_LASTPRIVATE:
17332 if (dump_enabled_p ())
17333 dump_printf_loc (MSG_NOTE, tloc,
17334 "Will not turn target construct into a "
17335 "gridified GPGPU kernel because a lastprivate "
17336 "clause is present\n ");
17337 return false;
17339 case OMP_CLAUSE_THREAD_LIMIT:
17340 group_size = OMP_CLAUSE_OPERAND (clauses, 0);
17341 break;
17343 default:
17344 break;
17346 clauses = OMP_CLAUSE_CHAIN (clauses);
17349 stmt = grid_find_single_omp_among_assignments (gimple_omp_body (teams), tloc,
17350 "teams");
17351 if (!stmt)
17352 return false;
17353 gomp_for *dist = dyn_cast <gomp_for *> (stmt);
17354 if (!dist)
17356 dump_printf_loc (MSG_NOTE, tloc,
17357 "Will not turn target construct into a simple "
17358 "GPGPU kernel because the teams construct does not have "
17359 "a sole distribute construct in it.\n");
17360 return false;
17363 gcc_assert (gimple_omp_for_kind (dist) == GF_OMP_FOR_KIND_DISTRIBUTE);
17364 if (!gimple_omp_for_combined_p (dist))
17366 if (dump_enabled_p ())
17367 dump_printf_loc (MSG_NOTE, tloc,
17368 "Will not turn target construct into a gridified GPGPU "
17369 "kernel because we cannot handle a standalone "
17370 "distribute construct\n ");
17371 return false;
17373 if (dist->collapse > 1)
17375 if (dump_enabled_p ())
17376 dump_printf_loc (MSG_NOTE, tloc,
17377 "Will not turn target construct into a gridified GPGPU "
17378 "kernel because the distribute construct contains "
17379 "collapse clause\n");
17380 return false;
17382 struct omp_for_data fd;
17383 extract_omp_for_data (dist, &fd, NULL);
17384 if (fd.chunk_size)
17386 if (group_size && !operand_equal_p (group_size, fd.chunk_size, 0))
17388 if (dump_enabled_p ())
17389 dump_printf_loc (MSG_NOTE, tloc,
17390 "Will not turn target construct into a "
17391 "gridified GPGPU kernel because the teams "
17392 "thread limit is different from distribute "
17393 "schedule chunk\n");
17394 return false;
17396 group_size = fd.chunk_size;
17398 stmt = grid_find_single_omp_among_assignments (gimple_omp_body (dist), tloc,
17399 "distribute");
17400 gomp_parallel *par;
17401 if (!stmt || !(par = dyn_cast <gomp_parallel *> (stmt)))
17402 return false;
17404 clauses = gimple_omp_parallel_clauses (par);
17405 while (clauses)
17407 switch (OMP_CLAUSE_CODE (clauses))
17409 case OMP_CLAUSE_NUM_THREADS:
17410 if (dump_enabled_p ())
17411 dump_printf_loc (MSG_NOTE, tloc,
17412 "Will not turn target construct into a gridified"
17413 "GPGPU kernel because there is a num_threads "
17414 "clause of the parallel construct\n");
17415 return false;
17417 case OMP_CLAUSE_REDUCTION:
17418 if (dump_enabled_p ())
17419 dump_printf_loc (MSG_NOTE, tloc,
17420 "Will not turn target construct into a "
17421 "gridified GPGPU kernel because a reduction "
17422 "clause is present\n ");
17423 return false;
17425 case OMP_CLAUSE_LASTPRIVATE:
17426 if (dump_enabled_p ())
17427 dump_printf_loc (MSG_NOTE, tloc,
17428 "Will not turn target construct into a "
17429 "gridified GPGPU kernel because a lastprivate "
17430 "clause is present\n ");
17431 return false;
17433 default:
17434 break;
17436 clauses = OMP_CLAUSE_CHAIN (clauses);
17439 stmt = grid_find_single_omp_among_assignments (gimple_omp_body (par), tloc,
17440 "parallel");
17441 gomp_for *gfor;
17442 if (!stmt || !(gfor = dyn_cast <gomp_for *> (stmt)))
17443 return false;
17445 if (gimple_omp_for_kind (gfor) != GF_OMP_FOR_KIND_FOR)
17447 if (dump_enabled_p ())
17448 dump_printf_loc (MSG_NOTE, tloc,
17449 "Will not turn target construct into a gridified GPGPU "
17450 "kernel because the inner loop is not a simple for "
17451 "loop\n");
17452 return false;
17454 if (gfor->collapse > 1)
17456 if (dump_enabled_p ())
17457 dump_printf_loc (MSG_NOTE, tloc,
17458 "Will not turn target construct into a gridified GPGPU "
17459 "kernel because the inner loop contains collapse "
17460 "clause\n");
17461 return false;
17464 if (!grid_seq_only_contains_local_assignments (gimple_omp_for_pre_body (gfor)))
17466 if (dump_enabled_p ())
17467 dump_printf_loc (MSG_NOTE, tloc,
17468 "Will not turn target construct into a gridified GPGPU "
17469 "kernel because the inner loop pre_body contains"
17470 "a complex instruction\n");
17471 return false;
17474 clauses = gimple_omp_for_clauses (gfor);
17475 while (clauses)
17477 switch (OMP_CLAUSE_CODE (clauses))
17479 case OMP_CLAUSE_SCHEDULE:
17480 if (OMP_CLAUSE_SCHEDULE_KIND (clauses) != OMP_CLAUSE_SCHEDULE_AUTO)
17482 if (dump_enabled_p ())
17483 dump_printf_loc (MSG_NOTE, tloc,
17484 "Will not turn target construct into a "
17485 "gridified GPGPU kernel because the inner "
17486 "loop has a non-automatic scheduling clause\n");
17487 return false;
17489 break;
17491 case OMP_CLAUSE_REDUCTION:
17492 if (dump_enabled_p ())
17493 dump_printf_loc (MSG_NOTE, tloc,
17494 "Will not turn target construct into a "
17495 "gridified GPGPU kernel because a reduction "
17496 "clause is present\n ");
17497 return false;
17499 case OMP_CLAUSE_LASTPRIVATE:
17500 if (dump_enabled_p ())
17501 dump_printf_loc (MSG_NOTE, tloc,
17502 "Will not turn target construct into a "
17503 "gridified GPGPU kernel because a lastprivate "
17504 "clause is present\n ");
17505 return false;
17507 default:
17508 break;
17510 clauses = OMP_CLAUSE_CHAIN (clauses);
17513 struct walk_stmt_info wi;
17514 memset (&wi, 0, sizeof (wi));
17515 if (gimple *bad = walk_gimple_seq (gimple_omp_body (gfor),
17516 grid_find_ungridifiable_statement,
17517 NULL, &wi))
17519 if (dump_enabled_p ())
17521 if (is_gimple_call (bad))
17522 dump_printf_loc (MSG_NOTE, tloc,
17523 "Will not turn target construct into a gridified "
17524 " GPGPU kernel because the inner loop contains "
17525 "call to a noreturn function\n");
17526 else
17527 dump_printf_loc (MSG_NOTE, tloc,
17528 "Will not turn target construct into a gridified "
17529 "GPGPU kernel because the inner loop contains "
17530 "statement %s which cannot be transformed\n",
17531 gimple_code_name[(int) gimple_code (bad)]);
17533 return false;
17536 *group_size_p = group_size;
17537 return true;
17540 /* Operand walker, used to remap pre-body declarations according to a hash map
17541 provided in DATA. */
17543 static tree
17544 grid_remap_prebody_decls (tree *tp, int *walk_subtrees, void *data)
17546 tree t = *tp;
17548 if (DECL_P (t) || TYPE_P (t))
17549 *walk_subtrees = 0;
17550 else
17551 *walk_subtrees = 1;
17553 if (TREE_CODE (t) == VAR_DECL)
17555 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
17556 hash_map<tree, tree> *declmap = (hash_map<tree, tree> *) wi->info;
17557 tree *repl = declmap->get (t);
17558 if (repl)
17559 *tp = *repl;
17561 return NULL_TREE;
17564 /* Copy leading register-type assignments to local variables in SRC to just
17565 before DST, Creating temporaries, adjusting mapping of operands in WI and
17566 remapping operands as necessary. Add any new temporaries to TGT_BIND.
17567 Return the first statement that does not conform to
17568 grid_reg_assignment_to_local_var_p or NULL. */
17570 static gimple *
17571 grid_copy_leading_local_assignments (gimple_seq src, gimple_stmt_iterator *dst,
17572 gbind *tgt_bind, struct walk_stmt_info *wi)
17574 hash_map<tree, tree> *declmap = (hash_map<tree, tree> *) wi->info;
17575 gimple_stmt_iterator gsi;
17576 for (gsi = gsi_start (src); !gsi_end_p (gsi); gsi_next (&gsi))
17578 gimple *stmt = gsi_stmt (gsi);
17579 if (gbind *bind = dyn_cast <gbind *> (stmt))
17581 gimple *r = grid_copy_leading_local_assignments
17582 (gimple_bind_body (bind), dst, tgt_bind, wi);
17583 if (r)
17584 return r;
17585 else
17586 continue;
17588 if (!grid_reg_assignment_to_local_var_p (stmt))
17589 return stmt;
17590 tree lhs = gimple_assign_lhs (as_a <gassign *> (stmt));
17591 tree repl = copy_var_decl (lhs, create_tmp_var_name (NULL),
17592 TREE_TYPE (lhs));
17593 DECL_CONTEXT (repl) = current_function_decl;
17594 gimple_bind_append_vars (tgt_bind, repl);
17596 declmap->put (lhs, repl);
17597 gassign *copy = as_a <gassign *> (gimple_copy (stmt));
17598 walk_gimple_op (copy, grid_remap_prebody_decls, wi);
17599 gsi_insert_before (dst, copy, GSI_SAME_STMT);
17601 return NULL;
17604 /* Given freshly copied top level kernel SEQ, identify the individual OMP
17605 components, mark them as part of kernel and return the inner loop, and copy
17606 assignment leading to them just before DST, remapping them using WI and
17607 adding new temporaries to TGT_BIND. */
17609 static gomp_for *
17610 grid_process_kernel_body_copy (gimple_seq seq, gimple_stmt_iterator *dst,
17611 gbind *tgt_bind, struct walk_stmt_info *wi)
17613 gimple *stmt = grid_copy_leading_local_assignments (seq, dst, tgt_bind, wi);
17614 gomp_teams *teams = dyn_cast <gomp_teams *> (stmt);
17615 gcc_assert (teams);
17616 gimple_omp_teams_set_grid_phony (teams, true);
17617 stmt = grid_copy_leading_local_assignments (gimple_omp_body (teams), dst,
17618 tgt_bind, wi);
17619 gcc_checking_assert (stmt);
17620 gomp_for *dist = dyn_cast <gomp_for *> (stmt);
17621 gcc_assert (dist);
17622 gimple_seq prebody = gimple_omp_for_pre_body (dist);
17623 if (prebody)
17624 grid_copy_leading_local_assignments (prebody, dst, tgt_bind, wi);
17625 gimple_omp_for_set_grid_phony (dist, true);
17626 stmt = grid_copy_leading_local_assignments (gimple_omp_body (dist), dst,
17627 tgt_bind, wi);
17628 gcc_checking_assert (stmt);
17630 gomp_parallel *parallel = as_a <gomp_parallel *> (stmt);
17631 gimple_omp_parallel_set_grid_phony (parallel, true);
17632 stmt = grid_copy_leading_local_assignments (gimple_omp_body (parallel), dst,
17633 tgt_bind, wi);
17634 gomp_for *inner_loop = as_a <gomp_for *> (stmt);
17635 gimple_omp_for_set_kind (inner_loop, GF_OMP_FOR_KIND_GRID_LOOP);
17636 prebody = gimple_omp_for_pre_body (inner_loop);
17637 if (prebody)
17638 grid_copy_leading_local_assignments (prebody, dst, tgt_bind, wi);
17640 return inner_loop;
17643 /* If TARGET points to a GOMP_TARGET which follows a gridifiable pattern,
17644 create a GPU kernel for it. GSI must point to the same statement, TGT_BIND
17645 is the bind into which temporaries inserted before TARGET should be
17646 added. */
17648 static void
17649 grid_attempt_target_gridification (gomp_target *target,
17650 gimple_stmt_iterator *gsi,
17651 gbind *tgt_bind)
17653 tree group_size;
17654 if (!target || !grid_target_follows_gridifiable_pattern (target, &group_size))
17655 return;
17657 location_t loc = gimple_location (target);
17658 if (dump_enabled_p ())
17659 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
17660 "Target construct will be turned into a gridified GPGPU "
17661 "kernel\n");
17663 /* Copy target body to a GPUKERNEL construct: */
17664 gimple_seq kernel_seq = copy_gimple_seq_and_replace_locals
17665 (gimple_omp_body (target));
17667 hash_map<tree, tree> *declmap = new hash_map<tree, tree>;
17668 struct walk_stmt_info wi;
17669 memset (&wi, 0, sizeof (struct walk_stmt_info));
17670 wi.info = declmap;
17672 /* Copy assignments in between OMP statements before target, mark OMP
17673 statements within copy appropriatly. */
17674 gomp_for *inner_loop = grid_process_kernel_body_copy (kernel_seq, gsi,
17675 tgt_bind, &wi);
17677 gbind *old_bind = as_a <gbind *> (gimple_seq_first (gimple_omp_body (target)));
17678 gbind *new_bind = as_a <gbind *> (gimple_seq_first (kernel_seq));
17679 tree new_block = gimple_bind_block (new_bind);
17680 tree enc_block = BLOCK_SUPERCONTEXT (gimple_bind_block (old_bind));
17681 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (enc_block);
17682 BLOCK_SUBBLOCKS (enc_block) = new_block;
17683 BLOCK_SUPERCONTEXT (new_block) = enc_block;
17684 gimple *gpukernel = gimple_build_omp_grid_body (kernel_seq);
17685 gimple_seq_add_stmt
17686 (gimple_bind_body_ptr (as_a <gbind *> (gimple_omp_body (target))),
17687 gpukernel);
17689 walk_tree (&group_size, grid_remap_prebody_decls, &wi, NULL);
17690 push_gimplify_context ();
17691 size_t collapse = gimple_omp_for_collapse (inner_loop);
17692 for (size_t i = 0; i < collapse; i++)
17694 tree itype, type = TREE_TYPE (gimple_omp_for_index (inner_loop, i));
17695 if (POINTER_TYPE_P (type))
17696 itype = signed_type_for (type);
17697 else
17698 itype = type;
17700 enum tree_code cond_code = gimple_omp_for_cond (inner_loop, i);
17701 tree n1 = unshare_expr (gimple_omp_for_initial (inner_loop, i));
17702 walk_tree (&n1, grid_remap_prebody_decls, &wi, NULL);
17703 tree n2 = unshare_expr (gimple_omp_for_final (inner_loop, i));
17704 walk_tree (&n2, grid_remap_prebody_decls, &wi, NULL);
17705 adjust_for_condition (loc, &cond_code, &n2);
17706 tree step;
17707 step = get_omp_for_step_from_incr (loc,
17708 gimple_omp_for_incr (inner_loop, i));
17709 gimple_seq tmpseq = NULL;
17710 n1 = fold_convert (itype, n1);
17711 n2 = fold_convert (itype, n2);
17712 tree t = build_int_cst (itype, (cond_code == LT_EXPR ? -1 : 1));
17713 t = fold_build2 (PLUS_EXPR, itype, step, t);
17714 t = fold_build2 (PLUS_EXPR, itype, t, n2);
17715 t = fold_build2 (MINUS_EXPR, itype, t, n1);
17716 if (TYPE_UNSIGNED (itype) && cond_code == GT_EXPR)
17717 t = fold_build2 (TRUNC_DIV_EXPR, itype,
17718 fold_build1 (NEGATE_EXPR, itype, t),
17719 fold_build1 (NEGATE_EXPR, itype, step));
17720 else
17721 t = fold_build2 (TRUNC_DIV_EXPR, itype, t, step);
17722 tree gs = fold_convert (uint32_type_node, t);
17723 gimplify_expr (&gs, &tmpseq, NULL, is_gimple_val, fb_rvalue);
17724 if (!gimple_seq_empty_p (tmpseq))
17725 gsi_insert_seq_before (gsi, tmpseq, GSI_SAME_STMT);
17727 tree ws;
17728 if (i == 0 && group_size)
17730 ws = fold_convert (uint32_type_node, group_size);
17731 tmpseq = NULL;
17732 gimplify_expr (&ws, &tmpseq, NULL, is_gimple_val, fb_rvalue);
17733 if (!gimple_seq_empty_p (tmpseq))
17734 gsi_insert_seq_before (gsi, tmpseq, GSI_SAME_STMT);
17736 else
17737 ws = build_zero_cst (uint32_type_node);
17739 tree c = build_omp_clause (UNKNOWN_LOCATION, OMP_CLAUSE__GRIDDIM_);
17740 OMP_CLAUSE__GRIDDIM__DIMENSION (c) = i;
17741 OMP_CLAUSE__GRIDDIM__SIZE (c) = gs;
17742 OMP_CLAUSE__GRIDDIM__GROUP (c) = ws;
17743 OMP_CLAUSE_CHAIN (c) = gimple_omp_target_clauses (target);
17744 gimple_omp_target_set_clauses (target, c);
17746 pop_gimplify_context (tgt_bind);
17747 delete declmap;
17748 return;
17751 /* Walker function doing all the work for create_target_kernels. */
17753 static tree
17754 grid_gridify_all_targets_stmt (gimple_stmt_iterator *gsi,
17755 bool *handled_ops_p,
17756 struct walk_stmt_info *incoming)
17758 *handled_ops_p = false;
17760 gimple *stmt = gsi_stmt (*gsi);
17761 gomp_target *target = dyn_cast <gomp_target *> (stmt);
17762 if (target)
17764 gbind *tgt_bind = (gbind *) incoming->info;
17765 gcc_checking_assert (tgt_bind);
17766 grid_attempt_target_gridification (target, gsi, tgt_bind);
17767 return NULL_TREE;
17769 gbind *bind = dyn_cast <gbind *> (stmt);
17770 if (bind)
17772 *handled_ops_p = true;
17773 struct walk_stmt_info wi;
17774 memset (&wi, 0, sizeof (wi));
17775 wi.info = bind;
17776 walk_gimple_seq_mod (gimple_bind_body_ptr (bind),
17777 grid_gridify_all_targets_stmt, NULL, &wi);
17779 return NULL_TREE;
17782 /* Attempt to gridify all target constructs in BODY_P. All such targets will
17783 have their bodies duplicated, with the new copy being put into a
17784 gimple_omp_grid_body statement. All kernel-related construct within the
17785 grid_body will be marked with phony flags or kernel kinds. Moreover, some
17786 re-structuring is often needed, such as copying pre-bodies before the target
17787 construct so that kernel grid sizes can be computed. */
17789 static void
17790 grid_gridify_all_targets (gimple_seq *body_p)
17792 struct walk_stmt_info wi;
17793 memset (&wi, 0, sizeof (wi));
17794 walk_gimple_seq_mod (body_p, grid_gridify_all_targets_stmt, NULL, &wi);
17798 /* Main entry point. */
17800 static unsigned int
17801 execute_lower_omp (void)
17803 gimple_seq body;
17804 int i;
17805 omp_context *ctx;
17807 /* This pass always runs, to provide PROP_gimple_lomp.
17808 But often, there is nothing to do. */
17809 if (flag_cilkplus == 0 && flag_openacc == 0 && flag_openmp == 0
17810 && flag_openmp_simd == 0)
17811 return 0;
17813 all_contexts = splay_tree_new (splay_tree_compare_pointers, 0,
17814 delete_omp_context);
17816 body = gimple_body (current_function_decl);
17818 if (hsa_gen_requested_p ())
17819 grid_gridify_all_targets (&body);
17821 scan_omp (&body, NULL);
17822 gcc_assert (taskreg_nesting_level == 0);
17823 FOR_EACH_VEC_ELT (taskreg_contexts, i, ctx)
17824 finish_taskreg_scan (ctx);
17825 taskreg_contexts.release ();
17827 if (all_contexts->root)
17829 if (task_shared_vars)
17830 push_gimplify_context ();
17831 lower_omp (&body, NULL);
17832 if (task_shared_vars)
17833 pop_gimplify_context (NULL);
17836 if (all_contexts)
17838 splay_tree_delete (all_contexts);
17839 all_contexts = NULL;
17841 BITMAP_FREE (task_shared_vars);
17842 return 0;
17845 namespace {
17847 const pass_data pass_data_lower_omp =
17849 GIMPLE_PASS, /* type */
17850 "omplower", /* name */
17851 OPTGROUP_NONE, /* optinfo_flags */
17852 TV_NONE, /* tv_id */
17853 PROP_gimple_any, /* properties_required */
17854 PROP_gimple_lomp, /* properties_provided */
17855 0, /* properties_destroyed */
17856 0, /* todo_flags_start */
17857 0, /* todo_flags_finish */
17860 class pass_lower_omp : public gimple_opt_pass
17862 public:
17863 pass_lower_omp (gcc::context *ctxt)
17864 : gimple_opt_pass (pass_data_lower_omp, ctxt)
17867 /* opt_pass methods: */
17868 virtual unsigned int execute (function *) { return execute_lower_omp (); }
17870 }; // class pass_lower_omp
17872 } // anon namespace
17874 gimple_opt_pass *
17875 make_pass_lower_omp (gcc::context *ctxt)
17877 return new pass_lower_omp (ctxt);
17880 /* The following is a utility to diagnose structured block violations.
17881 It is not part of the "omplower" pass, as that's invoked too late. It
17882 should be invoked by the respective front ends after gimplification. */
17884 static splay_tree all_labels;
17886 /* Check for mismatched contexts and generate an error if needed. Return
17887 true if an error is detected. */
17889 static bool
17890 diagnose_sb_0 (gimple_stmt_iterator *gsi_p,
17891 gimple *branch_ctx, gimple *label_ctx)
17893 gcc_checking_assert (!branch_ctx || is_gimple_omp (branch_ctx));
17894 gcc_checking_assert (!label_ctx || is_gimple_omp (label_ctx));
17896 if (label_ctx == branch_ctx)
17897 return false;
17899 const char* kind = NULL;
17901 if (flag_cilkplus)
17903 if ((branch_ctx
17904 && gimple_code (branch_ctx) == GIMPLE_OMP_FOR
17905 && gimple_omp_for_kind (branch_ctx) == GF_OMP_FOR_KIND_CILKSIMD)
17906 || (label_ctx
17907 && gimple_code (label_ctx) == GIMPLE_OMP_FOR
17908 && gimple_omp_for_kind (label_ctx) == GF_OMP_FOR_KIND_CILKSIMD))
17909 kind = "Cilk Plus";
17911 if (flag_openacc)
17913 if ((branch_ctx && is_gimple_omp_oacc (branch_ctx))
17914 || (label_ctx && is_gimple_omp_oacc (label_ctx)))
17916 gcc_checking_assert (kind == NULL);
17917 kind = "OpenACC";
17920 if (kind == NULL)
17922 gcc_checking_assert (flag_openmp);
17923 kind = "OpenMP";
17927 Previously we kept track of the label's entire context in diagnose_sb_[12]
17928 so we could traverse it and issue a correct "exit" or "enter" error
17929 message upon a structured block violation.
17931 We built the context by building a list with tree_cons'ing, but there is
17932 no easy counterpart in gimple tuples. It seems like far too much work
17933 for issuing exit/enter error messages. If someone really misses the
17934 distinct error message... patches welcome.
17937 #if 0
17938 /* Try to avoid confusing the user by producing and error message
17939 with correct "exit" or "enter" verbiage. We prefer "exit"
17940 unless we can show that LABEL_CTX is nested within BRANCH_CTX. */
17941 if (branch_ctx == NULL)
17942 exit_p = false;
17943 else
17945 while (label_ctx)
17947 if (TREE_VALUE (label_ctx) == branch_ctx)
17949 exit_p = false;
17950 break;
17952 label_ctx = TREE_CHAIN (label_ctx);
17956 if (exit_p)
17957 error ("invalid exit from %s structured block", kind);
17958 else
17959 error ("invalid entry to %s structured block", kind);
17960 #endif
17962 /* If it's obvious we have an invalid entry, be specific about the error. */
17963 if (branch_ctx == NULL)
17964 error ("invalid entry to %s structured block", kind);
17965 else
17967 /* Otherwise, be vague and lazy, but efficient. */
17968 error ("invalid branch to/from %s structured block", kind);
17971 gsi_replace (gsi_p, gimple_build_nop (), false);
17972 return true;
17975 /* Pass 1: Create a minimal tree of structured blocks, and record
17976 where each label is found. */
17978 static tree
17979 diagnose_sb_1 (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
17980 struct walk_stmt_info *wi)
17982 gimple *context = (gimple *) wi->info;
17983 gimple *inner_context;
17984 gimple *stmt = gsi_stmt (*gsi_p);
17986 *handled_ops_p = true;
17988 switch (gimple_code (stmt))
17990 WALK_SUBSTMTS;
17992 case GIMPLE_OMP_PARALLEL:
17993 case GIMPLE_OMP_TASK:
17994 case GIMPLE_OMP_SECTIONS:
17995 case GIMPLE_OMP_SINGLE:
17996 case GIMPLE_OMP_SECTION:
17997 case GIMPLE_OMP_MASTER:
17998 case GIMPLE_OMP_ORDERED:
17999 case GIMPLE_OMP_CRITICAL:
18000 case GIMPLE_OMP_TARGET:
18001 case GIMPLE_OMP_TEAMS:
18002 case GIMPLE_OMP_TASKGROUP:
18003 /* The minimal context here is just the current OMP construct. */
18004 inner_context = stmt;
18005 wi->info = inner_context;
18006 walk_gimple_seq (gimple_omp_body (stmt), diagnose_sb_1, NULL, wi);
18007 wi->info = context;
18008 break;
18010 case GIMPLE_OMP_FOR:
18011 inner_context = stmt;
18012 wi->info = inner_context;
18013 /* gimple_omp_for_{index,initial,final} are all DECLs; no need to
18014 walk them. */
18015 walk_gimple_seq (gimple_omp_for_pre_body (stmt),
18016 diagnose_sb_1, NULL, wi);
18017 walk_gimple_seq (gimple_omp_body (stmt), diagnose_sb_1, NULL, wi);
18018 wi->info = context;
18019 break;
18021 case GIMPLE_LABEL:
18022 splay_tree_insert (all_labels,
18023 (splay_tree_key) gimple_label_label (
18024 as_a <glabel *> (stmt)),
18025 (splay_tree_value) context);
18026 break;
18028 default:
18029 break;
18032 return NULL_TREE;
18035 /* Pass 2: Check each branch and see if its context differs from that of
18036 the destination label's context. */
18038 static tree
18039 diagnose_sb_2 (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
18040 struct walk_stmt_info *wi)
18042 gimple *context = (gimple *) wi->info;
18043 splay_tree_node n;
18044 gimple *stmt = gsi_stmt (*gsi_p);
18046 *handled_ops_p = true;
18048 switch (gimple_code (stmt))
18050 WALK_SUBSTMTS;
18052 case GIMPLE_OMP_PARALLEL:
18053 case GIMPLE_OMP_TASK:
18054 case GIMPLE_OMP_SECTIONS:
18055 case GIMPLE_OMP_SINGLE:
18056 case GIMPLE_OMP_SECTION:
18057 case GIMPLE_OMP_MASTER:
18058 case GIMPLE_OMP_ORDERED:
18059 case GIMPLE_OMP_CRITICAL:
18060 case GIMPLE_OMP_TARGET:
18061 case GIMPLE_OMP_TEAMS:
18062 case GIMPLE_OMP_TASKGROUP:
18063 wi->info = stmt;
18064 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt), diagnose_sb_2, NULL, wi);
18065 wi->info = context;
18066 break;
18068 case GIMPLE_OMP_FOR:
18069 wi->info = stmt;
18070 /* gimple_omp_for_{index,initial,final} are all DECLs; no need to
18071 walk them. */
18072 walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt),
18073 diagnose_sb_2, NULL, wi);
18074 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt), diagnose_sb_2, NULL, wi);
18075 wi->info = context;
18076 break;
18078 case GIMPLE_COND:
18080 gcond *cond_stmt = as_a <gcond *> (stmt);
18081 tree lab = gimple_cond_true_label (cond_stmt);
18082 if (lab)
18084 n = splay_tree_lookup (all_labels,
18085 (splay_tree_key) lab);
18086 diagnose_sb_0 (gsi_p, context,
18087 n ? (gimple *) n->value : NULL);
18089 lab = gimple_cond_false_label (cond_stmt);
18090 if (lab)
18092 n = splay_tree_lookup (all_labels,
18093 (splay_tree_key) lab);
18094 diagnose_sb_0 (gsi_p, context,
18095 n ? (gimple *) n->value : NULL);
18098 break;
18100 case GIMPLE_GOTO:
18102 tree lab = gimple_goto_dest (stmt);
18103 if (TREE_CODE (lab) != LABEL_DECL)
18104 break;
18106 n = splay_tree_lookup (all_labels, (splay_tree_key) lab);
18107 diagnose_sb_0 (gsi_p, context, n ? (gimple *) n->value : NULL);
18109 break;
18111 case GIMPLE_SWITCH:
18113 gswitch *switch_stmt = as_a <gswitch *> (stmt);
18114 unsigned int i;
18115 for (i = 0; i < gimple_switch_num_labels (switch_stmt); ++i)
18117 tree lab = CASE_LABEL (gimple_switch_label (switch_stmt, i));
18118 n = splay_tree_lookup (all_labels, (splay_tree_key) lab);
18119 if (n && diagnose_sb_0 (gsi_p, context, (gimple *) n->value))
18120 break;
18123 break;
18125 case GIMPLE_RETURN:
18126 diagnose_sb_0 (gsi_p, context, NULL);
18127 break;
18129 default:
18130 break;
18133 return NULL_TREE;
18136 /* Called from tree-cfg.c::make_edges to create cfg edges for all relevant
18137 GIMPLE_* codes. */
18138 bool
18139 make_gimple_omp_edges (basic_block bb, struct omp_region **region,
18140 int *region_idx)
18142 gimple *last = last_stmt (bb);
18143 enum gimple_code code = gimple_code (last);
18144 struct omp_region *cur_region = *region;
18145 bool fallthru = false;
18147 switch (code)
18149 case GIMPLE_OMP_PARALLEL:
18150 case GIMPLE_OMP_TASK:
18151 case GIMPLE_OMP_FOR:
18152 case GIMPLE_OMP_SINGLE:
18153 case GIMPLE_OMP_TEAMS:
18154 case GIMPLE_OMP_MASTER:
18155 case GIMPLE_OMP_TASKGROUP:
18156 case GIMPLE_OMP_CRITICAL:
18157 case GIMPLE_OMP_SECTION:
18158 case GIMPLE_OMP_GRID_BODY:
18159 cur_region = new_omp_region (bb, code, cur_region);
18160 fallthru = true;
18161 break;
18163 case GIMPLE_OMP_ORDERED:
18164 cur_region = new_omp_region (bb, code, cur_region);
18165 fallthru = true;
18166 if (find_omp_clause (gimple_omp_ordered_clauses
18167 (as_a <gomp_ordered *> (last)),
18168 OMP_CLAUSE_DEPEND))
18169 cur_region = cur_region->outer;
18170 break;
18172 case GIMPLE_OMP_TARGET:
18173 cur_region = new_omp_region (bb, code, cur_region);
18174 fallthru = true;
18175 switch (gimple_omp_target_kind (last))
18177 case GF_OMP_TARGET_KIND_REGION:
18178 case GF_OMP_TARGET_KIND_DATA:
18179 case GF_OMP_TARGET_KIND_OACC_PARALLEL:
18180 case GF_OMP_TARGET_KIND_OACC_KERNELS:
18181 case GF_OMP_TARGET_KIND_OACC_DATA:
18182 case GF_OMP_TARGET_KIND_OACC_HOST_DATA:
18183 break;
18184 case GF_OMP_TARGET_KIND_UPDATE:
18185 case GF_OMP_TARGET_KIND_ENTER_DATA:
18186 case GF_OMP_TARGET_KIND_EXIT_DATA:
18187 case GF_OMP_TARGET_KIND_OACC_UPDATE:
18188 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA:
18189 case GF_OMP_TARGET_KIND_OACC_DECLARE:
18190 cur_region = cur_region->outer;
18191 break;
18192 default:
18193 gcc_unreachable ();
18195 break;
18197 case GIMPLE_OMP_SECTIONS:
18198 cur_region = new_omp_region (bb, code, cur_region);
18199 fallthru = true;
18200 break;
18202 case GIMPLE_OMP_SECTIONS_SWITCH:
18203 fallthru = false;
18204 break;
18206 case GIMPLE_OMP_ATOMIC_LOAD:
18207 case GIMPLE_OMP_ATOMIC_STORE:
18208 fallthru = true;
18209 break;
18211 case GIMPLE_OMP_RETURN:
18212 /* In the case of a GIMPLE_OMP_SECTION, the edge will go
18213 somewhere other than the next block. This will be
18214 created later. */
18215 cur_region->exit = bb;
18216 if (cur_region->type == GIMPLE_OMP_TASK)
18217 /* Add an edge corresponding to not scheduling the task
18218 immediately. */
18219 make_edge (cur_region->entry, bb, EDGE_ABNORMAL);
18220 fallthru = cur_region->type != GIMPLE_OMP_SECTION;
18221 cur_region = cur_region->outer;
18222 break;
18224 case GIMPLE_OMP_CONTINUE:
18225 cur_region->cont = bb;
18226 switch (cur_region->type)
18228 case GIMPLE_OMP_FOR:
18229 /* Mark all GIMPLE_OMP_FOR and GIMPLE_OMP_CONTINUE
18230 succs edges as abnormal to prevent splitting
18231 them. */
18232 single_succ_edge (cur_region->entry)->flags |= EDGE_ABNORMAL;
18233 /* Make the loopback edge. */
18234 make_edge (bb, single_succ (cur_region->entry),
18235 EDGE_ABNORMAL);
18237 /* Create an edge from GIMPLE_OMP_FOR to exit, which
18238 corresponds to the case that the body of the loop
18239 is not executed at all. */
18240 make_edge (cur_region->entry, bb->next_bb, EDGE_ABNORMAL);
18241 make_edge (bb, bb->next_bb, EDGE_FALLTHRU | EDGE_ABNORMAL);
18242 fallthru = false;
18243 break;
18245 case GIMPLE_OMP_SECTIONS:
18246 /* Wire up the edges into and out of the nested sections. */
18248 basic_block switch_bb = single_succ (cur_region->entry);
18250 struct omp_region *i;
18251 for (i = cur_region->inner; i ; i = i->next)
18253 gcc_assert (i->type == GIMPLE_OMP_SECTION);
18254 make_edge (switch_bb, i->entry, 0);
18255 make_edge (i->exit, bb, EDGE_FALLTHRU);
18258 /* Make the loopback edge to the block with
18259 GIMPLE_OMP_SECTIONS_SWITCH. */
18260 make_edge (bb, switch_bb, 0);
18262 /* Make the edge from the switch to exit. */
18263 make_edge (switch_bb, bb->next_bb, 0);
18264 fallthru = false;
18266 break;
18268 case GIMPLE_OMP_TASK:
18269 fallthru = true;
18270 break;
18272 default:
18273 gcc_unreachable ();
18275 break;
18277 default:
18278 gcc_unreachable ();
18281 if (*region != cur_region)
18283 *region = cur_region;
18284 if (cur_region)
18285 *region_idx = cur_region->entry->index;
18286 else
18287 *region_idx = 0;
18290 return fallthru;
18293 static unsigned int
18294 diagnose_omp_structured_block_errors (void)
18296 struct walk_stmt_info wi;
18297 gimple_seq body = gimple_body (current_function_decl);
18299 all_labels = splay_tree_new (splay_tree_compare_pointers, 0, 0);
18301 memset (&wi, 0, sizeof (wi));
18302 walk_gimple_seq (body, diagnose_sb_1, NULL, &wi);
18304 memset (&wi, 0, sizeof (wi));
18305 wi.want_locations = true;
18306 walk_gimple_seq_mod (&body, diagnose_sb_2, NULL, &wi);
18308 gimple_set_body (current_function_decl, body);
18310 splay_tree_delete (all_labels);
18311 all_labels = NULL;
18313 return 0;
18316 namespace {
18318 const pass_data pass_data_diagnose_omp_blocks =
18320 GIMPLE_PASS, /* type */
18321 "*diagnose_omp_blocks", /* name */
18322 OPTGROUP_NONE, /* optinfo_flags */
18323 TV_NONE, /* tv_id */
18324 PROP_gimple_any, /* properties_required */
18325 0, /* properties_provided */
18326 0, /* properties_destroyed */
18327 0, /* todo_flags_start */
18328 0, /* todo_flags_finish */
18331 class pass_diagnose_omp_blocks : public gimple_opt_pass
18333 public:
18334 pass_diagnose_omp_blocks (gcc::context *ctxt)
18335 : gimple_opt_pass (pass_data_diagnose_omp_blocks, ctxt)
18338 /* opt_pass methods: */
18339 virtual bool gate (function *)
18341 return flag_cilkplus || flag_openacc || flag_openmp;
18343 virtual unsigned int execute (function *)
18345 return diagnose_omp_structured_block_errors ();
18348 }; // class pass_diagnose_omp_blocks
18350 } // anon namespace
18352 gimple_opt_pass *
18353 make_pass_diagnose_omp_blocks (gcc::context *ctxt)
18355 return new pass_diagnose_omp_blocks (ctxt);
18358 /* SIMD clone supporting code. */
18360 /* Allocate a fresh `simd_clone' and return it. NARGS is the number
18361 of arguments to reserve space for. */
18363 static struct cgraph_simd_clone *
18364 simd_clone_struct_alloc (int nargs)
18366 struct cgraph_simd_clone *clone_info;
18367 size_t len = (sizeof (struct cgraph_simd_clone)
18368 + nargs * sizeof (struct cgraph_simd_clone_arg));
18369 clone_info = (struct cgraph_simd_clone *)
18370 ggc_internal_cleared_alloc (len);
18371 return clone_info;
18374 /* Make a copy of the `struct cgraph_simd_clone' in FROM to TO. */
18376 static inline void
18377 simd_clone_struct_copy (struct cgraph_simd_clone *to,
18378 struct cgraph_simd_clone *from)
18380 memcpy (to, from, (sizeof (struct cgraph_simd_clone)
18381 + ((from->nargs - from->inbranch)
18382 * sizeof (struct cgraph_simd_clone_arg))));
18385 /* Return vector of parameter types of function FNDECL. This uses
18386 TYPE_ARG_TYPES if available, otherwise falls back to types of
18387 DECL_ARGUMENTS types. */
18389 vec<tree>
18390 simd_clone_vector_of_formal_parm_types (tree fndecl)
18392 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
18393 return ipa_get_vector_of_formal_parm_types (TREE_TYPE (fndecl));
18394 vec<tree> args = ipa_get_vector_of_formal_parms (fndecl);
18395 unsigned int i;
18396 tree arg;
18397 FOR_EACH_VEC_ELT (args, i, arg)
18398 args[i] = TREE_TYPE (args[i]);
18399 return args;
18402 /* Given a simd function in NODE, extract the simd specific
18403 information from the OMP clauses passed in CLAUSES, and return
18404 the struct cgraph_simd_clone * if it should be cloned. *INBRANCH_SPECIFIED
18405 is set to TRUE if the `inbranch' or `notinbranch' clause specified,
18406 otherwise set to FALSE. */
18408 static struct cgraph_simd_clone *
18409 simd_clone_clauses_extract (struct cgraph_node *node, tree clauses,
18410 bool *inbranch_specified)
18412 vec<tree> args = simd_clone_vector_of_formal_parm_types (node->decl);
18413 tree t;
18414 int n;
18415 *inbranch_specified = false;
18417 n = args.length ();
18418 if (n > 0 && args.last () == void_type_node)
18419 n--;
18421 /* To distinguish from an OpenMP simd clone, Cilk Plus functions to
18422 be cloned have a distinctive artificial label in addition to "omp
18423 declare simd". */
18424 bool cilk_clone
18425 = (flag_cilkplus
18426 && lookup_attribute ("cilk simd function",
18427 DECL_ATTRIBUTES (node->decl)));
18429 /* Allocate one more than needed just in case this is an in-branch
18430 clone which will require a mask argument. */
18431 struct cgraph_simd_clone *clone_info = simd_clone_struct_alloc (n + 1);
18432 clone_info->nargs = n;
18433 clone_info->cilk_elemental = cilk_clone;
18435 if (!clauses)
18437 args.release ();
18438 return clone_info;
18440 clauses = TREE_VALUE (clauses);
18441 if (!clauses || TREE_CODE (clauses) != OMP_CLAUSE)
18442 return clone_info;
18444 for (t = clauses; t; t = OMP_CLAUSE_CHAIN (t))
18446 switch (OMP_CLAUSE_CODE (t))
18448 case OMP_CLAUSE_INBRANCH:
18449 clone_info->inbranch = 1;
18450 *inbranch_specified = true;
18451 break;
18452 case OMP_CLAUSE_NOTINBRANCH:
18453 clone_info->inbranch = 0;
18454 *inbranch_specified = true;
18455 break;
18456 case OMP_CLAUSE_SIMDLEN:
18457 clone_info->simdlen
18458 = TREE_INT_CST_LOW (OMP_CLAUSE_SIMDLEN_EXPR (t));
18459 break;
18460 case OMP_CLAUSE_LINEAR:
18462 tree decl = OMP_CLAUSE_DECL (t);
18463 tree step = OMP_CLAUSE_LINEAR_STEP (t);
18464 int argno = TREE_INT_CST_LOW (decl);
18465 if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (t))
18467 enum cgraph_simd_clone_arg_type arg_type;
18468 if (TREE_CODE (args[argno]) == REFERENCE_TYPE)
18469 switch (OMP_CLAUSE_LINEAR_KIND (t))
18471 case OMP_CLAUSE_LINEAR_REF:
18472 arg_type
18473 = SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP;
18474 break;
18475 case OMP_CLAUSE_LINEAR_UVAL:
18476 arg_type
18477 = SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP;
18478 break;
18479 case OMP_CLAUSE_LINEAR_VAL:
18480 case OMP_CLAUSE_LINEAR_DEFAULT:
18481 arg_type
18482 = SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP;
18483 break;
18484 default:
18485 gcc_unreachable ();
18487 else
18488 arg_type = SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP;
18489 clone_info->args[argno].arg_type = arg_type;
18490 clone_info->args[argno].linear_step = tree_to_shwi (step);
18491 gcc_assert (clone_info->args[argno].linear_step >= 0
18492 && clone_info->args[argno].linear_step < n);
18494 else
18496 if (POINTER_TYPE_P (args[argno]))
18497 step = fold_convert (ssizetype, step);
18498 if (!tree_fits_shwi_p (step))
18500 warning_at (OMP_CLAUSE_LOCATION (t), 0,
18501 "ignoring large linear step");
18502 args.release ();
18503 return NULL;
18505 else if (integer_zerop (step))
18507 warning_at (OMP_CLAUSE_LOCATION (t), 0,
18508 "ignoring zero linear step");
18509 args.release ();
18510 return NULL;
18512 else
18514 enum cgraph_simd_clone_arg_type arg_type;
18515 if (TREE_CODE (args[argno]) == REFERENCE_TYPE)
18516 switch (OMP_CLAUSE_LINEAR_KIND (t))
18518 case OMP_CLAUSE_LINEAR_REF:
18519 arg_type
18520 = SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP;
18521 break;
18522 case OMP_CLAUSE_LINEAR_UVAL:
18523 arg_type
18524 = SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP;
18525 break;
18526 case OMP_CLAUSE_LINEAR_VAL:
18527 case OMP_CLAUSE_LINEAR_DEFAULT:
18528 arg_type
18529 = SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP;
18530 break;
18531 default:
18532 gcc_unreachable ();
18534 else
18535 arg_type = SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP;
18536 clone_info->args[argno].arg_type = arg_type;
18537 clone_info->args[argno].linear_step = tree_to_shwi (step);
18540 break;
18542 case OMP_CLAUSE_UNIFORM:
18544 tree decl = OMP_CLAUSE_DECL (t);
18545 int argno = tree_to_uhwi (decl);
18546 clone_info->args[argno].arg_type
18547 = SIMD_CLONE_ARG_TYPE_UNIFORM;
18548 break;
18550 case OMP_CLAUSE_ALIGNED:
18552 tree decl = OMP_CLAUSE_DECL (t);
18553 int argno = tree_to_uhwi (decl);
18554 clone_info->args[argno].alignment
18555 = TREE_INT_CST_LOW (OMP_CLAUSE_ALIGNED_ALIGNMENT (t));
18556 break;
18558 default:
18559 break;
18562 args.release ();
18563 return clone_info;
18566 /* Given a SIMD clone in NODE, calculate the characteristic data
18567 type and return the coresponding type. The characteristic data
18568 type is computed as described in the Intel Vector ABI. */
18570 static tree
18571 simd_clone_compute_base_data_type (struct cgraph_node *node,
18572 struct cgraph_simd_clone *clone_info)
18574 tree type = integer_type_node;
18575 tree fndecl = node->decl;
18577 /* a) For non-void function, the characteristic data type is the
18578 return type. */
18579 if (TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE)
18580 type = TREE_TYPE (TREE_TYPE (fndecl));
18582 /* b) If the function has any non-uniform, non-linear parameters,
18583 then the characteristic data type is the type of the first
18584 such parameter. */
18585 else
18587 vec<tree> map = simd_clone_vector_of_formal_parm_types (fndecl);
18588 for (unsigned int i = 0; i < clone_info->nargs; ++i)
18589 if (clone_info->args[i].arg_type == SIMD_CLONE_ARG_TYPE_VECTOR)
18591 type = map[i];
18592 break;
18594 map.release ();
18597 /* c) If the characteristic data type determined by a) or b) above
18598 is struct, union, or class type which is pass-by-value (except
18599 for the type that maps to the built-in complex data type), the
18600 characteristic data type is int. */
18601 if (RECORD_OR_UNION_TYPE_P (type)
18602 && !aggregate_value_p (type, NULL)
18603 && TREE_CODE (type) != COMPLEX_TYPE)
18604 return integer_type_node;
18606 /* d) If none of the above three classes is applicable, the
18607 characteristic data type is int. */
18609 return type;
18611 /* e) For Intel Xeon Phi native and offload compilation, if the
18612 resulting characteristic data type is 8-bit or 16-bit integer
18613 data type, the characteristic data type is int. */
18614 /* Well, we don't handle Xeon Phi yet. */
18617 static tree
18618 simd_clone_mangle (struct cgraph_node *node,
18619 struct cgraph_simd_clone *clone_info)
18621 char vecsize_mangle = clone_info->vecsize_mangle;
18622 char mask = clone_info->inbranch ? 'M' : 'N';
18623 unsigned int simdlen = clone_info->simdlen;
18624 unsigned int n;
18625 pretty_printer pp;
18627 gcc_assert (vecsize_mangle && simdlen);
18629 pp_string (&pp, "_ZGV");
18630 pp_character (&pp, vecsize_mangle);
18631 pp_character (&pp, mask);
18632 pp_decimal_int (&pp, simdlen);
18634 for (n = 0; n < clone_info->nargs; ++n)
18636 struct cgraph_simd_clone_arg arg = clone_info->args[n];
18638 switch (arg.arg_type)
18640 case SIMD_CLONE_ARG_TYPE_UNIFORM:
18641 pp_character (&pp, 'u');
18642 break;
18643 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP:
18644 pp_character (&pp, 'l');
18645 goto mangle_linear;
18646 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP:
18647 pp_character (&pp, 'R');
18648 goto mangle_linear;
18649 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP:
18650 pp_character (&pp, 'L');
18651 goto mangle_linear;
18652 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP:
18653 pp_character (&pp, 'U');
18654 goto mangle_linear;
18655 mangle_linear:
18656 gcc_assert (arg.linear_step != 0);
18657 if (arg.linear_step > 1)
18658 pp_unsigned_wide_integer (&pp, arg.linear_step);
18659 else if (arg.linear_step < 0)
18661 pp_character (&pp, 'n');
18662 pp_unsigned_wide_integer (&pp, (-(unsigned HOST_WIDE_INT)
18663 arg.linear_step));
18665 break;
18666 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP:
18667 pp_string (&pp, "ls");
18668 pp_unsigned_wide_integer (&pp, arg.linear_step);
18669 break;
18670 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP:
18671 pp_string (&pp, "Rs");
18672 pp_unsigned_wide_integer (&pp, arg.linear_step);
18673 break;
18674 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP:
18675 pp_string (&pp, "Ls");
18676 pp_unsigned_wide_integer (&pp, arg.linear_step);
18677 break;
18678 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP:
18679 pp_string (&pp, "Us");
18680 pp_unsigned_wide_integer (&pp, arg.linear_step);
18681 break;
18682 default:
18683 pp_character (&pp, 'v');
18685 if (arg.alignment)
18687 pp_character (&pp, 'a');
18688 pp_decimal_int (&pp, arg.alignment);
18692 pp_underscore (&pp);
18693 const char *str = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->decl));
18694 if (*str == '*')
18695 ++str;
18696 pp_string (&pp, str);
18697 str = pp_formatted_text (&pp);
18699 /* If there already is a SIMD clone with the same mangled name, don't
18700 add another one. This can happen e.g. for
18701 #pragma omp declare simd
18702 #pragma omp declare simd simdlen(8)
18703 int foo (int, int);
18704 if the simdlen is assumed to be 8 for the first one, etc. */
18705 for (struct cgraph_node *clone = node->simd_clones; clone;
18706 clone = clone->simdclone->next_clone)
18707 if (strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (clone->decl)),
18708 str) == 0)
18709 return NULL_TREE;
18711 return get_identifier (str);
18714 /* Create a simd clone of OLD_NODE and return it. */
18716 static struct cgraph_node *
18717 simd_clone_create (struct cgraph_node *old_node)
18719 struct cgraph_node *new_node;
18720 if (old_node->definition)
18722 if (!old_node->has_gimple_body_p ())
18723 return NULL;
18724 old_node->get_body ();
18725 new_node = old_node->create_version_clone_with_body (vNULL, NULL, NULL,
18726 false, NULL, NULL,
18727 "simdclone");
18729 else
18731 tree old_decl = old_node->decl;
18732 tree new_decl = copy_node (old_node->decl);
18733 DECL_NAME (new_decl) = clone_function_name (old_decl, "simdclone");
18734 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
18735 SET_DECL_RTL (new_decl, NULL);
18736 DECL_STATIC_CONSTRUCTOR (new_decl) = 0;
18737 DECL_STATIC_DESTRUCTOR (new_decl) = 0;
18738 new_node = old_node->create_version_clone (new_decl, vNULL, NULL);
18739 if (old_node->in_other_partition)
18740 new_node->in_other_partition = 1;
18741 symtab->call_cgraph_insertion_hooks (new_node);
18743 if (new_node == NULL)
18744 return new_node;
18746 TREE_PUBLIC (new_node->decl) = TREE_PUBLIC (old_node->decl);
18748 /* The function cgraph_function_versioning () will force the new
18749 symbol local. Undo this, and inherit external visability from
18750 the old node. */
18751 new_node->local.local = old_node->local.local;
18752 new_node->externally_visible = old_node->externally_visible;
18754 return new_node;
18757 /* Adjust the return type of the given function to its appropriate
18758 vector counterpart. Returns a simd array to be used throughout the
18759 function as a return value. */
18761 static tree
18762 simd_clone_adjust_return_type (struct cgraph_node *node)
18764 tree fndecl = node->decl;
18765 tree orig_rettype = TREE_TYPE (TREE_TYPE (fndecl));
18766 unsigned int veclen;
18767 tree t;
18769 /* Adjust the function return type. */
18770 if (orig_rettype == void_type_node)
18771 return NULL_TREE;
18772 TREE_TYPE (fndecl) = build_distinct_type_copy (TREE_TYPE (fndecl));
18773 t = TREE_TYPE (TREE_TYPE (fndecl));
18774 if (INTEGRAL_TYPE_P (t) || POINTER_TYPE_P (t))
18775 veclen = node->simdclone->vecsize_int;
18776 else
18777 veclen = node->simdclone->vecsize_float;
18778 veclen /= GET_MODE_BITSIZE (TYPE_MODE (t));
18779 if (veclen > node->simdclone->simdlen)
18780 veclen = node->simdclone->simdlen;
18781 if (POINTER_TYPE_P (t))
18782 t = pointer_sized_int_node;
18783 if (veclen == node->simdclone->simdlen)
18784 t = build_vector_type (t, node->simdclone->simdlen);
18785 else
18787 t = build_vector_type (t, veclen);
18788 t = build_array_type_nelts (t, node->simdclone->simdlen / veclen);
18790 TREE_TYPE (TREE_TYPE (fndecl)) = t;
18791 if (!node->definition)
18792 return NULL_TREE;
18794 t = DECL_RESULT (fndecl);
18795 /* Adjust the DECL_RESULT. */
18796 gcc_assert (TREE_TYPE (t) != void_type_node);
18797 TREE_TYPE (t) = TREE_TYPE (TREE_TYPE (fndecl));
18798 relayout_decl (t);
18800 tree atype = build_array_type_nelts (orig_rettype,
18801 node->simdclone->simdlen);
18802 if (veclen != node->simdclone->simdlen)
18803 return build1 (VIEW_CONVERT_EXPR, atype, t);
18805 /* Set up a SIMD array to use as the return value. */
18806 tree retval = create_tmp_var_raw (atype, "retval");
18807 gimple_add_tmp_var (retval);
18808 return retval;
18811 /* Each vector argument has a corresponding array to be used locally
18812 as part of the eventual loop. Create such temporary array and
18813 return it.
18815 PREFIX is the prefix to be used for the temporary.
18817 TYPE is the inner element type.
18819 SIMDLEN is the number of elements. */
18821 static tree
18822 create_tmp_simd_array (const char *prefix, tree type, int simdlen)
18824 tree atype = build_array_type_nelts (type, simdlen);
18825 tree avar = create_tmp_var_raw (atype, prefix);
18826 gimple_add_tmp_var (avar);
18827 return avar;
18830 /* Modify the function argument types to their corresponding vector
18831 counterparts if appropriate. Also, create one array for each simd
18832 argument to be used locally when using the function arguments as
18833 part of the loop.
18835 NODE is the function whose arguments are to be adjusted.
18837 Returns an adjustment vector that will be filled describing how the
18838 argument types will be adjusted. */
18840 static ipa_parm_adjustment_vec
18841 simd_clone_adjust_argument_types (struct cgraph_node *node)
18843 vec<tree> args;
18844 ipa_parm_adjustment_vec adjustments;
18846 if (node->definition)
18847 args = ipa_get_vector_of_formal_parms (node->decl);
18848 else
18849 args = simd_clone_vector_of_formal_parm_types (node->decl);
18850 adjustments.create (args.length ());
18851 unsigned i, j, veclen;
18852 struct ipa_parm_adjustment adj;
18853 for (i = 0; i < node->simdclone->nargs; ++i)
18855 memset (&adj, 0, sizeof (adj));
18856 tree parm = args[i];
18857 tree parm_type = node->definition ? TREE_TYPE (parm) : parm;
18858 adj.base_index = i;
18859 adj.base = parm;
18861 node->simdclone->args[i].orig_arg = node->definition ? parm : NULL_TREE;
18862 node->simdclone->args[i].orig_type = parm_type;
18864 switch (node->simdclone->args[i].arg_type)
18866 default:
18867 /* No adjustment necessary for scalar arguments. */
18868 adj.op = IPA_PARM_OP_COPY;
18869 break;
18870 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP:
18871 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP:
18872 if (node->definition)
18873 node->simdclone->args[i].simd_array
18874 = create_tmp_simd_array (IDENTIFIER_POINTER (DECL_NAME (parm)),
18875 TREE_TYPE (parm_type),
18876 node->simdclone->simdlen);
18877 adj.op = IPA_PARM_OP_COPY;
18878 break;
18879 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP:
18880 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP:
18881 case SIMD_CLONE_ARG_TYPE_VECTOR:
18882 if (INTEGRAL_TYPE_P (parm_type) || POINTER_TYPE_P (parm_type))
18883 veclen = node->simdclone->vecsize_int;
18884 else
18885 veclen = node->simdclone->vecsize_float;
18886 veclen /= GET_MODE_BITSIZE (TYPE_MODE (parm_type));
18887 if (veclen > node->simdclone->simdlen)
18888 veclen = node->simdclone->simdlen;
18889 adj.arg_prefix = "simd";
18890 if (POINTER_TYPE_P (parm_type))
18891 adj.type = build_vector_type (pointer_sized_int_node, veclen);
18892 else
18893 adj.type = build_vector_type (parm_type, veclen);
18894 node->simdclone->args[i].vector_type = adj.type;
18895 for (j = veclen; j < node->simdclone->simdlen; j += veclen)
18897 adjustments.safe_push (adj);
18898 if (j == veclen)
18900 memset (&adj, 0, sizeof (adj));
18901 adj.op = IPA_PARM_OP_NEW;
18902 adj.arg_prefix = "simd";
18903 adj.base_index = i;
18904 adj.type = node->simdclone->args[i].vector_type;
18908 if (node->definition)
18909 node->simdclone->args[i].simd_array
18910 = create_tmp_simd_array (IDENTIFIER_POINTER (DECL_NAME (parm)),
18911 parm_type, node->simdclone->simdlen);
18913 adjustments.safe_push (adj);
18916 if (node->simdclone->inbranch)
18918 tree base_type
18919 = simd_clone_compute_base_data_type (node->simdclone->origin,
18920 node->simdclone);
18922 memset (&adj, 0, sizeof (adj));
18923 adj.op = IPA_PARM_OP_NEW;
18924 adj.arg_prefix = "mask";
18926 adj.base_index = i;
18927 if (INTEGRAL_TYPE_P (base_type) || POINTER_TYPE_P (base_type))
18928 veclen = node->simdclone->vecsize_int;
18929 else
18930 veclen = node->simdclone->vecsize_float;
18931 veclen /= GET_MODE_BITSIZE (TYPE_MODE (base_type));
18932 if (veclen > node->simdclone->simdlen)
18933 veclen = node->simdclone->simdlen;
18934 if (POINTER_TYPE_P (base_type))
18935 adj.type = build_vector_type (pointer_sized_int_node, veclen);
18936 else
18937 adj.type = build_vector_type (base_type, veclen);
18938 adjustments.safe_push (adj);
18940 for (j = veclen; j < node->simdclone->simdlen; j += veclen)
18941 adjustments.safe_push (adj);
18943 /* We have previously allocated one extra entry for the mask. Use
18944 it and fill it. */
18945 struct cgraph_simd_clone *sc = node->simdclone;
18946 sc->nargs++;
18947 if (node->definition)
18949 sc->args[i].orig_arg
18950 = build_decl (UNKNOWN_LOCATION, PARM_DECL, NULL, base_type);
18951 sc->args[i].simd_array
18952 = create_tmp_simd_array ("mask", base_type, sc->simdlen);
18954 sc->args[i].orig_type = base_type;
18955 sc->args[i].arg_type = SIMD_CLONE_ARG_TYPE_MASK;
18958 if (node->definition)
18959 ipa_modify_formal_parameters (node->decl, adjustments);
18960 else
18962 tree new_arg_types = NULL_TREE, new_reversed;
18963 bool last_parm_void = false;
18964 if (args.length () > 0 && args.last () == void_type_node)
18965 last_parm_void = true;
18967 gcc_assert (TYPE_ARG_TYPES (TREE_TYPE (node->decl)));
18968 j = adjustments.length ();
18969 for (i = 0; i < j; i++)
18971 struct ipa_parm_adjustment *adj = &adjustments[i];
18972 tree ptype;
18973 if (adj->op == IPA_PARM_OP_COPY)
18974 ptype = args[adj->base_index];
18975 else
18976 ptype = adj->type;
18977 new_arg_types = tree_cons (NULL_TREE, ptype, new_arg_types);
18979 new_reversed = nreverse (new_arg_types);
18980 if (last_parm_void)
18982 if (new_reversed)
18983 TREE_CHAIN (new_arg_types) = void_list_node;
18984 else
18985 new_reversed = void_list_node;
18988 tree new_type = build_distinct_type_copy (TREE_TYPE (node->decl));
18989 TYPE_ARG_TYPES (new_type) = new_reversed;
18990 TREE_TYPE (node->decl) = new_type;
18992 adjustments.release ();
18994 args.release ();
18995 return adjustments;
18998 /* Initialize and copy the function arguments in NODE to their
18999 corresponding local simd arrays. Returns a fresh gimple_seq with
19000 the instruction sequence generated. */
19002 static gimple_seq
19003 simd_clone_init_simd_arrays (struct cgraph_node *node,
19004 ipa_parm_adjustment_vec adjustments)
19006 gimple_seq seq = NULL;
19007 unsigned i = 0, j = 0, k;
19009 for (tree arg = DECL_ARGUMENTS (node->decl);
19010 arg;
19011 arg = DECL_CHAIN (arg), i++, j++)
19013 if (adjustments[j].op == IPA_PARM_OP_COPY
19014 || POINTER_TYPE_P (TREE_TYPE (arg)))
19015 continue;
19017 node->simdclone->args[i].vector_arg = arg;
19019 tree array = node->simdclone->args[i].simd_array;
19020 if (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg)) == node->simdclone->simdlen)
19022 tree ptype = build_pointer_type (TREE_TYPE (TREE_TYPE (array)));
19023 tree ptr = build_fold_addr_expr (array);
19024 tree t = build2 (MEM_REF, TREE_TYPE (arg), ptr,
19025 build_int_cst (ptype, 0));
19026 t = build2 (MODIFY_EXPR, TREE_TYPE (t), t, arg);
19027 gimplify_and_add (t, &seq);
19029 else
19031 unsigned int simdlen = TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg));
19032 tree ptype = build_pointer_type (TREE_TYPE (TREE_TYPE (array)));
19033 for (k = 0; k < node->simdclone->simdlen; k += simdlen)
19035 tree ptr = build_fold_addr_expr (array);
19036 int elemsize;
19037 if (k)
19039 arg = DECL_CHAIN (arg);
19040 j++;
19042 elemsize
19043 = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (arg))));
19044 tree t = build2 (MEM_REF, TREE_TYPE (arg), ptr,
19045 build_int_cst (ptype, k * elemsize));
19046 t = build2 (MODIFY_EXPR, TREE_TYPE (t), t, arg);
19047 gimplify_and_add (t, &seq);
19051 return seq;
19054 /* Callback info for ipa_simd_modify_stmt_ops below. */
19056 struct modify_stmt_info {
19057 ipa_parm_adjustment_vec adjustments;
19058 gimple *stmt;
19059 /* True if the parent statement was modified by
19060 ipa_simd_modify_stmt_ops. */
19061 bool modified;
19064 /* Callback for walk_gimple_op.
19066 Adjust operands from a given statement as specified in the
19067 adjustments vector in the callback data. */
19069 static tree
19070 ipa_simd_modify_stmt_ops (tree *tp, int *walk_subtrees, void *data)
19072 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
19073 struct modify_stmt_info *info = (struct modify_stmt_info *) wi->info;
19074 tree *orig_tp = tp;
19075 if (TREE_CODE (*tp) == ADDR_EXPR)
19076 tp = &TREE_OPERAND (*tp, 0);
19077 struct ipa_parm_adjustment *cand = NULL;
19078 if (TREE_CODE (*tp) == PARM_DECL)
19079 cand = ipa_get_adjustment_candidate (&tp, NULL, info->adjustments, true);
19080 else
19082 if (TYPE_P (*tp))
19083 *walk_subtrees = 0;
19086 tree repl = NULL_TREE;
19087 if (cand)
19088 repl = unshare_expr (cand->new_decl);
19089 else
19091 if (tp != orig_tp)
19093 *walk_subtrees = 0;
19094 bool modified = info->modified;
19095 info->modified = false;
19096 walk_tree (tp, ipa_simd_modify_stmt_ops, wi, wi->pset);
19097 if (!info->modified)
19099 info->modified = modified;
19100 return NULL_TREE;
19102 info->modified = modified;
19103 repl = *tp;
19105 else
19106 return NULL_TREE;
19109 if (tp != orig_tp)
19111 repl = build_fold_addr_expr (repl);
19112 gimple *stmt;
19113 if (is_gimple_debug (info->stmt))
19115 tree vexpr = make_node (DEBUG_EXPR_DECL);
19116 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL);
19117 DECL_ARTIFICIAL (vexpr) = 1;
19118 TREE_TYPE (vexpr) = TREE_TYPE (repl);
19119 DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (repl));
19120 repl = vexpr;
19122 else
19124 stmt = gimple_build_assign (make_ssa_name (TREE_TYPE (repl)), repl);
19125 repl = gimple_assign_lhs (stmt);
19127 gimple_stmt_iterator gsi = gsi_for_stmt (info->stmt);
19128 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
19129 *orig_tp = repl;
19131 else if (!useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (repl)))
19133 tree vce = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (*tp), repl);
19134 *tp = vce;
19136 else
19137 *tp = repl;
19139 info->modified = true;
19140 return NULL_TREE;
19143 /* Traverse the function body and perform all modifications as
19144 described in ADJUSTMENTS. At function return, ADJUSTMENTS will be
19145 modified such that the replacement/reduction value will now be an
19146 offset into the corresponding simd_array.
19148 This function will replace all function argument uses with their
19149 corresponding simd array elements, and ajust the return values
19150 accordingly. */
19152 static void
19153 ipa_simd_modify_function_body (struct cgraph_node *node,
19154 ipa_parm_adjustment_vec adjustments,
19155 tree retval_array, tree iter)
19157 basic_block bb;
19158 unsigned int i, j, l;
19160 /* Re-use the adjustments array, but this time use it to replace
19161 every function argument use to an offset into the corresponding
19162 simd_array. */
19163 for (i = 0, j = 0; i < node->simdclone->nargs; ++i, ++j)
19165 if (!node->simdclone->args[i].vector_arg)
19166 continue;
19168 tree basetype = TREE_TYPE (node->simdclone->args[i].orig_arg);
19169 tree vectype = TREE_TYPE (node->simdclone->args[i].vector_arg);
19170 adjustments[j].new_decl
19171 = build4 (ARRAY_REF,
19172 basetype,
19173 node->simdclone->args[i].simd_array,
19174 iter,
19175 NULL_TREE, NULL_TREE);
19176 if (adjustments[j].op == IPA_PARM_OP_NONE
19177 && TYPE_VECTOR_SUBPARTS (vectype) < node->simdclone->simdlen)
19178 j += node->simdclone->simdlen / TYPE_VECTOR_SUBPARTS (vectype) - 1;
19181 l = adjustments.length ();
19182 for (i = 1; i < num_ssa_names; i++)
19184 tree name = ssa_name (i);
19185 if (name
19186 && SSA_NAME_VAR (name)
19187 && TREE_CODE (SSA_NAME_VAR (name)) == PARM_DECL)
19189 for (j = 0; j < l; j++)
19190 if (SSA_NAME_VAR (name) == adjustments[j].base
19191 && adjustments[j].new_decl)
19193 tree base_var;
19194 if (adjustments[j].new_ssa_base == NULL_TREE)
19196 base_var
19197 = copy_var_decl (adjustments[j].base,
19198 DECL_NAME (adjustments[j].base),
19199 TREE_TYPE (adjustments[j].base));
19200 adjustments[j].new_ssa_base = base_var;
19202 else
19203 base_var = adjustments[j].new_ssa_base;
19204 if (SSA_NAME_IS_DEFAULT_DEF (name))
19206 bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
19207 gimple_stmt_iterator gsi = gsi_after_labels (bb);
19208 tree new_decl = unshare_expr (adjustments[j].new_decl);
19209 set_ssa_default_def (cfun, adjustments[j].base, NULL_TREE);
19210 SET_SSA_NAME_VAR_OR_IDENTIFIER (name, base_var);
19211 SSA_NAME_IS_DEFAULT_DEF (name) = 0;
19212 gimple *stmt = gimple_build_assign (name, new_decl);
19213 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
19215 else
19216 SET_SSA_NAME_VAR_OR_IDENTIFIER (name, base_var);
19221 struct modify_stmt_info info;
19222 info.adjustments = adjustments;
19224 FOR_EACH_BB_FN (bb, DECL_STRUCT_FUNCTION (node->decl))
19226 gimple_stmt_iterator gsi;
19228 gsi = gsi_start_bb (bb);
19229 while (!gsi_end_p (gsi))
19231 gimple *stmt = gsi_stmt (gsi);
19232 info.stmt = stmt;
19233 struct walk_stmt_info wi;
19235 memset (&wi, 0, sizeof (wi));
19236 info.modified = false;
19237 wi.info = &info;
19238 walk_gimple_op (stmt, ipa_simd_modify_stmt_ops, &wi);
19240 if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
19242 tree retval = gimple_return_retval (return_stmt);
19243 if (!retval)
19245 gsi_remove (&gsi, true);
19246 continue;
19249 /* Replace `return foo' with `retval_array[iter] = foo'. */
19250 tree ref = build4 (ARRAY_REF, TREE_TYPE (retval),
19251 retval_array, iter, NULL, NULL);
19252 stmt = gimple_build_assign (ref, retval);
19253 gsi_replace (&gsi, stmt, true);
19254 info.modified = true;
19257 if (info.modified)
19259 update_stmt (stmt);
19260 if (maybe_clean_eh_stmt (stmt))
19261 gimple_purge_dead_eh_edges (gimple_bb (stmt));
19263 gsi_next (&gsi);
19268 /* Helper function of simd_clone_adjust, return linear step addend
19269 of Ith argument. */
19271 static tree
19272 simd_clone_linear_addend (struct cgraph_node *node, unsigned int i,
19273 tree addtype, basic_block entry_bb)
19275 tree ptype = NULL_TREE;
19276 switch (node->simdclone->args[i].arg_type)
19278 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP:
19279 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP:
19280 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP:
19281 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP:
19282 return build_int_cst (addtype, node->simdclone->args[i].linear_step);
19283 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP:
19284 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP:
19285 ptype = TREE_TYPE (node->simdclone->args[i].orig_arg);
19286 break;
19287 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP:
19288 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP:
19289 ptype = TREE_TYPE (TREE_TYPE (node->simdclone->args[i].orig_arg));
19290 break;
19291 default:
19292 gcc_unreachable ();
19295 unsigned int idx = node->simdclone->args[i].linear_step;
19296 tree arg = node->simdclone->args[idx].orig_arg;
19297 gcc_assert (is_gimple_reg_type (TREE_TYPE (arg)));
19298 gimple_stmt_iterator gsi = gsi_after_labels (entry_bb);
19299 gimple *g;
19300 tree ret;
19301 if (is_gimple_reg (arg))
19302 ret = get_or_create_ssa_default_def (cfun, arg);
19303 else
19305 g = gimple_build_assign (make_ssa_name (TREE_TYPE (arg)), arg);
19306 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19307 ret = gimple_assign_lhs (g);
19309 if (TREE_CODE (TREE_TYPE (arg)) == REFERENCE_TYPE)
19311 g = gimple_build_assign (make_ssa_name (TREE_TYPE (TREE_TYPE (arg))),
19312 build_simple_mem_ref (ret));
19313 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19314 ret = gimple_assign_lhs (g);
19316 if (!useless_type_conversion_p (addtype, TREE_TYPE (ret)))
19318 g = gimple_build_assign (make_ssa_name (addtype), NOP_EXPR, ret);
19319 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19320 ret = gimple_assign_lhs (g);
19322 if (POINTER_TYPE_P (ptype))
19324 tree size = TYPE_SIZE_UNIT (TREE_TYPE (ptype));
19325 if (size && TREE_CODE (size) == INTEGER_CST)
19327 g = gimple_build_assign (make_ssa_name (addtype), MULT_EXPR,
19328 ret, fold_convert (addtype, size));
19329 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19330 ret = gimple_assign_lhs (g);
19333 return ret;
19336 /* Adjust the argument types in NODE to their appropriate vector
19337 counterparts. */
19339 static void
19340 simd_clone_adjust (struct cgraph_node *node)
19342 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
19344 targetm.simd_clone.adjust (node);
19346 tree retval = simd_clone_adjust_return_type (node);
19347 ipa_parm_adjustment_vec adjustments
19348 = simd_clone_adjust_argument_types (node);
19350 push_gimplify_context ();
19352 gimple_seq seq = simd_clone_init_simd_arrays (node, adjustments);
19354 /* Adjust all uses of vector arguments accordingly. Adjust all
19355 return values accordingly. */
19356 tree iter = create_tmp_var (unsigned_type_node, "iter");
19357 tree iter1 = make_ssa_name (iter);
19358 tree iter2 = make_ssa_name (iter);
19359 ipa_simd_modify_function_body (node, adjustments, retval, iter1);
19361 /* Initialize the iteration variable. */
19362 basic_block entry_bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
19363 basic_block body_bb = split_block_after_labels (entry_bb)->dest;
19364 gimple_stmt_iterator gsi = gsi_after_labels (entry_bb);
19365 /* Insert the SIMD array and iv initialization at function
19366 entry. */
19367 gsi_insert_seq_before (&gsi, seq, GSI_NEW_STMT);
19369 pop_gimplify_context (NULL);
19371 /* Create a new BB right before the original exit BB, to hold the
19372 iteration increment and the condition/branch. */
19373 basic_block orig_exit = EDGE_PRED (EXIT_BLOCK_PTR_FOR_FN (cfun), 0)->src;
19374 basic_block incr_bb = create_empty_bb (orig_exit);
19375 add_bb_to_loop (incr_bb, body_bb->loop_father);
19376 /* The succ of orig_exit was EXIT_BLOCK_PTR_FOR_FN (cfun), with an empty
19377 flag. Set it now to be a FALLTHRU_EDGE. */
19378 gcc_assert (EDGE_COUNT (orig_exit->succs) == 1);
19379 EDGE_SUCC (orig_exit, 0)->flags |= EDGE_FALLTHRU;
19380 for (unsigned i = 0;
19381 i < EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun)->preds); ++i)
19383 edge e = EDGE_PRED (EXIT_BLOCK_PTR_FOR_FN (cfun), i);
19384 redirect_edge_succ (e, incr_bb);
19386 edge e = make_edge (incr_bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
19387 e->probability = REG_BR_PROB_BASE;
19388 gsi = gsi_last_bb (incr_bb);
19389 gimple *g = gimple_build_assign (iter2, PLUS_EXPR, iter1,
19390 build_int_cst (unsigned_type_node, 1));
19391 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19393 /* Mostly annotate the loop for the vectorizer (the rest is done below). */
19394 struct loop *loop = alloc_loop ();
19395 cfun->has_force_vectorize_loops = true;
19396 loop->safelen = node->simdclone->simdlen;
19397 loop->force_vectorize = true;
19398 loop->header = body_bb;
19400 /* Branch around the body if the mask applies. */
19401 if (node->simdclone->inbranch)
19403 gimple_stmt_iterator gsi = gsi_last_bb (loop->header);
19404 tree mask_array
19405 = node->simdclone->args[node->simdclone->nargs - 1].simd_array;
19406 tree mask = make_ssa_name (TREE_TYPE (TREE_TYPE (mask_array)));
19407 tree aref = build4 (ARRAY_REF,
19408 TREE_TYPE (TREE_TYPE (mask_array)),
19409 mask_array, iter1,
19410 NULL, NULL);
19411 g = gimple_build_assign (mask, aref);
19412 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19413 int bitsize = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (aref)));
19414 if (!INTEGRAL_TYPE_P (TREE_TYPE (aref)))
19416 aref = build1 (VIEW_CONVERT_EXPR,
19417 build_nonstandard_integer_type (bitsize, 0), mask);
19418 mask = make_ssa_name (TREE_TYPE (aref));
19419 g = gimple_build_assign (mask, aref);
19420 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19423 g = gimple_build_cond (EQ_EXPR, mask, build_zero_cst (TREE_TYPE (mask)),
19424 NULL, NULL);
19425 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19426 make_edge (loop->header, incr_bb, EDGE_TRUE_VALUE);
19427 FALLTHRU_EDGE (loop->header)->flags = EDGE_FALSE_VALUE;
19430 /* Generate the condition. */
19431 g = gimple_build_cond (LT_EXPR,
19432 iter2,
19433 build_int_cst (unsigned_type_node,
19434 node->simdclone->simdlen),
19435 NULL, NULL);
19436 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19437 e = split_block (incr_bb, gsi_stmt (gsi));
19438 basic_block latch_bb = e->dest;
19439 basic_block new_exit_bb;
19440 new_exit_bb = split_block_after_labels (latch_bb)->dest;
19441 loop->latch = latch_bb;
19443 redirect_edge_succ (FALLTHRU_EDGE (latch_bb), body_bb);
19445 make_edge (incr_bb, new_exit_bb, EDGE_FALSE_VALUE);
19446 /* The successor of incr_bb is already pointing to latch_bb; just
19447 change the flags.
19448 make_edge (incr_bb, latch_bb, EDGE_TRUE_VALUE); */
19449 FALLTHRU_EDGE (incr_bb)->flags = EDGE_TRUE_VALUE;
19451 gphi *phi = create_phi_node (iter1, body_bb);
19452 edge preheader_edge = find_edge (entry_bb, body_bb);
19453 edge latch_edge = single_succ_edge (latch_bb);
19454 add_phi_arg (phi, build_zero_cst (unsigned_type_node), preheader_edge,
19455 UNKNOWN_LOCATION);
19456 add_phi_arg (phi, iter2, latch_edge, UNKNOWN_LOCATION);
19458 /* Generate the new return. */
19459 gsi = gsi_last_bb (new_exit_bb);
19460 if (retval
19461 && TREE_CODE (retval) == VIEW_CONVERT_EXPR
19462 && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
19463 retval = TREE_OPERAND (retval, 0);
19464 else if (retval)
19466 retval = build1 (VIEW_CONVERT_EXPR,
19467 TREE_TYPE (TREE_TYPE (node->decl)),
19468 retval);
19469 retval = force_gimple_operand_gsi (&gsi, retval, true, NULL,
19470 false, GSI_CONTINUE_LINKING);
19472 g = gimple_build_return (retval);
19473 gsi_insert_after (&gsi, g, GSI_CONTINUE_LINKING);
19475 /* Handle aligned clauses by replacing default defs of the aligned
19476 uniform args with __builtin_assume_aligned (arg_N(D), alignment)
19477 lhs. Handle linear by adding PHIs. */
19478 for (unsigned i = 0; i < node->simdclone->nargs; i++)
19479 if (node->simdclone->args[i].arg_type == SIMD_CLONE_ARG_TYPE_UNIFORM
19480 && (TREE_ADDRESSABLE (node->simdclone->args[i].orig_arg)
19481 || !is_gimple_reg_type
19482 (TREE_TYPE (node->simdclone->args[i].orig_arg))))
19484 tree orig_arg = node->simdclone->args[i].orig_arg;
19485 if (is_gimple_reg_type (TREE_TYPE (orig_arg)))
19486 iter1 = make_ssa_name (TREE_TYPE (orig_arg));
19487 else
19489 iter1 = create_tmp_var_raw (TREE_TYPE (orig_arg));
19490 gimple_add_tmp_var (iter1);
19492 gsi = gsi_after_labels (entry_bb);
19493 g = gimple_build_assign (iter1, orig_arg);
19494 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19495 gsi = gsi_after_labels (body_bb);
19496 g = gimple_build_assign (orig_arg, iter1);
19497 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19499 else if (node->simdclone->args[i].arg_type == SIMD_CLONE_ARG_TYPE_UNIFORM
19500 && DECL_BY_REFERENCE (node->simdclone->args[i].orig_arg)
19501 && TREE_CODE (TREE_TYPE (node->simdclone->args[i].orig_arg))
19502 == REFERENCE_TYPE
19503 && TREE_ADDRESSABLE
19504 (TREE_TYPE (TREE_TYPE (node->simdclone->args[i].orig_arg))))
19506 tree orig_arg = node->simdclone->args[i].orig_arg;
19507 tree def = ssa_default_def (cfun, orig_arg);
19508 if (def && !has_zero_uses (def))
19510 iter1 = create_tmp_var_raw (TREE_TYPE (TREE_TYPE (orig_arg)));
19511 gimple_add_tmp_var (iter1);
19512 gsi = gsi_after_labels (entry_bb);
19513 g = gimple_build_assign (iter1, build_simple_mem_ref (def));
19514 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19515 gsi = gsi_after_labels (body_bb);
19516 g = gimple_build_assign (build_simple_mem_ref (def), iter1);
19517 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19520 else if (node->simdclone->args[i].alignment
19521 && node->simdclone->args[i].arg_type
19522 == SIMD_CLONE_ARG_TYPE_UNIFORM
19523 && (node->simdclone->args[i].alignment
19524 & (node->simdclone->args[i].alignment - 1)) == 0
19525 && TREE_CODE (TREE_TYPE (node->simdclone->args[i].orig_arg))
19526 == POINTER_TYPE)
19528 unsigned int alignment = node->simdclone->args[i].alignment;
19529 tree orig_arg = node->simdclone->args[i].orig_arg;
19530 tree def = ssa_default_def (cfun, orig_arg);
19531 if (def && !has_zero_uses (def))
19533 tree fn = builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED);
19534 gimple_seq seq = NULL;
19535 bool need_cvt = false;
19536 gcall *call
19537 = gimple_build_call (fn, 2, def, size_int (alignment));
19538 g = call;
19539 if (!useless_type_conversion_p (TREE_TYPE (orig_arg),
19540 ptr_type_node))
19541 need_cvt = true;
19542 tree t = make_ssa_name (need_cvt ? ptr_type_node : orig_arg);
19543 gimple_call_set_lhs (g, t);
19544 gimple_seq_add_stmt_without_update (&seq, g);
19545 if (need_cvt)
19547 t = make_ssa_name (orig_arg);
19548 g = gimple_build_assign (t, NOP_EXPR, gimple_call_lhs (g));
19549 gimple_seq_add_stmt_without_update (&seq, g);
19551 gsi_insert_seq_on_edge_immediate
19552 (single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)), seq);
19554 entry_bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
19555 int freq = compute_call_stmt_bb_frequency (current_function_decl,
19556 entry_bb);
19557 node->create_edge (cgraph_node::get_create (fn),
19558 call, entry_bb->count, freq);
19560 imm_use_iterator iter;
19561 use_operand_p use_p;
19562 gimple *use_stmt;
19563 tree repl = gimple_get_lhs (g);
19564 FOR_EACH_IMM_USE_STMT (use_stmt, iter, def)
19565 if (is_gimple_debug (use_stmt) || use_stmt == call)
19566 continue;
19567 else
19568 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
19569 SET_USE (use_p, repl);
19572 else if ((node->simdclone->args[i].arg_type
19573 == SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP)
19574 || (node->simdclone->args[i].arg_type
19575 == SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP)
19576 || (node->simdclone->args[i].arg_type
19577 == SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP)
19578 || (node->simdclone->args[i].arg_type
19579 == SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP))
19581 tree orig_arg = node->simdclone->args[i].orig_arg;
19582 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (orig_arg))
19583 || POINTER_TYPE_P (TREE_TYPE (orig_arg)));
19584 tree def = NULL_TREE;
19585 if (TREE_ADDRESSABLE (orig_arg))
19587 def = make_ssa_name (TREE_TYPE (orig_arg));
19588 iter1 = make_ssa_name (TREE_TYPE (orig_arg));
19589 iter2 = make_ssa_name (TREE_TYPE (orig_arg));
19590 gsi = gsi_after_labels (entry_bb);
19591 g = gimple_build_assign (def, orig_arg);
19592 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19594 else
19596 def = ssa_default_def (cfun, orig_arg);
19597 if (!def || has_zero_uses (def))
19598 def = NULL_TREE;
19599 else
19601 iter1 = make_ssa_name (orig_arg);
19602 iter2 = make_ssa_name (orig_arg);
19605 if (def)
19607 phi = create_phi_node (iter1, body_bb);
19608 add_phi_arg (phi, def, preheader_edge, UNKNOWN_LOCATION);
19609 add_phi_arg (phi, iter2, latch_edge, UNKNOWN_LOCATION);
19610 enum tree_code code = INTEGRAL_TYPE_P (TREE_TYPE (orig_arg))
19611 ? PLUS_EXPR : POINTER_PLUS_EXPR;
19612 tree addtype = INTEGRAL_TYPE_P (TREE_TYPE (orig_arg))
19613 ? TREE_TYPE (orig_arg) : sizetype;
19614 tree addcst = simd_clone_linear_addend (node, i, addtype,
19615 entry_bb);
19616 gsi = gsi_last_bb (incr_bb);
19617 g = gimple_build_assign (iter2, code, iter1, addcst);
19618 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19620 imm_use_iterator iter;
19621 use_operand_p use_p;
19622 gimple *use_stmt;
19623 if (TREE_ADDRESSABLE (orig_arg))
19625 gsi = gsi_after_labels (body_bb);
19626 g = gimple_build_assign (orig_arg, iter1);
19627 gsi_insert_before (&gsi, g, GSI_NEW_STMT);
19629 else
19630 FOR_EACH_IMM_USE_STMT (use_stmt, iter, def)
19631 if (use_stmt == phi)
19632 continue;
19633 else
19634 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
19635 SET_USE (use_p, iter1);
19638 else if (node->simdclone->args[i].arg_type
19639 == SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
19640 || (node->simdclone->args[i].arg_type
19641 == SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP))
19643 tree orig_arg = node->simdclone->args[i].orig_arg;
19644 tree def = ssa_default_def (cfun, orig_arg);
19645 gcc_assert (!TREE_ADDRESSABLE (orig_arg)
19646 && TREE_CODE (TREE_TYPE (orig_arg)) == REFERENCE_TYPE);
19647 if (def && !has_zero_uses (def))
19649 tree rtype = TREE_TYPE (TREE_TYPE (orig_arg));
19650 iter1 = make_ssa_name (orig_arg);
19651 iter2 = make_ssa_name (orig_arg);
19652 tree iter3 = make_ssa_name (rtype);
19653 tree iter4 = make_ssa_name (rtype);
19654 tree iter5 = make_ssa_name (rtype);
19655 gsi = gsi_after_labels (entry_bb);
19656 gimple *load
19657 = gimple_build_assign (iter3, build_simple_mem_ref (def));
19658 gsi_insert_before (&gsi, load, GSI_NEW_STMT);
19660 tree array = node->simdclone->args[i].simd_array;
19661 TREE_ADDRESSABLE (array) = 1;
19662 tree ptr = build_fold_addr_expr (array);
19663 phi = create_phi_node (iter1, body_bb);
19664 add_phi_arg (phi, ptr, preheader_edge, UNKNOWN_LOCATION);
19665 add_phi_arg (phi, iter2, latch_edge, UNKNOWN_LOCATION);
19666 g = gimple_build_assign (iter2, POINTER_PLUS_EXPR, iter1,
19667 TYPE_SIZE_UNIT (TREE_TYPE (iter3)));
19668 gsi = gsi_last_bb (incr_bb);
19669 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19671 phi = create_phi_node (iter4, body_bb);
19672 add_phi_arg (phi, iter3, preheader_edge, UNKNOWN_LOCATION);
19673 add_phi_arg (phi, iter5, latch_edge, UNKNOWN_LOCATION);
19674 enum tree_code code = INTEGRAL_TYPE_P (TREE_TYPE (iter3))
19675 ? PLUS_EXPR : POINTER_PLUS_EXPR;
19676 tree addtype = INTEGRAL_TYPE_P (TREE_TYPE (iter3))
19677 ? TREE_TYPE (iter3) : sizetype;
19678 tree addcst = simd_clone_linear_addend (node, i, addtype,
19679 entry_bb);
19680 g = gimple_build_assign (iter5, code, iter4, addcst);
19681 gsi = gsi_last_bb (incr_bb);
19682 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19684 g = gimple_build_assign (build_simple_mem_ref (iter1), iter4);
19685 gsi = gsi_after_labels (body_bb);
19686 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19688 imm_use_iterator iter;
19689 use_operand_p use_p;
19690 gimple *use_stmt;
19691 FOR_EACH_IMM_USE_STMT (use_stmt, iter, def)
19692 if (use_stmt == load)
19693 continue;
19694 else
19695 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
19696 SET_USE (use_p, iter1);
19698 if (!TYPE_READONLY (rtype))
19700 tree v = make_ssa_name (rtype);
19701 tree aref = build4 (ARRAY_REF, rtype, array,
19702 size_zero_node, NULL_TREE,
19703 NULL_TREE);
19704 gsi = gsi_after_labels (new_exit_bb);
19705 g = gimple_build_assign (v, aref);
19706 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19707 g = gimple_build_assign (build_simple_mem_ref (def), v);
19708 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
19713 calculate_dominance_info (CDI_DOMINATORS);
19714 add_loop (loop, loop->header->loop_father);
19715 update_ssa (TODO_update_ssa);
19717 pop_cfun ();
19720 /* If the function in NODE is tagged as an elemental SIMD function,
19721 create the appropriate SIMD clones. */
19723 static void
19724 expand_simd_clones (struct cgraph_node *node)
19726 tree attr = lookup_attribute ("omp declare simd",
19727 DECL_ATTRIBUTES (node->decl));
19728 if (attr == NULL_TREE
19729 || node->global.inlined_to
19730 || lookup_attribute ("noclone", DECL_ATTRIBUTES (node->decl)))
19731 return;
19733 /* Ignore
19734 #pragma omp declare simd
19735 extern int foo ();
19736 in C, there we don't know the argument types at all. */
19737 if (!node->definition
19738 && TYPE_ARG_TYPES (TREE_TYPE (node->decl)) == NULL_TREE)
19739 return;
19741 /* Call this before creating clone_info, as it might ggc_collect. */
19742 if (node->definition && node->has_gimple_body_p ())
19743 node->get_body ();
19747 /* Start with parsing the "omp declare simd" attribute(s). */
19748 bool inbranch_clause_specified;
19749 struct cgraph_simd_clone *clone_info
19750 = simd_clone_clauses_extract (node, TREE_VALUE (attr),
19751 &inbranch_clause_specified);
19752 if (clone_info == NULL)
19753 continue;
19755 int orig_simdlen = clone_info->simdlen;
19756 tree base_type = simd_clone_compute_base_data_type (node, clone_info);
19757 /* The target can return 0 (no simd clones should be created),
19758 1 (just one ISA of simd clones should be created) or higher
19759 count of ISA variants. In that case, clone_info is initialized
19760 for the first ISA variant. */
19761 int count
19762 = targetm.simd_clone.compute_vecsize_and_simdlen (node, clone_info,
19763 base_type, 0);
19764 if (count == 0)
19765 continue;
19767 /* Loop over all COUNT ISA variants, and if !INBRANCH_CLAUSE_SPECIFIED,
19768 also create one inbranch and one !inbranch clone of it. */
19769 for (int i = 0; i < count * 2; i++)
19771 struct cgraph_simd_clone *clone = clone_info;
19772 if (inbranch_clause_specified && (i & 1) != 0)
19773 continue;
19775 if (i != 0)
19777 clone = simd_clone_struct_alloc (clone_info->nargs
19778 + ((i & 1) != 0));
19779 simd_clone_struct_copy (clone, clone_info);
19780 /* Undo changes targetm.simd_clone.compute_vecsize_and_simdlen
19781 and simd_clone_adjust_argument_types did to the first
19782 clone's info. */
19783 clone->nargs -= clone_info->inbranch;
19784 clone->simdlen = orig_simdlen;
19785 /* And call the target hook again to get the right ISA. */
19786 targetm.simd_clone.compute_vecsize_and_simdlen (node, clone,
19787 base_type,
19788 i / 2);
19789 if ((i & 1) != 0)
19790 clone->inbranch = 1;
19793 /* simd_clone_mangle might fail if such a clone has been created
19794 already. */
19795 tree id = simd_clone_mangle (node, clone);
19796 if (id == NULL_TREE)
19797 continue;
19799 /* Only when we are sure we want to create the clone actually
19800 clone the function (or definitions) or create another
19801 extern FUNCTION_DECL (for prototypes without definitions). */
19802 struct cgraph_node *n = simd_clone_create (node);
19803 if (n == NULL)
19804 continue;
19806 n->simdclone = clone;
19807 clone->origin = node;
19808 clone->next_clone = NULL;
19809 if (node->simd_clones == NULL)
19811 clone->prev_clone = n;
19812 node->simd_clones = n;
19814 else
19816 clone->prev_clone = node->simd_clones->simdclone->prev_clone;
19817 clone->prev_clone->simdclone->next_clone = n;
19818 node->simd_clones->simdclone->prev_clone = n;
19820 symtab->change_decl_assembler_name (n->decl, id);
19821 /* And finally adjust the return type, parameters and for
19822 definitions also function body. */
19823 if (node->definition)
19824 simd_clone_adjust (n);
19825 else
19827 simd_clone_adjust_return_type (n);
19828 simd_clone_adjust_argument_types (n);
19832 while ((attr = lookup_attribute ("omp declare simd", TREE_CHAIN (attr))));
19835 /* Entry point for IPA simd clone creation pass. */
19837 static unsigned int
19838 ipa_omp_simd_clone (void)
19840 struct cgraph_node *node;
19841 FOR_EACH_FUNCTION (node)
19842 expand_simd_clones (node);
19843 return 0;
19846 namespace {
19848 const pass_data pass_data_omp_simd_clone =
19850 SIMPLE_IPA_PASS, /* type */
19851 "simdclone", /* name */
19852 OPTGROUP_NONE, /* optinfo_flags */
19853 TV_NONE, /* tv_id */
19854 ( PROP_ssa | PROP_cfg ), /* properties_required */
19855 0, /* properties_provided */
19856 0, /* properties_destroyed */
19857 0, /* todo_flags_start */
19858 0, /* todo_flags_finish */
19861 class pass_omp_simd_clone : public simple_ipa_opt_pass
19863 public:
19864 pass_omp_simd_clone(gcc::context *ctxt)
19865 : simple_ipa_opt_pass(pass_data_omp_simd_clone, ctxt)
19868 /* opt_pass methods: */
19869 virtual bool gate (function *);
19870 virtual unsigned int execute (function *) { return ipa_omp_simd_clone (); }
19873 bool
19874 pass_omp_simd_clone::gate (function *)
19876 return targetm.simd_clone.compute_vecsize_and_simdlen != NULL;
19879 } // anon namespace
19881 simple_ipa_opt_pass *
19882 make_pass_omp_simd_clone (gcc::context *ctxt)
19884 return new pass_omp_simd_clone (ctxt);
19887 /* Helper function for omp_finish_file routine. Takes decls from V_DECLS and
19888 adds their addresses and sizes to constructor-vector V_CTOR. */
19889 static void
19890 add_decls_addresses_to_decl_constructor (vec<tree, va_gc> *v_decls,
19891 vec<constructor_elt, va_gc> *v_ctor)
19893 unsigned len = vec_safe_length (v_decls);
19894 for (unsigned i = 0; i < len; i++)
19896 tree it = (*v_decls)[i];
19897 bool is_var = TREE_CODE (it) == VAR_DECL;
19898 bool is_link_var
19899 = is_var
19900 #ifdef ACCEL_COMPILER
19901 && DECL_HAS_VALUE_EXPR_P (it)
19902 #endif
19903 && lookup_attribute ("omp declare target link", DECL_ATTRIBUTES (it));
19905 tree size = NULL_TREE;
19906 if (is_var)
19907 size = fold_convert (const_ptr_type_node, DECL_SIZE_UNIT (it));
19909 tree addr;
19910 if (!is_link_var)
19911 addr = build_fold_addr_expr (it);
19912 else
19914 #ifdef ACCEL_COMPILER
19915 /* For "omp declare target link" vars add address of the pointer to
19916 the target table, instead of address of the var. */
19917 tree value_expr = DECL_VALUE_EXPR (it);
19918 tree link_ptr_decl = TREE_OPERAND (value_expr, 0);
19919 varpool_node::finalize_decl (link_ptr_decl);
19920 addr = build_fold_addr_expr (link_ptr_decl);
19921 #else
19922 addr = build_fold_addr_expr (it);
19923 #endif
19925 /* Most significant bit of the size marks "omp declare target link"
19926 vars in host and target tables. */
19927 unsigned HOST_WIDE_INT isize = tree_to_uhwi (size);
19928 isize |= 1ULL << (int_size_in_bytes (const_ptr_type_node)
19929 * BITS_PER_UNIT - 1);
19930 size = wide_int_to_tree (const_ptr_type_node, isize);
19933 CONSTRUCTOR_APPEND_ELT (v_ctor, NULL_TREE, addr);
19934 if (is_var)
19935 CONSTRUCTOR_APPEND_ELT (v_ctor, NULL_TREE, size);
19939 /* Create new symbols containing (address, size) pairs for global variables,
19940 marked with "omp declare target" attribute, as well as addresses for the
19941 functions, which are outlined offloading regions. */
19942 void
19943 omp_finish_file (void)
19945 unsigned num_funcs = vec_safe_length (offload_funcs);
19946 unsigned num_vars = vec_safe_length (offload_vars);
19948 if (num_funcs == 0 && num_vars == 0)
19949 return;
19951 if (targetm_common.have_named_sections)
19953 vec<constructor_elt, va_gc> *v_f, *v_v;
19954 vec_alloc (v_f, num_funcs);
19955 vec_alloc (v_v, num_vars * 2);
19957 add_decls_addresses_to_decl_constructor (offload_funcs, v_f);
19958 add_decls_addresses_to_decl_constructor (offload_vars, v_v);
19960 tree vars_decl_type = build_array_type_nelts (pointer_sized_int_node,
19961 num_vars * 2);
19962 tree funcs_decl_type = build_array_type_nelts (pointer_sized_int_node,
19963 num_funcs);
19964 TYPE_ALIGN (vars_decl_type) = TYPE_ALIGN (pointer_sized_int_node);
19965 TYPE_ALIGN (funcs_decl_type) = TYPE_ALIGN (pointer_sized_int_node);
19966 tree ctor_v = build_constructor (vars_decl_type, v_v);
19967 tree ctor_f = build_constructor (funcs_decl_type, v_f);
19968 TREE_CONSTANT (ctor_v) = TREE_CONSTANT (ctor_f) = 1;
19969 TREE_STATIC (ctor_v) = TREE_STATIC (ctor_f) = 1;
19970 tree funcs_decl = build_decl (UNKNOWN_LOCATION, VAR_DECL,
19971 get_identifier (".offload_func_table"),
19972 funcs_decl_type);
19973 tree vars_decl = build_decl (UNKNOWN_LOCATION, VAR_DECL,
19974 get_identifier (".offload_var_table"),
19975 vars_decl_type);
19976 TREE_STATIC (funcs_decl) = TREE_STATIC (vars_decl) = 1;
19977 /* Do not align tables more than TYPE_ALIGN (pointer_sized_int_node),
19978 otherwise a joint table in a binary will contain padding between
19979 tables from multiple object files. */
19980 DECL_USER_ALIGN (funcs_decl) = DECL_USER_ALIGN (vars_decl) = 1;
19981 DECL_ALIGN (funcs_decl) = TYPE_ALIGN (funcs_decl_type);
19982 DECL_ALIGN (vars_decl) = TYPE_ALIGN (vars_decl_type);
19983 DECL_INITIAL (funcs_decl) = ctor_f;
19984 DECL_INITIAL (vars_decl) = ctor_v;
19985 set_decl_section_name (funcs_decl, OFFLOAD_FUNC_TABLE_SECTION_NAME);
19986 set_decl_section_name (vars_decl, OFFLOAD_VAR_TABLE_SECTION_NAME);
19988 varpool_node::finalize_decl (vars_decl);
19989 varpool_node::finalize_decl (funcs_decl);
19991 else
19993 for (unsigned i = 0; i < num_funcs; i++)
19995 tree it = (*offload_funcs)[i];
19996 targetm.record_offload_symbol (it);
19998 for (unsigned i = 0; i < num_vars; i++)
20000 tree it = (*offload_vars)[i];
20001 targetm.record_offload_symbol (it);
20006 /* Find the number of threads (POS = false), or thread number (POS =
20007 true) for an OpenACC region partitioned as MASK. Setup code
20008 required for the calculation is added to SEQ. */
20010 static tree
20011 oacc_thread_numbers (bool pos, int mask, gimple_seq *seq)
20013 tree res = pos ? NULL_TREE : build_int_cst (unsigned_type_node, 1);
20014 unsigned ix;
20016 /* Start at gang level, and examine relevant dimension indices. */
20017 for (ix = GOMP_DIM_GANG; ix != GOMP_DIM_MAX; ix++)
20018 if (GOMP_DIM_MASK (ix) & mask)
20020 tree arg = build_int_cst (unsigned_type_node, ix);
20022 if (res)
20024 /* We had an outer index, so scale that by the size of
20025 this dimension. */
20026 tree n = create_tmp_var (integer_type_node);
20027 gimple *call
20028 = gimple_build_call_internal (IFN_GOACC_DIM_SIZE, 1, arg);
20030 gimple_call_set_lhs (call, n);
20031 gimple_seq_add_stmt (seq, call);
20032 res = fold_build2 (MULT_EXPR, integer_type_node, res, n);
20034 if (pos)
20036 /* Determine index in this dimension. */
20037 tree id = create_tmp_var (integer_type_node);
20038 gimple *call = gimple_build_call_internal
20039 (IFN_GOACC_DIM_POS, 1, arg);
20041 gimple_call_set_lhs (call, id);
20042 gimple_seq_add_stmt (seq, call);
20043 if (res)
20044 res = fold_build2 (PLUS_EXPR, integer_type_node, res, id);
20045 else
20046 res = id;
20050 if (res == NULL_TREE)
20051 res = integer_zero_node;
20053 return res;
20056 /* Transform IFN_GOACC_LOOP calls to actual code. See
20057 expand_oacc_for for where these are generated. At the vector
20058 level, we stride loops, such that each member of a warp will
20059 operate on adjacent iterations. At the worker and gang level,
20060 each gang/warp executes a set of contiguous iterations. Chunking
20061 can override this such that each iteration engine executes a
20062 contiguous chunk, and then moves on to stride to the next chunk. */
20064 static void
20065 oacc_xform_loop (gcall *call)
20067 gimple_stmt_iterator gsi = gsi_for_stmt (call);
20068 enum ifn_goacc_loop_kind code
20069 = (enum ifn_goacc_loop_kind) TREE_INT_CST_LOW (gimple_call_arg (call, 0));
20070 tree dir = gimple_call_arg (call, 1);
20071 tree range = gimple_call_arg (call, 2);
20072 tree step = gimple_call_arg (call, 3);
20073 tree chunk_size = NULL_TREE;
20074 unsigned mask = (unsigned) TREE_INT_CST_LOW (gimple_call_arg (call, 5));
20075 tree lhs = gimple_call_lhs (call);
20076 tree type = TREE_TYPE (lhs);
20077 tree diff_type = TREE_TYPE (range);
20078 tree r = NULL_TREE;
20079 gimple_seq seq = NULL;
20080 bool chunking = false, striding = true;
20081 unsigned outer_mask = mask & (~mask + 1); // Outermost partitioning
20082 unsigned inner_mask = mask & ~outer_mask; // Inner partitioning (if any)
20084 #ifdef ACCEL_COMPILER
20085 chunk_size = gimple_call_arg (call, 4);
20086 if (integer_minus_onep (chunk_size) /* Force static allocation. */
20087 || integer_zerop (chunk_size)) /* Default (also static). */
20089 /* If we're at the gang level, we want each to execute a
20090 contiguous run of iterations. Otherwise we want each element
20091 to stride. */
20092 striding = !(outer_mask & GOMP_DIM_MASK (GOMP_DIM_GANG));
20093 chunking = false;
20095 else
20097 /* Chunk of size 1 is striding. */
20098 striding = integer_onep (chunk_size);
20099 chunking = !striding;
20101 #endif
20103 /* striding=true, chunking=true
20104 -> invalid.
20105 striding=true, chunking=false
20106 -> chunks=1
20107 striding=false,chunking=true
20108 -> chunks=ceil (range/(chunksize*threads*step))
20109 striding=false,chunking=false
20110 -> chunk_size=ceil(range/(threads*step)),chunks=1 */
20111 push_gimplify_context (true);
20113 switch (code)
20115 default: gcc_unreachable ();
20117 case IFN_GOACC_LOOP_CHUNKS:
20118 if (!chunking)
20119 r = build_int_cst (type, 1);
20120 else
20122 /* chunk_max
20123 = (range - dir) / (chunks * step * num_threads) + dir */
20124 tree per = oacc_thread_numbers (false, mask, &seq);
20125 per = fold_convert (type, per);
20126 chunk_size = fold_convert (type, chunk_size);
20127 per = fold_build2 (MULT_EXPR, type, per, chunk_size);
20128 per = fold_build2 (MULT_EXPR, type, per, step);
20129 r = build2 (MINUS_EXPR, type, range, dir);
20130 r = build2 (PLUS_EXPR, type, r, per);
20131 r = build2 (TRUNC_DIV_EXPR, type, r, per);
20133 break;
20135 case IFN_GOACC_LOOP_STEP:
20137 /* If striding, step by the entire compute volume, otherwise
20138 step by the inner volume. */
20139 unsigned volume = striding ? mask : inner_mask;
20141 r = oacc_thread_numbers (false, volume, &seq);
20142 r = build2 (MULT_EXPR, type, fold_convert (type, r), step);
20144 break;
20146 case IFN_GOACC_LOOP_OFFSET:
20147 if (striding)
20149 r = oacc_thread_numbers (true, mask, &seq);
20150 r = fold_convert (diff_type, r);
20152 else
20154 tree inner_size = oacc_thread_numbers (false, inner_mask, &seq);
20155 tree outer_size = oacc_thread_numbers (false, outer_mask, &seq);
20156 tree volume = fold_build2 (MULT_EXPR, TREE_TYPE (inner_size),
20157 inner_size, outer_size);
20159 volume = fold_convert (diff_type, volume);
20160 if (chunking)
20161 chunk_size = fold_convert (diff_type, chunk_size);
20162 else
20164 tree per = fold_build2 (MULT_EXPR, diff_type, volume, step);
20166 chunk_size = build2 (MINUS_EXPR, diff_type, range, dir);
20167 chunk_size = build2 (PLUS_EXPR, diff_type, chunk_size, per);
20168 chunk_size = build2 (TRUNC_DIV_EXPR, diff_type, chunk_size, per);
20171 tree span = build2 (MULT_EXPR, diff_type, chunk_size,
20172 fold_convert (diff_type, inner_size));
20173 r = oacc_thread_numbers (true, outer_mask, &seq);
20174 r = fold_convert (diff_type, r);
20175 r = build2 (MULT_EXPR, diff_type, r, span);
20177 tree inner = oacc_thread_numbers (true, inner_mask, &seq);
20178 inner = fold_convert (diff_type, inner);
20179 r = fold_build2 (PLUS_EXPR, diff_type, r, inner);
20181 if (chunking)
20183 tree chunk = fold_convert (diff_type, gimple_call_arg (call, 6));
20184 tree per
20185 = fold_build2 (MULT_EXPR, diff_type, volume, chunk_size);
20186 per = build2 (MULT_EXPR, diff_type, per, chunk);
20188 r = build2 (PLUS_EXPR, diff_type, r, per);
20191 r = fold_build2 (MULT_EXPR, diff_type, r, step);
20192 if (type != diff_type)
20193 r = fold_convert (type, r);
20194 break;
20196 case IFN_GOACC_LOOP_BOUND:
20197 if (striding)
20198 r = range;
20199 else
20201 tree inner_size = oacc_thread_numbers (false, inner_mask, &seq);
20202 tree outer_size = oacc_thread_numbers (false, outer_mask, &seq);
20203 tree volume = fold_build2 (MULT_EXPR, TREE_TYPE (inner_size),
20204 inner_size, outer_size);
20206 volume = fold_convert (diff_type, volume);
20207 if (chunking)
20208 chunk_size = fold_convert (diff_type, chunk_size);
20209 else
20211 tree per = fold_build2 (MULT_EXPR, diff_type, volume, step);
20213 chunk_size = build2 (MINUS_EXPR, diff_type, range, dir);
20214 chunk_size = build2 (PLUS_EXPR, diff_type, chunk_size, per);
20215 chunk_size = build2 (TRUNC_DIV_EXPR, diff_type, chunk_size, per);
20218 tree span = build2 (MULT_EXPR, diff_type, chunk_size,
20219 fold_convert (diff_type, inner_size));
20221 r = fold_build2 (MULT_EXPR, diff_type, span, step);
20223 tree offset = gimple_call_arg (call, 6);
20224 r = build2 (PLUS_EXPR, diff_type, r,
20225 fold_convert (diff_type, offset));
20226 r = build2 (integer_onep (dir) ? MIN_EXPR : MAX_EXPR,
20227 diff_type, r, range);
20229 if (diff_type != type)
20230 r = fold_convert (type, r);
20231 break;
20234 gimplify_assign (lhs, r, &seq);
20236 pop_gimplify_context (NULL);
20238 gsi_replace_with_seq (&gsi, seq, true);
20241 /* Validate and update the dimensions for offloaded FN. ATTRS is the
20242 raw attribute. DIMS is an array of dimensions, which is filled in.
20243 LEVEL is the partitioning level of a routine, or -1 for an offload
20244 region itself. */
20246 static void
20247 oacc_validate_dims (tree fn, tree attrs, int *dims, int level)
20249 tree purpose[GOMP_DIM_MAX];
20250 unsigned ix;
20251 tree pos = TREE_VALUE (attrs);
20252 bool is_kernel = oacc_fn_attrib_kernels_p (attrs);
20254 /* Make sure the attribute creator attached the dimension
20255 information. */
20256 gcc_assert (pos);
20258 for (ix = 0; ix != GOMP_DIM_MAX; ix++)
20260 purpose[ix] = TREE_PURPOSE (pos);
20261 tree val = TREE_VALUE (pos);
20262 dims[ix] = val ? TREE_INT_CST_LOW (val) : -1;
20263 pos = TREE_CHAIN (pos);
20266 bool changed = targetm.goacc.validate_dims (fn, dims, level);
20268 /* Default anything left to 1. */
20269 for (ix = 0; ix != GOMP_DIM_MAX; ix++)
20270 if (dims[ix] < 0)
20272 dims[ix] = 1;
20273 changed = true;
20276 if (changed)
20278 /* Replace the attribute with new values. */
20279 pos = NULL_TREE;
20280 for (ix = GOMP_DIM_MAX; ix--;)
20282 pos = tree_cons (purpose[ix],
20283 build_int_cst (integer_type_node, dims[ix]),
20284 pos);
20285 if (is_kernel)
20286 TREE_PUBLIC (pos) = 1;
20288 replace_oacc_fn_attrib (fn, pos);
20292 /* Create an empty OpenACC loop structure at LOC. */
20294 static oacc_loop *
20295 new_oacc_loop_raw (oacc_loop *parent, location_t loc)
20297 oacc_loop *loop = XCNEW (oacc_loop);
20299 loop->parent = parent;
20300 loop->child = loop->sibling = NULL;
20302 if (parent)
20304 loop->sibling = parent->child;
20305 parent->child = loop;
20308 loop->loc = loc;
20309 loop->marker = NULL;
20310 memset (loop->heads, 0, sizeof (loop->heads));
20311 memset (loop->tails, 0, sizeof (loop->tails));
20312 loop->routine = NULL_TREE;
20314 loop->mask = loop->flags = 0;
20315 loop->chunk_size = 0;
20316 loop->head_end = NULL;
20318 return loop;
20321 /* Create an outermost, dummy OpenACC loop for offloaded function
20322 DECL. */
20324 static oacc_loop *
20325 new_oacc_loop_outer (tree decl)
20327 return new_oacc_loop_raw (NULL, DECL_SOURCE_LOCATION (decl));
20330 /* Start a new OpenACC loop structure beginning at head marker HEAD.
20331 Link into PARENT loop. Return the new loop. */
20333 static oacc_loop *
20334 new_oacc_loop (oacc_loop *parent, gcall *marker)
20336 oacc_loop *loop = new_oacc_loop_raw (parent, gimple_location (marker));
20338 loop->marker = marker;
20340 /* TODO: This is where device_type flattening would occur for the loop
20341 flags. */
20343 loop->flags = TREE_INT_CST_LOW (gimple_call_arg (marker, 3));
20345 tree chunk_size = integer_zero_node;
20346 if (loop->flags & OLF_GANG_STATIC)
20347 chunk_size = gimple_call_arg (marker, 4);
20348 loop->chunk_size = chunk_size;
20350 return loop;
20353 /* Create a dummy loop encompassing a call to a openACC routine.
20354 Extract the routine's partitioning requirements. */
20356 static void
20357 new_oacc_loop_routine (oacc_loop *parent, gcall *call, tree decl, tree attrs)
20359 oacc_loop *loop = new_oacc_loop_raw (parent, gimple_location (call));
20360 int level = oacc_fn_attrib_level (attrs);
20362 gcc_assert (level >= 0);
20364 loop->marker = call;
20365 loop->routine = decl;
20366 loop->mask = ((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1)
20367 ^ (GOMP_DIM_MASK (level) - 1));
20370 /* Finish off the current OpenACC loop ending at tail marker TAIL.
20371 Return the parent loop. */
20373 static oacc_loop *
20374 finish_oacc_loop (oacc_loop *loop)
20376 return loop->parent;
20379 /* Free all OpenACC loop structures within LOOP (inclusive). */
20381 static void
20382 free_oacc_loop (oacc_loop *loop)
20384 if (loop->sibling)
20385 free_oacc_loop (loop->sibling);
20386 if (loop->child)
20387 free_oacc_loop (loop->child);
20389 free (loop);
20392 /* Dump out the OpenACC loop head or tail beginning at FROM. */
20394 static void
20395 dump_oacc_loop_part (FILE *file, gcall *from, int depth,
20396 const char *title, int level)
20398 enum ifn_unique_kind kind
20399 = (enum ifn_unique_kind) TREE_INT_CST_LOW (gimple_call_arg (from, 0));
20401 fprintf (file, "%*s%s-%d:\n", depth * 2, "", title, level);
20402 for (gimple_stmt_iterator gsi = gsi_for_stmt (from);;)
20404 gimple *stmt = gsi_stmt (gsi);
20406 if (is_gimple_call (stmt)
20407 && gimple_call_internal_p (stmt)
20408 && gimple_call_internal_fn (stmt) == IFN_UNIQUE)
20410 enum ifn_unique_kind k
20411 = ((enum ifn_unique_kind) TREE_INT_CST_LOW
20412 (gimple_call_arg (stmt, 0)));
20414 if (k == kind && stmt != from)
20415 break;
20417 print_gimple_stmt (file, stmt, depth * 2 + 2, 0);
20419 gsi_next (&gsi);
20420 while (gsi_end_p (gsi))
20421 gsi = gsi_start_bb (single_succ (gsi_bb (gsi)));
20425 /* Dump OpenACC loops LOOP, its siblings and its children. */
20427 static void
20428 dump_oacc_loop (FILE *file, oacc_loop *loop, int depth)
20430 int ix;
20432 fprintf (file, "%*sLoop %x(%x) %s:%u\n", depth * 2, "",
20433 loop->flags, loop->mask,
20434 LOCATION_FILE (loop->loc), LOCATION_LINE (loop->loc));
20436 if (loop->marker)
20437 print_gimple_stmt (file, loop->marker, depth * 2, 0);
20439 if (loop->routine)
20440 fprintf (file, "%*sRoutine %s:%u:%s\n",
20441 depth * 2, "", DECL_SOURCE_FILE (loop->routine),
20442 DECL_SOURCE_LINE (loop->routine),
20443 IDENTIFIER_POINTER (DECL_NAME (loop->routine)));
20445 for (ix = GOMP_DIM_GANG; ix != GOMP_DIM_MAX; ix++)
20446 if (loop->heads[ix])
20447 dump_oacc_loop_part (file, loop->heads[ix], depth, "Head", ix);
20448 for (ix = GOMP_DIM_MAX; ix--;)
20449 if (loop->tails[ix])
20450 dump_oacc_loop_part (file, loop->tails[ix], depth, "Tail", ix);
20452 if (loop->child)
20453 dump_oacc_loop (file, loop->child, depth + 1);
20454 if (loop->sibling)
20455 dump_oacc_loop (file, loop->sibling, depth);
20458 void debug_oacc_loop (oacc_loop *);
20460 /* Dump loops to stderr. */
20462 DEBUG_FUNCTION void
20463 debug_oacc_loop (oacc_loop *loop)
20465 dump_oacc_loop (stderr, loop, 0);
20468 /* DFS walk of basic blocks BB onwards, creating OpenACC loop
20469 structures as we go. By construction these loops are properly
20470 nested. */
20472 static void
20473 oacc_loop_discover_walk (oacc_loop *loop, basic_block bb)
20475 int marker = 0;
20476 int remaining = 0;
20478 if (bb->flags & BB_VISITED)
20479 return;
20481 follow:
20482 bb->flags |= BB_VISITED;
20484 /* Scan for loop markers. */
20485 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
20486 gsi_next (&gsi))
20488 gimple *stmt = gsi_stmt (gsi);
20490 if (!is_gimple_call (stmt))
20491 continue;
20493 gcall *call = as_a <gcall *> (stmt);
20495 /* If this is a routine, make a dummy loop for it. */
20496 if (tree decl = gimple_call_fndecl (call))
20497 if (tree attrs = get_oacc_fn_attrib (decl))
20499 gcc_assert (!marker);
20500 new_oacc_loop_routine (loop, call, decl, attrs);
20503 if (!gimple_call_internal_p (call))
20504 continue;
20506 if (gimple_call_internal_fn (call) != IFN_UNIQUE)
20507 continue;
20509 enum ifn_unique_kind kind
20510 = (enum ifn_unique_kind) TREE_INT_CST_LOW (gimple_call_arg (call, 0));
20511 if (kind == IFN_UNIQUE_OACC_HEAD_MARK
20512 || kind == IFN_UNIQUE_OACC_TAIL_MARK)
20514 if (gimple_call_num_args (call) == 2)
20516 gcc_assert (marker && !remaining);
20517 marker = 0;
20518 if (kind == IFN_UNIQUE_OACC_TAIL_MARK)
20519 loop = finish_oacc_loop (loop);
20520 else
20521 loop->head_end = call;
20523 else
20525 int count = TREE_INT_CST_LOW (gimple_call_arg (call, 2));
20527 if (!marker)
20529 if (kind == IFN_UNIQUE_OACC_HEAD_MARK)
20530 loop = new_oacc_loop (loop, call);
20531 remaining = count;
20533 gcc_assert (count == remaining);
20534 if (remaining)
20536 remaining--;
20537 if (kind == IFN_UNIQUE_OACC_HEAD_MARK)
20538 loop->heads[marker] = call;
20539 else
20540 loop->tails[remaining] = call;
20542 marker++;
20546 if (remaining || marker)
20548 bb = single_succ (bb);
20549 gcc_assert (single_pred_p (bb) && !(bb->flags & BB_VISITED));
20550 goto follow;
20553 /* Walk successor blocks. */
20554 edge e;
20555 edge_iterator ei;
20557 FOR_EACH_EDGE (e, ei, bb->succs)
20558 oacc_loop_discover_walk (loop, e->dest);
20561 /* LOOP is the first sibling. Reverse the order in place and return
20562 the new first sibling. Recurse to child loops. */
20564 static oacc_loop *
20565 oacc_loop_sibling_nreverse (oacc_loop *loop)
20567 oacc_loop *last = NULL;
20570 if (loop->child)
20571 loop->child = oacc_loop_sibling_nreverse (loop->child);
20573 oacc_loop *next = loop->sibling;
20574 loop->sibling = last;
20575 last = loop;
20576 loop = next;
20578 while (loop);
20580 return last;
20583 /* Discover the OpenACC loops marked up by HEAD and TAIL markers for
20584 the current function. */
20586 static oacc_loop *
20587 oacc_loop_discovery ()
20589 basic_block bb;
20591 oacc_loop *top = new_oacc_loop_outer (current_function_decl);
20592 oacc_loop_discover_walk (top, ENTRY_BLOCK_PTR_FOR_FN (cfun));
20594 /* The siblings were constructed in reverse order, reverse them so
20595 that diagnostics come out in an unsurprising order. */
20596 top = oacc_loop_sibling_nreverse (top);
20598 /* Reset the visited flags. */
20599 FOR_ALL_BB_FN (bb, cfun)
20600 bb->flags &= ~BB_VISITED;
20602 return top;
20605 /* Transform the abstract internal function markers starting at FROM
20606 to be for partitioning level LEVEL. Stop when we meet another HEAD
20607 or TAIL marker. */
20609 static void
20610 oacc_loop_xform_head_tail (gcall *from, int level)
20612 enum ifn_unique_kind kind
20613 = (enum ifn_unique_kind) TREE_INT_CST_LOW (gimple_call_arg (from, 0));
20614 tree replacement = build_int_cst (unsigned_type_node, level);
20616 for (gimple_stmt_iterator gsi = gsi_for_stmt (from);;)
20618 gimple *stmt = gsi_stmt (gsi);
20620 if (is_gimple_call (stmt)
20621 && gimple_call_internal_p (stmt)
20622 && gimple_call_internal_fn (stmt) == IFN_UNIQUE)
20624 enum ifn_unique_kind k
20625 = ((enum ifn_unique_kind)
20626 TREE_INT_CST_LOW (gimple_call_arg (stmt, 0)));
20628 if (k == IFN_UNIQUE_OACC_FORK || k == IFN_UNIQUE_OACC_JOIN)
20629 *gimple_call_arg_ptr (stmt, 2) = replacement;
20630 else if (k == kind && stmt != from)
20631 break;
20633 else if (is_gimple_call (stmt)
20634 && gimple_call_internal_p (stmt)
20635 && gimple_call_internal_fn (stmt) == IFN_GOACC_REDUCTION)
20636 *gimple_call_arg_ptr (stmt, 3) = replacement;
20638 gsi_next (&gsi);
20639 while (gsi_end_p (gsi))
20640 gsi = gsi_start_bb (single_succ (gsi_bb (gsi)));
20644 /* Transform the IFN_GOACC_LOOP internal functions by providing the
20645 determined partitioning mask and chunking argument. */
20647 static void
20648 oacc_loop_xform_loop (gcall *end_marker, tree mask_arg, tree chunk_arg)
20650 gimple_stmt_iterator gsi = gsi_for_stmt (end_marker);
20652 for (;;)
20654 for (; !gsi_end_p (gsi); gsi_next (&gsi))
20656 gimple *stmt = gsi_stmt (gsi);
20658 if (!is_gimple_call (stmt))
20659 continue;
20661 gcall *call = as_a <gcall *> (stmt);
20663 if (!gimple_call_internal_p (call))
20664 continue;
20666 if (gimple_call_internal_fn (call) != IFN_GOACC_LOOP)
20667 continue;
20669 *gimple_call_arg_ptr (call, 5) = mask_arg;
20670 *gimple_call_arg_ptr (call, 4) = chunk_arg;
20671 if (TREE_INT_CST_LOW (gimple_call_arg (call, 0))
20672 == IFN_GOACC_LOOP_BOUND)
20673 return;
20676 /* If we didn't see LOOP_BOUND, it should be in the single
20677 successor block. */
20678 basic_block bb = single_succ (gsi_bb (gsi));
20679 gsi = gsi_start_bb (bb);
20683 /* Process the discovered OpenACC loops, setting the correct
20684 partitioning level etc. */
20686 static void
20687 oacc_loop_process (oacc_loop *loop)
20689 if (loop->child)
20690 oacc_loop_process (loop->child);
20692 if (loop->mask && !loop->routine)
20694 int ix;
20695 unsigned mask = loop->mask;
20696 unsigned dim = GOMP_DIM_GANG;
20697 tree mask_arg = build_int_cst (unsigned_type_node, mask);
20698 tree chunk_arg = loop->chunk_size;
20700 oacc_loop_xform_loop (loop->head_end, mask_arg, chunk_arg);
20702 for (ix = 0; ix != GOMP_DIM_MAX && loop->heads[ix]; ix++)
20704 gcc_assert (mask);
20706 while (!(GOMP_DIM_MASK (dim) & mask))
20707 dim++;
20709 oacc_loop_xform_head_tail (loop->heads[ix], dim);
20710 oacc_loop_xform_head_tail (loop->tails[ix], dim);
20712 mask ^= GOMP_DIM_MASK (dim);
20716 if (loop->sibling)
20717 oacc_loop_process (loop->sibling);
20720 /* Walk the OpenACC loop heirarchy checking and assigning the
20721 programmer-specified partitionings. OUTER_MASK is the partitioning
20722 this loop is contained within. Return true if we contain an
20723 auto-partitionable loop. */
20725 static bool
20726 oacc_loop_fixed_partitions (oacc_loop *loop, unsigned outer_mask)
20728 unsigned this_mask = loop->mask;
20729 bool has_auto = false;
20730 bool noisy = true;
20732 #ifdef ACCEL_COMPILER
20733 /* When device_type is supported, we want the device compiler to be
20734 noisy, if the loop parameters are device_type-specific. */
20735 noisy = false;
20736 #endif
20738 if (!loop->routine)
20740 bool auto_par = (loop->flags & OLF_AUTO) != 0;
20741 bool seq_par = (loop->flags & OLF_SEQ) != 0;
20743 this_mask = ((loop->flags >> OLF_DIM_BASE)
20744 & (GOMP_DIM_MASK (GOMP_DIM_MAX) - 1));
20746 if ((this_mask != 0) + auto_par + seq_par > 1)
20748 if (noisy)
20749 error_at (loop->loc,
20750 seq_par
20751 ? "%<seq%> overrides other OpenACC loop specifiers"
20752 : "%<auto%> conflicts with other OpenACC loop specifiers");
20753 auto_par = false;
20754 loop->flags &= ~OLF_AUTO;
20755 if (seq_par)
20757 loop->flags &=
20758 ~((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1) << OLF_DIM_BASE);
20759 this_mask = 0;
20762 if (auto_par && (loop->flags & OLF_INDEPENDENT))
20763 has_auto = true;
20766 if (this_mask & outer_mask)
20768 const oacc_loop *outer;
20769 for (outer = loop->parent; outer; outer = outer->parent)
20770 if (outer->mask & this_mask)
20771 break;
20773 if (noisy)
20775 if (outer)
20777 error_at (loop->loc,
20778 "%s uses same OpenACC parallelism as containing loop",
20779 loop->routine ? "routine call" : "inner loop");
20780 inform (outer->loc, "containing loop here");
20782 else
20783 error_at (loop->loc,
20784 "%s uses OpenACC parallelism disallowed by containing routine",
20785 loop->routine ? "routine call" : "loop");
20787 if (loop->routine)
20788 inform (DECL_SOURCE_LOCATION (loop->routine),
20789 "routine %qD declared here", loop->routine);
20791 this_mask &= ~outer_mask;
20793 else
20795 unsigned outermost = this_mask & -this_mask;
20797 if (outermost && outermost <= outer_mask)
20799 if (noisy)
20801 error_at (loop->loc,
20802 "incorrectly nested OpenACC loop parallelism");
20804 const oacc_loop *outer;
20805 for (outer = loop->parent;
20806 outer->flags && outer->flags < outermost;
20807 outer = outer->parent)
20808 continue;
20809 inform (outer->loc, "containing loop here");
20812 this_mask &= ~outermost;
20816 loop->mask = this_mask;
20818 if (loop->child
20819 && oacc_loop_fixed_partitions (loop->child, outer_mask | this_mask))
20820 has_auto = true;
20822 if (loop->sibling
20823 && oacc_loop_fixed_partitions (loop->sibling, outer_mask))
20824 has_auto = true;
20826 return has_auto;
20829 /* Walk the OpenACC loop heirarchy to assign auto-partitioned loops.
20830 OUTER_MASK is the partitioning this loop is contained within.
20831 Return the cumulative partitioning used by this loop, siblings and
20832 children. */
20834 static unsigned
20835 oacc_loop_auto_partitions (oacc_loop *loop, unsigned outer_mask)
20837 unsigned inner_mask = 0;
20838 bool noisy = true;
20840 #ifdef ACCEL_COMPILER
20841 /* When device_type is supported, we want the device compiler to be
20842 noisy, if the loop parameters are device_type-specific. */
20843 noisy = false;
20844 #endif
20846 if (loop->child)
20847 inner_mask |= oacc_loop_auto_partitions (loop->child,
20848 outer_mask | loop->mask);
20850 if ((loop->flags & OLF_AUTO) && (loop->flags & OLF_INDEPENDENT))
20852 unsigned this_mask = 0;
20854 /* Determine the outermost partitioning used within this loop. */
20855 this_mask = inner_mask | GOMP_DIM_MASK (GOMP_DIM_MAX);
20856 this_mask = (this_mask & -this_mask);
20858 /* Pick the partitioning just inside that one. */
20859 this_mask >>= 1;
20861 /* And avoid picking one use by an outer loop. */
20862 this_mask &= ~outer_mask;
20864 if (!this_mask && noisy)
20865 warning_at (loop->loc, 0,
20866 "insufficient partitioning available to parallelize loop");
20868 loop->mask = this_mask;
20870 inner_mask |= loop->mask;
20872 if (loop->sibling)
20873 inner_mask |= oacc_loop_auto_partitions (loop->sibling, outer_mask);
20875 return inner_mask;
20878 /* Walk the OpenACC loop heirarchy to check and assign partitioning
20879 axes. */
20881 static void
20882 oacc_loop_partition (oacc_loop *loop, unsigned outer_mask)
20884 if (oacc_loop_fixed_partitions (loop, outer_mask))
20885 oacc_loop_auto_partitions (loop, outer_mask);
20888 /* Default fork/join early expander. Delete the function calls if
20889 there is no RTL expander. */
20891 bool
20892 default_goacc_fork_join (gcall *ARG_UNUSED (call),
20893 const int *ARG_UNUSED (dims), bool is_fork)
20895 if (is_fork)
20896 return targetm.have_oacc_fork ();
20897 else
20898 return targetm.have_oacc_join ();
20901 /* Default goacc.reduction early expander.
20903 LHS-opt = IFN_REDUCTION (KIND, RES_PTR, VAR, LEVEL, OP, OFFSET)
20904 If RES_PTR is not integer-zerop:
20905 SETUP - emit 'LHS = *RES_PTR', LHS = NULL
20906 TEARDOWN - emit '*RES_PTR = VAR'
20907 If LHS is not NULL
20908 emit 'LHS = VAR' */
20910 void
20911 default_goacc_reduction (gcall *call)
20913 unsigned code = (unsigned)TREE_INT_CST_LOW (gimple_call_arg (call, 0));
20914 gimple_stmt_iterator gsi = gsi_for_stmt (call);
20915 tree lhs = gimple_call_lhs (call);
20916 tree var = gimple_call_arg (call, 2);
20917 gimple_seq seq = NULL;
20919 if (code == IFN_GOACC_REDUCTION_SETUP
20920 || code == IFN_GOACC_REDUCTION_TEARDOWN)
20922 /* Setup and Teardown need to copy from/to the receiver object,
20923 if there is one. */
20924 tree ref_to_res = gimple_call_arg (call, 1);
20926 if (!integer_zerop (ref_to_res))
20928 tree dst = build_simple_mem_ref (ref_to_res);
20929 tree src = var;
20931 if (code == IFN_GOACC_REDUCTION_SETUP)
20933 src = dst;
20934 dst = lhs;
20935 lhs = NULL;
20937 gimple_seq_add_stmt (&seq, gimple_build_assign (dst, src));
20941 /* Copy VAR to LHS, if there is an LHS. */
20942 if (lhs)
20943 gimple_seq_add_stmt (&seq, gimple_build_assign (lhs, var));
20945 gsi_replace_with_seq (&gsi, seq, true);
20948 /* Main entry point for oacc transformations which run on the device
20949 compiler after LTO, so we know what the target device is at this
20950 point (including the host fallback). */
20952 static unsigned int
20953 execute_oacc_device_lower ()
20955 tree attrs = get_oacc_fn_attrib (current_function_decl);
20957 if (!attrs)
20958 /* Not an offloaded function. */
20959 return 0;
20961 /* Discover, partition and process the loops. */
20962 oacc_loop *loops = oacc_loop_discovery ();
20963 int fn_level = oacc_fn_attrib_level (attrs);
20965 if (dump_file)
20966 fprintf (dump_file, oacc_fn_attrib_kernels_p (attrs)
20967 ? "Function is kernels offload\n"
20968 : fn_level < 0 ? "Function is parallel offload\n"
20969 : "Function is routine level %d\n", fn_level);
20971 unsigned outer_mask = fn_level >= 0 ? GOMP_DIM_MASK (fn_level) - 1 : 0;
20972 oacc_loop_partition (loops, outer_mask);
20974 int dims[GOMP_DIM_MAX];
20975 oacc_validate_dims (current_function_decl, attrs, dims, fn_level);
20977 if (dump_file)
20979 const char *comma = "Compute dimensions [";
20980 for (int ix = 0; ix != GOMP_DIM_MAX; ix++, comma = ", ")
20981 fprintf (dump_file, "%s%d", comma, dims[ix]);
20982 fprintf (dump_file, "]\n");
20985 oacc_loop_process (loops);
20986 if (dump_file)
20988 fprintf (dump_file, "OpenACC loops\n");
20989 dump_oacc_loop (dump_file, loops, 0);
20990 fprintf (dump_file, "\n");
20993 /* Offloaded targets may introduce new basic blocks, which require
20994 dominance information to update SSA. */
20995 calculate_dominance_info (CDI_DOMINATORS);
20997 /* Now lower internal loop functions to target-specific code
20998 sequences. */
20999 basic_block bb;
21000 FOR_ALL_BB_FN (bb, cfun)
21001 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);)
21003 gimple *stmt = gsi_stmt (gsi);
21004 if (!is_gimple_call (stmt))
21006 gsi_next (&gsi);
21007 continue;
21010 gcall *call = as_a <gcall *> (stmt);
21011 if (!gimple_call_internal_p (call))
21013 gsi_next (&gsi);
21014 continue;
21017 /* Rewind to allow rescan. */
21018 gsi_prev (&gsi);
21019 bool rescan = false, remove = false;
21020 enum internal_fn ifn_code = gimple_call_internal_fn (call);
21022 switch (ifn_code)
21024 default: break;
21026 case IFN_GOACC_LOOP:
21027 oacc_xform_loop (call);
21028 rescan = true;
21029 break;
21031 case IFN_GOACC_REDUCTION:
21032 /* Mark the function for SSA renaming. */
21033 mark_virtual_operands_for_renaming (cfun);
21035 /* If the level is -1, this ended up being an unused
21036 axis. Handle as a default. */
21037 if (integer_minus_onep (gimple_call_arg (call, 3)))
21038 default_goacc_reduction (call);
21039 else
21040 targetm.goacc.reduction (call);
21041 rescan = true;
21042 break;
21044 case IFN_UNIQUE:
21046 enum ifn_unique_kind kind
21047 = ((enum ifn_unique_kind)
21048 TREE_INT_CST_LOW (gimple_call_arg (call, 0)));
21050 switch (kind)
21052 default:
21053 gcc_unreachable ();
21055 case IFN_UNIQUE_OACC_FORK:
21056 case IFN_UNIQUE_OACC_JOIN:
21057 if (integer_minus_onep (gimple_call_arg (call, 2)))
21058 remove = true;
21059 else if (!targetm.goacc.fork_join
21060 (call, dims, kind == IFN_UNIQUE_OACC_FORK))
21061 remove = true;
21062 break;
21064 case IFN_UNIQUE_OACC_HEAD_MARK:
21065 case IFN_UNIQUE_OACC_TAIL_MARK:
21066 remove = true;
21067 break;
21069 break;
21073 if (gsi_end_p (gsi))
21074 /* We rewound past the beginning of the BB. */
21075 gsi = gsi_start_bb (bb);
21076 else
21077 /* Undo the rewind. */
21078 gsi_next (&gsi);
21080 if (remove)
21082 if (gimple_vdef (call))
21083 replace_uses_by (gimple_vdef (call), gimple_vuse (call));
21084 if (gimple_call_lhs (call))
21086 /* Propagate the data dependency var. */
21087 gimple *ass = gimple_build_assign (gimple_call_lhs (call),
21088 gimple_call_arg (call, 1));
21089 gsi_replace (&gsi, ass, false);
21091 else
21092 gsi_remove (&gsi, true);
21094 else if (!rescan)
21095 /* If not rescanning, advance over the call. */
21096 gsi_next (&gsi);
21099 free_oacc_loop (loops);
21101 return 0;
21104 /* Default launch dimension validator. Force everything to 1. A
21105 backend that wants to provide larger dimensions must override this
21106 hook. */
21108 bool
21109 default_goacc_validate_dims (tree ARG_UNUSED (decl), int *dims,
21110 int ARG_UNUSED (fn_level))
21112 bool changed = false;
21114 for (unsigned ix = 0; ix != GOMP_DIM_MAX; ix++)
21116 if (dims[ix] != 1)
21118 dims[ix] = 1;
21119 changed = true;
21123 return changed;
21126 /* Default dimension bound is unknown on accelerator and 1 on host. */
21129 default_goacc_dim_limit (int ARG_UNUSED (axis))
21131 #ifdef ACCEL_COMPILER
21132 return 0;
21133 #else
21134 return 1;
21135 #endif
21138 namespace {
21140 const pass_data pass_data_oacc_device_lower =
21142 GIMPLE_PASS, /* type */
21143 "oaccdevlow", /* name */
21144 OPTGROUP_NONE, /* optinfo_flags */
21145 TV_NONE, /* tv_id */
21146 PROP_cfg, /* properties_required */
21147 0 /* Possibly PROP_gimple_eomp. */, /* properties_provided */
21148 0, /* properties_destroyed */
21149 0, /* todo_flags_start */
21150 TODO_update_ssa | TODO_cleanup_cfg, /* todo_flags_finish */
21153 class pass_oacc_device_lower : public gimple_opt_pass
21155 public:
21156 pass_oacc_device_lower (gcc::context *ctxt)
21157 : gimple_opt_pass (pass_data_oacc_device_lower, ctxt)
21160 /* opt_pass methods: */
21161 virtual unsigned int execute (function *)
21163 bool gate = flag_openacc != 0;
21165 if (!gate)
21166 return 0;
21168 return execute_oacc_device_lower ();
21171 }; // class pass_oacc_device_lower
21173 } // anon namespace
21175 gimple_opt_pass *
21176 make_pass_oacc_device_lower (gcc::context *ctxt)
21178 return new pass_oacc_device_lower (ctxt);
21181 /* "omp declare target link" handling pass. */
21183 namespace {
21185 const pass_data pass_data_omp_target_link =
21187 GIMPLE_PASS, /* type */
21188 "omptargetlink", /* name */
21189 OPTGROUP_NONE, /* optinfo_flags */
21190 TV_NONE, /* tv_id */
21191 PROP_ssa, /* properties_required */
21192 0, /* properties_provided */
21193 0, /* properties_destroyed */
21194 0, /* todo_flags_start */
21195 TODO_update_ssa, /* todo_flags_finish */
21198 class pass_omp_target_link : public gimple_opt_pass
21200 public:
21201 pass_omp_target_link (gcc::context *ctxt)
21202 : gimple_opt_pass (pass_data_omp_target_link, ctxt)
21205 /* opt_pass methods: */
21206 virtual bool gate (function *fun)
21208 #ifdef ACCEL_COMPILER
21209 tree attrs = DECL_ATTRIBUTES (fun->decl);
21210 return lookup_attribute ("omp declare target", attrs)
21211 || lookup_attribute ("omp target entrypoint", attrs);
21212 #else
21213 (void) fun;
21214 return false;
21215 #endif
21218 virtual unsigned execute (function *);
21221 /* Callback for walk_gimple_stmt used to scan for link var operands. */
21223 static tree
21224 find_link_var_op (tree *tp, int *walk_subtrees, void *)
21226 tree t = *tp;
21228 if (TREE_CODE (t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (t)
21229 && lookup_attribute ("omp declare target link", DECL_ATTRIBUTES (t)))
21231 *walk_subtrees = 0;
21232 return t;
21235 return NULL_TREE;
21238 unsigned
21239 pass_omp_target_link::execute (function *fun)
21241 basic_block bb;
21242 FOR_EACH_BB_FN (bb, fun)
21244 gimple_stmt_iterator gsi;
21245 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
21246 if (walk_gimple_stmt (&gsi, NULL, find_link_var_op, NULL))
21247 gimple_regimplify_operands (gsi_stmt (gsi), &gsi);
21250 return 0;
21253 } // anon namespace
21255 gimple_opt_pass *
21256 make_pass_omp_target_link (gcc::context *ctxt)
21258 return new pass_omp_target_link (ctxt);
21261 #include "gt-omp-low.h"