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-2021 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
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
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/>. */
27 #include "coretypes.h"
32 #include "tree-pass.h"
35 #include "pretty-print.h"
36 #include "diagnostic-core.h"
37 #include "fold-const.h"
38 #include "stor-layout.h"
39 #include "internal-fn.h"
40 #include "gimple-fold.h"
42 #include "gimple-iterator.h"
43 #include "gimplify-me.h"
44 #include "gimple-walk.h"
45 #include "tree-iterator.h"
46 #include "tree-inline.h"
47 #include "langhooks.h"
50 #include "splay-tree.h"
51 #include "omp-general.h"
53 #include "gimple-low.h"
54 #include "alloc-pool.h"
55 #include "symbol-summary.h"
56 #include "tree-nested.h"
58 #include "gomp-constants.h"
59 #include "gimple-pretty-print.h"
60 #include "stringpool.h"
63 /* Lowering of OMP parallel and workshare constructs proceeds in two
64 phases. The first phase scans the function looking for OMP statements
65 and then for variables that must be replaced to satisfy data sharing
66 clauses. The second phase expands code for the constructs, as well as
67 re-gimplifying things when variables have been replaced with complex
70 Final code generation is done by pass_expand_omp. The flowgraph is
71 scanned for regions which are then moved to a new
72 function, to be invoked by the thread library, or offloaded. */
74 /* Context structure. Used to store information about each parallel
75 directive in the code. */
79 /* This field must be at the beginning, as we do "inheritance": Some
80 callback functions for tree-inline.c (e.g., omp_copy_decl)
81 receive a copy_body_data pointer that is up-casted to an
82 omp_context pointer. */
85 /* The tree of contexts corresponding to the encountered constructs. */
86 struct omp_context
*outer
;
89 /* Map variables to fields in a structure that allows communication
90 between sending and receiving threads. */
96 /* These are used just by task contexts, if task firstprivate fn is
97 needed. srecord_type is used to communicate from the thread
98 that encountered the task construct to task firstprivate fn,
99 record_type is allocated by GOMP_task, initialized by task firstprivate
100 fn and passed to the task body fn. */
101 splay_tree sfield_map
;
104 /* A chain of variables to add to the top-level block surrounding the
105 construct. In the case of a parallel, this is in the child function. */
108 /* Label to which GOMP_cancel{,llation_point} and explicit and implicit
109 barriers should jump to during omplower pass. */
112 /* The sibling GIMPLE_OMP_FOR simd with _simt_ clause or NULL
116 /* For task reductions registered in this context, a vector containing
117 the length of the private copies block (if constant, otherwise NULL)
118 and then offsets (if constant, otherwise NULL) for each entry. */
119 vec
<tree
> task_reductions
;
121 /* A hash map from the reduction clauses to the registered array
123 hash_map
<tree
, unsigned> *task_reduction_map
;
125 /* And a hash map from the lastprivate(conditional:) variables to their
126 corresponding tracking loop iteration variables. */
127 hash_map
<tree
, tree
> *lastprivate_conditional_map
;
129 /* And a hash map from the allocate variables to their corresponding
131 hash_map
<tree
, tree
> *allocate_map
;
133 /* A tree_list of the reduction clauses in this context. This is
134 only used for checking the consistency of OpenACC reduction
135 clauses in scan_omp_for and is not guaranteed to contain a valid
136 value outside of this function. */
137 tree local_reduction_clauses
;
139 /* A tree_list of the reduction clauses in outer contexts. This is
140 only used for checking the consistency of OpenACC reduction
141 clauses in scan_omp_for and is not guaranteed to contain a valid
142 value outside of this function. */
143 tree outer_reduction_clauses
;
145 /* Nesting depth of this context. Used to beautify error messages re
146 invalid gotos. The outermost ctx is depth 1, with depth 0 being
147 reserved for the main body of the function. */
150 /* True if this parallel directive is nested within another. */
153 /* True if this construct can be cancelled. */
156 /* True if lower_omp_1 should look up lastprivate conditional in parent
158 bool combined_into_simd_safelen1
;
160 /* True if there is nested scan context with inclusive clause. */
163 /* True if there is nested scan context with exclusive clause. */
166 /* True in the second simd loop of for simd with inscan reductions. */
167 bool for_simd_scan_phase
;
169 /* True if there is order(concurrent) clause on the construct. */
170 bool order_concurrent
;
172 /* True if there is bind clause on the construct (i.e. a loop construct). */
176 static splay_tree all_contexts
;
177 static int taskreg_nesting_level
;
178 static int target_nesting_level
;
179 static bitmap task_shared_vars
;
180 static bitmap global_nonaddressable_vars
;
181 static vec
<omp_context
*> taskreg_contexts
;
183 static void scan_omp (gimple_seq
*, omp_context
*);
184 static tree
scan_omp_1_op (tree
*, int *, void *);
186 #define WALK_SUBSTMTS \
190 case GIMPLE_EH_FILTER: \
191 case GIMPLE_TRANSACTION: \
192 /* The sub-statements for these should be walked. */ \
193 *handled_ops_p = false; \
196 /* Return whether CTX represents an OpenACC 'parallel' or 'serial' construct.
197 (This doesn't include OpenACC 'kernels' decomposed parts.) */
200 is_oacc_parallel_or_serial (omp_context
*ctx
)
202 enum gimple_code outer_type
= gimple_code (ctx
->stmt
);
203 return ((outer_type
== GIMPLE_OMP_TARGET
)
204 && ((gimple_omp_target_kind (ctx
->stmt
)
205 == GF_OMP_TARGET_KIND_OACC_PARALLEL
)
206 || (gimple_omp_target_kind (ctx
->stmt
)
207 == GF_OMP_TARGET_KIND_OACC_SERIAL
)));
210 /* Return whether CTX represents an OpenACC 'kernels' construct.
211 (This doesn't include OpenACC 'kernels' decomposed parts.) */
214 is_oacc_kernels (omp_context
*ctx
)
216 enum gimple_code outer_type
= gimple_code (ctx
->stmt
);
217 return ((outer_type
== GIMPLE_OMP_TARGET
)
218 && (gimple_omp_target_kind (ctx
->stmt
)
219 == GF_OMP_TARGET_KIND_OACC_KERNELS
));
222 /* Return whether CTX represents an OpenACC 'kernels' decomposed part. */
225 is_oacc_kernels_decomposed_part (omp_context
*ctx
)
227 enum gimple_code outer_type
= gimple_code (ctx
->stmt
);
228 return ((outer_type
== GIMPLE_OMP_TARGET
)
229 && ((gimple_omp_target_kind (ctx
->stmt
)
230 == GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED
)
231 || (gimple_omp_target_kind (ctx
->stmt
)
232 == GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE
)
233 || (gimple_omp_target_kind (ctx
->stmt
)
234 == GF_OMP_TARGET_KIND_OACC_DATA_KERNELS
)));
237 /* Return true if STMT corresponds to an OpenMP target region. */
239 is_omp_target (gimple
*stmt
)
241 if (gimple_code (stmt
) == GIMPLE_OMP_TARGET
)
243 int kind
= gimple_omp_target_kind (stmt
);
244 return (kind
== GF_OMP_TARGET_KIND_REGION
245 || kind
== GF_OMP_TARGET_KIND_DATA
246 || kind
== GF_OMP_TARGET_KIND_ENTER_DATA
247 || kind
== GF_OMP_TARGET_KIND_EXIT_DATA
);
252 /* If DECL is the artificial dummy VAR_DECL created for non-static
253 data member privatization, return the underlying "this" parameter,
254 otherwise return NULL. */
257 omp_member_access_dummy_var (tree decl
)
260 || !DECL_ARTIFICIAL (decl
)
261 || !DECL_IGNORED_P (decl
)
262 || !DECL_HAS_VALUE_EXPR_P (decl
)
263 || !lang_hooks
.decls
.omp_disregard_value_expr (decl
, false))
266 tree v
= DECL_VALUE_EXPR (decl
);
267 if (TREE_CODE (v
) != COMPONENT_REF
)
271 switch (TREE_CODE (v
))
277 case POINTER_PLUS_EXPR
:
278 v
= TREE_OPERAND (v
, 0);
281 if (DECL_CONTEXT (v
) == current_function_decl
282 && DECL_ARTIFICIAL (v
)
283 && TREE_CODE (TREE_TYPE (v
)) == POINTER_TYPE
)
291 /* Helper for unshare_and_remap, called through walk_tree. */
294 unshare_and_remap_1 (tree
*tp
, int *walk_subtrees
, void *data
)
296 tree
*pair
= (tree
*) data
;
299 *tp
= unshare_expr (pair
[1]);
302 else if (IS_TYPE_OR_DECL_P (*tp
))
307 /* Return unshare_expr (X) with all occurrences of FROM
311 unshare_and_remap (tree x
, tree from
, tree to
)
313 tree pair
[2] = { from
, to
};
314 x
= unshare_expr (x
);
315 walk_tree (&x
, unshare_and_remap_1
, pair
, NULL
);
319 /* Convenience function for calling scan_omp_1_op on tree operands. */
322 scan_omp_op (tree
*tp
, omp_context
*ctx
)
324 struct walk_stmt_info wi
;
326 memset (&wi
, 0, sizeof (wi
));
328 wi
.want_locations
= true;
330 return walk_tree (tp
, scan_omp_1_op
, &wi
, NULL
);
333 static void lower_omp (gimple_seq
*, omp_context
*);
334 static tree
lookup_decl_in_outer_ctx (tree
, omp_context
*);
335 static tree
maybe_lookup_decl_in_outer_ctx (tree
, omp_context
*);
337 /* Return true if CTX is for an omp parallel. */
340 is_parallel_ctx (omp_context
*ctx
)
342 return gimple_code (ctx
->stmt
) == GIMPLE_OMP_PARALLEL
;
346 /* Return true if CTX is for an omp task. */
349 is_task_ctx (omp_context
*ctx
)
351 return gimple_code (ctx
->stmt
) == GIMPLE_OMP_TASK
;
355 /* Return true if CTX is for an omp taskloop. */
358 is_taskloop_ctx (omp_context
*ctx
)
360 return gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
361 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_TASKLOOP
;
365 /* Return true if CTX is for a host omp teams. */
368 is_host_teams_ctx (omp_context
*ctx
)
370 return gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
371 && gimple_omp_teams_host (as_a
<gomp_teams
*> (ctx
->stmt
));
374 /* Return true if CTX is for an omp parallel or omp task or host omp teams
375 (the last one is strictly not a task region in OpenMP speak, but we
376 need to treat it similarly). */
379 is_taskreg_ctx (omp_context
*ctx
)
381 return is_parallel_ctx (ctx
) || is_task_ctx (ctx
) || is_host_teams_ctx (ctx
);
384 /* Return true if EXPR is variable sized. */
387 is_variable_sized (const_tree expr
)
389 return !TREE_CONSTANT (TYPE_SIZE_UNIT (TREE_TYPE (expr
)));
392 /* Lookup variables. The "maybe" form
393 allows for the variable form to not have been entered, otherwise we
394 assert that the variable must have been entered. */
397 lookup_decl (tree var
, omp_context
*ctx
)
399 tree
*n
= ctx
->cb
.decl_map
->get (var
);
404 maybe_lookup_decl (const_tree var
, omp_context
*ctx
)
406 tree
*n
= ctx
->cb
.decl_map
->get (const_cast<tree
> (var
));
407 return n
? *n
: NULL_TREE
;
411 lookup_field (tree var
, omp_context
*ctx
)
414 n
= splay_tree_lookup (ctx
->field_map
, (splay_tree_key
) var
);
415 return (tree
) n
->value
;
419 lookup_sfield (splay_tree_key key
, omp_context
*ctx
)
422 n
= splay_tree_lookup (ctx
->sfield_map
423 ? ctx
->sfield_map
: ctx
->field_map
, key
);
424 return (tree
) n
->value
;
428 lookup_sfield (tree var
, omp_context
*ctx
)
430 return lookup_sfield ((splay_tree_key
) var
, ctx
);
434 maybe_lookup_field (splay_tree_key key
, omp_context
*ctx
)
437 n
= splay_tree_lookup (ctx
->field_map
, key
);
438 return n
? (tree
) n
->value
: NULL_TREE
;
442 maybe_lookup_field (tree var
, omp_context
*ctx
)
444 return maybe_lookup_field ((splay_tree_key
) var
, ctx
);
447 /* Return true if DECL should be copied by pointer. SHARED_CTX is
448 the parallel context if DECL is to be shared. */
451 use_pointer_for_field (tree decl
, omp_context
*shared_ctx
)
453 if (AGGREGATE_TYPE_P (TREE_TYPE (decl
))
454 || TYPE_ATOMIC (TREE_TYPE (decl
)))
457 /* We can only use copy-in/copy-out semantics for shared variables
458 when we know the value is not accessible from an outer scope. */
461 gcc_assert (!is_gimple_omp_oacc (shared_ctx
->stmt
));
463 /* ??? Trivially accessible from anywhere. But why would we even
464 be passing an address in this case? Should we simply assert
465 this to be false, or should we have a cleanup pass that removes
466 these from the list of mappings? */
467 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, shared_ctx
)))
470 /* For variables with DECL_HAS_VALUE_EXPR_P set, we cannot tell
471 without analyzing the expression whether or not its location
472 is accessible to anyone else. In the case of nested parallel
473 regions it certainly may be. */
474 if (TREE_CODE (decl
) != RESULT_DECL
&& DECL_HAS_VALUE_EXPR_P (decl
))
477 /* Do not use copy-in/copy-out for variables that have their
479 if (is_global_var (decl
))
481 /* For file scope vars, track whether we've seen them as
482 non-addressable initially and in that case, keep the same
483 answer for the duration of the pass, even when they are made
484 addressable later on e.g. through reduction expansion. Global
485 variables which weren't addressable before the pass will not
486 have their privatized copies address taken. See PR91216. */
487 if (!TREE_ADDRESSABLE (decl
))
489 if (!global_nonaddressable_vars
)
490 global_nonaddressable_vars
= BITMAP_ALLOC (NULL
);
491 bitmap_set_bit (global_nonaddressable_vars
, DECL_UID (decl
));
493 else if (!global_nonaddressable_vars
494 || !bitmap_bit_p (global_nonaddressable_vars
,
498 else if (TREE_ADDRESSABLE (decl
))
501 /* lower_send_shared_vars only uses copy-in, but not copy-out
503 if (TREE_READONLY (decl
)
504 || ((TREE_CODE (decl
) == RESULT_DECL
505 || TREE_CODE (decl
) == PARM_DECL
)
506 && DECL_BY_REFERENCE (decl
)))
509 /* Disallow copy-in/out in nested parallel if
510 decl is shared in outer parallel, otherwise
511 each thread could store the shared variable
512 in its own copy-in location, making the
513 variable no longer really shared. */
514 if (shared_ctx
->is_nested
)
518 for (up
= shared_ctx
->outer
; up
; up
= up
->outer
)
519 if ((is_taskreg_ctx (up
)
520 || (gimple_code (up
->stmt
) == GIMPLE_OMP_TARGET
521 && is_gimple_omp_offloaded (up
->stmt
)))
522 && maybe_lookup_decl (decl
, up
))
529 if (gimple_code (up
->stmt
) == GIMPLE_OMP_TARGET
)
531 for (c
= gimple_omp_target_clauses (up
->stmt
);
532 c
; c
= OMP_CLAUSE_CHAIN (c
))
533 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
534 && OMP_CLAUSE_DECL (c
) == decl
)
538 for (c
= gimple_omp_taskreg_clauses (up
->stmt
);
539 c
; c
= OMP_CLAUSE_CHAIN (c
))
540 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
541 && OMP_CLAUSE_DECL (c
) == decl
)
545 goto maybe_mark_addressable_and_ret
;
549 /* For tasks avoid using copy-in/out. As tasks can be
550 deferred or executed in different thread, when GOMP_task
551 returns, the task hasn't necessarily terminated. */
552 if (is_task_ctx (shared_ctx
))
555 maybe_mark_addressable_and_ret
:
556 outer
= maybe_lookup_decl_in_outer_ctx (decl
, shared_ctx
);
557 if (is_gimple_reg (outer
) && !omp_member_access_dummy_var (outer
))
559 /* Taking address of OUTER in lower_send_shared_vars
560 might need regimplification of everything that uses the
562 if (!task_shared_vars
)
563 task_shared_vars
= BITMAP_ALLOC (NULL
);
564 bitmap_set_bit (task_shared_vars
, DECL_UID (outer
));
565 TREE_ADDRESSABLE (outer
) = 1;
574 /* Construct a new automatic decl similar to VAR. */
577 omp_copy_decl_2 (tree var
, tree name
, tree type
, omp_context
*ctx
)
579 tree copy
= copy_var_decl (var
, name
, type
);
581 DECL_CONTEXT (copy
) = current_function_decl
;
582 DECL_CHAIN (copy
) = ctx
->block_vars
;
583 /* If VAR is listed in task_shared_vars, it means it wasn't
584 originally addressable and is just because task needs to take
585 it's address. But we don't need to take address of privatizations
587 if (TREE_ADDRESSABLE (var
)
588 && ((task_shared_vars
589 && bitmap_bit_p (task_shared_vars
, DECL_UID (var
)))
590 || (global_nonaddressable_vars
591 && bitmap_bit_p (global_nonaddressable_vars
, DECL_UID (var
)))))
592 TREE_ADDRESSABLE (copy
) = 0;
593 ctx
->block_vars
= copy
;
599 omp_copy_decl_1 (tree var
, omp_context
*ctx
)
601 return omp_copy_decl_2 (var
, DECL_NAME (var
), TREE_TYPE (var
), ctx
);
604 /* Build COMPONENT_REF and set TREE_THIS_VOLATILE and TREE_READONLY on it
607 omp_build_component_ref (tree obj
, tree field
)
609 tree ret
= build3 (COMPONENT_REF
, TREE_TYPE (field
), obj
, field
, NULL
);
610 if (TREE_THIS_VOLATILE (field
))
611 TREE_THIS_VOLATILE (ret
) |= 1;
612 if (TREE_READONLY (field
))
613 TREE_READONLY (ret
) |= 1;
617 /* Build tree nodes to access the field for VAR on the receiver side. */
620 build_receiver_ref (tree var
, bool by_ref
, omp_context
*ctx
)
622 tree x
, field
= lookup_field (var
, ctx
);
624 /* If the receiver record type was remapped in the child function,
625 remap the field into the new record type. */
626 x
= maybe_lookup_field (field
, ctx
);
630 x
= build_simple_mem_ref (ctx
->receiver_decl
);
631 TREE_THIS_NOTRAP (x
) = 1;
632 x
= omp_build_component_ref (x
, field
);
635 x
= build_simple_mem_ref (x
);
636 TREE_THIS_NOTRAP (x
) = 1;
642 /* Build tree nodes to access VAR in the scope outer to CTX. In the case
643 of a parallel, this is a component reference; for workshare constructs
644 this is some variable. */
647 build_outer_var_ref (tree var
, omp_context
*ctx
,
648 enum omp_clause_code code
= OMP_CLAUSE_ERROR
)
651 omp_context
*outer
= ctx
->outer
;
652 while (outer
&& gimple_code (outer
->stmt
) == GIMPLE_OMP_TASKGROUP
)
653 outer
= outer
->outer
;
655 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var
, ctx
)))
657 else if (is_variable_sized (var
))
659 x
= TREE_OPERAND (DECL_VALUE_EXPR (var
), 0);
660 x
= build_outer_var_ref (x
, ctx
, code
);
661 x
= build_simple_mem_ref (x
);
663 else if (is_taskreg_ctx (ctx
))
665 bool by_ref
= use_pointer_for_field (var
, NULL
);
666 x
= build_receiver_ref (var
, by_ref
, ctx
);
668 else if ((gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
669 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
)
671 || (code
== OMP_CLAUSE_PRIVATE
672 && (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
673 || gimple_code (ctx
->stmt
) == GIMPLE_OMP_SECTIONS
674 || gimple_code (ctx
->stmt
) == GIMPLE_OMP_SINGLE
)))
676 /* #pragma omp simd isn't a worksharing construct, and can reference
677 even private vars in its linear etc. clauses.
678 Similarly for OMP_CLAUSE_PRIVATE with outer ref, that can refer
679 to private vars in all worksharing constructs. */
681 if (outer
&& is_taskreg_ctx (outer
))
682 x
= lookup_decl (var
, outer
);
684 x
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
688 else if (code
== OMP_CLAUSE_LASTPRIVATE
&& is_taskloop_ctx (ctx
))
692 = splay_tree_lookup (outer
->field_map
,
693 (splay_tree_key
) &DECL_UID (var
));
696 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var
, outer
)))
699 x
= lookup_decl (var
, outer
);
703 tree field
= (tree
) n
->value
;
704 /* If the receiver record type was remapped in the child function,
705 remap the field into the new record type. */
706 x
= maybe_lookup_field (field
, outer
);
710 x
= build_simple_mem_ref (outer
->receiver_decl
);
711 x
= omp_build_component_ref (x
, field
);
712 if (use_pointer_for_field (var
, outer
))
713 x
= build_simple_mem_ref (x
);
717 x
= lookup_decl (var
, outer
);
718 else if (omp_is_reference (var
))
719 /* This can happen with orphaned constructs. If var is reference, it is
720 possible it is shared and as such valid. */
722 else if (omp_member_access_dummy_var (var
))
729 tree t
= omp_member_access_dummy_var (var
);
732 x
= DECL_VALUE_EXPR (var
);
733 tree o
= maybe_lookup_decl_in_outer_ctx (t
, ctx
);
735 x
= unshare_and_remap (x
, t
, o
);
737 x
= unshare_expr (x
);
741 if (omp_is_reference (var
))
742 x
= build_simple_mem_ref (x
);
747 /* Build tree nodes to access the field for VAR on the sender side. */
750 build_sender_ref (splay_tree_key key
, omp_context
*ctx
)
752 tree field
= lookup_sfield (key
, ctx
);
753 return omp_build_component_ref (ctx
->sender_decl
, field
);
757 build_sender_ref (tree var
, omp_context
*ctx
)
759 return build_sender_ref ((splay_tree_key
) var
, ctx
);
762 /* Add a new field for VAR inside the structure CTX->SENDER_DECL. If
763 BASE_POINTERS_RESTRICT, declare the field with restrict. */
766 install_var_field (tree var
, bool by_ref
, int mask
, omp_context
*ctx
)
768 tree field
, type
, sfield
= NULL_TREE
;
769 splay_tree_key key
= (splay_tree_key
) var
;
771 if ((mask
& 16) != 0)
773 key
= (splay_tree_key
) &DECL_NAME (var
);
774 gcc_checking_assert (key
!= (splay_tree_key
) var
);
778 key
= (splay_tree_key
) &DECL_UID (var
);
779 gcc_checking_assert (key
!= (splay_tree_key
) var
);
781 gcc_assert ((mask
& 1) == 0
782 || !splay_tree_lookup (ctx
->field_map
, key
));
783 gcc_assert ((mask
& 2) == 0 || !ctx
->sfield_map
784 || !splay_tree_lookup (ctx
->sfield_map
, key
));
785 gcc_assert ((mask
& 3) == 3
786 || !is_gimple_omp_oacc (ctx
->stmt
));
788 type
= TREE_TYPE (var
);
789 if ((mask
& 16) != 0)
790 type
= lang_hooks
.decls
.omp_array_data (var
, true);
792 /* Prevent redeclaring the var in the split-off function with a restrict
793 pointer type. Note that we only clear type itself, restrict qualifiers in
794 the pointed-to type will be ignored by points-to analysis. */
795 if (POINTER_TYPE_P (type
)
796 && TYPE_RESTRICT (type
))
797 type
= build_qualified_type (type
, TYPE_QUALS (type
) & ~TYPE_QUAL_RESTRICT
);
801 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
802 type
= build_pointer_type (build_pointer_type (type
));
805 type
= build_pointer_type (type
);
806 else if ((mask
& (32 | 3)) == 1 && omp_is_reference (var
))
807 type
= TREE_TYPE (type
);
809 field
= build_decl (DECL_SOURCE_LOCATION (var
),
810 FIELD_DECL
, DECL_NAME (var
), type
);
812 /* Remember what variable this field was created for. This does have a
813 side effect of making dwarf2out ignore this member, so for helpful
814 debugging we clear it later in delete_omp_context. */
815 DECL_ABSTRACT_ORIGIN (field
) = var
;
816 if ((mask
& 16) == 0 && type
== TREE_TYPE (var
))
818 SET_DECL_ALIGN (field
, DECL_ALIGN (var
));
819 DECL_USER_ALIGN (field
) = DECL_USER_ALIGN (var
);
820 TREE_THIS_VOLATILE (field
) = TREE_THIS_VOLATILE (var
);
823 SET_DECL_ALIGN (field
, TYPE_ALIGN (type
));
827 insert_field_into_struct (ctx
->record_type
, field
);
828 if (ctx
->srecord_type
)
830 sfield
= build_decl (DECL_SOURCE_LOCATION (var
),
831 FIELD_DECL
, DECL_NAME (var
), type
);
832 DECL_ABSTRACT_ORIGIN (sfield
) = var
;
833 SET_DECL_ALIGN (sfield
, DECL_ALIGN (field
));
834 DECL_USER_ALIGN (sfield
) = DECL_USER_ALIGN (field
);
835 TREE_THIS_VOLATILE (sfield
) = TREE_THIS_VOLATILE (field
);
836 insert_field_into_struct (ctx
->srecord_type
, sfield
);
841 if (ctx
->srecord_type
== NULL_TREE
)
845 ctx
->srecord_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
846 ctx
->sfield_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
847 for (t
= TYPE_FIELDS (ctx
->record_type
); t
; t
= TREE_CHAIN (t
))
849 sfield
= build_decl (DECL_SOURCE_LOCATION (t
),
850 FIELD_DECL
, DECL_NAME (t
), TREE_TYPE (t
));
851 DECL_ABSTRACT_ORIGIN (sfield
) = DECL_ABSTRACT_ORIGIN (t
);
852 insert_field_into_struct (ctx
->srecord_type
, sfield
);
853 splay_tree_insert (ctx
->sfield_map
,
854 (splay_tree_key
) DECL_ABSTRACT_ORIGIN (t
),
855 (splay_tree_value
) sfield
);
859 insert_field_into_struct ((mask
& 1) ? ctx
->record_type
860 : ctx
->srecord_type
, field
);
864 splay_tree_insert (ctx
->field_map
, key
, (splay_tree_value
) field
);
865 if ((mask
& 2) && ctx
->sfield_map
)
866 splay_tree_insert (ctx
->sfield_map
, key
, (splay_tree_value
) sfield
);
870 install_var_local (tree var
, omp_context
*ctx
)
872 tree new_var
= omp_copy_decl_1 (var
, ctx
);
873 insert_decl_map (&ctx
->cb
, var
, new_var
);
877 /* Adjust the replacement for DECL in CTX for the new context. This means
878 copying the DECL_VALUE_EXPR, and fixing up the type. */
881 fixup_remapped_decl (tree decl
, omp_context
*ctx
, bool private_debug
)
885 new_decl
= lookup_decl (decl
, ctx
);
887 TREE_TYPE (new_decl
) = remap_type (TREE_TYPE (decl
), &ctx
->cb
);
889 if ((!TREE_CONSTANT (DECL_SIZE (new_decl
)) || private_debug
)
890 && DECL_HAS_VALUE_EXPR_P (decl
))
892 tree ve
= DECL_VALUE_EXPR (decl
);
893 walk_tree (&ve
, copy_tree_body_r
, &ctx
->cb
, NULL
);
894 SET_DECL_VALUE_EXPR (new_decl
, ve
);
895 DECL_HAS_VALUE_EXPR_P (new_decl
) = 1;
898 if (!TREE_CONSTANT (DECL_SIZE (new_decl
)))
900 size
= remap_decl (DECL_SIZE (decl
), &ctx
->cb
);
901 if (size
== error_mark_node
)
902 size
= TYPE_SIZE (TREE_TYPE (new_decl
));
903 DECL_SIZE (new_decl
) = size
;
905 size
= remap_decl (DECL_SIZE_UNIT (decl
), &ctx
->cb
);
906 if (size
== error_mark_node
)
907 size
= TYPE_SIZE_UNIT (TREE_TYPE (new_decl
));
908 DECL_SIZE_UNIT (new_decl
) = size
;
912 /* The callback for remap_decl. Search all containing contexts for a
913 mapping of the variable; this avoids having to duplicate the splay
914 tree ahead of time. We know a mapping doesn't already exist in the
915 given context. Create new mappings to implement default semantics. */
918 omp_copy_decl (tree var
, copy_body_data
*cb
)
920 omp_context
*ctx
= (omp_context
*) cb
;
923 if (TREE_CODE (var
) == LABEL_DECL
)
925 if (FORCED_LABEL (var
) || DECL_NONLOCAL (var
))
927 new_var
= create_artificial_label (DECL_SOURCE_LOCATION (var
));
928 DECL_CONTEXT (new_var
) = current_function_decl
;
929 insert_decl_map (&ctx
->cb
, var
, new_var
);
933 while (!is_taskreg_ctx (ctx
))
938 new_var
= maybe_lookup_decl (var
, ctx
);
943 if (is_global_var (var
) || decl_function_context (var
) != ctx
->cb
.src_fn
)
946 return error_mark_node
;
949 /* Create a new context, with OUTER_CTX being the surrounding context. */
952 new_omp_context (gimple
*stmt
, omp_context
*outer_ctx
)
954 omp_context
*ctx
= XCNEW (omp_context
);
956 splay_tree_insert (all_contexts
, (splay_tree_key
) stmt
,
957 (splay_tree_value
) ctx
);
962 ctx
->outer
= outer_ctx
;
963 ctx
->cb
= outer_ctx
->cb
;
964 ctx
->cb
.block
= NULL
;
965 ctx
->depth
= outer_ctx
->depth
+ 1;
969 ctx
->cb
.src_fn
= current_function_decl
;
970 ctx
->cb
.dst_fn
= current_function_decl
;
971 ctx
->cb
.src_node
= cgraph_node::get (current_function_decl
);
972 gcc_checking_assert (ctx
->cb
.src_node
);
973 ctx
->cb
.dst_node
= ctx
->cb
.src_node
;
974 ctx
->cb
.src_cfun
= cfun
;
975 ctx
->cb
.copy_decl
= omp_copy_decl
;
976 ctx
->cb
.eh_lp_nr
= 0;
977 ctx
->cb
.transform_call_graph_edges
= CB_CGE_MOVE
;
978 ctx
->cb
.adjust_array_error_bounds
= true;
979 ctx
->cb
.dont_remap_vla_if_no_change
= true;
983 ctx
->cb
.decl_map
= new hash_map
<tree
, tree
>;
988 static gimple_seq
maybe_catch_exception (gimple_seq
);
990 /* Finalize task copyfn. */
993 finalize_task_copyfn (gomp_task
*task_stmt
)
995 struct function
*child_cfun
;
997 gimple_seq seq
= NULL
, new_seq
;
1000 child_fn
= gimple_omp_task_copy_fn (task_stmt
);
1001 if (child_fn
== NULL_TREE
)
1004 child_cfun
= DECL_STRUCT_FUNCTION (child_fn
);
1005 DECL_STRUCT_FUNCTION (child_fn
)->curr_properties
= cfun
->curr_properties
;
1007 push_cfun (child_cfun
);
1008 bind
= gimplify_body (child_fn
, false);
1009 gimple_seq_add_stmt (&seq
, bind
);
1010 new_seq
= maybe_catch_exception (seq
);
1013 bind
= gimple_build_bind (NULL
, new_seq
, NULL
);
1015 gimple_seq_add_stmt (&seq
, bind
);
1017 gimple_set_body (child_fn
, seq
);
1020 /* Inform the callgraph about the new function. */
1021 cgraph_node
*node
= cgraph_node::get_create (child_fn
);
1022 node
->parallelized_function
= 1;
1023 cgraph_node::add_new_function (child_fn
, false);
1026 /* Destroy a omp_context data structures. Called through the splay tree
1027 value delete callback. */
1030 delete_omp_context (splay_tree_value value
)
1032 omp_context
*ctx
= (omp_context
*) value
;
1034 delete ctx
->cb
.decl_map
;
1037 splay_tree_delete (ctx
->field_map
);
1038 if (ctx
->sfield_map
)
1039 splay_tree_delete (ctx
->sfield_map
);
1041 /* We hijacked DECL_ABSTRACT_ORIGIN earlier. We need to clear it before
1042 it produces corrupt debug information. */
1043 if (ctx
->record_type
)
1046 for (t
= TYPE_FIELDS (ctx
->record_type
); t
; t
= DECL_CHAIN (t
))
1047 DECL_ABSTRACT_ORIGIN (t
) = NULL
;
1049 if (ctx
->srecord_type
)
1052 for (t
= TYPE_FIELDS (ctx
->srecord_type
); t
; t
= DECL_CHAIN (t
))
1053 DECL_ABSTRACT_ORIGIN (t
) = NULL
;
1056 if (is_task_ctx (ctx
))
1057 finalize_task_copyfn (as_a
<gomp_task
*> (ctx
->stmt
));
1059 if (ctx
->task_reduction_map
)
1061 ctx
->task_reductions
.release ();
1062 delete ctx
->task_reduction_map
;
1065 delete ctx
->lastprivate_conditional_map
;
1066 delete ctx
->allocate_map
;
1071 /* Fix up RECEIVER_DECL with a type that has been remapped to the child
1075 fixup_child_record_type (omp_context
*ctx
)
1077 tree f
, type
= ctx
->record_type
;
1079 if (!ctx
->receiver_decl
)
1081 /* ??? It isn't sufficient to just call remap_type here, because
1082 variably_modified_type_p doesn't work the way we expect for
1083 record types. Testing each field for whether it needs remapping
1084 and creating a new record by hand works, however. */
1085 for (f
= TYPE_FIELDS (type
); f
; f
= DECL_CHAIN (f
))
1086 if (variably_modified_type_p (TREE_TYPE (f
), ctx
->cb
.src_fn
))
1090 tree name
, new_fields
= NULL
;
1092 type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1093 name
= DECL_NAME (TYPE_NAME (ctx
->record_type
));
1094 name
= build_decl (DECL_SOURCE_LOCATION (ctx
->receiver_decl
),
1095 TYPE_DECL
, name
, type
);
1096 TYPE_NAME (type
) = name
;
1098 for (f
= TYPE_FIELDS (ctx
->record_type
); f
; f
= DECL_CHAIN (f
))
1100 tree new_f
= copy_node (f
);
1101 DECL_CONTEXT (new_f
) = type
;
1102 TREE_TYPE (new_f
) = remap_type (TREE_TYPE (f
), &ctx
->cb
);
1103 DECL_CHAIN (new_f
) = new_fields
;
1104 walk_tree (&DECL_SIZE (new_f
), copy_tree_body_r
, &ctx
->cb
, NULL
);
1105 walk_tree (&DECL_SIZE_UNIT (new_f
), copy_tree_body_r
,
1107 walk_tree (&DECL_FIELD_OFFSET (new_f
), copy_tree_body_r
,
1111 /* Arrange to be able to look up the receiver field
1112 given the sender field. */
1113 splay_tree_insert (ctx
->field_map
, (splay_tree_key
) f
,
1114 (splay_tree_value
) new_f
);
1116 TYPE_FIELDS (type
) = nreverse (new_fields
);
1120 /* In a target region we never modify any of the pointers in *.omp_data_i,
1121 so attempt to help the optimizers. */
1122 if (is_gimple_omp_offloaded (ctx
->stmt
))
1123 type
= build_qualified_type (type
, TYPE_QUAL_CONST
);
1125 TREE_TYPE (ctx
->receiver_decl
)
1126 = build_qualified_type (build_reference_type (type
), TYPE_QUAL_RESTRICT
);
1129 /* Instantiate decls as necessary in CTX to satisfy the data sharing
1130 specified by CLAUSES. */
1133 scan_sharing_clauses (tree clauses
, omp_context
*ctx
)
1136 bool scan_array_reductions
= false;
1138 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
1139 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_ALLOCATE
1140 && (OMP_CLAUSE_ALLOCATE_ALLOCATOR (c
) == NULL_TREE
1141 /* omp_default_mem_alloc is 1 */
1142 || !integer_onep (OMP_CLAUSE_ALLOCATE_ALLOCATOR (c
))))
1144 if (ctx
->allocate_map
== NULL
)
1145 ctx
->allocate_map
= new hash_map
<tree
, tree
>;
1146 ctx
->allocate_map
->put (OMP_CLAUSE_DECL (c
),
1147 OMP_CLAUSE_ALLOCATE_ALLOCATOR (c
)
1148 ? OMP_CLAUSE_ALLOCATE_ALLOCATOR (c
)
1149 : integer_zero_node
);
1152 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
1156 switch (OMP_CLAUSE_CODE (c
))
1158 case OMP_CLAUSE_PRIVATE
:
1159 decl
= OMP_CLAUSE_DECL (c
);
1160 if (OMP_CLAUSE_PRIVATE_OUTER_REF (c
))
1162 else if (!is_variable_sized (decl
))
1163 install_var_local (decl
, ctx
);
1166 case OMP_CLAUSE_SHARED
:
1167 decl
= OMP_CLAUSE_DECL (c
);
1168 if (ctx
->allocate_map
&& ctx
->allocate_map
->get (decl
))
1169 ctx
->allocate_map
->remove (decl
);
1170 /* Ignore shared directives in teams construct inside of
1171 target construct. */
1172 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
1173 && !is_host_teams_ctx (ctx
))
1175 /* Global variables don't need to be copied,
1176 the receiver side will use them directly. */
1177 tree odecl
= maybe_lookup_decl_in_outer_ctx (decl
, ctx
);
1178 if (is_global_var (odecl
))
1180 insert_decl_map (&ctx
->cb
, decl
, odecl
);
1183 gcc_assert (is_taskreg_ctx (ctx
));
1184 gcc_assert (!COMPLETE_TYPE_P (TREE_TYPE (decl
))
1185 || !is_variable_sized (decl
));
1186 /* Global variables don't need to be copied,
1187 the receiver side will use them directly. */
1188 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
)))
1190 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
1192 use_pointer_for_field (decl
, ctx
);
1195 by_ref
= use_pointer_for_field (decl
, NULL
);
1196 if ((! TREE_READONLY (decl
) && !OMP_CLAUSE_SHARED_READONLY (c
))
1197 || TREE_ADDRESSABLE (decl
)
1199 || omp_is_reference (decl
))
1201 by_ref
= use_pointer_for_field (decl
, ctx
);
1202 install_var_field (decl
, by_ref
, 3, ctx
);
1203 install_var_local (decl
, ctx
);
1206 /* We don't need to copy const scalar vars back. */
1207 OMP_CLAUSE_SET_CODE (c
, OMP_CLAUSE_FIRSTPRIVATE
);
1210 case OMP_CLAUSE_REDUCTION
:
1211 /* Collect 'reduction' clauses on OpenACC compute construct. */
1212 if (is_gimple_omp_oacc (ctx
->stmt
)
1213 && is_gimple_omp_offloaded (ctx
->stmt
))
1215 /* No 'reduction' clauses on OpenACC 'kernels'. */
1216 gcc_checking_assert (!is_oacc_kernels (ctx
));
1217 /* Likewise, on OpenACC 'kernels' decomposed parts. */
1218 gcc_checking_assert (!is_oacc_kernels_decomposed_part (ctx
));
1220 ctx
->local_reduction_clauses
1221 = tree_cons (NULL
, c
, ctx
->local_reduction_clauses
);
1225 case OMP_CLAUSE_IN_REDUCTION
:
1226 decl
= OMP_CLAUSE_DECL (c
);
1227 if (ctx
->allocate_map
1228 && ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
1229 && (OMP_CLAUSE_REDUCTION_INSCAN (c
)
1230 || OMP_CLAUSE_REDUCTION_TASK (c
)))
1231 || is_task_ctx (ctx
)))
1234 if (ctx
->allocate_map
->get (decl
))
1235 ctx
->allocate_map
->remove (decl
);
1237 if (TREE_CODE (decl
) == MEM_REF
)
1239 tree t
= TREE_OPERAND (decl
, 0);
1240 if (TREE_CODE (t
) == POINTER_PLUS_EXPR
)
1241 t
= TREE_OPERAND (t
, 0);
1242 if (TREE_CODE (t
) == INDIRECT_REF
1243 || TREE_CODE (t
) == ADDR_EXPR
)
1244 t
= TREE_OPERAND (t
, 0);
1245 install_var_local (t
, ctx
);
1246 if (is_taskreg_ctx (ctx
)
1247 && (!is_global_var (maybe_lookup_decl_in_outer_ctx (t
, ctx
))
1248 || (is_task_ctx (ctx
)
1249 && (TREE_CODE (TREE_TYPE (t
)) == POINTER_TYPE
1250 || (TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
1251 && (TREE_CODE (TREE_TYPE (TREE_TYPE (t
)))
1252 == POINTER_TYPE
)))))
1253 && !is_variable_sized (t
)
1254 && (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
1255 || (!OMP_CLAUSE_REDUCTION_TASK (c
)
1256 && !is_task_ctx (ctx
))))
1258 by_ref
= use_pointer_for_field (t
, NULL
);
1259 if (is_task_ctx (ctx
)
1260 && TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
1261 && TREE_CODE (TREE_TYPE (TREE_TYPE (t
))) == POINTER_TYPE
)
1263 install_var_field (t
, false, 1, ctx
);
1264 install_var_field (t
, by_ref
, 2, ctx
);
1267 install_var_field (t
, by_ref
, 3, ctx
);
1271 if (is_task_ctx (ctx
)
1272 || (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
1273 && OMP_CLAUSE_REDUCTION_TASK (c
)
1274 && is_parallel_ctx (ctx
)))
1276 /* Global variables don't need to be copied,
1277 the receiver side will use them directly. */
1278 if (!is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
)))
1280 by_ref
= use_pointer_for_field (decl
, ctx
);
1281 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_IN_REDUCTION
)
1282 install_var_field (decl
, by_ref
, 3, ctx
);
1284 install_var_local (decl
, ctx
);
1287 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
1288 && OMP_CLAUSE_REDUCTION_TASK (c
))
1290 install_var_local (decl
, ctx
);
1295 case OMP_CLAUSE_LASTPRIVATE
:
1296 /* Let the corresponding firstprivate clause create
1298 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
))
1302 case OMP_CLAUSE_FIRSTPRIVATE
:
1303 case OMP_CLAUSE_LINEAR
:
1304 decl
= OMP_CLAUSE_DECL (c
);
1306 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
1307 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_IS_DEVICE_PTR
)
1308 && is_gimple_omp_offloaded (ctx
->stmt
))
1310 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
1311 install_var_field (decl
, !omp_is_reference (decl
), 3, ctx
);
1312 else if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1313 install_var_field (decl
, true, 3, ctx
);
1315 install_var_field (decl
, false, 3, ctx
);
1317 if (is_variable_sized (decl
))
1319 if (is_task_ctx (ctx
))
1321 if (ctx
->allocate_map
1322 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
1325 if (ctx
->allocate_map
->get (decl
))
1326 ctx
->allocate_map
->remove (decl
);
1328 install_var_field (decl
, false, 1, ctx
);
1332 else if (is_taskreg_ctx (ctx
))
1335 = is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
));
1336 by_ref
= use_pointer_for_field (decl
, NULL
);
1338 if (is_task_ctx (ctx
)
1339 && (global
|| by_ref
|| omp_is_reference (decl
)))
1341 if (ctx
->allocate_map
1342 && ctx
->allocate_map
->get (decl
))
1343 install_var_field (decl
, by_ref
, 32 | 1, ctx
);
1345 install_var_field (decl
, false, 1, ctx
);
1347 install_var_field (decl
, by_ref
, 2, ctx
);
1350 install_var_field (decl
, by_ref
, 3, ctx
);
1352 install_var_local (decl
, ctx
);
1355 case OMP_CLAUSE_USE_DEVICE_PTR
:
1356 case OMP_CLAUSE_USE_DEVICE_ADDR
:
1357 decl
= OMP_CLAUSE_DECL (c
);
1359 /* Fortran array descriptors. */
1360 if (lang_hooks
.decls
.omp_array_data (decl
, true))
1361 install_var_field (decl
, false, 19, ctx
);
1362 else if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_USE_DEVICE_ADDR
1363 && !omp_is_reference (decl
)
1364 && !omp_is_allocatable_or_ptr (decl
))
1365 || TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1366 install_var_field (decl
, true, 11, ctx
);
1368 install_var_field (decl
, false, 11, ctx
);
1369 if (DECL_SIZE (decl
)
1370 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
1372 tree decl2
= DECL_VALUE_EXPR (decl
);
1373 gcc_assert (TREE_CODE (decl2
) == INDIRECT_REF
);
1374 decl2
= TREE_OPERAND (decl2
, 0);
1375 gcc_assert (DECL_P (decl2
));
1376 install_var_local (decl2
, ctx
);
1378 install_var_local (decl
, ctx
);
1381 case OMP_CLAUSE_IS_DEVICE_PTR
:
1382 decl
= OMP_CLAUSE_DECL (c
);
1385 case OMP_CLAUSE__LOOPTEMP_
:
1386 case OMP_CLAUSE__REDUCTEMP_
:
1387 gcc_assert (is_taskreg_ctx (ctx
));
1388 decl
= OMP_CLAUSE_DECL (c
);
1389 install_var_field (decl
, false, 3, ctx
);
1390 install_var_local (decl
, ctx
);
1393 case OMP_CLAUSE_COPYPRIVATE
:
1394 case OMP_CLAUSE_COPYIN
:
1395 decl
= OMP_CLAUSE_DECL (c
);
1396 by_ref
= use_pointer_for_field (decl
, NULL
);
1397 install_var_field (decl
, by_ref
, 3, ctx
);
1400 case OMP_CLAUSE_FINAL
:
1402 case OMP_CLAUSE_NUM_THREADS
:
1403 case OMP_CLAUSE_NUM_TEAMS
:
1404 case OMP_CLAUSE_THREAD_LIMIT
:
1405 case OMP_CLAUSE_DEVICE
:
1406 case OMP_CLAUSE_SCHEDULE
:
1407 case OMP_CLAUSE_DIST_SCHEDULE
:
1408 case OMP_CLAUSE_DEPEND
:
1409 case OMP_CLAUSE_PRIORITY
:
1410 case OMP_CLAUSE_GRAINSIZE
:
1411 case OMP_CLAUSE_NUM_TASKS
:
1412 case OMP_CLAUSE_NUM_GANGS
:
1413 case OMP_CLAUSE_NUM_WORKERS
:
1414 case OMP_CLAUSE_VECTOR_LENGTH
:
1415 case OMP_CLAUSE_DETACH
:
1417 scan_omp_op (&OMP_CLAUSE_OPERAND (c
, 0), ctx
->outer
);
1421 case OMP_CLAUSE_FROM
:
1422 case OMP_CLAUSE_MAP
:
1424 scan_omp_op (&OMP_CLAUSE_SIZE (c
), ctx
->outer
);
1425 decl
= OMP_CLAUSE_DECL (c
);
1426 /* Global variables with "omp declare target" attribute
1427 don't need to be copied, the receiver side will use them
1428 directly. However, global variables with "omp declare target link"
1429 attribute need to be copied. Or when ALWAYS modifier is used. */
1430 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
1432 && ((OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_FIRSTPRIVATE_POINTER
1433 && (OMP_CLAUSE_MAP_KIND (c
)
1434 != GOMP_MAP_FIRSTPRIVATE_REFERENCE
)
1435 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_ATTACH
1436 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_DETACH
)
1437 || TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1438 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_ALWAYS_TO
1439 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_ALWAYS_FROM
1440 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_ALWAYS_TOFROM
1441 && OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_TO_PSET
1442 && is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
))
1443 && varpool_node::get_create (decl
)->offloadable
1444 && !lookup_attribute ("omp declare target link",
1445 DECL_ATTRIBUTES (decl
)))
1447 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
1448 && OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
)
1450 /* Ignore GOMP_MAP_POINTER kind for arrays in regions that are
1451 not offloaded; there is nothing to map for those. */
1452 if (!is_gimple_omp_offloaded (ctx
->stmt
)
1453 && !POINTER_TYPE_P (TREE_TYPE (decl
))
1454 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
))
1457 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
1459 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_ATTACH
1460 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_DETACH
)
1461 && is_omp_target (ctx
->stmt
))
1463 /* If this is an offloaded region, an attach operation should
1464 only exist when the pointer variable is mapped in a prior
1466 if (is_gimple_omp_offloaded (ctx
->stmt
))
1468 (maybe_lookup_decl (decl
, ctx
)
1469 || (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
))
1470 && lookup_attribute ("omp declare target",
1471 DECL_ATTRIBUTES (decl
))));
1473 /* By itself, attach/detach is generated as part of pointer
1474 variable mapping and should not create new variables in the
1475 offloaded region, however sender refs for it must be created
1476 for its address to be passed to the runtime. */
1478 = build_decl (OMP_CLAUSE_LOCATION (c
),
1479 FIELD_DECL
, NULL_TREE
, ptr_type_node
);
1480 SET_DECL_ALIGN (field
, TYPE_ALIGN (ptr_type_node
));
1481 insert_field_into_struct (ctx
->record_type
, field
);
1482 /* To not clash with a map of the pointer variable itself,
1483 attach/detach maps have their field looked up by the *clause*
1484 tree expression, not the decl. */
1485 gcc_assert (!splay_tree_lookup (ctx
->field_map
,
1486 (splay_tree_key
) c
));
1487 splay_tree_insert (ctx
->field_map
, (splay_tree_key
) c
,
1488 (splay_tree_value
) field
);
1491 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
1492 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
1493 || (OMP_CLAUSE_MAP_KIND (c
)
1494 == GOMP_MAP_FIRSTPRIVATE_REFERENCE
)))
1496 if (TREE_CODE (decl
) == COMPONENT_REF
1497 || (TREE_CODE (decl
) == INDIRECT_REF
1498 && TREE_CODE (TREE_OPERAND (decl
, 0)) == COMPONENT_REF
1499 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (decl
, 0)))
1500 == REFERENCE_TYPE
)))
1502 if (DECL_SIZE (decl
)
1503 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
1505 tree decl2
= DECL_VALUE_EXPR (decl
);
1506 gcc_assert (TREE_CODE (decl2
) == INDIRECT_REF
);
1507 decl2
= TREE_OPERAND (decl2
, 0);
1508 gcc_assert (DECL_P (decl2
));
1509 install_var_local (decl2
, ctx
);
1511 install_var_local (decl
, ctx
);
1516 if (DECL_SIZE (decl
)
1517 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
1519 tree decl2
= DECL_VALUE_EXPR (decl
);
1520 gcc_assert (TREE_CODE (decl2
) == INDIRECT_REF
);
1521 decl2
= TREE_OPERAND (decl2
, 0);
1522 gcc_assert (DECL_P (decl2
));
1523 install_var_field (decl2
, true, 3, ctx
);
1524 install_var_local (decl2
, ctx
);
1525 install_var_local (decl
, ctx
);
1529 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
1530 && OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
1531 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
)
1532 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1533 install_var_field (decl
, true, 7, ctx
);
1535 install_var_field (decl
, true, 3, ctx
);
1536 if (is_gimple_omp_offloaded (ctx
->stmt
)
1537 && !OMP_CLAUSE_MAP_IN_REDUCTION (c
))
1538 install_var_local (decl
, ctx
);
1543 tree base
= get_base_address (decl
);
1544 tree nc
= OMP_CLAUSE_CHAIN (c
);
1547 && OMP_CLAUSE_CODE (nc
) == OMP_CLAUSE_MAP
1548 && OMP_CLAUSE_DECL (nc
) == base
1549 && OMP_CLAUSE_MAP_KIND (nc
) == GOMP_MAP_POINTER
1550 && integer_zerop (OMP_CLAUSE_SIZE (nc
)))
1552 OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
) = 1;
1553 OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (nc
) = 1;
1559 scan_omp_op (&OMP_CLAUSE_DECL (c
), ctx
->outer
);
1560 decl
= OMP_CLAUSE_DECL (c
);
1562 gcc_assert (!splay_tree_lookup (ctx
->field_map
,
1563 (splay_tree_key
) decl
));
1565 = build_decl (OMP_CLAUSE_LOCATION (c
),
1566 FIELD_DECL
, NULL_TREE
, ptr_type_node
);
1567 SET_DECL_ALIGN (field
, TYPE_ALIGN (ptr_type_node
));
1568 insert_field_into_struct (ctx
->record_type
, field
);
1569 splay_tree_insert (ctx
->field_map
, (splay_tree_key
) decl
,
1570 (splay_tree_value
) field
);
1575 case OMP_CLAUSE_ORDER
:
1576 ctx
->order_concurrent
= true;
1579 case OMP_CLAUSE_BIND
:
1583 case OMP_CLAUSE_NOWAIT
:
1584 case OMP_CLAUSE_ORDERED
:
1585 case OMP_CLAUSE_COLLAPSE
:
1586 case OMP_CLAUSE_UNTIED
:
1587 case OMP_CLAUSE_MERGEABLE
:
1588 case OMP_CLAUSE_PROC_BIND
:
1589 case OMP_CLAUSE_SAFELEN
:
1590 case OMP_CLAUSE_SIMDLEN
:
1591 case OMP_CLAUSE_THREADS
:
1592 case OMP_CLAUSE_SIMD
:
1593 case OMP_CLAUSE_NOGROUP
:
1594 case OMP_CLAUSE_DEFAULTMAP
:
1595 case OMP_CLAUSE_ASYNC
:
1596 case OMP_CLAUSE_WAIT
:
1597 case OMP_CLAUSE_GANG
:
1598 case OMP_CLAUSE_WORKER
:
1599 case OMP_CLAUSE_VECTOR
:
1600 case OMP_CLAUSE_INDEPENDENT
:
1601 case OMP_CLAUSE_AUTO
:
1602 case OMP_CLAUSE_SEQ
:
1603 case OMP_CLAUSE_TILE
:
1604 case OMP_CLAUSE__SIMT_
:
1605 case OMP_CLAUSE_DEFAULT
:
1606 case OMP_CLAUSE_NONTEMPORAL
:
1607 case OMP_CLAUSE_IF_PRESENT
:
1608 case OMP_CLAUSE_FINALIZE
:
1609 case OMP_CLAUSE_TASK_REDUCTION
:
1610 case OMP_CLAUSE_ALLOCATE
:
1613 case OMP_CLAUSE_ALIGNED
:
1614 decl
= OMP_CLAUSE_DECL (c
);
1615 if (is_global_var (decl
)
1616 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1617 install_var_local (decl
, ctx
);
1620 case OMP_CLAUSE__CONDTEMP_
:
1621 decl
= OMP_CLAUSE_DECL (c
);
1622 if (is_parallel_ctx (ctx
))
1624 install_var_field (decl
, false, 3, ctx
);
1625 install_var_local (decl
, ctx
);
1627 else if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
1628 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
1629 && !OMP_CLAUSE__CONDTEMP__ITER (c
))
1630 install_var_local (decl
, ctx
);
1633 case OMP_CLAUSE__CACHE_
:
1639 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
1641 switch (OMP_CLAUSE_CODE (c
))
1643 case OMP_CLAUSE_LASTPRIVATE
:
1644 /* Let the corresponding firstprivate clause create
1646 if (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
))
1647 scan_array_reductions
= true;
1648 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
))
1652 case OMP_CLAUSE_FIRSTPRIVATE
:
1653 case OMP_CLAUSE_PRIVATE
:
1654 case OMP_CLAUSE_LINEAR
:
1655 case OMP_CLAUSE_IS_DEVICE_PTR
:
1656 decl
= OMP_CLAUSE_DECL (c
);
1657 if (is_variable_sized (decl
))
1659 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
1660 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_IS_DEVICE_PTR
)
1661 && is_gimple_omp_offloaded (ctx
->stmt
))
1663 tree decl2
= DECL_VALUE_EXPR (decl
);
1664 gcc_assert (TREE_CODE (decl2
) == INDIRECT_REF
);
1665 decl2
= TREE_OPERAND (decl2
, 0);
1666 gcc_assert (DECL_P (decl2
));
1667 install_var_local (decl2
, ctx
);
1668 fixup_remapped_decl (decl2
, ctx
, false);
1670 install_var_local (decl
, ctx
);
1672 fixup_remapped_decl (decl
, ctx
,
1673 OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_PRIVATE
1674 && OMP_CLAUSE_PRIVATE_DEBUG (c
));
1675 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
1676 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
))
1677 scan_array_reductions
= true;
1680 case OMP_CLAUSE_REDUCTION
:
1681 case OMP_CLAUSE_IN_REDUCTION
:
1682 decl
= OMP_CLAUSE_DECL (c
);
1683 if (TREE_CODE (decl
) != MEM_REF
)
1685 if (is_variable_sized (decl
))
1686 install_var_local (decl
, ctx
);
1687 fixup_remapped_decl (decl
, ctx
, false);
1689 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
1690 scan_array_reductions
= true;
1693 case OMP_CLAUSE_TASK_REDUCTION
:
1694 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
1695 scan_array_reductions
= true;
1698 case OMP_CLAUSE_SHARED
:
1699 /* Ignore shared directives in teams construct inside of
1700 target construct. */
1701 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
1702 && !is_host_teams_ctx (ctx
))
1704 decl
= OMP_CLAUSE_DECL (c
);
1705 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
)))
1707 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
1709 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
,
1712 bool by_ref
= use_pointer_for_field (decl
, ctx
);
1713 install_var_field (decl
, by_ref
, 11, ctx
);
1716 fixup_remapped_decl (decl
, ctx
, false);
1719 case OMP_CLAUSE_MAP
:
1720 if (!is_gimple_omp_offloaded (ctx
->stmt
))
1722 decl
= OMP_CLAUSE_DECL (c
);
1724 && ((OMP_CLAUSE_MAP_KIND (c
) != GOMP_MAP_FIRSTPRIVATE_POINTER
1725 && (OMP_CLAUSE_MAP_KIND (c
)
1726 != GOMP_MAP_FIRSTPRIVATE_REFERENCE
))
1727 || TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1728 && is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
))
1729 && varpool_node::get_create (decl
)->offloadable
)
1731 if ((OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_ATTACH
1732 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_DETACH
)
1733 && is_omp_target (ctx
->stmt
)
1734 && !is_gimple_omp_offloaded (ctx
->stmt
))
1738 if ((OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
1739 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
)
1740 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
1741 && !COMPLETE_TYPE_P (TREE_TYPE (decl
)))
1743 tree new_decl
= lookup_decl (decl
, ctx
);
1744 TREE_TYPE (new_decl
)
1745 = remap_type (TREE_TYPE (decl
), &ctx
->cb
);
1747 else if (DECL_SIZE (decl
)
1748 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
1750 tree decl2
= DECL_VALUE_EXPR (decl
);
1751 gcc_assert (TREE_CODE (decl2
) == INDIRECT_REF
);
1752 decl2
= TREE_OPERAND (decl2
, 0);
1753 gcc_assert (DECL_P (decl2
));
1754 fixup_remapped_decl (decl2
, ctx
, false);
1755 fixup_remapped_decl (decl
, ctx
, true);
1758 fixup_remapped_decl (decl
, ctx
, false);
1762 case OMP_CLAUSE_COPYPRIVATE
:
1763 case OMP_CLAUSE_COPYIN
:
1764 case OMP_CLAUSE_DEFAULT
:
1766 case OMP_CLAUSE_NUM_THREADS
:
1767 case OMP_CLAUSE_NUM_TEAMS
:
1768 case OMP_CLAUSE_THREAD_LIMIT
:
1769 case OMP_CLAUSE_DEVICE
:
1770 case OMP_CLAUSE_SCHEDULE
:
1771 case OMP_CLAUSE_DIST_SCHEDULE
:
1772 case OMP_CLAUSE_NOWAIT
:
1773 case OMP_CLAUSE_ORDERED
:
1774 case OMP_CLAUSE_COLLAPSE
:
1775 case OMP_CLAUSE_UNTIED
:
1776 case OMP_CLAUSE_FINAL
:
1777 case OMP_CLAUSE_MERGEABLE
:
1778 case OMP_CLAUSE_PROC_BIND
:
1779 case OMP_CLAUSE_SAFELEN
:
1780 case OMP_CLAUSE_SIMDLEN
:
1781 case OMP_CLAUSE_ALIGNED
:
1782 case OMP_CLAUSE_DEPEND
:
1783 case OMP_CLAUSE_DETACH
:
1784 case OMP_CLAUSE_ALLOCATE
:
1785 case OMP_CLAUSE__LOOPTEMP_
:
1786 case OMP_CLAUSE__REDUCTEMP_
:
1788 case OMP_CLAUSE_FROM
:
1789 case OMP_CLAUSE_PRIORITY
:
1790 case OMP_CLAUSE_GRAINSIZE
:
1791 case OMP_CLAUSE_NUM_TASKS
:
1792 case OMP_CLAUSE_THREADS
:
1793 case OMP_CLAUSE_SIMD
:
1794 case OMP_CLAUSE_NOGROUP
:
1795 case OMP_CLAUSE_DEFAULTMAP
:
1796 case OMP_CLAUSE_ORDER
:
1797 case OMP_CLAUSE_BIND
:
1798 case OMP_CLAUSE_USE_DEVICE_PTR
:
1799 case OMP_CLAUSE_USE_DEVICE_ADDR
:
1800 case OMP_CLAUSE_NONTEMPORAL
:
1801 case OMP_CLAUSE_ASYNC
:
1802 case OMP_CLAUSE_WAIT
:
1803 case OMP_CLAUSE_NUM_GANGS
:
1804 case OMP_CLAUSE_NUM_WORKERS
:
1805 case OMP_CLAUSE_VECTOR_LENGTH
:
1806 case OMP_CLAUSE_GANG
:
1807 case OMP_CLAUSE_WORKER
:
1808 case OMP_CLAUSE_VECTOR
:
1809 case OMP_CLAUSE_INDEPENDENT
:
1810 case OMP_CLAUSE_AUTO
:
1811 case OMP_CLAUSE_SEQ
:
1812 case OMP_CLAUSE_TILE
:
1813 case OMP_CLAUSE__SIMT_
:
1814 case OMP_CLAUSE_IF_PRESENT
:
1815 case OMP_CLAUSE_FINALIZE
:
1816 case OMP_CLAUSE__CONDTEMP_
:
1819 case OMP_CLAUSE__CACHE_
:
1825 gcc_checking_assert (!scan_array_reductions
1826 || !is_gimple_omp_oacc (ctx
->stmt
));
1827 if (scan_array_reductions
)
1829 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
1830 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
1831 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_IN_REDUCTION
1832 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TASK_REDUCTION
)
1833 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
1835 scan_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
), ctx
);
1836 scan_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
), ctx
);
1838 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
1839 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
))
1840 scan_omp (&OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
), ctx
);
1841 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
1842 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
))
1843 scan_omp (&OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
), ctx
);
1847 /* Create a new name for omp child function. Returns an identifier. */
1850 create_omp_child_function_name (bool task_copy
)
1852 return clone_function_name_numbered (current_function_decl
,
1853 task_copy
? "_omp_cpyfn" : "_omp_fn");
1856 /* Return true if CTX may belong to offloaded code: either if current function
1857 is offloaded, or any enclosing context corresponds to a target region. */
1860 omp_maybe_offloaded_ctx (omp_context
*ctx
)
1862 if (cgraph_node::get (current_function_decl
)->offloadable
)
1864 for (; ctx
; ctx
= ctx
->outer
)
1865 if (is_gimple_omp_offloaded (ctx
->stmt
))
1870 /* Build a decl for the omp child function. It'll not contain a body
1871 yet, just the bare decl. */
1874 create_omp_child_function (omp_context
*ctx
, bool task_copy
)
1876 tree decl
, type
, name
, t
;
1878 name
= create_omp_child_function_name (task_copy
);
1880 type
= build_function_type_list (void_type_node
, ptr_type_node
,
1881 ptr_type_node
, NULL_TREE
);
1883 type
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
1885 decl
= build_decl (gimple_location (ctx
->stmt
), FUNCTION_DECL
, name
, type
);
1887 gcc_checking_assert (!is_gimple_omp_oacc (ctx
->stmt
)
1890 ctx
->cb
.dst_fn
= decl
;
1892 gimple_omp_task_set_copy_fn (ctx
->stmt
, decl
);
1894 TREE_STATIC (decl
) = 1;
1895 TREE_USED (decl
) = 1;
1896 DECL_ARTIFICIAL (decl
) = 1;
1897 DECL_IGNORED_P (decl
) = 0;
1898 TREE_PUBLIC (decl
) = 0;
1899 DECL_UNINLINABLE (decl
) = 1;
1900 DECL_EXTERNAL (decl
) = 0;
1901 DECL_CONTEXT (decl
) = NULL_TREE
;
1902 DECL_INITIAL (decl
) = make_node (BLOCK
);
1903 BLOCK_SUPERCONTEXT (DECL_INITIAL (decl
)) = decl
;
1904 DECL_ATTRIBUTES (decl
) = DECL_ATTRIBUTES (current_function_decl
);
1905 /* Remove omp declare simd attribute from the new attributes. */
1906 if (tree a
= lookup_attribute ("omp declare simd", DECL_ATTRIBUTES (decl
)))
1908 while (tree a2
= lookup_attribute ("omp declare simd", TREE_CHAIN (a
)))
1911 for (tree
*p
= &DECL_ATTRIBUTES (decl
); *p
!= a
;)
1912 if (is_attribute_p ("omp declare simd", get_attribute_name (*p
)))
1913 *p
= TREE_CHAIN (*p
);
1916 tree chain
= TREE_CHAIN (*p
);
1917 *p
= copy_node (*p
);
1918 p
= &TREE_CHAIN (*p
);
1922 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl
)
1923 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (current_function_decl
);
1924 DECL_FUNCTION_SPECIFIC_TARGET (decl
)
1925 = DECL_FUNCTION_SPECIFIC_TARGET (current_function_decl
);
1926 DECL_FUNCTION_VERSIONED (decl
)
1927 = DECL_FUNCTION_VERSIONED (current_function_decl
);
1929 if (omp_maybe_offloaded_ctx (ctx
))
1931 cgraph_node::get_create (decl
)->offloadable
= 1;
1932 if (ENABLE_OFFLOADING
)
1933 g
->have_offload
= true;
1936 if (cgraph_node::get_create (decl
)->offloadable
1937 && !lookup_attribute ("omp declare target",
1938 DECL_ATTRIBUTES (current_function_decl
)))
1940 const char *target_attr
= (is_gimple_omp_offloaded (ctx
->stmt
)
1941 ? "omp target entrypoint"
1942 : "omp declare target");
1943 DECL_ATTRIBUTES (decl
)
1944 = tree_cons (get_identifier (target_attr
),
1945 NULL_TREE
, DECL_ATTRIBUTES (decl
));
1948 t
= build_decl (DECL_SOURCE_LOCATION (decl
),
1949 RESULT_DECL
, NULL_TREE
, void_type_node
);
1950 DECL_ARTIFICIAL (t
) = 1;
1951 DECL_IGNORED_P (t
) = 1;
1952 DECL_CONTEXT (t
) = decl
;
1953 DECL_RESULT (decl
) = t
;
1955 tree data_name
= get_identifier (".omp_data_i");
1956 t
= build_decl (DECL_SOURCE_LOCATION (decl
), PARM_DECL
, data_name
,
1958 DECL_ARTIFICIAL (t
) = 1;
1959 DECL_NAMELESS (t
) = 1;
1960 DECL_ARG_TYPE (t
) = ptr_type_node
;
1961 DECL_CONTEXT (t
) = current_function_decl
;
1963 TREE_READONLY (t
) = 1;
1964 DECL_ARGUMENTS (decl
) = t
;
1966 ctx
->receiver_decl
= t
;
1969 t
= build_decl (DECL_SOURCE_LOCATION (decl
),
1970 PARM_DECL
, get_identifier (".omp_data_o"),
1972 DECL_ARTIFICIAL (t
) = 1;
1973 DECL_NAMELESS (t
) = 1;
1974 DECL_ARG_TYPE (t
) = ptr_type_node
;
1975 DECL_CONTEXT (t
) = current_function_decl
;
1977 TREE_ADDRESSABLE (t
) = 1;
1978 DECL_CHAIN (t
) = DECL_ARGUMENTS (decl
);
1979 DECL_ARGUMENTS (decl
) = t
;
1982 /* Allocate memory for the function structure. The call to
1983 allocate_struct_function clobbers CFUN, so we need to restore
1985 push_struct_function (decl
);
1986 cfun
->function_end_locus
= gimple_location (ctx
->stmt
);
1987 init_tree_ssa (cfun
);
1991 /* Callback for walk_gimple_seq. Check if combined parallel
1992 contains gimple_omp_for_combined_into_p OMP_FOR. */
1995 omp_find_combined_for (gimple_stmt_iterator
*gsi_p
,
1996 bool *handled_ops_p
,
1997 struct walk_stmt_info
*wi
)
1999 gimple
*stmt
= gsi_stmt (*gsi_p
);
2001 *handled_ops_p
= true;
2002 switch (gimple_code (stmt
))
2006 case GIMPLE_OMP_FOR
:
2007 if (gimple_omp_for_combined_into_p (stmt
)
2008 && gimple_omp_for_kind (stmt
)
2009 == *(const enum gf_mask
*) (wi
->info
))
2012 return integer_zero_node
;
2021 /* Add _LOOPTEMP_/_REDUCTEMP_ clauses on OpenMP parallel or task. */
2024 add_taskreg_looptemp_clauses (enum gf_mask msk
, gimple
*stmt
,
2025 omp_context
*outer_ctx
)
2027 struct walk_stmt_info wi
;
2029 memset (&wi
, 0, sizeof (wi
));
2031 wi
.info
= (void *) &msk
;
2032 walk_gimple_seq (gimple_omp_body (stmt
), omp_find_combined_for
, NULL
, &wi
);
2033 if (wi
.info
!= (void *) &msk
)
2035 gomp_for
*for_stmt
= as_a
<gomp_for
*> ((gimple
*) wi
.info
);
2036 struct omp_for_data fd
;
2037 omp_extract_for_data (for_stmt
, &fd
, NULL
);
2038 /* We need two temporaries with fd.loop.v type (istart/iend)
2039 and then (fd.collapse - 1) temporaries with the same
2040 type for count2 ... countN-1 vars if not constant. */
2041 size_t count
= 2, i
;
2042 tree type
= fd
.iter_type
;
2044 && TREE_CODE (fd
.loop
.n2
) != INTEGER_CST
)
2046 count
+= fd
.collapse
- 1;
2047 /* If there are lastprivate clauses on the inner
2048 GIMPLE_OMP_FOR, add one more temporaries for the total number
2049 of iterations (product of count1 ... countN-1). */
2050 if (omp_find_clause (gimple_omp_for_clauses (for_stmt
),
2051 OMP_CLAUSE_LASTPRIVATE
)
2052 || (msk
== GF_OMP_FOR_KIND_FOR
2053 && omp_find_clause (gimple_omp_parallel_clauses (stmt
),
2054 OMP_CLAUSE_LASTPRIVATE
)))
2056 tree temp
= create_tmp_var (type
);
2057 tree c
= build_omp_clause (UNKNOWN_LOCATION
,
2058 OMP_CLAUSE__LOOPTEMP_
);
2059 insert_decl_map (&outer_ctx
->cb
, temp
, temp
);
2060 OMP_CLAUSE_DECL (c
) = temp
;
2061 OMP_CLAUSE_CHAIN (c
) = gimple_omp_taskreg_clauses (stmt
);
2062 gimple_omp_taskreg_set_clauses (stmt
, c
);
2065 && fd
.last_nonrect
== fd
.first_nonrect
+ 1)
2066 if (tree v
= gimple_omp_for_index (for_stmt
, fd
.last_nonrect
))
2067 if (!TYPE_UNSIGNED (TREE_TYPE (v
)))
2069 v
= gimple_omp_for_index (for_stmt
, fd
.first_nonrect
);
2070 tree type2
= TREE_TYPE (v
);
2072 for (i
= 0; i
< 3; i
++)
2074 tree temp
= create_tmp_var (type2
);
2075 tree c
= build_omp_clause (UNKNOWN_LOCATION
,
2076 OMP_CLAUSE__LOOPTEMP_
);
2077 insert_decl_map (&outer_ctx
->cb
, temp
, temp
);
2078 OMP_CLAUSE_DECL (c
) = temp
;
2079 OMP_CLAUSE_CHAIN (c
) = gimple_omp_taskreg_clauses (stmt
);
2080 gimple_omp_taskreg_set_clauses (stmt
, c
);
2084 for (i
= 0; i
< count
; i
++)
2086 tree temp
= create_tmp_var (type
);
2087 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__LOOPTEMP_
);
2088 insert_decl_map (&outer_ctx
->cb
, temp
, temp
);
2089 OMP_CLAUSE_DECL (c
) = temp
;
2090 OMP_CLAUSE_CHAIN (c
) = gimple_omp_taskreg_clauses (stmt
);
2091 gimple_omp_taskreg_set_clauses (stmt
, c
);
2094 if (msk
== GF_OMP_FOR_KIND_TASKLOOP
2095 && omp_find_clause (gimple_omp_task_clauses (stmt
),
2096 OMP_CLAUSE_REDUCTION
))
2098 tree type
= build_pointer_type (pointer_sized_int_node
);
2099 tree temp
= create_tmp_var (type
);
2100 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__REDUCTEMP_
);
2101 insert_decl_map (&outer_ctx
->cb
, temp
, temp
);
2102 OMP_CLAUSE_DECL (c
) = temp
;
2103 OMP_CLAUSE_CHAIN (c
) = gimple_omp_task_clauses (stmt
);
2104 gimple_omp_task_set_clauses (stmt
, c
);
2108 /* Scan an OpenMP parallel directive. */
2111 scan_omp_parallel (gimple_stmt_iterator
*gsi
, omp_context
*outer_ctx
)
2115 gomp_parallel
*stmt
= as_a
<gomp_parallel
*> (gsi_stmt (*gsi
));
2117 /* Ignore parallel directives with empty bodies, unless there
2118 are copyin clauses. */
2120 && empty_body_p (gimple_omp_body (stmt
))
2121 && omp_find_clause (gimple_omp_parallel_clauses (stmt
),
2122 OMP_CLAUSE_COPYIN
) == NULL
)
2124 gsi_replace (gsi
, gimple_build_nop (), false);
2128 if (gimple_omp_parallel_combined_p (stmt
))
2129 add_taskreg_looptemp_clauses (GF_OMP_FOR_KIND_FOR
, stmt
, outer_ctx
);
2130 for (tree c
= omp_find_clause (gimple_omp_parallel_clauses (stmt
),
2131 OMP_CLAUSE_REDUCTION
);
2132 c
; c
= omp_find_clause (OMP_CLAUSE_CHAIN (c
), OMP_CLAUSE_REDUCTION
))
2133 if (OMP_CLAUSE_REDUCTION_TASK (c
))
2135 tree type
= build_pointer_type (pointer_sized_int_node
);
2136 tree temp
= create_tmp_var (type
);
2137 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__REDUCTEMP_
);
2139 insert_decl_map (&outer_ctx
->cb
, temp
, temp
);
2140 OMP_CLAUSE_DECL (c
) = temp
;
2141 OMP_CLAUSE_CHAIN (c
) = gimple_omp_parallel_clauses (stmt
);
2142 gimple_omp_parallel_set_clauses (stmt
, c
);
2145 else if (OMP_CLAUSE_CHAIN (c
) == NULL_TREE
)
2148 ctx
= new_omp_context (stmt
, outer_ctx
);
2149 taskreg_contexts
.safe_push (ctx
);
2150 if (taskreg_nesting_level
> 1)
2151 ctx
->is_nested
= true;
2152 ctx
->field_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
2153 ctx
->record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
2154 name
= create_tmp_var_name (".omp_data_s");
2155 name
= build_decl (gimple_location (stmt
),
2156 TYPE_DECL
, name
, ctx
->record_type
);
2157 DECL_ARTIFICIAL (name
) = 1;
2158 DECL_NAMELESS (name
) = 1;
2159 TYPE_NAME (ctx
->record_type
) = name
;
2160 TYPE_ARTIFICIAL (ctx
->record_type
) = 1;
2161 create_omp_child_function (ctx
, false);
2162 gimple_omp_parallel_set_child_fn (stmt
, ctx
->cb
.dst_fn
);
2164 scan_sharing_clauses (gimple_omp_parallel_clauses (stmt
), ctx
);
2165 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2167 if (TYPE_FIELDS (ctx
->record_type
) == NULL
)
2168 ctx
->record_type
= ctx
->receiver_decl
= NULL
;
2171 /* Scan an OpenMP task directive. */
2174 scan_omp_task (gimple_stmt_iterator
*gsi
, omp_context
*outer_ctx
)
2178 gomp_task
*stmt
= as_a
<gomp_task
*> (gsi_stmt (*gsi
));
2180 /* Ignore task directives with empty bodies, unless they have depend
2183 && gimple_omp_body (stmt
)
2184 && empty_body_p (gimple_omp_body (stmt
))
2185 && !omp_find_clause (gimple_omp_task_clauses (stmt
), OMP_CLAUSE_DEPEND
))
2187 gsi_replace (gsi
, gimple_build_nop (), false);
2191 if (gimple_omp_task_taskloop_p (stmt
))
2192 add_taskreg_looptemp_clauses (GF_OMP_FOR_KIND_TASKLOOP
, stmt
, outer_ctx
);
2194 ctx
= new_omp_context (stmt
, outer_ctx
);
2196 if (gimple_omp_task_taskwait_p (stmt
))
2198 scan_sharing_clauses (gimple_omp_task_clauses (stmt
), ctx
);
2202 taskreg_contexts
.safe_push (ctx
);
2203 if (taskreg_nesting_level
> 1)
2204 ctx
->is_nested
= true;
2205 ctx
->field_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
2206 ctx
->record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
2207 name
= create_tmp_var_name (".omp_data_s");
2208 name
= build_decl (gimple_location (stmt
),
2209 TYPE_DECL
, name
, ctx
->record_type
);
2210 DECL_ARTIFICIAL (name
) = 1;
2211 DECL_NAMELESS (name
) = 1;
2212 TYPE_NAME (ctx
->record_type
) = name
;
2213 TYPE_ARTIFICIAL (ctx
->record_type
) = 1;
2214 create_omp_child_function (ctx
, false);
2215 gimple_omp_task_set_child_fn (stmt
, ctx
->cb
.dst_fn
);
2217 scan_sharing_clauses (gimple_omp_task_clauses (stmt
), ctx
);
2219 if (ctx
->srecord_type
)
2221 name
= create_tmp_var_name (".omp_data_a");
2222 name
= build_decl (gimple_location (stmt
),
2223 TYPE_DECL
, name
, ctx
->srecord_type
);
2224 DECL_ARTIFICIAL (name
) = 1;
2225 DECL_NAMELESS (name
) = 1;
2226 TYPE_NAME (ctx
->srecord_type
) = name
;
2227 TYPE_ARTIFICIAL (ctx
->srecord_type
) = 1;
2228 create_omp_child_function (ctx
, true);
2231 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2233 if (TYPE_FIELDS (ctx
->record_type
) == NULL
)
2235 ctx
->record_type
= ctx
->receiver_decl
= NULL
;
2236 t
= build_int_cst (long_integer_type_node
, 0);
2237 gimple_omp_task_set_arg_size (stmt
, t
);
2238 t
= build_int_cst (long_integer_type_node
, 1);
2239 gimple_omp_task_set_arg_align (stmt
, t
);
2243 /* Helper function for finish_taskreg_scan, called through walk_tree.
2244 If maybe_lookup_decl_in_outer_context returns non-NULL for some
2245 tree, replace it in the expression. */
2248 finish_taskreg_remap (tree
*tp
, int *walk_subtrees
, void *data
)
2252 omp_context
*ctx
= (omp_context
*) data
;
2253 tree t
= maybe_lookup_decl_in_outer_ctx (*tp
, ctx
);
2256 if (DECL_HAS_VALUE_EXPR_P (t
))
2257 t
= unshare_expr (DECL_VALUE_EXPR (t
));
2262 else if (IS_TYPE_OR_DECL_P (*tp
))
2267 /* If any decls have been made addressable during scan_omp,
2268 adjust their fields if needed, and layout record types
2269 of parallel/task constructs. */
2272 finish_taskreg_scan (omp_context
*ctx
)
2274 if (ctx
->record_type
== NULL_TREE
)
2277 /* If any task_shared_vars were needed, verify all
2278 OMP_CLAUSE_SHARED clauses on GIMPLE_OMP_{PARALLEL,TASK,TEAMS}
2279 statements if use_pointer_for_field hasn't changed
2280 because of that. If it did, update field types now. */
2281 if (task_shared_vars
)
2285 for (c
= gimple_omp_taskreg_clauses (ctx
->stmt
);
2286 c
; c
= OMP_CLAUSE_CHAIN (c
))
2287 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
2288 && !OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
2290 tree decl
= OMP_CLAUSE_DECL (c
);
2292 /* Global variables don't need to be copied,
2293 the receiver side will use them directly. */
2294 if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl
, ctx
)))
2296 if (!bitmap_bit_p (task_shared_vars
, DECL_UID (decl
))
2297 || !use_pointer_for_field (decl
, ctx
))
2299 tree field
= lookup_field (decl
, ctx
);
2300 if (TREE_CODE (TREE_TYPE (field
)) == POINTER_TYPE
2301 && TREE_TYPE (TREE_TYPE (field
)) == TREE_TYPE (decl
))
2303 TREE_TYPE (field
) = build_pointer_type (TREE_TYPE (decl
));
2304 TREE_THIS_VOLATILE (field
) = 0;
2305 DECL_USER_ALIGN (field
) = 0;
2306 SET_DECL_ALIGN (field
, TYPE_ALIGN (TREE_TYPE (field
)));
2307 if (TYPE_ALIGN (ctx
->record_type
) < DECL_ALIGN (field
))
2308 SET_TYPE_ALIGN (ctx
->record_type
, DECL_ALIGN (field
));
2309 if (ctx
->srecord_type
)
2311 tree sfield
= lookup_sfield (decl
, ctx
);
2312 TREE_TYPE (sfield
) = TREE_TYPE (field
);
2313 TREE_THIS_VOLATILE (sfield
) = 0;
2314 DECL_USER_ALIGN (sfield
) = 0;
2315 SET_DECL_ALIGN (sfield
, DECL_ALIGN (field
));
2316 if (TYPE_ALIGN (ctx
->srecord_type
) < DECL_ALIGN (sfield
))
2317 SET_TYPE_ALIGN (ctx
->srecord_type
, DECL_ALIGN (sfield
));
2322 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_PARALLEL
)
2324 tree clauses
= gimple_omp_parallel_clauses (ctx
->stmt
);
2325 tree c
= omp_find_clause (clauses
, OMP_CLAUSE__REDUCTEMP_
);
2328 /* Move the _reductemp_ clause first. GOMP_parallel_reductions
2329 expects to find it at the start of data. */
2330 tree f
= lookup_field (OMP_CLAUSE_DECL (c
), ctx
);
2331 tree
*p
= &TYPE_FIELDS (ctx
->record_type
);
2335 *p
= DECL_CHAIN (*p
);
2339 p
= &DECL_CHAIN (*p
);
2340 DECL_CHAIN (f
) = TYPE_FIELDS (ctx
->record_type
);
2341 TYPE_FIELDS (ctx
->record_type
) = f
;
2343 layout_type (ctx
->record_type
);
2344 fixup_child_record_type (ctx
);
2346 else if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
)
2348 layout_type (ctx
->record_type
);
2349 fixup_child_record_type (ctx
);
2353 location_t loc
= gimple_location (ctx
->stmt
);
2354 tree
*p
, vla_fields
= NULL_TREE
, *q
= &vla_fields
;
2356 = omp_find_clause (gimple_omp_task_clauses (ctx
->stmt
),
2358 /* Move VLA fields to the end. */
2359 p
= &TYPE_FIELDS (ctx
->record_type
);
2361 if (!TYPE_SIZE_UNIT (TREE_TYPE (*p
))
2362 || ! TREE_CONSTANT (TYPE_SIZE_UNIT (TREE_TYPE (*p
))))
2365 *p
= TREE_CHAIN (*p
);
2366 TREE_CHAIN (*q
) = NULL_TREE
;
2367 q
= &TREE_CHAIN (*q
);
2370 p
= &DECL_CHAIN (*p
);
2372 if (gimple_omp_task_taskloop_p (ctx
->stmt
))
2374 /* Move fields corresponding to first and second _looptemp_
2375 clause first. There are filled by GOMP_taskloop
2376 and thus need to be in specific positions. */
2377 tree clauses
= gimple_omp_task_clauses (ctx
->stmt
);
2378 tree c1
= omp_find_clause (clauses
, OMP_CLAUSE__LOOPTEMP_
);
2379 tree c2
= omp_find_clause (OMP_CLAUSE_CHAIN (c1
),
2380 OMP_CLAUSE__LOOPTEMP_
);
2381 tree c3
= omp_find_clause (clauses
, OMP_CLAUSE__REDUCTEMP_
);
2382 tree f1
= lookup_field (OMP_CLAUSE_DECL (c1
), ctx
);
2383 tree f2
= lookup_field (OMP_CLAUSE_DECL (c2
), ctx
);
2384 tree f3
= c3
? lookup_field (OMP_CLAUSE_DECL (c3
), ctx
) : NULL_TREE
;
2385 p
= &TYPE_FIELDS (ctx
->record_type
);
2387 if (*p
== f1
|| *p
== f2
|| *p
== f3
)
2388 *p
= DECL_CHAIN (*p
);
2390 p
= &DECL_CHAIN (*p
);
2391 DECL_CHAIN (f1
) = f2
;
2394 DECL_CHAIN (f2
) = f3
;
2395 DECL_CHAIN (f3
) = TYPE_FIELDS (ctx
->record_type
);
2398 DECL_CHAIN (f2
) = TYPE_FIELDS (ctx
->record_type
);
2399 TYPE_FIELDS (ctx
->record_type
) = f1
;
2400 if (ctx
->srecord_type
)
2402 f1
= lookup_sfield (OMP_CLAUSE_DECL (c1
), ctx
);
2403 f2
= lookup_sfield (OMP_CLAUSE_DECL (c2
), ctx
);
2405 f3
= lookup_sfield (OMP_CLAUSE_DECL (c3
), ctx
);
2406 p
= &TYPE_FIELDS (ctx
->srecord_type
);
2408 if (*p
== f1
|| *p
== f2
|| *p
== f3
)
2409 *p
= DECL_CHAIN (*p
);
2411 p
= &DECL_CHAIN (*p
);
2412 DECL_CHAIN (f1
) = f2
;
2413 DECL_CHAIN (f2
) = TYPE_FIELDS (ctx
->srecord_type
);
2416 DECL_CHAIN (f2
) = f3
;
2417 DECL_CHAIN (f3
) = TYPE_FIELDS (ctx
->srecord_type
);
2420 DECL_CHAIN (f2
) = TYPE_FIELDS (ctx
->srecord_type
);
2421 TYPE_FIELDS (ctx
->srecord_type
) = f1
;
2428 /* Look for a firstprivate clause with the detach event handle. */
2429 for (c
= gimple_omp_taskreg_clauses (ctx
->stmt
);
2430 c
; c
= OMP_CLAUSE_CHAIN (c
))
2432 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_FIRSTPRIVATE
)
2434 if (maybe_lookup_decl_in_outer_ctx (OMP_CLAUSE_DECL (c
), ctx
)
2435 == OMP_CLAUSE_DECL (detach_clause
))
2440 field
= lookup_field (OMP_CLAUSE_DECL (c
), ctx
);
2442 /* Move field corresponding to the detach clause first.
2443 This is filled by GOMP_task and needs to be in a
2444 specific position. */
2445 p
= &TYPE_FIELDS (ctx
->record_type
);
2448 *p
= DECL_CHAIN (*p
);
2450 p
= &DECL_CHAIN (*p
);
2451 DECL_CHAIN (field
) = TYPE_FIELDS (ctx
->record_type
);
2452 TYPE_FIELDS (ctx
->record_type
) = field
;
2453 if (ctx
->srecord_type
)
2455 field
= lookup_sfield (OMP_CLAUSE_DECL (detach_clause
), ctx
);
2456 p
= &TYPE_FIELDS (ctx
->srecord_type
);
2459 *p
= DECL_CHAIN (*p
);
2461 p
= &DECL_CHAIN (*p
);
2462 DECL_CHAIN (field
) = TYPE_FIELDS (ctx
->srecord_type
);
2463 TYPE_FIELDS (ctx
->srecord_type
) = field
;
2466 layout_type (ctx
->record_type
);
2467 fixup_child_record_type (ctx
);
2468 if (ctx
->srecord_type
)
2469 layout_type (ctx
->srecord_type
);
2470 tree t
= fold_convert_loc (loc
, long_integer_type_node
,
2471 TYPE_SIZE_UNIT (ctx
->record_type
));
2472 if (TREE_CODE (t
) != INTEGER_CST
)
2474 t
= unshare_expr (t
);
2475 walk_tree (&t
, finish_taskreg_remap
, ctx
, NULL
);
2477 gimple_omp_task_set_arg_size (ctx
->stmt
, t
);
2478 t
= build_int_cst (long_integer_type_node
,
2479 TYPE_ALIGN_UNIT (ctx
->record_type
));
2480 gimple_omp_task_set_arg_align (ctx
->stmt
, t
);
2484 /* Find the enclosing offload context. */
2486 static omp_context
*
2487 enclosing_target_ctx (omp_context
*ctx
)
2489 for (; ctx
; ctx
= ctx
->outer
)
2490 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TARGET
)
2496 /* Return whether CTX's parent compute construct is an OpenACC 'kernels'
2498 (This doesn't include OpenACC 'kernels' decomposed parts.) */
2501 ctx_in_oacc_kernels_region (omp_context
*ctx
)
2503 for (;ctx
!= NULL
; ctx
= ctx
->outer
)
2505 gimple
*stmt
= ctx
->stmt
;
2506 if (gimple_code (stmt
) == GIMPLE_OMP_TARGET
2507 && gimple_omp_target_kind (stmt
) == GF_OMP_TARGET_KIND_OACC_KERNELS
)
2514 /* Check the parallelism clauses inside a OpenACC 'kernels' region.
2515 (This doesn't include OpenACC 'kernels' decomposed parts.)
2516 Until kernels handling moves to use the same loop indirection
2517 scheme as parallel, we need to do this checking early. */
2520 check_oacc_kernel_gwv (gomp_for
*stmt
, omp_context
*ctx
)
2522 bool checking
= true;
2523 unsigned outer_mask
= 0;
2524 unsigned this_mask
= 0;
2525 bool has_seq
= false, has_auto
= false;
2528 outer_mask
= check_oacc_kernel_gwv (NULL
, ctx
->outer
);
2532 if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_FOR
)
2534 stmt
= as_a
<gomp_for
*> (ctx
->stmt
);
2537 for (tree c
= gimple_omp_for_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
2539 switch (OMP_CLAUSE_CODE (c
))
2541 case OMP_CLAUSE_GANG
:
2542 this_mask
|= GOMP_DIM_MASK (GOMP_DIM_GANG
);
2544 case OMP_CLAUSE_WORKER
:
2545 this_mask
|= GOMP_DIM_MASK (GOMP_DIM_WORKER
);
2547 case OMP_CLAUSE_VECTOR
:
2548 this_mask
|= GOMP_DIM_MASK (GOMP_DIM_VECTOR
);
2550 case OMP_CLAUSE_SEQ
:
2553 case OMP_CLAUSE_AUTO
:
2563 if (has_seq
&& (this_mask
|| has_auto
))
2564 error_at (gimple_location (stmt
), "%<seq%> overrides other"
2565 " OpenACC loop specifiers");
2566 else if (has_auto
&& this_mask
)
2567 error_at (gimple_location (stmt
), "%<auto%> conflicts with other"
2568 " OpenACC loop specifiers");
2570 if (this_mask
& outer_mask
)
2571 error_at (gimple_location (stmt
), "inner loop uses same"
2572 " OpenACC parallelism as containing loop");
2575 return outer_mask
| this_mask
;
2578 /* Scan a GIMPLE_OMP_FOR. */
2580 static omp_context
*
2581 scan_omp_for (gomp_for
*stmt
, omp_context
*outer_ctx
)
2585 tree clauses
= gimple_omp_for_clauses (stmt
);
2587 ctx
= new_omp_context (stmt
, outer_ctx
);
2589 if (is_gimple_omp_oacc (stmt
))
2591 omp_context
*tgt
= enclosing_target_ctx (outer_ctx
);
2593 if (!(tgt
&& is_oacc_kernels (tgt
)))
2594 for (tree c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
2597 switch (OMP_CLAUSE_CODE (c
))
2599 case OMP_CLAUSE_GANG
:
2600 c_op0
= OMP_CLAUSE_GANG_EXPR (c
);
2603 case OMP_CLAUSE_WORKER
:
2604 c_op0
= OMP_CLAUSE_WORKER_EXPR (c
);
2607 case OMP_CLAUSE_VECTOR
:
2608 c_op0
= OMP_CLAUSE_VECTOR_EXPR (c
);
2617 /* By construction, this is impossible for OpenACC 'kernels'
2618 decomposed parts. */
2619 gcc_assert (!(tgt
&& is_oacc_kernels_decomposed_part (tgt
)));
2621 error_at (OMP_CLAUSE_LOCATION (c
),
2622 "argument not permitted on %qs clause",
2623 omp_clause_code_name
[OMP_CLAUSE_CODE (c
)]);
2625 inform (gimple_location (tgt
->stmt
),
2626 "enclosing parent compute construct");
2627 else if (oacc_get_fn_attrib (current_function_decl
))
2628 inform (DECL_SOURCE_LOCATION (current_function_decl
),
2629 "enclosing routine");
2635 if (tgt
&& is_oacc_kernels (tgt
))
2636 check_oacc_kernel_gwv (stmt
, ctx
);
2638 /* Collect all variables named in reductions on this loop. Ensure
2639 that, if this loop has a reduction on some variable v, and there is
2640 a reduction on v somewhere in an outer context, then there is a
2641 reduction on v on all intervening loops as well. */
2642 tree local_reduction_clauses
= NULL
;
2643 for (tree c
= gimple_omp_for_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
2645 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
2646 local_reduction_clauses
2647 = tree_cons (NULL
, c
, local_reduction_clauses
);
2649 if (ctx
->outer_reduction_clauses
== NULL
&& ctx
->outer
!= NULL
)
2650 ctx
->outer_reduction_clauses
2651 = chainon (unshare_expr (ctx
->outer
->local_reduction_clauses
),
2652 ctx
->outer
->outer_reduction_clauses
);
2653 tree outer_reduction_clauses
= ctx
->outer_reduction_clauses
;
2654 tree local_iter
= local_reduction_clauses
;
2655 for (; local_iter
; local_iter
= TREE_CHAIN (local_iter
))
2657 tree local_clause
= TREE_VALUE (local_iter
);
2658 tree local_var
= OMP_CLAUSE_DECL (local_clause
);
2659 tree_code local_op
= OMP_CLAUSE_REDUCTION_CODE (local_clause
);
2660 bool have_outer_reduction
= false;
2661 tree ctx_iter
= outer_reduction_clauses
;
2662 for (; ctx_iter
; ctx_iter
= TREE_CHAIN (ctx_iter
))
2664 tree outer_clause
= TREE_VALUE (ctx_iter
);
2665 tree outer_var
= OMP_CLAUSE_DECL (outer_clause
);
2666 tree_code outer_op
= OMP_CLAUSE_REDUCTION_CODE (outer_clause
);
2667 if (outer_var
== local_var
&& outer_op
!= local_op
)
2669 warning_at (OMP_CLAUSE_LOCATION (local_clause
), 0,
2670 "conflicting reduction operations for %qE",
2672 inform (OMP_CLAUSE_LOCATION (outer_clause
),
2673 "location of the previous reduction for %qE",
2676 if (outer_var
== local_var
)
2678 have_outer_reduction
= true;
2682 if (have_outer_reduction
)
2684 /* There is a reduction on outer_var both on this loop and on
2685 some enclosing loop. Walk up the context tree until such a
2686 loop with a reduction on outer_var is found, and complain
2687 about all intervening loops that do not have such a
2689 struct omp_context
*curr_loop
= ctx
->outer
;
2691 while (curr_loop
!= NULL
)
2693 tree curr_iter
= curr_loop
->local_reduction_clauses
;
2694 for (; curr_iter
; curr_iter
= TREE_CHAIN (curr_iter
))
2696 tree curr_clause
= TREE_VALUE (curr_iter
);
2697 tree curr_var
= OMP_CLAUSE_DECL (curr_clause
);
2698 if (curr_var
== local_var
)
2705 warning_at (gimple_location (curr_loop
->stmt
), 0,
2706 "nested loop in reduction needs "
2707 "reduction clause for %qE",
2711 curr_loop
= curr_loop
->outer
;
2715 ctx
->local_reduction_clauses
= local_reduction_clauses
;
2716 ctx
->outer_reduction_clauses
2717 = chainon (unshare_expr (ctx
->local_reduction_clauses
),
2718 ctx
->outer_reduction_clauses
);
2720 if (tgt
&& is_oacc_kernels (tgt
))
2722 /* Strip out reductions, as they are not handled yet. */
2723 tree
*prev_ptr
= &clauses
;
2725 while (tree probe
= *prev_ptr
)
2727 tree
*next_ptr
= &OMP_CLAUSE_CHAIN (probe
);
2729 if (OMP_CLAUSE_CODE (probe
) == OMP_CLAUSE_REDUCTION
)
2730 *prev_ptr
= *next_ptr
;
2732 prev_ptr
= next_ptr
;
2735 gimple_omp_for_set_clauses (stmt
, clauses
);
2739 scan_sharing_clauses (clauses
, ctx
);
2741 scan_omp (gimple_omp_for_pre_body_ptr (stmt
), ctx
);
2742 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
2744 scan_omp_op (gimple_omp_for_index_ptr (stmt
, i
), ctx
);
2745 scan_omp_op (gimple_omp_for_initial_ptr (stmt
, i
), ctx
);
2746 scan_omp_op (gimple_omp_for_final_ptr (stmt
, i
), ctx
);
2747 scan_omp_op (gimple_omp_for_incr_ptr (stmt
, i
), ctx
);
2749 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2753 /* Duplicate #pragma omp simd, one for SIMT, another one for SIMD. */
2756 scan_omp_simd (gimple_stmt_iterator
*gsi
, gomp_for
*stmt
,
2757 omp_context
*outer_ctx
)
2759 gbind
*bind
= gimple_build_bind (NULL
, NULL
, NULL
);
2760 gsi_replace (gsi
, bind
, false);
2761 gimple_seq seq
= NULL
;
2762 gimple
*g
= gimple_build_call_internal (IFN_GOMP_USE_SIMT
, 0);
2763 tree cond
= create_tmp_var_raw (integer_type_node
);
2764 DECL_CONTEXT (cond
) = current_function_decl
;
2765 DECL_SEEN_IN_BIND_EXPR_P (cond
) = 1;
2766 gimple_bind_set_vars (bind
, cond
);
2767 gimple_call_set_lhs (g
, cond
);
2768 gimple_seq_add_stmt (&seq
, g
);
2769 tree lab1
= create_artificial_label (UNKNOWN_LOCATION
);
2770 tree lab2
= create_artificial_label (UNKNOWN_LOCATION
);
2771 tree lab3
= create_artificial_label (UNKNOWN_LOCATION
);
2772 g
= gimple_build_cond (NE_EXPR
, cond
, integer_zero_node
, lab1
, lab2
);
2773 gimple_seq_add_stmt (&seq
, g
);
2774 g
= gimple_build_label (lab1
);
2775 gimple_seq_add_stmt (&seq
, g
);
2776 gimple_seq new_seq
= copy_gimple_seq_and_replace_locals (stmt
);
2777 gomp_for
*new_stmt
= as_a
<gomp_for
*> (new_seq
);
2778 tree clause
= build_omp_clause (gimple_location (stmt
), OMP_CLAUSE__SIMT_
);
2779 OMP_CLAUSE_CHAIN (clause
) = gimple_omp_for_clauses (new_stmt
);
2780 gimple_omp_for_set_clauses (new_stmt
, clause
);
2781 gimple_seq_add_stmt (&seq
, new_stmt
);
2782 g
= gimple_build_goto (lab3
);
2783 gimple_seq_add_stmt (&seq
, g
);
2784 g
= gimple_build_label (lab2
);
2785 gimple_seq_add_stmt (&seq
, g
);
2786 gimple_seq_add_stmt (&seq
, stmt
);
2787 g
= gimple_build_label (lab3
);
2788 gimple_seq_add_stmt (&seq
, g
);
2789 gimple_bind_set_body (bind
, seq
);
2791 scan_omp_for (new_stmt
, outer_ctx
);
2792 scan_omp_for (stmt
, outer_ctx
)->simt_stmt
= new_stmt
;
2795 static tree
omp_find_scan (gimple_stmt_iterator
*, bool *,
2796 struct walk_stmt_info
*);
2797 static omp_context
*maybe_lookup_ctx (gimple
*);
2799 /* Duplicate #pragma omp simd, one for the scan input phase loop and one
2800 for scan phase loop. */
2803 scan_omp_simd_scan (gimple_stmt_iterator
*gsi
, gomp_for
*stmt
,
2804 omp_context
*outer_ctx
)
2806 /* The only change between inclusive and exclusive scan will be
2807 within the first simd loop, so just use inclusive in the
2808 worksharing loop. */
2809 outer_ctx
->scan_inclusive
= true;
2810 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE_INCLUSIVE
);
2811 OMP_CLAUSE_DECL (c
) = integer_zero_node
;
2813 gomp_scan
*input_stmt
= gimple_build_omp_scan (NULL
, NULL_TREE
);
2814 gomp_scan
*scan_stmt
= gimple_build_omp_scan (NULL
, c
);
2815 gsi_replace (gsi
, input_stmt
, false);
2816 gimple_seq input_body
= NULL
;
2817 gimple_seq_add_stmt (&input_body
, stmt
);
2818 gsi_insert_after (gsi
, scan_stmt
, GSI_NEW_STMT
);
2820 gimple_stmt_iterator input1_gsi
= gsi_none ();
2821 struct walk_stmt_info wi
;
2822 memset (&wi
, 0, sizeof (wi
));
2824 wi
.info
= (void *) &input1_gsi
;
2825 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), omp_find_scan
, NULL
, &wi
);
2826 gcc_assert (!gsi_end_p (input1_gsi
));
2828 gimple
*input_stmt1
= gsi_stmt (input1_gsi
);
2829 gsi_next (&input1_gsi
);
2830 gimple
*scan_stmt1
= gsi_stmt (input1_gsi
);
2831 gcc_assert (scan_stmt1
&& gimple_code (scan_stmt1
) == GIMPLE_OMP_SCAN
);
2832 c
= gimple_omp_scan_clauses (as_a
<gomp_scan
*> (scan_stmt1
));
2833 if (c
&& OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_EXCLUSIVE
)
2834 std::swap (input_stmt1
, scan_stmt1
);
2836 gimple_seq input_body1
= gimple_omp_body (input_stmt1
);
2837 gimple_omp_set_body (input_stmt1
, NULL
);
2839 gimple_seq scan_body
= copy_gimple_seq_and_replace_locals (stmt
);
2840 gomp_for
*new_stmt
= as_a
<gomp_for
*> (scan_body
);
2842 gimple_omp_set_body (input_stmt1
, input_body1
);
2843 gimple_omp_set_body (scan_stmt1
, NULL
);
2845 gimple_stmt_iterator input2_gsi
= gsi_none ();
2846 memset (&wi
, 0, sizeof (wi
));
2848 wi
.info
= (void *) &input2_gsi
;
2849 walk_gimple_seq_mod (gimple_omp_body_ptr (new_stmt
), omp_find_scan
,
2851 gcc_assert (!gsi_end_p (input2_gsi
));
2853 gimple
*input_stmt2
= gsi_stmt (input2_gsi
);
2854 gsi_next (&input2_gsi
);
2855 gimple
*scan_stmt2
= gsi_stmt (input2_gsi
);
2856 gcc_assert (scan_stmt2
&& gimple_code (scan_stmt2
) == GIMPLE_OMP_SCAN
);
2857 if (c
&& OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_EXCLUSIVE
)
2858 std::swap (input_stmt2
, scan_stmt2
);
2860 gimple_omp_set_body (input_stmt2
, NULL
);
2862 gimple_omp_set_body (input_stmt
, input_body
);
2863 gimple_omp_set_body (scan_stmt
, scan_body
);
2865 omp_context
*ctx
= new_omp_context (input_stmt
, outer_ctx
);
2866 scan_omp (gimple_omp_body_ptr (input_stmt
), ctx
);
2868 ctx
= new_omp_context (scan_stmt
, outer_ctx
);
2869 scan_omp (gimple_omp_body_ptr (scan_stmt
), ctx
);
2871 maybe_lookup_ctx (new_stmt
)->for_simd_scan_phase
= true;
2874 /* Scan an OpenMP sections directive. */
2877 scan_omp_sections (gomp_sections
*stmt
, omp_context
*outer_ctx
)
2881 ctx
= new_omp_context (stmt
, outer_ctx
);
2882 scan_sharing_clauses (gimple_omp_sections_clauses (stmt
), ctx
);
2883 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2886 /* Scan an OpenMP single directive. */
2889 scan_omp_single (gomp_single
*stmt
, omp_context
*outer_ctx
)
2894 ctx
= new_omp_context (stmt
, outer_ctx
);
2895 ctx
->field_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
2896 ctx
->record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
2897 name
= create_tmp_var_name (".omp_copy_s");
2898 name
= build_decl (gimple_location (stmt
),
2899 TYPE_DECL
, name
, ctx
->record_type
);
2900 TYPE_NAME (ctx
->record_type
) = name
;
2902 scan_sharing_clauses (gimple_omp_single_clauses (stmt
), ctx
);
2903 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2905 if (TYPE_FIELDS (ctx
->record_type
) == NULL
)
2906 ctx
->record_type
= NULL
;
2908 layout_type (ctx
->record_type
);
2911 /* Scan a GIMPLE_OMP_TARGET. */
2914 scan_omp_target (gomp_target
*stmt
, omp_context
*outer_ctx
)
2918 bool offloaded
= is_gimple_omp_offloaded (stmt
);
2919 tree clauses
= gimple_omp_target_clauses (stmt
);
2921 ctx
= new_omp_context (stmt
, outer_ctx
);
2922 ctx
->field_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
2923 ctx
->record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
2924 name
= create_tmp_var_name (".omp_data_t");
2925 name
= build_decl (gimple_location (stmt
),
2926 TYPE_DECL
, name
, ctx
->record_type
);
2927 DECL_ARTIFICIAL (name
) = 1;
2928 DECL_NAMELESS (name
) = 1;
2929 TYPE_NAME (ctx
->record_type
) = name
;
2930 TYPE_ARTIFICIAL (ctx
->record_type
) = 1;
2934 create_omp_child_function (ctx
, false);
2935 gimple_omp_target_set_child_fn (stmt
, ctx
->cb
.dst_fn
);
2938 scan_sharing_clauses (clauses
, ctx
);
2939 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2941 if (TYPE_FIELDS (ctx
->record_type
) == NULL
)
2942 ctx
->record_type
= ctx
->receiver_decl
= NULL
;
2945 TYPE_FIELDS (ctx
->record_type
)
2946 = nreverse (TYPE_FIELDS (ctx
->record_type
));
2949 unsigned int align
= DECL_ALIGN (TYPE_FIELDS (ctx
->record_type
));
2950 for (tree field
= TYPE_FIELDS (ctx
->record_type
);
2952 field
= DECL_CHAIN (field
))
2953 gcc_assert (DECL_ALIGN (field
) == align
);
2955 layout_type (ctx
->record_type
);
2957 fixup_child_record_type (ctx
);
2961 /* Scan an OpenMP teams directive. */
2964 scan_omp_teams (gomp_teams
*stmt
, omp_context
*outer_ctx
)
2966 omp_context
*ctx
= new_omp_context (stmt
, outer_ctx
);
2968 if (!gimple_omp_teams_host (stmt
))
2970 scan_sharing_clauses (gimple_omp_teams_clauses (stmt
), ctx
);
2971 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2974 taskreg_contexts
.safe_push (ctx
);
2975 gcc_assert (taskreg_nesting_level
== 1);
2976 ctx
->field_map
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
2977 ctx
->record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
2978 tree name
= create_tmp_var_name (".omp_data_s");
2979 name
= build_decl (gimple_location (stmt
),
2980 TYPE_DECL
, name
, ctx
->record_type
);
2981 DECL_ARTIFICIAL (name
) = 1;
2982 DECL_NAMELESS (name
) = 1;
2983 TYPE_NAME (ctx
->record_type
) = name
;
2984 TYPE_ARTIFICIAL (ctx
->record_type
) = 1;
2985 create_omp_child_function (ctx
, false);
2986 gimple_omp_teams_set_child_fn (stmt
, ctx
->cb
.dst_fn
);
2988 scan_sharing_clauses (gimple_omp_teams_clauses (stmt
), ctx
);
2989 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
2991 if (TYPE_FIELDS (ctx
->record_type
) == NULL
)
2992 ctx
->record_type
= ctx
->receiver_decl
= NULL
;
2995 /* Check nesting restrictions. */
2997 check_omp_nesting_restrictions (gimple
*stmt
, omp_context
*ctx
)
3001 /* No nesting of non-OpenACC STMT (that is, an OpenMP one, or a GOMP builtin)
3002 inside an OpenACC CTX. */
3003 if (!(is_gimple_omp (stmt
)
3004 && is_gimple_omp_oacc (stmt
))
3005 /* Except for atomic codes that we share with OpenMP. */
3006 && !(gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_LOAD
3007 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_STORE
))
3009 if (oacc_get_fn_attrib (cfun
->decl
) != NULL
)
3011 error_at (gimple_location (stmt
),
3012 "non-OpenACC construct inside of OpenACC routine");
3016 for (omp_context
*octx
= ctx
; octx
!= NULL
; octx
= octx
->outer
)
3017 if (is_gimple_omp (octx
->stmt
)
3018 && is_gimple_omp_oacc (octx
->stmt
))
3020 error_at (gimple_location (stmt
),
3021 "non-OpenACC construct inside of OpenACC region");
3028 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_SCAN
3030 && gimple_code (ctx
->outer
->stmt
) == GIMPLE_OMP_FOR
)
3032 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
3033 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
3037 if (ctx
->order_concurrent
3038 && (gimple_code (stmt
) == GIMPLE_OMP_ORDERED
3039 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_LOAD
3040 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_STORE
))
3042 error_at (gimple_location (stmt
),
3043 "OpenMP constructs other than %<parallel%>, %<loop%>"
3044 " or %<simd%> may not be nested inside a region with"
3045 " the %<order(concurrent)%> clause");
3048 if (gimple_code (stmt
) == GIMPLE_OMP_ORDERED
)
3050 c
= gimple_omp_ordered_clauses (as_a
<gomp_ordered
*> (stmt
));
3051 if (omp_find_clause (c
, OMP_CLAUSE_SIMD
))
3053 if (omp_find_clause (c
, OMP_CLAUSE_THREADS
)
3054 && (ctx
->outer
== NULL
3055 || !gimple_omp_for_combined_into_p (ctx
->stmt
)
3056 || gimple_code (ctx
->outer
->stmt
) != GIMPLE_OMP_FOR
3057 || (gimple_omp_for_kind (ctx
->outer
->stmt
)
3058 != GF_OMP_FOR_KIND_FOR
)
3059 || !gimple_omp_for_combined_p (ctx
->outer
->stmt
)))
3061 error_at (gimple_location (stmt
),
3062 "%<ordered simd threads%> must be closely "
3063 "nested inside of %<%s simd%> region",
3064 lang_GNU_Fortran () ? "do" : "for");
3070 else if (gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_LOAD
3071 || gimple_code (stmt
) == GIMPLE_OMP_ATOMIC_STORE
3072 || gimple_code (stmt
) == GIMPLE_OMP_SCAN
)
3074 else if (gimple_code (stmt
) == GIMPLE_OMP_FOR
3075 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
)
3077 error_at (gimple_location (stmt
),
3078 "OpenMP constructs other than "
3079 "%<ordered simd%>, %<simd%>, %<loop%> or %<atomic%> may "
3080 "not be nested inside %<simd%> region");
3083 else if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
)
3085 if ((gimple_code (stmt
) != GIMPLE_OMP_FOR
3086 || (gimple_omp_for_kind (stmt
) != GF_OMP_FOR_KIND_DISTRIBUTE
3087 && omp_find_clause (gimple_omp_for_clauses (stmt
),
3088 OMP_CLAUSE_BIND
) == NULL_TREE
))
3089 && gimple_code (stmt
) != GIMPLE_OMP_PARALLEL
)
3091 error_at (gimple_location (stmt
),
3092 "only %<distribute%>, %<parallel%> or %<loop%> "
3093 "regions are allowed to be strictly nested inside "
3094 "%<teams%> region");
3098 else if (ctx
->order_concurrent
3099 && gimple_code (stmt
) != GIMPLE_OMP_PARALLEL
3100 && (gimple_code (stmt
) != GIMPLE_OMP_FOR
3101 || gimple_omp_for_kind (stmt
) != GF_OMP_FOR_KIND_SIMD
)
3102 && gimple_code (stmt
) != GIMPLE_OMP_SCAN
)
3105 error_at (gimple_location (stmt
),
3106 "OpenMP constructs other than %<parallel%>, %<loop%> or "
3107 "%<simd%> may not be nested inside a %<loop%> region");
3109 error_at (gimple_location (stmt
),
3110 "OpenMP constructs other than %<parallel%>, %<loop%> or "
3111 "%<simd%> may not be nested inside a region with "
3112 "the %<order(concurrent)%> clause");
3116 switch (gimple_code (stmt
))
3118 case GIMPLE_OMP_FOR
:
3119 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_SIMD
)
3121 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_DISTRIBUTE
)
3123 if (ctx
!= NULL
&& gimple_code (ctx
->stmt
) != GIMPLE_OMP_TEAMS
)
3125 error_at (gimple_location (stmt
),
3126 "%<distribute%> region must be strictly nested "
3127 "inside %<teams%> construct");
3132 /* We split taskloop into task and nested taskloop in it. */
3133 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_TASKLOOP
)
3135 /* For now, hope this will change and loop bind(parallel) will not
3136 be allowed in lots of contexts. */
3137 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_FOR
3138 && omp_find_clause (gimple_omp_for_clauses (stmt
), OMP_CLAUSE_BIND
))
3140 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_OACC_LOOP
)
3145 switch (gimple_code (ctx
->stmt
))
3147 case GIMPLE_OMP_FOR
:
3148 ok
= (gimple_omp_for_kind (ctx
->stmt
)
3149 == GF_OMP_FOR_KIND_OACC_LOOP
);
3152 case GIMPLE_OMP_TARGET
:
3153 switch (gimple_omp_target_kind (ctx
->stmt
))
3155 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
3156 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
3157 case GF_OMP_TARGET_KIND_OACC_SERIAL
:
3158 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED
:
3159 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE
:
3170 else if (oacc_get_fn_attrib (current_function_decl
))
3174 error_at (gimple_location (stmt
),
3175 "OpenACC loop directive must be associated with"
3176 " an OpenACC compute region");
3182 if (is_gimple_call (stmt
)
3183 && (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3184 == BUILT_IN_GOMP_CANCEL
3185 || DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3186 == BUILT_IN_GOMP_CANCELLATION_POINT
))
3188 const char *bad
= NULL
;
3189 const char *kind
= NULL
;
3190 const char *construct
3191 = (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3192 == BUILT_IN_GOMP_CANCEL
)
3194 : "cancellation point";
3197 error_at (gimple_location (stmt
), "orphaned %qs construct",
3201 switch (tree_fits_shwi_p (gimple_call_arg (stmt
, 0))
3202 ? tree_to_shwi (gimple_call_arg (stmt
, 0))
3206 if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_PARALLEL
)
3208 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3209 == BUILT_IN_GOMP_CANCEL
3210 && !integer_zerop (gimple_call_arg (stmt
, 1)))
3211 ctx
->cancellable
= true;
3215 if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_FOR
3216 || gimple_omp_for_kind (ctx
->stmt
) != GF_OMP_FOR_KIND_FOR
)
3218 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3219 == BUILT_IN_GOMP_CANCEL
3220 && !integer_zerop (gimple_call_arg (stmt
, 1)))
3222 ctx
->cancellable
= true;
3223 if (omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
3225 warning_at (gimple_location (stmt
), 0,
3226 "%<cancel for%> inside "
3227 "%<nowait%> for construct");
3228 if (omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
3229 OMP_CLAUSE_ORDERED
))
3230 warning_at (gimple_location (stmt
), 0,
3231 "%<cancel for%> inside "
3232 "%<ordered%> for construct");
3237 if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_SECTIONS
3238 && gimple_code (ctx
->stmt
) != GIMPLE_OMP_SECTION
)
3240 else if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3241 == BUILT_IN_GOMP_CANCEL
3242 && !integer_zerop (gimple_call_arg (stmt
, 1)))
3244 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_SECTIONS
)
3246 ctx
->cancellable
= true;
3247 if (omp_find_clause (gimple_omp_sections_clauses
3250 warning_at (gimple_location (stmt
), 0,
3251 "%<cancel sections%> inside "
3252 "%<nowait%> sections construct");
3256 gcc_assert (ctx
->outer
3257 && gimple_code (ctx
->outer
->stmt
)
3258 == GIMPLE_OMP_SECTIONS
);
3259 ctx
->outer
->cancellable
= true;
3260 if (omp_find_clause (gimple_omp_sections_clauses
3263 warning_at (gimple_location (stmt
), 0,
3264 "%<cancel sections%> inside "
3265 "%<nowait%> sections construct");
3271 if (!is_task_ctx (ctx
)
3272 && (!is_taskloop_ctx (ctx
)
3273 || ctx
->outer
== NULL
3274 || !is_task_ctx (ctx
->outer
)))
3278 for (omp_context
*octx
= ctx
->outer
;
3279 octx
; octx
= octx
->outer
)
3281 switch (gimple_code (octx
->stmt
))
3283 case GIMPLE_OMP_TASKGROUP
:
3285 case GIMPLE_OMP_TARGET
:
3286 if (gimple_omp_target_kind (octx
->stmt
)
3287 != GF_OMP_TARGET_KIND_REGION
)
3290 case GIMPLE_OMP_PARALLEL
:
3291 case GIMPLE_OMP_TEAMS
:
3292 error_at (gimple_location (stmt
),
3293 "%<%s taskgroup%> construct not closely "
3294 "nested inside of %<taskgroup%> region",
3297 case GIMPLE_OMP_TASK
:
3298 if (gimple_omp_task_taskloop_p (octx
->stmt
)
3300 && is_taskloop_ctx (octx
->outer
))
3303 = gimple_omp_for_clauses (octx
->outer
->stmt
);
3304 if (!omp_find_clause (clauses
, OMP_CLAUSE_NOGROUP
))
3313 ctx
->cancellable
= true;
3318 error_at (gimple_location (stmt
), "invalid arguments");
3323 error_at (gimple_location (stmt
),
3324 "%<%s %s%> construct not closely nested inside of %qs",
3325 construct
, kind
, bad
);
3330 case GIMPLE_OMP_SECTIONS
:
3331 case GIMPLE_OMP_SINGLE
:
3332 for (; ctx
!= NULL
; ctx
= ctx
->outer
)
3333 switch (gimple_code (ctx
->stmt
))
3335 case GIMPLE_OMP_FOR
:
3336 if (gimple_omp_for_kind (ctx
->stmt
) != GF_OMP_FOR_KIND_FOR
3337 && gimple_omp_for_kind (ctx
->stmt
) != GF_OMP_FOR_KIND_TASKLOOP
)
3340 case GIMPLE_OMP_SECTIONS
:
3341 case GIMPLE_OMP_SINGLE
:
3342 case GIMPLE_OMP_ORDERED
:
3343 case GIMPLE_OMP_MASTER
:
3344 case GIMPLE_OMP_TASK
:
3345 case GIMPLE_OMP_CRITICAL
:
3346 if (is_gimple_call (stmt
))
3348 if (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
))
3349 != BUILT_IN_GOMP_BARRIER
)
3351 error_at (gimple_location (stmt
),
3352 "barrier region may not be closely nested inside "
3353 "of work-sharing, %<loop%>, %<critical%>, "
3354 "%<ordered%>, %<master%>, explicit %<task%> or "
3355 "%<taskloop%> region");
3358 error_at (gimple_location (stmt
),
3359 "work-sharing region may not be closely nested inside "
3360 "of work-sharing, %<loop%>, %<critical%>, %<ordered%>, "
3361 "%<master%>, explicit %<task%> or %<taskloop%> region");
3363 case GIMPLE_OMP_PARALLEL
:
3364 case GIMPLE_OMP_TEAMS
:
3366 case GIMPLE_OMP_TARGET
:
3367 if (gimple_omp_target_kind (ctx
->stmt
)
3368 == GF_OMP_TARGET_KIND_REGION
)
3375 case GIMPLE_OMP_MASTER
:
3376 for (; ctx
!= NULL
; ctx
= ctx
->outer
)
3377 switch (gimple_code (ctx
->stmt
))
3379 case GIMPLE_OMP_FOR
:
3380 if (gimple_omp_for_kind (ctx
->stmt
) != GF_OMP_FOR_KIND_FOR
3381 && gimple_omp_for_kind (ctx
->stmt
) != GF_OMP_FOR_KIND_TASKLOOP
)
3384 case GIMPLE_OMP_SECTIONS
:
3385 case GIMPLE_OMP_SINGLE
:
3386 case GIMPLE_OMP_TASK
:
3387 error_at (gimple_location (stmt
),
3388 "%<master%> region may not be closely nested inside "
3389 "of work-sharing, %<loop%>, explicit %<task%> or "
3390 "%<taskloop%> region");
3392 case GIMPLE_OMP_PARALLEL
:
3393 case GIMPLE_OMP_TEAMS
:
3395 case GIMPLE_OMP_TARGET
:
3396 if (gimple_omp_target_kind (ctx
->stmt
)
3397 == GF_OMP_TARGET_KIND_REGION
)
3404 case GIMPLE_OMP_TASK
:
3405 for (c
= gimple_omp_task_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
3406 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
3407 && (OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SOURCE
3408 || OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SINK
))
3410 enum omp_clause_depend_kind kind
= OMP_CLAUSE_DEPEND_KIND (c
);
3411 error_at (OMP_CLAUSE_LOCATION (c
),
3412 "%<depend(%s)%> is only allowed in %<omp ordered%>",
3413 kind
== OMP_CLAUSE_DEPEND_SOURCE
? "source" : "sink");
3417 case GIMPLE_OMP_ORDERED
:
3418 for (c
= gimple_omp_ordered_clauses (as_a
<gomp_ordered
*> (stmt
));
3419 c
; c
= OMP_CLAUSE_CHAIN (c
))
3421 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
)
3423 gcc_assert (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_THREADS
3424 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SIMD
);
3427 enum omp_clause_depend_kind kind
= OMP_CLAUSE_DEPEND_KIND (c
);
3428 if (kind
== OMP_CLAUSE_DEPEND_SOURCE
3429 || kind
== OMP_CLAUSE_DEPEND_SINK
)
3432 /* Look for containing ordered(N) loop. */
3434 || gimple_code (ctx
->stmt
) != GIMPLE_OMP_FOR
3436 = omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
3437 OMP_CLAUSE_ORDERED
)) == NULL_TREE
)
3439 error_at (OMP_CLAUSE_LOCATION (c
),
3440 "%<ordered%> construct with %<depend%> clause "
3441 "must be closely nested inside an %<ordered%> "
3445 else if (OMP_CLAUSE_ORDERED_EXPR (oclause
) == NULL_TREE
)
3447 error_at (OMP_CLAUSE_LOCATION (c
),
3448 "%<ordered%> construct with %<depend%> clause "
3449 "must be closely nested inside a loop with "
3450 "%<ordered%> clause with a parameter");
3456 error_at (OMP_CLAUSE_LOCATION (c
),
3457 "invalid depend kind in omp %<ordered%> %<depend%>");
3461 c
= gimple_omp_ordered_clauses (as_a
<gomp_ordered
*> (stmt
));
3462 if (omp_find_clause (c
, OMP_CLAUSE_SIMD
))
3464 /* ordered simd must be closely nested inside of simd region,
3465 and simd region must not encounter constructs other than
3466 ordered simd, therefore ordered simd may be either orphaned,
3467 or ctx->stmt must be simd. The latter case is handled already
3471 error_at (gimple_location (stmt
),
3472 "%<ordered%> %<simd%> must be closely nested inside "
3477 for (; ctx
!= NULL
; ctx
= ctx
->outer
)
3478 switch (gimple_code (ctx
->stmt
))
3480 case GIMPLE_OMP_CRITICAL
:
3481 case GIMPLE_OMP_TASK
:
3482 case GIMPLE_OMP_ORDERED
:
3483 ordered_in_taskloop
:
3484 error_at (gimple_location (stmt
),
3485 "%<ordered%> region may not be closely nested inside "
3486 "of %<critical%>, %<ordered%>, explicit %<task%> or "
3487 "%<taskloop%> region");
3489 case GIMPLE_OMP_FOR
:
3490 if (gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_TASKLOOP
)
3491 goto ordered_in_taskloop
;
3493 o
= omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
3494 OMP_CLAUSE_ORDERED
);
3497 error_at (gimple_location (stmt
),
3498 "%<ordered%> region must be closely nested inside "
3499 "a loop region with an %<ordered%> clause");
3502 if (OMP_CLAUSE_ORDERED_EXPR (o
) != NULL_TREE
3503 && omp_find_clause (c
, OMP_CLAUSE_DEPEND
) == NULL_TREE
)
3505 error_at (gimple_location (stmt
),
3506 "%<ordered%> region without %<depend%> clause may "
3507 "not be closely nested inside a loop region with "
3508 "an %<ordered%> clause with a parameter");
3512 case GIMPLE_OMP_TARGET
:
3513 if (gimple_omp_target_kind (ctx
->stmt
)
3514 != GF_OMP_TARGET_KIND_REGION
)
3517 case GIMPLE_OMP_PARALLEL
:
3518 case GIMPLE_OMP_TEAMS
:
3519 error_at (gimple_location (stmt
),
3520 "%<ordered%> region must be closely nested inside "
3521 "a loop region with an %<ordered%> clause");
3527 case GIMPLE_OMP_CRITICAL
:
3530 = gimple_omp_critical_name (as_a
<gomp_critical
*> (stmt
));
3531 for (; ctx
!= NULL
; ctx
= ctx
->outer
)
3532 if (gomp_critical
*other_crit
3533 = dyn_cast
<gomp_critical
*> (ctx
->stmt
))
3534 if (this_stmt_name
== gimple_omp_critical_name (other_crit
))
3536 error_at (gimple_location (stmt
),
3537 "%<critical%> region may not be nested inside "
3538 "a %<critical%> region with the same name");
3543 case GIMPLE_OMP_TEAMS
:
3546 else if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_TARGET
3547 || (gimple_omp_target_kind (ctx
->stmt
)
3548 != GF_OMP_TARGET_KIND_REGION
))
3550 /* Teams construct can appear either strictly nested inside of
3551 target construct with no intervening stmts, or can be encountered
3552 only by initial task (so must not appear inside any OpenMP
3554 error_at (gimple_location (stmt
),
3555 "%<teams%> construct must be closely nested inside of "
3556 "%<target%> construct or not nested in any OpenMP "
3561 case GIMPLE_OMP_TARGET
:
3562 for (c
= gimple_omp_target_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
3563 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
3564 && (OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SOURCE
3565 || OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SINK
))
3567 enum omp_clause_depend_kind kind
= OMP_CLAUSE_DEPEND_KIND (c
);
3568 error_at (OMP_CLAUSE_LOCATION (c
),
3569 "%<depend(%s)%> is only allowed in %<omp ordered%>",
3570 kind
== OMP_CLAUSE_DEPEND_SOURCE
? "source" : "sink");
3573 if (is_gimple_omp_offloaded (stmt
)
3574 && oacc_get_fn_attrib (cfun
->decl
) != NULL
)
3576 error_at (gimple_location (stmt
),
3577 "OpenACC region inside of OpenACC routine, nested "
3578 "parallelism not supported yet");
3581 for (; ctx
!= NULL
; ctx
= ctx
->outer
)
3583 if (gimple_code (ctx
->stmt
) != GIMPLE_OMP_TARGET
)
3585 if (is_gimple_omp (stmt
)
3586 && is_gimple_omp_oacc (stmt
)
3587 && is_gimple_omp (ctx
->stmt
))
3589 error_at (gimple_location (stmt
),
3590 "OpenACC construct inside of non-OpenACC region");
3596 const char *stmt_name
, *ctx_stmt_name
;
3597 switch (gimple_omp_target_kind (stmt
))
3599 case GF_OMP_TARGET_KIND_REGION
: stmt_name
= "target"; break;
3600 case GF_OMP_TARGET_KIND_DATA
: stmt_name
= "target data"; break;
3601 case GF_OMP_TARGET_KIND_UPDATE
: stmt_name
= "target update"; break;
3602 case GF_OMP_TARGET_KIND_ENTER_DATA
:
3603 stmt_name
= "target enter data"; break;
3604 case GF_OMP_TARGET_KIND_EXIT_DATA
:
3605 stmt_name
= "target exit data"; break;
3606 case GF_OMP_TARGET_KIND_OACC_PARALLEL
: stmt_name
= "parallel"; break;
3607 case GF_OMP_TARGET_KIND_OACC_KERNELS
: stmt_name
= "kernels"; break;
3608 case GF_OMP_TARGET_KIND_OACC_SERIAL
: stmt_name
= "serial"; break;
3609 case GF_OMP_TARGET_KIND_OACC_DATA
: stmt_name
= "data"; break;
3610 case GF_OMP_TARGET_KIND_OACC_UPDATE
: stmt_name
= "update"; break;
3611 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA
:
3612 stmt_name
= "enter/exit data"; break;
3613 case GF_OMP_TARGET_KIND_OACC_DECLARE
: stmt_name
= "declare"; break;
3614 case GF_OMP_TARGET_KIND_OACC_HOST_DATA
: stmt_name
= "host_data";
3616 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED
:
3617 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE
:
3618 case GF_OMP_TARGET_KIND_OACC_DATA_KERNELS
:
3619 /* OpenACC 'kernels' decomposed parts. */
3620 stmt_name
= "kernels"; break;
3621 default: gcc_unreachable ();
3623 switch (gimple_omp_target_kind (ctx
->stmt
))
3625 case GF_OMP_TARGET_KIND_REGION
: ctx_stmt_name
= "target"; break;
3626 case GF_OMP_TARGET_KIND_DATA
: ctx_stmt_name
= "target data"; break;
3627 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
3628 ctx_stmt_name
= "parallel"; break;
3629 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
3630 ctx_stmt_name
= "kernels"; break;
3631 case GF_OMP_TARGET_KIND_OACC_SERIAL
:
3632 ctx_stmt_name
= "serial"; break;
3633 case GF_OMP_TARGET_KIND_OACC_DATA
: ctx_stmt_name
= "data"; break;
3634 case GF_OMP_TARGET_KIND_OACC_HOST_DATA
:
3635 ctx_stmt_name
= "host_data"; break;
3636 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED
:
3637 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE
:
3638 case GF_OMP_TARGET_KIND_OACC_DATA_KERNELS
:
3639 /* OpenACC 'kernels' decomposed parts. */
3640 ctx_stmt_name
= "kernels"; break;
3641 default: gcc_unreachable ();
3644 /* OpenACC/OpenMP mismatch? */
3645 if (is_gimple_omp_oacc (stmt
)
3646 != is_gimple_omp_oacc (ctx
->stmt
))
3648 error_at (gimple_location (stmt
),
3649 "%s %qs construct inside of %s %qs region",
3650 (is_gimple_omp_oacc (stmt
)
3651 ? "OpenACC" : "OpenMP"), stmt_name
,
3652 (is_gimple_omp_oacc (ctx
->stmt
)
3653 ? "OpenACC" : "OpenMP"), ctx_stmt_name
);
3656 if (is_gimple_omp_offloaded (ctx
->stmt
))
3658 /* No GIMPLE_OMP_TARGET inside offloaded OpenACC CTX. */
3659 if (is_gimple_omp_oacc (ctx
->stmt
))
3661 error_at (gimple_location (stmt
),
3662 "%qs construct inside of %qs region",
3663 stmt_name
, ctx_stmt_name
);
3668 warning_at (gimple_location (stmt
), 0,
3669 "%qs construct inside of %qs region",
3670 stmt_name
, ctx_stmt_name
);
3682 /* Helper function scan_omp.
3684 Callback for walk_tree or operators in walk_gimple_stmt used to
3685 scan for OMP directives in TP. */
3688 scan_omp_1_op (tree
*tp
, int *walk_subtrees
, void *data
)
3690 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data
;
3691 omp_context
*ctx
= (omp_context
*) wi
->info
;
3694 switch (TREE_CODE (t
))
3702 tree repl
= remap_decl (t
, &ctx
->cb
);
3703 gcc_checking_assert (TREE_CODE (repl
) != ERROR_MARK
);
3709 if (ctx
&& TYPE_P (t
))
3710 *tp
= remap_type (t
, &ctx
->cb
);
3711 else if (!DECL_P (t
))
3716 tree tem
= remap_type (TREE_TYPE (t
), &ctx
->cb
);
3717 if (tem
!= TREE_TYPE (t
))
3719 if (TREE_CODE (t
) == INTEGER_CST
)
3720 *tp
= wide_int_to_tree (tem
, wi::to_wide (t
));
3722 TREE_TYPE (t
) = tem
;
3732 /* Return true if FNDECL is a setjmp or a longjmp. */
3735 setjmp_or_longjmp_p (const_tree fndecl
)
3737 if (fndecl_built_in_p (fndecl
, BUILT_IN_SETJMP
)
3738 || fndecl_built_in_p (fndecl
, BUILT_IN_LONGJMP
))
3741 tree declname
= DECL_NAME (fndecl
);
3743 || (DECL_CONTEXT (fndecl
) != NULL_TREE
3744 && TREE_CODE (DECL_CONTEXT (fndecl
)) != TRANSLATION_UNIT_DECL
)
3745 || !TREE_PUBLIC (fndecl
))
3748 const char *name
= IDENTIFIER_POINTER (declname
);
3749 return !strcmp (name
, "setjmp") || !strcmp (name
, "longjmp");
3752 /* Return true if FNDECL is an omp_* runtime API call. */
3755 omp_runtime_api_call (const_tree fndecl
)
3757 tree declname
= DECL_NAME (fndecl
);
3759 || (DECL_CONTEXT (fndecl
) != NULL_TREE
3760 && TREE_CODE (DECL_CONTEXT (fndecl
)) != TRANSLATION_UNIT_DECL
)
3761 || !TREE_PUBLIC (fndecl
))
3764 const char *name
= IDENTIFIER_POINTER (declname
);
3765 if (strncmp (name
, "omp_", 4) != 0)
3768 static const char *omp_runtime_apis
[] =
3770 /* This array has 3 sections. First omp_* calls that don't
3771 have any suffixes. */
3773 "target_associate_ptr",
3774 "target_disassociate_ptr",
3776 "target_is_present",
3778 "target_memcpy_rect",
3780 /* Now omp_* calls that are available as omp_* and omp_*_. */
3783 "destroy_nest_lock",
3786 "get_affinity_format",
3788 "get_default_device",
3790 "get_initial_device",
3792 "get_max_active_levels",
3793 "get_max_task_priority",
3801 "get_partition_num_places",
3813 "is_initial_device",
3815 "pause_resource_all",
3816 "set_affinity_format",
3824 /* And finally calls available as omp_*, omp_*_ and omp_*_8_. */
3825 "get_ancestor_thread_num",
3826 "get_partition_place_nums",
3827 "get_place_num_procs",
3828 "get_place_proc_ids",
3831 "set_default_device",
3833 "set_max_active_levels",
3840 for (unsigned i
= 0; i
< ARRAY_SIZE (omp_runtime_apis
); i
++)
3842 if (omp_runtime_apis
[i
] == NULL
)
3847 size_t len
= strlen (omp_runtime_apis
[i
]);
3848 if (strncmp (name
+ 4, omp_runtime_apis
[i
], len
) == 0
3849 && (name
[4 + len
] == '\0'
3851 && name
[4 + len
] == '_'
3852 && (name
[4 + len
+ 1] == '\0'
3854 && strcmp (name
+ 4 + len
+ 1, "8_") == 0)))))
3860 /* Helper function for scan_omp.
3862 Callback for walk_gimple_stmt used to scan for OMP directives in
3863 the current statement in GSI. */
3866 scan_omp_1_stmt (gimple_stmt_iterator
*gsi
, bool *handled_ops_p
,
3867 struct walk_stmt_info
*wi
)
3869 gimple
*stmt
= gsi_stmt (*gsi
);
3870 omp_context
*ctx
= (omp_context
*) wi
->info
;
3872 if (gimple_has_location (stmt
))
3873 input_location
= gimple_location (stmt
);
3875 /* Check the nesting restrictions. */
3876 bool remove
= false;
3877 if (is_gimple_omp (stmt
))
3878 remove
= !check_omp_nesting_restrictions (stmt
, ctx
);
3879 else if (is_gimple_call (stmt
))
3881 tree fndecl
= gimple_call_fndecl (stmt
);
3885 && gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
3886 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
3887 && setjmp_or_longjmp_p (fndecl
)
3891 error_at (gimple_location (stmt
),
3892 "setjmp/longjmp inside %<simd%> construct");
3894 else if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
3895 switch (DECL_FUNCTION_CODE (fndecl
))
3897 case BUILT_IN_GOMP_BARRIER
:
3898 case BUILT_IN_GOMP_CANCEL
:
3899 case BUILT_IN_GOMP_CANCELLATION_POINT
:
3900 case BUILT_IN_GOMP_TASKYIELD
:
3901 case BUILT_IN_GOMP_TASKWAIT
:
3902 case BUILT_IN_GOMP_TASKGROUP_START
:
3903 case BUILT_IN_GOMP_TASKGROUP_END
:
3904 remove
= !check_omp_nesting_restrictions (stmt
, ctx
);
3911 omp_context
*octx
= ctx
;
3912 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_SCAN
&& ctx
->outer
)
3914 if (octx
->order_concurrent
&& omp_runtime_api_call (fndecl
))
3917 error_at (gimple_location (stmt
),
3918 "OpenMP runtime API call %qD in a region with "
3919 "%<order(concurrent)%> clause", fndecl
);
3926 stmt
= gimple_build_nop ();
3927 gsi_replace (gsi
, stmt
, false);
3930 *handled_ops_p
= true;
3932 switch (gimple_code (stmt
))
3934 case GIMPLE_OMP_PARALLEL
:
3935 taskreg_nesting_level
++;
3936 scan_omp_parallel (gsi
, ctx
);
3937 taskreg_nesting_level
--;
3940 case GIMPLE_OMP_TASK
:
3941 taskreg_nesting_level
++;
3942 scan_omp_task (gsi
, ctx
);
3943 taskreg_nesting_level
--;
3946 case GIMPLE_OMP_FOR
:
3947 if ((gimple_omp_for_kind (as_a
<gomp_for
*> (stmt
))
3948 == GF_OMP_FOR_KIND_SIMD
)
3949 && gimple_omp_for_combined_into_p (stmt
)
3950 && gimple_code (ctx
->stmt
) != GIMPLE_OMP_SCAN
)
3952 tree clauses
= gimple_omp_for_clauses (as_a
<gomp_for
*> (stmt
));
3953 tree c
= omp_find_clause (clauses
, OMP_CLAUSE_REDUCTION
);
3954 if (c
&& OMP_CLAUSE_REDUCTION_INSCAN (c
) && !seen_error ())
3956 scan_omp_simd_scan (gsi
, as_a
<gomp_for
*> (stmt
), ctx
);
3960 if ((gimple_omp_for_kind (as_a
<gomp_for
*> (stmt
))
3961 == GF_OMP_FOR_KIND_SIMD
)
3962 && omp_maybe_offloaded_ctx (ctx
)
3963 && omp_max_simt_vf ()
3964 && gimple_omp_for_collapse (stmt
) == 1)
3965 scan_omp_simd (gsi
, as_a
<gomp_for
*> (stmt
), ctx
);
3967 scan_omp_for (as_a
<gomp_for
*> (stmt
), ctx
);
3970 case GIMPLE_OMP_SECTIONS
:
3971 scan_omp_sections (as_a
<gomp_sections
*> (stmt
), ctx
);
3974 case GIMPLE_OMP_SINGLE
:
3975 scan_omp_single (as_a
<gomp_single
*> (stmt
), ctx
);
3978 case GIMPLE_OMP_SCAN
:
3979 if (tree clauses
= gimple_omp_scan_clauses (as_a
<gomp_scan
*> (stmt
)))
3981 if (OMP_CLAUSE_CODE (clauses
) == OMP_CLAUSE_INCLUSIVE
)
3982 ctx
->scan_inclusive
= true;
3983 else if (OMP_CLAUSE_CODE (clauses
) == OMP_CLAUSE_EXCLUSIVE
)
3984 ctx
->scan_exclusive
= true;
3987 case GIMPLE_OMP_SECTION
:
3988 case GIMPLE_OMP_MASTER
:
3989 case GIMPLE_OMP_ORDERED
:
3990 case GIMPLE_OMP_CRITICAL
:
3991 ctx
= new_omp_context (stmt
, ctx
);
3992 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
3995 case GIMPLE_OMP_TASKGROUP
:
3996 ctx
= new_omp_context (stmt
, ctx
);
3997 scan_sharing_clauses (gimple_omp_taskgroup_clauses (stmt
), ctx
);
3998 scan_omp (gimple_omp_body_ptr (stmt
), ctx
);
4001 case GIMPLE_OMP_TARGET
:
4002 if (is_gimple_omp_offloaded (stmt
))
4004 taskreg_nesting_level
++;
4005 scan_omp_target (as_a
<gomp_target
*> (stmt
), ctx
);
4006 taskreg_nesting_level
--;
4009 scan_omp_target (as_a
<gomp_target
*> (stmt
), ctx
);
4012 case GIMPLE_OMP_TEAMS
:
4013 if (gimple_omp_teams_host (as_a
<gomp_teams
*> (stmt
)))
4015 taskreg_nesting_level
++;
4016 scan_omp_teams (as_a
<gomp_teams
*> (stmt
), ctx
);
4017 taskreg_nesting_level
--;
4020 scan_omp_teams (as_a
<gomp_teams
*> (stmt
), ctx
);
4027 *handled_ops_p
= false;
4029 for (var
= gimple_bind_vars (as_a
<gbind
*> (stmt
));
4031 var
= DECL_CHAIN (var
))
4032 insert_decl_map (&ctx
->cb
, var
, var
);
4036 *handled_ops_p
= false;
4044 /* Scan all the statements starting at the current statement. CTX
4045 contains context information about the OMP directives and
4046 clauses found during the scan. */
4049 scan_omp (gimple_seq
*body_p
, omp_context
*ctx
)
4051 location_t saved_location
;
4052 struct walk_stmt_info wi
;
4054 memset (&wi
, 0, sizeof (wi
));
4056 wi
.want_locations
= true;
4058 saved_location
= input_location
;
4059 walk_gimple_seq_mod (body_p
, scan_omp_1_stmt
, scan_omp_1_op
, &wi
);
4060 input_location
= saved_location
;
4063 /* Re-gimplification and code generation routines. */
4065 /* Remove omp_member_access_dummy_var variables from gimple_bind_vars
4066 of BIND if in a method. */
4069 maybe_remove_omp_member_access_dummy_vars (gbind
*bind
)
4071 if (DECL_ARGUMENTS (current_function_decl
)
4072 && DECL_ARTIFICIAL (DECL_ARGUMENTS (current_function_decl
))
4073 && (TREE_CODE (TREE_TYPE (DECL_ARGUMENTS (current_function_decl
)))
4076 tree vars
= gimple_bind_vars (bind
);
4077 for (tree
*pvar
= &vars
; *pvar
; )
4078 if (omp_member_access_dummy_var (*pvar
))
4079 *pvar
= DECL_CHAIN (*pvar
);
4081 pvar
= &DECL_CHAIN (*pvar
);
4082 gimple_bind_set_vars (bind
, vars
);
4086 /* Remove omp_member_access_dummy_var variables from BLOCK_VARS of
4087 block and its subblocks. */
4090 remove_member_access_dummy_vars (tree block
)
4092 for (tree
*pvar
= &BLOCK_VARS (block
); *pvar
; )
4093 if (omp_member_access_dummy_var (*pvar
))
4094 *pvar
= DECL_CHAIN (*pvar
);
4096 pvar
= &DECL_CHAIN (*pvar
);
4098 for (block
= BLOCK_SUBBLOCKS (block
); block
; block
= BLOCK_CHAIN (block
))
4099 remove_member_access_dummy_vars (block
);
4102 /* If a context was created for STMT when it was scanned, return it. */
4104 static omp_context
*
4105 maybe_lookup_ctx (gimple
*stmt
)
4108 n
= splay_tree_lookup (all_contexts
, (splay_tree_key
) stmt
);
4109 return n
? (omp_context
*) n
->value
: NULL
;
4113 /* Find the mapping for DECL in CTX or the immediately enclosing
4114 context that has a mapping for DECL.
4116 If CTX is a nested parallel directive, we may have to use the decl
4117 mappings created in CTX's parent context. Suppose that we have the
4118 following parallel nesting (variable UIDs showed for clarity):
4121 #omp parallel shared(iD.1562) -> outer parallel
4122 iD.1562 = iD.1562 + 1;
4124 #omp parallel shared (iD.1562) -> inner parallel
4125 iD.1562 = iD.1562 - 1;
4127 Each parallel structure will create a distinct .omp_data_s structure
4128 for copying iD.1562 in/out of the directive:
4130 outer parallel .omp_data_s.1.i -> iD.1562
4131 inner parallel .omp_data_s.2.i -> iD.1562
4133 A shared variable mapping will produce a copy-out operation before
4134 the parallel directive and a copy-in operation after it. So, in
4135 this case we would have:
4138 .omp_data_o.1.i = iD.1562;
4139 #omp parallel shared(iD.1562) -> outer parallel
4140 .omp_data_i.1 = &.omp_data_o.1
4141 .omp_data_i.1->i = .omp_data_i.1->i + 1;
4143 .omp_data_o.2.i = iD.1562; -> **
4144 #omp parallel shared(iD.1562) -> inner parallel
4145 .omp_data_i.2 = &.omp_data_o.2
4146 .omp_data_i.2->i = .omp_data_i.2->i - 1;
4149 ** This is a problem. The symbol iD.1562 cannot be referenced
4150 inside the body of the outer parallel region. But since we are
4151 emitting this copy operation while expanding the inner parallel
4152 directive, we need to access the CTX structure of the outer
4153 parallel directive to get the correct mapping:
4155 .omp_data_o.2.i = .omp_data_i.1->i
4157 Since there may be other workshare or parallel directives enclosing
4158 the parallel directive, it may be necessary to walk up the context
4159 parent chain. This is not a problem in general because nested
4160 parallelism happens only rarely. */
4163 lookup_decl_in_outer_ctx (tree decl
, omp_context
*ctx
)
4168 for (up
= ctx
->outer
, t
= NULL
; up
&& t
== NULL
; up
= up
->outer
)
4169 t
= maybe_lookup_decl (decl
, up
);
4171 gcc_assert (!ctx
->is_nested
|| t
|| is_global_var (decl
));
4173 return t
? t
: decl
;
4177 /* Similar to lookup_decl_in_outer_ctx, but return DECL if not found
4178 in outer contexts. */
4181 maybe_lookup_decl_in_outer_ctx (tree decl
, omp_context
*ctx
)
4186 for (up
= ctx
->outer
, t
= NULL
; up
&& t
== NULL
; up
= up
->outer
)
4187 t
= maybe_lookup_decl (decl
, up
);
4189 return t
? t
: decl
;
4193 /* Construct the initialization value for reduction operation OP. */
4196 omp_reduction_init_op (location_t loc
, enum tree_code op
, tree type
)
4205 case TRUTH_ORIF_EXPR
:
4206 case TRUTH_XOR_EXPR
:
4208 return build_zero_cst (type
);
4211 case TRUTH_AND_EXPR
:
4212 case TRUTH_ANDIF_EXPR
:
4214 return fold_convert_loc (loc
, type
, integer_one_node
);
4217 return fold_convert_loc (loc
, type
, integer_minus_one_node
);
4220 if (SCALAR_FLOAT_TYPE_P (type
))
4222 REAL_VALUE_TYPE max
, min
;
4223 if (HONOR_INFINITIES (type
))
4226 real_arithmetic (&min
, NEGATE_EXPR
, &max
, NULL
);
4229 real_maxval (&min
, 1, TYPE_MODE (type
));
4230 return build_real (type
, min
);
4232 else if (POINTER_TYPE_P (type
))
4235 = wi::min_value (TYPE_PRECISION (type
), TYPE_SIGN (type
));
4236 return wide_int_to_tree (type
, min
);
4240 gcc_assert (INTEGRAL_TYPE_P (type
));
4241 return TYPE_MIN_VALUE (type
);
4245 if (SCALAR_FLOAT_TYPE_P (type
))
4247 REAL_VALUE_TYPE max
;
4248 if (HONOR_INFINITIES (type
))
4251 real_maxval (&max
, 0, TYPE_MODE (type
));
4252 return build_real (type
, max
);
4254 else if (POINTER_TYPE_P (type
))
4257 = wi::max_value (TYPE_PRECISION (type
), TYPE_SIGN (type
));
4258 return wide_int_to_tree (type
, max
);
4262 gcc_assert (INTEGRAL_TYPE_P (type
));
4263 return TYPE_MAX_VALUE (type
);
4271 /* Construct the initialization value for reduction CLAUSE. */
4274 omp_reduction_init (tree clause
, tree type
)
4276 return omp_reduction_init_op (OMP_CLAUSE_LOCATION (clause
),
4277 OMP_CLAUSE_REDUCTION_CODE (clause
), type
);
4280 /* Return alignment to be assumed for var in CLAUSE, which should be
4281 OMP_CLAUSE_ALIGNED. */
4284 omp_clause_aligned_alignment (tree clause
)
4286 if (OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
))
4287 return OMP_CLAUSE_ALIGNED_ALIGNMENT (clause
);
4289 /* Otherwise return implementation defined alignment. */
4290 unsigned int al
= 1;
4291 opt_scalar_mode mode_iter
;
4292 auto_vector_modes modes
;
4293 targetm
.vectorize
.autovectorize_vector_modes (&modes
, true);
4294 static enum mode_class classes
[]
4295 = { MODE_INT
, MODE_VECTOR_INT
, MODE_FLOAT
, MODE_VECTOR_FLOAT
};
4296 for (int i
= 0; i
< 4; i
+= 2)
4297 /* The for loop above dictates that we only walk through scalar classes. */
4298 FOR_EACH_MODE_IN_CLASS (mode_iter
, classes
[i
])
4300 scalar_mode mode
= mode_iter
.require ();
4301 machine_mode vmode
= targetm
.vectorize
.preferred_simd_mode (mode
);
4302 if (GET_MODE_CLASS (vmode
) != classes
[i
+ 1])
4304 machine_mode alt_vmode
;
4305 for (unsigned int j
= 0; j
< modes
.length (); ++j
)
4306 if (related_vector_mode (modes
[j
], mode
).exists (&alt_vmode
)
4307 && known_ge (GET_MODE_SIZE (alt_vmode
), GET_MODE_SIZE (vmode
)))
4310 tree type
= lang_hooks
.types
.type_for_mode (mode
, 1);
4311 if (type
== NULL_TREE
|| TYPE_MODE (type
) != mode
)
4313 type
= build_vector_type_for_mode (type
, vmode
);
4314 if (TYPE_MODE (type
) != vmode
)
4316 if (TYPE_ALIGN_UNIT (type
) > al
)
4317 al
= TYPE_ALIGN_UNIT (type
);
4319 return build_int_cst (integer_type_node
, al
);
4323 /* This structure is part of the interface between lower_rec_simd_input_clauses
4324 and lower_rec_input_clauses. */
4326 class omplow_simd_context
{
4328 omplow_simd_context () { memset (this, 0, sizeof (*this)); }
4332 vec
<tree
, va_heap
> simt_eargs
;
4333 gimple_seq simt_dlist
;
4334 poly_uint64_pod max_vf
;
4338 /* Helper function of lower_rec_input_clauses, used for #pragma omp simd
4342 lower_rec_simd_input_clauses (tree new_var
, omp_context
*ctx
,
4343 omplow_simd_context
*sctx
, tree
&ivar
,
4344 tree
&lvar
, tree
*rvar
= NULL
,
4347 if (known_eq (sctx
->max_vf
, 0U))
4349 sctx
->max_vf
= sctx
->is_simt
? omp_max_simt_vf () : omp_max_vf ();
4350 if (maybe_gt (sctx
->max_vf
, 1U))
4352 tree c
= omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
4353 OMP_CLAUSE_SAFELEN
);
4356 poly_uint64 safe_len
;
4357 if (!poly_int_tree_p (OMP_CLAUSE_SAFELEN_EXPR (c
), &safe_len
)
4358 || maybe_lt (safe_len
, 1U))
4361 sctx
->max_vf
= lower_bound (sctx
->max_vf
, safe_len
);
4364 if (maybe_gt (sctx
->max_vf
, 1U))
4366 sctx
->idx
= create_tmp_var (unsigned_type_node
);
4367 sctx
->lane
= create_tmp_var (unsigned_type_node
);
4370 if (known_eq (sctx
->max_vf
, 1U))
4375 if (is_gimple_reg (new_var
))
4377 ivar
= lvar
= new_var
;
4380 tree type
= TREE_TYPE (new_var
), ptype
= build_pointer_type (type
);
4381 ivar
= lvar
= create_tmp_var (type
);
4382 TREE_ADDRESSABLE (ivar
) = 1;
4383 DECL_ATTRIBUTES (ivar
) = tree_cons (get_identifier ("omp simt private"),
4384 NULL
, DECL_ATTRIBUTES (ivar
));
4385 sctx
->simt_eargs
.safe_push (build1 (ADDR_EXPR
, ptype
, ivar
));
4386 tree clobber
= build_clobber (type
);
4387 gimple
*g
= gimple_build_assign (ivar
, clobber
);
4388 gimple_seq_add_stmt (&sctx
->simt_dlist
, g
);
4392 tree atype
= build_array_type_nelts (TREE_TYPE (new_var
), sctx
->max_vf
);
4393 tree avar
= create_tmp_var_raw (atype
);
4394 if (TREE_ADDRESSABLE (new_var
))
4395 TREE_ADDRESSABLE (avar
) = 1;
4396 DECL_ATTRIBUTES (avar
)
4397 = tree_cons (get_identifier ("omp simd array"), NULL
,
4398 DECL_ATTRIBUTES (avar
));
4399 gimple_add_tmp_var (avar
);
4401 if (rvar
&& !ctx
->for_simd_scan_phase
)
4403 /* For inscan reductions, create another array temporary,
4404 which will hold the reduced value. */
4405 iavar
= create_tmp_var_raw (atype
);
4406 if (TREE_ADDRESSABLE (new_var
))
4407 TREE_ADDRESSABLE (iavar
) = 1;
4408 DECL_ATTRIBUTES (iavar
)
4409 = tree_cons (get_identifier ("omp simd array"), NULL
,
4410 tree_cons (get_identifier ("omp simd inscan"), NULL
,
4411 DECL_ATTRIBUTES (iavar
)));
4412 gimple_add_tmp_var (iavar
);
4413 ctx
->cb
.decl_map
->put (avar
, iavar
);
4414 if (sctx
->lastlane
== NULL_TREE
)
4415 sctx
->lastlane
= create_tmp_var (unsigned_type_node
);
4416 *rvar
= build4 (ARRAY_REF
, TREE_TYPE (new_var
), iavar
,
4417 sctx
->lastlane
, NULL_TREE
, NULL_TREE
);
4418 TREE_THIS_NOTRAP (*rvar
) = 1;
4420 if (ctx
->scan_exclusive
)
4422 /* And for exclusive scan yet another one, which will
4423 hold the value during the scan phase. */
4424 tree savar
= create_tmp_var_raw (atype
);
4425 if (TREE_ADDRESSABLE (new_var
))
4426 TREE_ADDRESSABLE (savar
) = 1;
4427 DECL_ATTRIBUTES (savar
)
4428 = tree_cons (get_identifier ("omp simd array"), NULL
,
4429 tree_cons (get_identifier ("omp simd inscan "
4431 DECL_ATTRIBUTES (savar
)));
4432 gimple_add_tmp_var (savar
);
4433 ctx
->cb
.decl_map
->put (iavar
, savar
);
4434 *rvar2
= build4 (ARRAY_REF
, TREE_TYPE (new_var
), savar
,
4435 sctx
->idx
, NULL_TREE
, NULL_TREE
);
4436 TREE_THIS_NOTRAP (*rvar2
) = 1;
4439 ivar
= build4 (ARRAY_REF
, TREE_TYPE (new_var
), iavar
, sctx
->idx
,
4440 NULL_TREE
, NULL_TREE
);
4441 lvar
= build4 (ARRAY_REF
, TREE_TYPE (new_var
), avar
, sctx
->lane
,
4442 NULL_TREE
, NULL_TREE
);
4443 TREE_THIS_NOTRAP (ivar
) = 1;
4444 TREE_THIS_NOTRAP (lvar
) = 1;
4446 if (DECL_P (new_var
))
4448 SET_DECL_VALUE_EXPR (new_var
, lvar
);
4449 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
4454 /* Helper function of lower_rec_input_clauses. For a reference
4455 in simd reduction, add an underlying variable it will reference. */
4458 handle_simd_reference (location_t loc
, tree new_vard
, gimple_seq
*ilist
)
4460 tree z
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_vard
)));
4461 if (TREE_CONSTANT (z
))
4463 z
= create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_vard
)),
4464 get_name (new_vard
));
4465 gimple_add_tmp_var (z
);
4466 TREE_ADDRESSABLE (z
) = 1;
4467 z
= build_fold_addr_expr_loc (loc
, z
);
4468 gimplify_assign (new_vard
, z
, ilist
);
4472 /* Helper function for lower_rec_input_clauses. Emit into ilist sequence
4473 code to emit (type) (tskred_temp[idx]). */
4476 task_reduction_read (gimple_seq
*ilist
, tree tskred_temp
, tree type
,
4479 unsigned HOST_WIDE_INT sz
4480 = tree_to_uhwi (TYPE_SIZE_UNIT (pointer_sized_int_node
));
4481 tree r
= build2 (MEM_REF
, pointer_sized_int_node
,
4482 tskred_temp
, build_int_cst (TREE_TYPE (tskred_temp
),
4484 tree v
= create_tmp_var (pointer_sized_int_node
);
4485 gimple
*g
= gimple_build_assign (v
, r
);
4486 gimple_seq_add_stmt (ilist
, g
);
4487 if (!useless_type_conversion_p (type
, pointer_sized_int_node
))
4489 v
= create_tmp_var (type
);
4490 g
= gimple_build_assign (v
, NOP_EXPR
, gimple_assign_lhs (g
));
4491 gimple_seq_add_stmt (ilist
, g
);
4496 /* Lower early initialization of privatized variable NEW_VAR
4497 if it needs an allocator (has allocate clause). */
4500 lower_private_allocate (tree var
, tree new_var
, tree
&allocator
,
4501 tree
&allocate_ptr
, gimple_seq
*ilist
,
4502 omp_context
*ctx
, bool is_ref
, tree size
)
4506 gcc_assert (allocate_ptr
== NULL_TREE
);
4507 if (ctx
->allocate_map
4508 && (DECL_P (new_var
) || (TYPE_P (new_var
) && size
)))
4509 if (tree
*allocatorp
= ctx
->allocate_map
->get (var
))
4510 allocator
= *allocatorp
;
4511 if (allocator
== NULL_TREE
)
4513 if (!is_ref
&& omp_is_reference (var
))
4515 allocator
= NULL_TREE
;
4519 if (TREE_CODE (allocator
) != INTEGER_CST
)
4520 allocator
= build_outer_var_ref (allocator
, ctx
);
4521 allocator
= fold_convert (pointer_sized_int_node
, allocator
);
4522 if (TREE_CODE (allocator
) != INTEGER_CST
)
4524 tree var
= create_tmp_var (TREE_TYPE (allocator
));
4525 gimplify_assign (var
, allocator
, ilist
);
4529 tree ptr_type
, align
, sz
= size
;
4530 if (TYPE_P (new_var
))
4532 ptr_type
= build_pointer_type (new_var
);
4533 align
= build_int_cst (size_type_node
, TYPE_ALIGN_UNIT (new_var
));
4537 ptr_type
= build_pointer_type (TREE_TYPE (TREE_TYPE (new_var
)));
4538 align
= build_int_cst (size_type_node
,
4539 TYPE_ALIGN_UNIT (TREE_TYPE (ptr_type
)));
4543 ptr_type
= build_pointer_type (TREE_TYPE (new_var
));
4544 align
= build_int_cst (size_type_node
, DECL_ALIGN_UNIT (new_var
));
4545 if (sz
== NULL_TREE
)
4546 sz
= fold_convert (size_type_node
, DECL_SIZE_UNIT (new_var
));
4548 if (TREE_CODE (sz
) != INTEGER_CST
)
4550 tree szvar
= create_tmp_var (size_type_node
);
4551 gimplify_assign (szvar
, sz
, ilist
);
4554 allocate_ptr
= create_tmp_var (ptr_type
);
4555 tree a
= builtin_decl_explicit (BUILT_IN_GOMP_ALLOC
);
4556 gimple
*g
= gimple_build_call (a
, 3, align
, sz
, allocator
);
4557 gimple_call_set_lhs (g
, allocate_ptr
);
4558 gimple_seq_add_stmt (ilist
, g
);
4561 tree x
= build_simple_mem_ref (allocate_ptr
);
4562 TREE_THIS_NOTRAP (x
) = 1;
4563 SET_DECL_VALUE_EXPR (new_var
, x
);
4564 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
4569 /* Generate code to implement the input clauses, FIRSTPRIVATE and COPYIN,
4570 from the receiver (aka child) side and initializers for REFERENCE_TYPE
4571 private variables. Initialization statements go in ILIST, while calls
4572 to destructors go in DLIST. */
4575 lower_rec_input_clauses (tree clauses
, gimple_seq
*ilist
, gimple_seq
*dlist
,
4576 omp_context
*ctx
, struct omp_for_data
*fd
)
4578 tree c
, copyin_seq
, x
, ptr
;
4579 bool copyin_by_ref
= false;
4580 bool lastprivate_firstprivate
= false;
4581 bool reduction_omp_orig_ref
= false;
4583 bool is_simd
= (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
4584 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
);
4585 omplow_simd_context sctx
= omplow_simd_context ();
4586 tree simt_lane
= NULL_TREE
, simtrec
= NULL_TREE
;
4587 tree ivar
= NULL_TREE
, lvar
= NULL_TREE
, uid
= NULL_TREE
;
4588 gimple_seq llist
[4] = { };
4589 tree nonconst_simd_if
= NULL_TREE
;
4592 sctx
.is_simt
= is_simd
&& omp_find_clause (clauses
, OMP_CLAUSE__SIMT_
);
4594 /* Set max_vf=1 (which will later enforce safelen=1) in simd loops
4595 with data sharing clauses referencing variable sized vars. That
4596 is unnecessarily hard to support and very unlikely to result in
4597 vectorized code anyway. */
4599 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
4600 switch (OMP_CLAUSE_CODE (c
))
4602 case OMP_CLAUSE_LINEAR
:
4603 if (OMP_CLAUSE_LINEAR_ARRAY (c
))
4606 case OMP_CLAUSE_PRIVATE
:
4607 case OMP_CLAUSE_FIRSTPRIVATE
:
4608 case OMP_CLAUSE_LASTPRIVATE
:
4609 if (is_variable_sized (OMP_CLAUSE_DECL (c
)))
4611 else if (omp_is_reference (OMP_CLAUSE_DECL (c
)))
4613 tree rtype
= TREE_TYPE (TREE_TYPE (OMP_CLAUSE_DECL (c
)));
4614 if (!TREE_CONSTANT (TYPE_SIZE_UNIT (rtype
)))
4618 case OMP_CLAUSE_REDUCTION
:
4619 case OMP_CLAUSE_IN_REDUCTION
:
4620 if (TREE_CODE (OMP_CLAUSE_DECL (c
)) == MEM_REF
4621 || is_variable_sized (OMP_CLAUSE_DECL (c
)))
4623 else if (omp_is_reference (OMP_CLAUSE_DECL (c
)))
4625 tree rtype
= TREE_TYPE (TREE_TYPE (OMP_CLAUSE_DECL (c
)));
4626 if (!TREE_CONSTANT (TYPE_SIZE_UNIT (rtype
)))
4631 if (integer_zerop (OMP_CLAUSE_IF_EXPR (c
)))
4633 else if (TREE_CODE (OMP_CLAUSE_IF_EXPR (c
)) != INTEGER_CST
)
4634 nonconst_simd_if
= OMP_CLAUSE_IF_EXPR (c
);
4636 case OMP_CLAUSE_SIMDLEN
:
4637 if (integer_onep (OMP_CLAUSE_SIMDLEN_EXPR (c
)))
4640 case OMP_CLAUSE__CONDTEMP_
:
4641 /* FIXME: lastprivate(conditional:) not handled for SIMT yet. */
4649 /* Add a placeholder for simduid. */
4650 if (sctx
.is_simt
&& maybe_ne (sctx
.max_vf
, 1U))
4651 sctx
.simt_eargs
.safe_push (NULL_TREE
);
4653 unsigned task_reduction_cnt
= 0;
4654 unsigned task_reduction_cntorig
= 0;
4655 unsigned task_reduction_cnt_full
= 0;
4656 unsigned task_reduction_cntorig_full
= 0;
4657 unsigned task_reduction_other_cnt
= 0;
4658 tree tskred_atype
= NULL_TREE
, tskred_avar
= NULL_TREE
;
4659 tree tskred_base
= NULL_TREE
, tskred_temp
= NULL_TREE
;
4660 /* Do all the fixed sized types in the first pass, and the variable sized
4661 types in the second pass. This makes sure that the scalar arguments to
4662 the variable sized types are processed before we use them in the
4663 variable sized operations. For task reductions we use 4 passes, in the
4664 first two we ignore them, in the third one gather arguments for
4665 GOMP_task_reduction_remap call and in the last pass actually handle
4666 the task reductions. */
4667 for (pass
= 0; pass
< ((task_reduction_cnt
|| task_reduction_other_cnt
)
4670 if (pass
== 2 && task_reduction_cnt
)
4673 = build_array_type_nelts (ptr_type_node
, task_reduction_cnt
4674 + task_reduction_cntorig
);
4675 tskred_avar
= create_tmp_var_raw (tskred_atype
);
4676 gimple_add_tmp_var (tskred_avar
);
4677 TREE_ADDRESSABLE (tskred_avar
) = 1;
4678 task_reduction_cnt_full
= task_reduction_cnt
;
4679 task_reduction_cntorig_full
= task_reduction_cntorig
;
4681 else if (pass
== 3 && task_reduction_cnt
)
4683 x
= builtin_decl_explicit (BUILT_IN_GOMP_TASK_REDUCTION_REMAP
);
4685 = gimple_build_call (x
, 3, size_int (task_reduction_cnt
),
4686 size_int (task_reduction_cntorig
),
4687 build_fold_addr_expr (tskred_avar
));
4688 gimple_seq_add_stmt (ilist
, g
);
4690 if (pass
== 3 && task_reduction_other_cnt
)
4692 /* For reduction clauses, build
4693 tskred_base = (void *) tskred_temp[2]
4694 + omp_get_thread_num () * tskred_temp[1]
4695 or if tskred_temp[1] is known to be constant, that constant
4696 directly. This is the start of the private reduction copy block
4697 for the current thread. */
4698 tree v
= create_tmp_var (integer_type_node
);
4699 x
= builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM
);
4700 gimple
*g
= gimple_build_call (x
, 0);
4701 gimple_call_set_lhs (g
, v
);
4702 gimple_seq_add_stmt (ilist
, g
);
4703 c
= omp_find_clause (clauses
, OMP_CLAUSE__REDUCTEMP_
);
4704 tskred_temp
= OMP_CLAUSE_DECL (c
);
4705 if (is_taskreg_ctx (ctx
))
4706 tskred_temp
= lookup_decl (tskred_temp
, ctx
);
4707 tree v2
= create_tmp_var (sizetype
);
4708 g
= gimple_build_assign (v2
, NOP_EXPR
, v
);
4709 gimple_seq_add_stmt (ilist
, g
);
4710 if (ctx
->task_reductions
[0])
4711 v
= fold_convert (sizetype
, ctx
->task_reductions
[0]);
4713 v
= task_reduction_read (ilist
, tskred_temp
, sizetype
, 1);
4714 tree v3
= create_tmp_var (sizetype
);
4715 g
= gimple_build_assign (v3
, MULT_EXPR
, v2
, v
);
4716 gimple_seq_add_stmt (ilist
, g
);
4717 v
= task_reduction_read (ilist
, tskred_temp
, ptr_type_node
, 2);
4718 tskred_base
= create_tmp_var (ptr_type_node
);
4719 g
= gimple_build_assign (tskred_base
, POINTER_PLUS_EXPR
, v
, v3
);
4720 gimple_seq_add_stmt (ilist
, g
);
4722 task_reduction_cnt
= 0;
4723 task_reduction_cntorig
= 0;
4724 task_reduction_other_cnt
= 0;
4725 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
4727 enum omp_clause_code c_kind
= OMP_CLAUSE_CODE (c
);
4730 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
4731 bool task_reduction_p
= false;
4732 bool task_reduction_needs_orig_p
= false;
4733 tree cond
= NULL_TREE
;
4734 tree allocator
, allocate_ptr
;
4738 case OMP_CLAUSE_PRIVATE
:
4739 if (OMP_CLAUSE_PRIVATE_DEBUG (c
))
4742 case OMP_CLAUSE_SHARED
:
4743 /* Ignore shared directives in teams construct inside
4744 of target construct. */
4745 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
4746 && !is_host_teams_ctx (ctx
))
4748 if (maybe_lookup_decl (OMP_CLAUSE_DECL (c
), ctx
) == NULL
)
4750 gcc_assert (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
)
4751 || is_global_var (OMP_CLAUSE_DECL (c
)));
4754 case OMP_CLAUSE_FIRSTPRIVATE
:
4755 case OMP_CLAUSE_COPYIN
:
4757 case OMP_CLAUSE_LINEAR
:
4758 if (!OMP_CLAUSE_LINEAR_NO_COPYIN (c
)
4759 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (c
))
4760 lastprivate_firstprivate
= true;
4762 case OMP_CLAUSE_REDUCTION
:
4763 case OMP_CLAUSE_IN_REDUCTION
:
4764 if (is_task_ctx (ctx
) || OMP_CLAUSE_REDUCTION_TASK (c
))
4766 task_reduction_p
= true;
4767 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
4769 task_reduction_other_cnt
++;
4774 task_reduction_cnt
++;
4775 if (OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
))
4777 var
= OMP_CLAUSE_DECL (c
);
4778 /* If var is a global variable that isn't privatized
4779 in outer contexts, we don't need to look up the
4780 original address, it is always the address of the
4781 global variable itself. */
4783 || omp_is_reference (var
)
4785 (maybe_lookup_decl_in_outer_ctx (var
, ctx
)))
4787 task_reduction_needs_orig_p
= true;
4788 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
4789 task_reduction_cntorig
++;
4793 else if (OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
))
4794 reduction_omp_orig_ref
= true;
4796 case OMP_CLAUSE__REDUCTEMP_
:
4797 if (!is_taskreg_ctx (ctx
))
4800 case OMP_CLAUSE__LOOPTEMP_
:
4801 /* Handle _looptemp_/_reductemp_ clauses only on
4806 case OMP_CLAUSE_LASTPRIVATE
:
4807 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
))
4809 lastprivate_firstprivate
= true;
4810 if (pass
!= 0 || is_taskloop_ctx (ctx
))
4813 /* Even without corresponding firstprivate, if
4814 decl is Fortran allocatable, it needs outer var
4817 && lang_hooks
.decls
.omp_private_outer_ref
4818 (OMP_CLAUSE_DECL (c
)))
4819 lastprivate_firstprivate
= true;
4821 case OMP_CLAUSE_ALIGNED
:
4824 var
= OMP_CLAUSE_DECL (c
);
4825 if (TREE_CODE (TREE_TYPE (var
)) == POINTER_TYPE
4826 && !is_global_var (var
))
4828 new_var
= maybe_lookup_decl (var
, ctx
);
4829 if (new_var
== NULL_TREE
)
4830 new_var
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
4831 x
= builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED
);
4832 tree alarg
= omp_clause_aligned_alignment (c
);
4833 alarg
= fold_convert_loc (clause_loc
, size_type_node
, alarg
);
4834 x
= build_call_expr_loc (clause_loc
, x
, 2, new_var
, alarg
);
4835 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
4836 x
= build2 (MODIFY_EXPR
, TREE_TYPE (new_var
), new_var
, x
);
4837 gimplify_and_add (x
, ilist
);
4839 else if (TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
4840 && is_global_var (var
))
4842 tree ptype
= build_pointer_type (TREE_TYPE (var
)), t
, t2
;
4843 new_var
= lookup_decl (var
, ctx
);
4844 t
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
4845 t
= build_fold_addr_expr_loc (clause_loc
, t
);
4846 t2
= builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED
);
4847 tree alarg
= omp_clause_aligned_alignment (c
);
4848 alarg
= fold_convert_loc (clause_loc
, size_type_node
, alarg
);
4849 t
= build_call_expr_loc (clause_loc
, t2
, 2, t
, alarg
);
4850 t
= fold_convert_loc (clause_loc
, ptype
, t
);
4851 x
= create_tmp_var (ptype
);
4852 t
= build2 (MODIFY_EXPR
, ptype
, x
, t
);
4853 gimplify_and_add (t
, ilist
);
4854 t
= build_simple_mem_ref_loc (clause_loc
, x
);
4855 SET_DECL_VALUE_EXPR (new_var
, t
);
4856 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
4859 case OMP_CLAUSE__CONDTEMP_
:
4860 if (is_parallel_ctx (ctx
)
4861 || (is_simd
&& !OMP_CLAUSE__CONDTEMP__ITER (c
)))
4868 if (task_reduction_p
!= (pass
>= 2))
4871 allocator
= NULL_TREE
;
4872 allocate_ptr
= NULL_TREE
;
4873 new_var
= var
= OMP_CLAUSE_DECL (c
);
4874 if ((c_kind
== OMP_CLAUSE_REDUCTION
4875 || c_kind
== OMP_CLAUSE_IN_REDUCTION
)
4876 && TREE_CODE (var
) == MEM_REF
)
4878 var
= TREE_OPERAND (var
, 0);
4879 if (TREE_CODE (var
) == POINTER_PLUS_EXPR
)
4880 var
= TREE_OPERAND (var
, 0);
4881 if (TREE_CODE (var
) == INDIRECT_REF
4882 || TREE_CODE (var
) == ADDR_EXPR
)
4883 var
= TREE_OPERAND (var
, 0);
4884 if (is_variable_sized (var
))
4886 gcc_assert (DECL_HAS_VALUE_EXPR_P (var
));
4887 var
= DECL_VALUE_EXPR (var
);
4888 gcc_assert (TREE_CODE (var
) == INDIRECT_REF
);
4889 var
= TREE_OPERAND (var
, 0);
4890 gcc_assert (DECL_P (var
));
4894 if (c_kind
!= OMP_CLAUSE_COPYIN
)
4895 new_var
= lookup_decl (var
, ctx
);
4897 if (c_kind
== OMP_CLAUSE_SHARED
|| c_kind
== OMP_CLAUSE_COPYIN
)
4902 /* C/C++ array section reductions. */
4903 else if ((c_kind
== OMP_CLAUSE_REDUCTION
4904 || c_kind
== OMP_CLAUSE_IN_REDUCTION
)
4905 && var
!= OMP_CLAUSE_DECL (c
))
4910 tree bias
= TREE_OPERAND (OMP_CLAUSE_DECL (c
), 1);
4911 tree orig_var
= TREE_OPERAND (OMP_CLAUSE_DECL (c
), 0);
4913 if (TREE_CODE (orig_var
) == POINTER_PLUS_EXPR
)
4915 tree b
= TREE_OPERAND (orig_var
, 1);
4916 b
= maybe_lookup_decl (b
, ctx
);
4919 b
= TREE_OPERAND (orig_var
, 1);
4920 b
= maybe_lookup_decl_in_outer_ctx (b
, ctx
);
4922 if (integer_zerop (bias
))
4926 bias
= fold_convert_loc (clause_loc
,
4927 TREE_TYPE (b
), bias
);
4928 bias
= fold_build2_loc (clause_loc
, PLUS_EXPR
,
4929 TREE_TYPE (b
), b
, bias
);
4931 orig_var
= TREE_OPERAND (orig_var
, 0);
4935 tree out
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
4936 if (is_global_var (out
)
4937 && TREE_CODE (TREE_TYPE (out
)) != POINTER_TYPE
4938 && (TREE_CODE (TREE_TYPE (out
)) != REFERENCE_TYPE
4939 || (TREE_CODE (TREE_TYPE (TREE_TYPE (out
)))
4944 bool by_ref
= use_pointer_for_field (var
, NULL
);
4945 x
= build_receiver_ref (var
, by_ref
, ctx
);
4946 if (TREE_CODE (TREE_TYPE (var
)) == REFERENCE_TYPE
4947 && (TREE_CODE (TREE_TYPE (TREE_TYPE (var
)))
4949 x
= build_fold_addr_expr (x
);
4951 if (TREE_CODE (orig_var
) == INDIRECT_REF
)
4952 x
= build_simple_mem_ref (x
);
4953 else if (TREE_CODE (orig_var
) == ADDR_EXPR
)
4955 if (var
== TREE_OPERAND (orig_var
, 0))
4956 x
= build_fold_addr_expr (x
);
4958 bias
= fold_convert (sizetype
, bias
);
4959 x
= fold_convert (ptr_type_node
, x
);
4960 x
= fold_build2_loc (clause_loc
, POINTER_PLUS_EXPR
,
4961 TREE_TYPE (x
), x
, bias
);
4962 unsigned cnt
= task_reduction_cnt
- 1;
4963 if (!task_reduction_needs_orig_p
)
4964 cnt
+= (task_reduction_cntorig_full
4965 - task_reduction_cntorig
);
4967 cnt
= task_reduction_cntorig
- 1;
4968 tree r
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
4969 size_int (cnt
), NULL_TREE
, NULL_TREE
);
4970 gimplify_assign (r
, x
, ilist
);
4974 if (TREE_CODE (orig_var
) == INDIRECT_REF
4975 || TREE_CODE (orig_var
) == ADDR_EXPR
)
4976 orig_var
= TREE_OPERAND (orig_var
, 0);
4977 tree d
= OMP_CLAUSE_DECL (c
);
4978 tree type
= TREE_TYPE (d
);
4979 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
4980 tree v
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
4982 const char *name
= get_name (orig_var
);
4983 if (pass
!= 3 && !TREE_CONSTANT (v
))
4985 tree t
= maybe_lookup_decl (v
, ctx
);
4989 v
= maybe_lookup_decl_in_outer_ctx (v
, ctx
);
4990 gimplify_expr (&v
, ilist
, NULL
, is_gimple_val
, fb_rvalue
);
4991 t
= fold_build2_loc (clause_loc
, PLUS_EXPR
,
4993 build_int_cst (TREE_TYPE (v
), 1));
4994 sz
= fold_build2_loc (clause_loc
, MULT_EXPR
,
4996 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5000 tree xv
= create_tmp_var (ptr_type_node
);
5001 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
5003 unsigned cnt
= task_reduction_cnt
- 1;
5004 if (!task_reduction_needs_orig_p
)
5005 cnt
+= (task_reduction_cntorig_full
5006 - task_reduction_cntorig
);
5008 cnt
= task_reduction_cntorig
- 1;
5009 x
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
5010 size_int (cnt
), NULL_TREE
, NULL_TREE
);
5012 gimple
*g
= gimple_build_assign (xv
, x
);
5013 gimple_seq_add_stmt (ilist
, g
);
5017 unsigned int idx
= *ctx
->task_reduction_map
->get (c
);
5019 if (ctx
->task_reductions
[1 + idx
])
5020 off
= fold_convert (sizetype
,
5021 ctx
->task_reductions
[1 + idx
]);
5023 off
= task_reduction_read (ilist
, tskred_temp
, sizetype
,
5025 gimple
*g
= gimple_build_assign (xv
, POINTER_PLUS_EXPR
,
5027 gimple_seq_add_stmt (ilist
, g
);
5029 x
= fold_convert (build_pointer_type (boolean_type_node
),
5031 if (TREE_CONSTANT (v
))
5032 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (x
), x
,
5033 TYPE_SIZE_UNIT (type
));
5036 tree t
= maybe_lookup_decl (v
, ctx
);
5040 v
= maybe_lookup_decl_in_outer_ctx (v
, ctx
);
5041 gimplify_expr (&v
, ilist
, NULL
, is_gimple_val
,
5043 t
= fold_build2_loc (clause_loc
, PLUS_EXPR
,
5045 build_int_cst (TREE_TYPE (v
), 1));
5046 t
= fold_build2_loc (clause_loc
, MULT_EXPR
,
5048 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5049 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (x
), x
, t
);
5051 cond
= create_tmp_var (TREE_TYPE (x
));
5052 gimplify_assign (cond
, x
, ilist
);
5055 else if (lower_private_allocate (var
, type
, allocator
,
5056 allocate_ptr
, ilist
, ctx
,
5059 ? TYPE_SIZE_UNIT (type
)
5062 else if (TREE_CONSTANT (v
))
5064 x
= create_tmp_var_raw (type
, name
);
5065 gimple_add_tmp_var (x
);
5066 TREE_ADDRESSABLE (x
) = 1;
5067 x
= build_fold_addr_expr_loc (clause_loc
, x
);
5072 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
5073 tree al
= size_int (TYPE_ALIGN (TREE_TYPE (type
)));
5074 x
= build_call_expr_loc (clause_loc
, atmp
, 2, sz
, al
);
5077 tree ptype
= build_pointer_type (TREE_TYPE (type
));
5078 x
= fold_convert_loc (clause_loc
, ptype
, x
);
5079 tree y
= create_tmp_var (ptype
, name
);
5080 gimplify_assign (y
, x
, ilist
);
5084 if (!integer_zerop (bias
))
5086 bias
= fold_convert_loc (clause_loc
, pointer_sized_int_node
,
5088 yb
= fold_convert_loc (clause_loc
, pointer_sized_int_node
,
5090 yb
= fold_build2_loc (clause_loc
, MINUS_EXPR
,
5091 pointer_sized_int_node
, yb
, bias
);
5092 x
= fold_convert_loc (clause_loc
, TREE_TYPE (x
), yb
);
5093 yb
= create_tmp_var (ptype
, name
);
5094 gimplify_assign (yb
, x
, ilist
);
5098 d
= TREE_OPERAND (d
, 0);
5099 if (TREE_CODE (d
) == POINTER_PLUS_EXPR
)
5100 d
= TREE_OPERAND (d
, 0);
5101 if (TREE_CODE (d
) == ADDR_EXPR
)
5103 if (orig_var
!= var
)
5105 gcc_assert (is_variable_sized (orig_var
));
5106 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
),
5108 gimplify_assign (new_var
, x
, ilist
);
5109 tree new_orig_var
= lookup_decl (orig_var
, ctx
);
5110 tree t
= build_fold_indirect_ref (new_var
);
5111 DECL_IGNORED_P (new_var
) = 0;
5112 TREE_THIS_NOTRAP (t
) = 1;
5113 SET_DECL_VALUE_EXPR (new_orig_var
, t
);
5114 DECL_HAS_VALUE_EXPR_P (new_orig_var
) = 1;
5118 x
= build2 (MEM_REF
, TREE_TYPE (new_var
), x
,
5119 build_int_cst (ptype
, 0));
5120 SET_DECL_VALUE_EXPR (new_var
, x
);
5121 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
5126 gcc_assert (orig_var
== var
);
5127 if (TREE_CODE (d
) == INDIRECT_REF
)
5129 x
= create_tmp_var (ptype
, name
);
5130 TREE_ADDRESSABLE (x
) = 1;
5131 gimplify_assign (x
, yb
, ilist
);
5132 x
= build_fold_addr_expr_loc (clause_loc
, x
);
5134 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
5135 gimplify_assign (new_var
, x
, ilist
);
5137 /* GOMP_taskgroup_reduction_register memsets the whole
5138 array to zero. If the initializer is zero, we don't
5139 need to initialize it again, just mark it as ever
5140 used unconditionally, i.e. cond = true. */
5142 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) == NULL_TREE
5143 && initializer_zerop (omp_reduction_init (c
,
5146 gimple
*g
= gimple_build_assign (build_simple_mem_ref (cond
),
5148 gimple_seq_add_stmt (ilist
, g
);
5151 tree end
= create_artificial_label (UNKNOWN_LOCATION
);
5155 if (!is_parallel_ctx (ctx
))
5157 tree condv
= create_tmp_var (boolean_type_node
);
5158 g
= gimple_build_assign (condv
,
5159 build_simple_mem_ref (cond
));
5160 gimple_seq_add_stmt (ilist
, g
);
5161 tree lab1
= create_artificial_label (UNKNOWN_LOCATION
);
5162 g
= gimple_build_cond (NE_EXPR
, condv
,
5163 boolean_false_node
, end
, lab1
);
5164 gimple_seq_add_stmt (ilist
, g
);
5165 gimple_seq_add_stmt (ilist
, gimple_build_label (lab1
));
5167 g
= gimple_build_assign (build_simple_mem_ref (cond
),
5169 gimple_seq_add_stmt (ilist
, g
);
5172 tree y1
= create_tmp_var (ptype
);
5173 gimplify_assign (y1
, y
, ilist
);
5174 tree i2
= NULL_TREE
, y2
= NULL_TREE
;
5175 tree body2
= NULL_TREE
, end2
= NULL_TREE
;
5176 tree y3
= NULL_TREE
, y4
= NULL_TREE
;
5177 if (task_reduction_needs_orig_p
)
5179 y3
= create_tmp_var (ptype
);
5181 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
5182 ref
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
5183 size_int (task_reduction_cnt_full
5184 + task_reduction_cntorig
- 1),
5185 NULL_TREE
, NULL_TREE
);
5188 unsigned int idx
= *ctx
->task_reduction_map
->get (c
);
5189 ref
= task_reduction_read (ilist
, tskred_temp
, ptype
,
5192 gimplify_assign (y3
, ref
, ilist
);
5194 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) || is_simd
)
5198 y2
= create_tmp_var (ptype
);
5199 gimplify_assign (y2
, y
, ilist
);
5201 if (is_simd
|| OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
))
5203 tree ref
= build_outer_var_ref (var
, ctx
);
5204 /* For ref build_outer_var_ref already performs this. */
5205 if (TREE_CODE (d
) == INDIRECT_REF
)
5206 gcc_assert (omp_is_reference (var
));
5207 else if (TREE_CODE (d
) == ADDR_EXPR
)
5208 ref
= build_fold_addr_expr (ref
);
5209 else if (omp_is_reference (var
))
5210 ref
= build_fold_addr_expr (ref
);
5211 ref
= fold_convert_loc (clause_loc
, ptype
, ref
);
5212 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
)
5213 && OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
))
5215 y3
= create_tmp_var (ptype
);
5216 gimplify_assign (y3
, unshare_expr (ref
), ilist
);
5220 y4
= create_tmp_var (ptype
);
5221 gimplify_assign (y4
, ref
, dlist
);
5225 tree i
= create_tmp_var (TREE_TYPE (v
));
5226 gimplify_assign (i
, build_int_cst (TREE_TYPE (v
), 0), ilist
);
5227 tree body
= create_artificial_label (UNKNOWN_LOCATION
);
5228 gimple_seq_add_stmt (ilist
, gimple_build_label (body
));
5231 i2
= create_tmp_var (TREE_TYPE (v
));
5232 gimplify_assign (i2
, build_int_cst (TREE_TYPE (v
), 0), dlist
);
5233 body2
= create_artificial_label (UNKNOWN_LOCATION
);
5234 end2
= create_artificial_label (UNKNOWN_LOCATION
);
5235 gimple_seq_add_stmt (dlist
, gimple_build_label (body2
));
5237 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
5239 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
5240 tree decl_placeholder
5241 = OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
);
5242 SET_DECL_VALUE_EXPR (decl_placeholder
,
5243 build_simple_mem_ref (y1
));
5244 DECL_HAS_VALUE_EXPR_P (decl_placeholder
) = 1;
5245 SET_DECL_VALUE_EXPR (placeholder
,
5246 y3
? build_simple_mem_ref (y3
)
5248 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
5249 x
= lang_hooks
.decls
.omp_clause_default_ctor
5250 (c
, build_simple_mem_ref (y1
),
5251 y3
? build_simple_mem_ref (y3
) : NULL_TREE
);
5253 gimplify_and_add (x
, ilist
);
5254 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
5256 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
5257 lower_omp (&tseq
, ctx
);
5258 gimple_seq_add_seq (ilist
, tseq
);
5260 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
5263 SET_DECL_VALUE_EXPR (decl_placeholder
,
5264 build_simple_mem_ref (y2
));
5265 SET_DECL_VALUE_EXPR (placeholder
,
5266 build_simple_mem_ref (y4
));
5267 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
5268 lower_omp (&tseq
, ctx
);
5269 gimple_seq_add_seq (dlist
, tseq
);
5270 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
5272 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
5273 DECL_HAS_VALUE_EXPR_P (decl_placeholder
) = 0;
5276 x
= lang_hooks
.decls
.omp_clause_dtor
5277 (c
, build_simple_mem_ref (y2
));
5279 gimplify_and_add (x
, dlist
);
5284 x
= omp_reduction_init (c
, TREE_TYPE (type
));
5285 enum tree_code code
= OMP_CLAUSE_REDUCTION_CODE (c
);
5287 /* reduction(-:var) sums up the partial results, so it
5288 acts identically to reduction(+:var). */
5289 if (code
== MINUS_EXPR
)
5292 gimplify_assign (build_simple_mem_ref (y1
), x
, ilist
);
5295 x
= build2 (code
, TREE_TYPE (type
),
5296 build_simple_mem_ref (y4
),
5297 build_simple_mem_ref (y2
));
5298 gimplify_assign (build_simple_mem_ref (y4
), x
, dlist
);
5302 = gimple_build_assign (y1
, POINTER_PLUS_EXPR
, y1
,
5303 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5304 gimple_seq_add_stmt (ilist
, g
);
5307 g
= gimple_build_assign (y3
, POINTER_PLUS_EXPR
, y3
,
5308 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5309 gimple_seq_add_stmt (ilist
, g
);
5311 g
= gimple_build_assign (i
, PLUS_EXPR
, i
,
5312 build_int_cst (TREE_TYPE (i
), 1));
5313 gimple_seq_add_stmt (ilist
, g
);
5314 g
= gimple_build_cond (LE_EXPR
, i
, v
, body
, end
);
5315 gimple_seq_add_stmt (ilist
, g
);
5316 gimple_seq_add_stmt (ilist
, gimple_build_label (end
));
5319 g
= gimple_build_assign (y2
, POINTER_PLUS_EXPR
, y2
,
5320 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5321 gimple_seq_add_stmt (dlist
, g
);
5324 g
= gimple_build_assign
5325 (y4
, POINTER_PLUS_EXPR
, y4
,
5326 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5327 gimple_seq_add_stmt (dlist
, g
);
5329 g
= gimple_build_assign (i2
, PLUS_EXPR
, i2
,
5330 build_int_cst (TREE_TYPE (i2
), 1));
5331 gimple_seq_add_stmt (dlist
, g
);
5332 g
= gimple_build_cond (LE_EXPR
, i2
, v
, body2
, end2
);
5333 gimple_seq_add_stmt (dlist
, g
);
5334 gimple_seq_add_stmt (dlist
, gimple_build_label (end2
));
5338 tree f
= builtin_decl_explicit (BUILT_IN_GOMP_FREE
);
5339 g
= gimple_build_call (f
, 2, allocate_ptr
, allocator
);
5340 gimple_seq_add_stmt (dlist
, g
);
5346 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var
, ctx
)))
5350 bool by_ref
= use_pointer_for_field (var
, ctx
);
5351 x
= build_receiver_ref (var
, by_ref
, ctx
);
5353 if (!omp_is_reference (var
))
5354 x
= build_fold_addr_expr (x
);
5355 x
= fold_convert (ptr_type_node
, x
);
5356 unsigned cnt
= task_reduction_cnt
- 1;
5357 if (!task_reduction_needs_orig_p
)
5358 cnt
+= task_reduction_cntorig_full
- task_reduction_cntorig
;
5360 cnt
= task_reduction_cntorig
- 1;
5361 tree r
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
5362 size_int (cnt
), NULL_TREE
, NULL_TREE
);
5363 gimplify_assign (r
, x
, ilist
);
5368 tree type
= TREE_TYPE (new_var
);
5369 if (!omp_is_reference (var
))
5370 type
= build_pointer_type (type
);
5371 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
5373 unsigned cnt
= task_reduction_cnt
- 1;
5374 if (!task_reduction_needs_orig_p
)
5375 cnt
+= (task_reduction_cntorig_full
5376 - task_reduction_cntorig
);
5378 cnt
= task_reduction_cntorig
- 1;
5379 x
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
5380 size_int (cnt
), NULL_TREE
, NULL_TREE
);
5384 unsigned int idx
= *ctx
->task_reduction_map
->get (c
);
5386 if (ctx
->task_reductions
[1 + idx
])
5387 off
= fold_convert (sizetype
,
5388 ctx
->task_reductions
[1 + idx
]);
5390 off
= task_reduction_read (ilist
, tskred_temp
, sizetype
,
5392 x
= fold_build2 (POINTER_PLUS_EXPR
, ptr_type_node
,
5395 x
= fold_convert (type
, x
);
5397 if (omp_is_reference (var
))
5399 gimplify_assign (new_var
, x
, ilist
);
5401 new_var
= build_simple_mem_ref (new_var
);
5405 t
= create_tmp_var (type
);
5406 gimplify_assign (t
, x
, ilist
);
5407 SET_DECL_VALUE_EXPR (new_var
, build_simple_mem_ref (t
));
5408 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
5410 t
= fold_convert (build_pointer_type (boolean_type_node
), t
);
5411 t
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (t
), t
,
5412 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
5413 cond
= create_tmp_var (TREE_TYPE (t
));
5414 gimplify_assign (cond
, t
, ilist
);
5416 else if (is_variable_sized (var
))
5418 /* For variable sized types, we need to allocate the
5419 actual storage here. Call alloca and store the
5420 result in the pointer decl that we created elsewhere. */
5424 if (c_kind
!= OMP_CLAUSE_FIRSTPRIVATE
|| !is_task_ctx (ctx
))
5428 ptr
= DECL_VALUE_EXPR (new_var
);
5429 gcc_assert (TREE_CODE (ptr
) == INDIRECT_REF
);
5430 ptr
= TREE_OPERAND (ptr
, 0);
5431 gcc_assert (DECL_P (ptr
));
5432 x
= TYPE_SIZE_UNIT (TREE_TYPE (new_var
));
5434 if (lower_private_allocate (var
, new_var
, allocator
,
5435 allocate_ptr
, ilist
, ctx
,
5440 /* void *tmp = __builtin_alloca */
5442 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
5444 = gimple_build_call (atmp
, 2, x
,
5445 size_int (DECL_ALIGN (var
)));
5446 cfun
->calls_alloca
= 1;
5447 tmp
= create_tmp_var_raw (ptr_type_node
);
5448 gimple_add_tmp_var (tmp
);
5449 gimple_call_set_lhs (stmt
, tmp
);
5451 gimple_seq_add_stmt (ilist
, stmt
);
5454 x
= fold_convert_loc (clause_loc
, TREE_TYPE (ptr
), tmp
);
5455 gimplify_assign (ptr
, x
, ilist
);
5458 else if (omp_is_reference (var
)
5459 && (c_kind
!= OMP_CLAUSE_FIRSTPRIVATE
5460 || !OMP_CLAUSE_FIRSTPRIVATE_NO_REFERENCE (c
)))
5462 /* For references that are being privatized for Fortran,
5463 allocate new backing storage for the new pointer
5464 variable. This allows us to avoid changing all the
5465 code that expects a pointer to something that expects
5466 a direct variable. */
5470 x
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_var
)));
5471 if (c_kind
== OMP_CLAUSE_FIRSTPRIVATE
&& is_task_ctx (ctx
))
5473 x
= build_receiver_ref (var
, false, ctx
);
5474 if (ctx
->allocate_map
)
5475 if (tree
*allocatep
= ctx
->allocate_map
->get (var
))
5477 allocator
= *allocatep
;
5478 if (TREE_CODE (allocator
) != INTEGER_CST
)
5479 allocator
= build_outer_var_ref (allocator
, ctx
);
5480 allocator
= fold_convert (pointer_sized_int_node
,
5482 allocate_ptr
= unshare_expr (x
);
5484 if (allocator
== NULL_TREE
)
5485 x
= build_fold_addr_expr_loc (clause_loc
, x
);
5487 else if (lower_private_allocate (var
, new_var
, allocator
,
5489 ilist
, ctx
, true, x
))
5491 else if (TREE_CONSTANT (x
))
5493 /* For reduction in SIMD loop, defer adding the
5494 initialization of the reference, because if we decide
5495 to use SIMD array for it, the initilization could cause
5496 expansion ICE. Ditto for other privatization clauses. */
5501 x
= create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_var
)),
5503 gimple_add_tmp_var (x
);
5504 TREE_ADDRESSABLE (x
) = 1;
5505 x
= build_fold_addr_expr_loc (clause_loc
, x
);
5511 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
5512 tree rtype
= TREE_TYPE (TREE_TYPE (new_var
));
5513 tree al
= size_int (TYPE_ALIGN (rtype
));
5514 x
= build_call_expr_loc (clause_loc
, atmp
, 2, x
, al
);
5519 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
5520 gimplify_assign (new_var
, x
, ilist
);
5523 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
5525 else if ((c_kind
== OMP_CLAUSE_REDUCTION
5526 || c_kind
== OMP_CLAUSE_IN_REDUCTION
)
5527 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
5535 switch (OMP_CLAUSE_CODE (c
))
5537 case OMP_CLAUSE_SHARED
:
5538 /* Ignore shared directives in teams construct inside
5539 target construct. */
5540 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_TEAMS
5541 && !is_host_teams_ctx (ctx
))
5543 /* Shared global vars are just accessed directly. */
5544 if (is_global_var (new_var
))
5546 /* For taskloop firstprivate/lastprivate, represented
5547 as firstprivate and shared clause on the task, new_var
5548 is the firstprivate var. */
5549 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
5551 /* Set up the DECL_VALUE_EXPR for shared variables now. This
5552 needs to be delayed until after fixup_child_record_type so
5553 that we get the correct type during the dereference. */
5554 by_ref
= use_pointer_for_field (var
, ctx
);
5555 x
= build_receiver_ref (var
, by_ref
, ctx
);
5556 SET_DECL_VALUE_EXPR (new_var
, x
);
5557 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
5559 /* ??? If VAR is not passed by reference, and the variable
5560 hasn't been initialized yet, then we'll get a warning for
5561 the store into the omp_data_s structure. Ideally, we'd be
5562 able to notice this and not store anything at all, but
5563 we're generating code too early. Suppress the warning. */
5565 TREE_NO_WARNING (var
) = 1;
5568 case OMP_CLAUSE__CONDTEMP_
:
5569 if (is_parallel_ctx (ctx
))
5571 x
= build_receiver_ref (var
, false, ctx
);
5572 SET_DECL_VALUE_EXPR (new_var
, x
);
5573 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
5575 else if (is_simd
&& !OMP_CLAUSE__CONDTEMP__ITER (c
))
5577 x
= build_zero_cst (TREE_TYPE (var
));
5582 case OMP_CLAUSE_LASTPRIVATE
:
5583 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
))
5587 case OMP_CLAUSE_PRIVATE
:
5588 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_PRIVATE
)
5589 x
= build_outer_var_ref (var
, ctx
);
5590 else if (OMP_CLAUSE_PRIVATE_OUTER_REF (c
))
5592 if (is_task_ctx (ctx
))
5593 x
= build_receiver_ref (var
, false, ctx
);
5595 x
= build_outer_var_ref (var
, ctx
, OMP_CLAUSE_PRIVATE
);
5603 lower_private_allocate (var
, new_var
, allocator
, allocate_ptr
,
5604 ilist
, ctx
, false, NULL_TREE
);
5605 nx
= unshare_expr (new_var
);
5607 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
5608 && OMP_CLAUSE_LASTPRIVATE_LOOP_IV (c
))
5611 nx
= lang_hooks
.decls
.omp_clause_copy_ctor (c
, nx
, x
);
5613 nx
= lang_hooks
.decls
.omp_clause_default_ctor (c
, nx
, x
);
5616 tree y
= lang_hooks
.decls
.omp_clause_dtor (c
, new_var
);
5617 if ((TREE_ADDRESSABLE (new_var
) || nx
|| y
5618 || (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
5619 && (gimple_omp_for_collapse (ctx
->stmt
) != 1
5620 || (gimple_omp_for_index (ctx
->stmt
, 0)
5622 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE__CONDTEMP_
5623 || omp_is_reference (var
))
5624 && lower_rec_simd_input_clauses (new_var
, ctx
, &sctx
,
5627 if (omp_is_reference (var
))
5629 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
5630 tree new_vard
= TREE_OPERAND (new_var
, 0);
5631 gcc_assert (DECL_P (new_vard
));
5632 SET_DECL_VALUE_EXPR (new_vard
,
5633 build_fold_addr_expr (lvar
));
5634 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
5639 tree iv
= unshare_expr (ivar
);
5641 x
= lang_hooks
.decls
.omp_clause_copy_ctor (c
, iv
,
5644 x
= lang_hooks
.decls
.omp_clause_default_ctor (c
,
5648 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE__CONDTEMP_
)
5650 x
= build2 (MODIFY_EXPR
, TREE_TYPE (ivar
),
5651 unshare_expr (ivar
), x
);
5655 gimplify_and_add (x
, &llist
[0]);
5656 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
5657 && OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (c
))
5662 gcc_assert (TREE_CODE (v
) == MEM_REF
);
5663 v
= TREE_OPERAND (v
, 0);
5664 gcc_assert (DECL_P (v
));
5666 v
= *ctx
->lastprivate_conditional_map
->get (v
);
5667 tree t
= create_tmp_var (TREE_TYPE (v
));
5668 tree z
= build_zero_cst (TREE_TYPE (v
));
5670 = build_outer_var_ref (var
, ctx
,
5671 OMP_CLAUSE_LASTPRIVATE
);
5672 gimple_seq_add_stmt (dlist
,
5673 gimple_build_assign (t
, z
));
5674 gcc_assert (DECL_HAS_VALUE_EXPR_P (v
));
5675 tree civar
= DECL_VALUE_EXPR (v
);
5676 gcc_assert (TREE_CODE (civar
) == ARRAY_REF
);
5677 civar
= unshare_expr (civar
);
5678 TREE_OPERAND (civar
, 1) = sctx
.idx
;
5679 x
= build2 (MODIFY_EXPR
, TREE_TYPE (t
), t
,
5680 unshare_expr (civar
));
5681 x
= build2 (COMPOUND_EXPR
, TREE_TYPE (orig_v
), x
,
5682 build2 (MODIFY_EXPR
, TREE_TYPE (orig_v
),
5683 orig_v
, unshare_expr (ivar
)));
5684 tree cond
= build2 (LT_EXPR
, boolean_type_node
, t
,
5686 x
= build3 (COND_EXPR
, void_type_node
, cond
, x
,
5688 gimple_seq tseq
= NULL
;
5689 gimplify_and_add (x
, &tseq
);
5691 lower_omp (&tseq
, ctx
->outer
);
5692 gimple_seq_add_seq (&llist
[1], tseq
);
5694 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
5695 && ctx
->for_simd_scan_phase
)
5697 x
= unshare_expr (ivar
);
5699 = build_outer_var_ref (var
, ctx
,
5700 OMP_CLAUSE_LASTPRIVATE
);
5701 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
,
5703 gimplify_and_add (x
, &llist
[0]);
5707 y
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar
);
5709 gimplify_and_add (y
, &llist
[1]);
5713 if (omp_is_reference (var
))
5715 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
5716 tree new_vard
= TREE_OPERAND (new_var
, 0);
5717 gcc_assert (DECL_P (new_vard
));
5718 tree type
= TREE_TYPE (TREE_TYPE (new_vard
));
5719 x
= TYPE_SIZE_UNIT (type
);
5720 if (TREE_CONSTANT (x
))
5722 x
= create_tmp_var_raw (type
, get_name (var
));
5723 gimple_add_tmp_var (x
);
5724 TREE_ADDRESSABLE (x
) = 1;
5725 x
= build_fold_addr_expr_loc (clause_loc
, x
);
5726 x
= fold_convert_loc (clause_loc
,
5727 TREE_TYPE (new_vard
), x
);
5728 gimplify_assign (new_vard
, x
, ilist
);
5733 gimplify_and_add (nx
, ilist
);
5734 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
5736 && ctx
->for_simd_scan_phase
)
5738 tree orig_v
= build_outer_var_ref (var
, ctx
,
5739 OMP_CLAUSE_LASTPRIVATE
);
5740 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, new_var
,
5742 gimplify_and_add (x
, ilist
);
5747 x
= lang_hooks
.decls
.omp_clause_dtor (c
, new_var
);
5749 gimplify_and_add (x
, dlist
);
5752 if (!is_gimple_val (allocator
))
5754 tree avar
= create_tmp_var (TREE_TYPE (allocator
));
5755 gimplify_assign (avar
, allocator
, dlist
);
5758 if (!is_gimple_val (allocate_ptr
))
5760 tree apvar
= create_tmp_var (TREE_TYPE (allocate_ptr
));
5761 gimplify_assign (apvar
, allocate_ptr
, dlist
);
5762 allocate_ptr
= apvar
;
5764 tree f
= builtin_decl_explicit (BUILT_IN_GOMP_FREE
);
5766 = gimple_build_call (f
, 2, allocate_ptr
, allocator
);
5767 gimple_seq_add_stmt (dlist
, g
);
5771 case OMP_CLAUSE_LINEAR
:
5772 if (!OMP_CLAUSE_LINEAR_NO_COPYIN (c
))
5773 goto do_firstprivate
;
5774 if (OMP_CLAUSE_LINEAR_NO_COPYOUT (c
))
5777 x
= build_outer_var_ref (var
, ctx
);
5780 case OMP_CLAUSE_FIRSTPRIVATE
:
5781 if (is_task_ctx (ctx
))
5783 if ((omp_is_reference (var
)
5784 && !OMP_CLAUSE_FIRSTPRIVATE_NO_REFERENCE (c
))
5785 || is_variable_sized (var
))
5787 else if (is_global_var (maybe_lookup_decl_in_outer_ctx (var
,
5789 || use_pointer_for_field (var
, NULL
))
5791 x
= build_receiver_ref (var
, false, ctx
);
5792 if (ctx
->allocate_map
)
5793 if (tree
*allocatep
= ctx
->allocate_map
->get (var
))
5795 allocator
= *allocatep
;
5796 if (TREE_CODE (allocator
) != INTEGER_CST
)
5797 allocator
= build_outer_var_ref (allocator
, ctx
);
5798 allocator
= fold_convert (pointer_sized_int_node
,
5800 allocate_ptr
= unshare_expr (x
);
5801 x
= build_simple_mem_ref (x
);
5802 TREE_THIS_NOTRAP (x
) = 1;
5804 SET_DECL_VALUE_EXPR (new_var
, x
);
5805 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
5809 if (OMP_CLAUSE_FIRSTPRIVATE_NO_REFERENCE (c
)
5810 && omp_is_reference (var
))
5812 x
= build_outer_var_ref (var
, ctx
);
5813 gcc_assert (TREE_CODE (x
) == MEM_REF
5814 && integer_zerop (TREE_OPERAND (x
, 1)));
5815 x
= TREE_OPERAND (x
, 0);
5816 x
= lang_hooks
.decls
.omp_clause_copy_ctor
5817 (c
, unshare_expr (new_var
), x
);
5818 gimplify_and_add (x
, ilist
);
5822 lower_private_allocate (var
, new_var
, allocator
, allocate_ptr
,
5823 ilist
, ctx
, false, NULL_TREE
);
5824 x
= build_outer_var_ref (var
, ctx
);
5827 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
5828 && gimple_omp_for_combined_into_p (ctx
->stmt
))
5830 tree t
= OMP_CLAUSE_LINEAR_STEP (c
);
5831 tree stept
= TREE_TYPE (t
);
5832 tree ct
= omp_find_clause (clauses
,
5833 OMP_CLAUSE__LOOPTEMP_
);
5835 tree l
= OMP_CLAUSE_DECL (ct
);
5836 tree n1
= fd
->loop
.n1
;
5837 tree step
= fd
->loop
.step
;
5838 tree itype
= TREE_TYPE (l
);
5839 if (POINTER_TYPE_P (itype
))
5840 itype
= signed_type_for (itype
);
5841 l
= fold_build2 (MINUS_EXPR
, itype
, l
, n1
);
5842 if (TYPE_UNSIGNED (itype
)
5843 && fd
->loop
.cond_code
== GT_EXPR
)
5844 l
= fold_build2 (TRUNC_DIV_EXPR
, itype
,
5845 fold_build1 (NEGATE_EXPR
, itype
, l
),
5846 fold_build1 (NEGATE_EXPR
,
5849 l
= fold_build2 (TRUNC_DIV_EXPR
, itype
, l
, step
);
5850 t
= fold_build2 (MULT_EXPR
, stept
,
5851 fold_convert (stept
, l
), t
);
5853 if (OMP_CLAUSE_LINEAR_ARRAY (c
))
5855 if (omp_is_reference (var
))
5857 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
5858 tree new_vard
= TREE_OPERAND (new_var
, 0);
5859 gcc_assert (DECL_P (new_vard
));
5860 tree type
= TREE_TYPE (TREE_TYPE (new_vard
));
5861 nx
= TYPE_SIZE_UNIT (type
);
5862 if (TREE_CONSTANT (nx
))
5864 nx
= create_tmp_var_raw (type
,
5866 gimple_add_tmp_var (nx
);
5867 TREE_ADDRESSABLE (nx
) = 1;
5868 nx
= build_fold_addr_expr_loc (clause_loc
,
5870 nx
= fold_convert_loc (clause_loc
,
5871 TREE_TYPE (new_vard
),
5873 gimplify_assign (new_vard
, nx
, ilist
);
5877 x
= lang_hooks
.decls
.omp_clause_linear_ctor
5879 gimplify_and_add (x
, ilist
);
5883 if (POINTER_TYPE_P (TREE_TYPE (x
)))
5884 x
= fold_build2 (POINTER_PLUS_EXPR
,
5885 TREE_TYPE (x
), x
, t
);
5887 x
= fold_build2 (PLUS_EXPR
, TREE_TYPE (x
), x
, t
);
5890 if ((OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_LINEAR
5891 || TREE_ADDRESSABLE (new_var
)
5892 || omp_is_reference (var
))
5893 && lower_rec_simd_input_clauses (new_var
, ctx
, &sctx
,
5896 if (omp_is_reference (var
))
5898 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
5899 tree new_vard
= TREE_OPERAND (new_var
, 0);
5900 gcc_assert (DECL_P (new_vard
));
5901 SET_DECL_VALUE_EXPR (new_vard
,
5902 build_fold_addr_expr (lvar
));
5903 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
5905 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
)
5907 tree iv
= create_tmp_var (TREE_TYPE (new_var
));
5908 x
= lang_hooks
.decls
.omp_clause_copy_ctor (c
, iv
, x
);
5909 gimplify_and_add (x
, ilist
);
5910 gimple_stmt_iterator gsi
5911 = gsi_start_1 (gimple_omp_body_ptr (ctx
->stmt
));
5913 = gimple_build_assign (unshare_expr (lvar
), iv
);
5914 gsi_insert_before_without_update (&gsi
, g
,
5916 tree t
= OMP_CLAUSE_LINEAR_STEP (c
);
5917 enum tree_code code
= PLUS_EXPR
;
5918 if (POINTER_TYPE_P (TREE_TYPE (new_var
)))
5919 code
= POINTER_PLUS_EXPR
;
5920 g
= gimple_build_assign (iv
, code
, iv
, t
);
5921 gsi_insert_before_without_update (&gsi
, g
,
5925 x
= lang_hooks
.decls
.omp_clause_copy_ctor
5926 (c
, unshare_expr (ivar
), x
);
5927 gimplify_and_add (x
, &llist
[0]);
5928 x
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar
);
5930 gimplify_and_add (x
, &llist
[1]);
5933 if (omp_is_reference (var
))
5935 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
5936 tree new_vard
= TREE_OPERAND (new_var
, 0);
5937 gcc_assert (DECL_P (new_vard
));
5938 tree type
= TREE_TYPE (TREE_TYPE (new_vard
));
5939 nx
= TYPE_SIZE_UNIT (type
);
5940 if (TREE_CONSTANT (nx
))
5942 nx
= create_tmp_var_raw (type
, get_name (var
));
5943 gimple_add_tmp_var (nx
);
5944 TREE_ADDRESSABLE (nx
) = 1;
5945 nx
= build_fold_addr_expr_loc (clause_loc
, nx
);
5946 nx
= fold_convert_loc (clause_loc
,
5947 TREE_TYPE (new_vard
), nx
);
5948 gimplify_assign (new_vard
, nx
, ilist
);
5952 x
= lang_hooks
.decls
.omp_clause_copy_ctor
5953 (c
, unshare_expr (new_var
), x
);
5954 gimplify_and_add (x
, ilist
);
5957 case OMP_CLAUSE__LOOPTEMP_
:
5958 case OMP_CLAUSE__REDUCTEMP_
:
5959 gcc_assert (is_taskreg_ctx (ctx
));
5960 x
= build_outer_var_ref (var
, ctx
);
5961 x
= build2 (MODIFY_EXPR
, TREE_TYPE (new_var
), new_var
, x
);
5962 gimplify_and_add (x
, ilist
);
5965 case OMP_CLAUSE_COPYIN
:
5966 by_ref
= use_pointer_for_field (var
, NULL
);
5967 x
= build_receiver_ref (var
, by_ref
, ctx
);
5968 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, new_var
, x
);
5969 append_to_statement_list (x
, ©in_seq
);
5970 copyin_by_ref
|= by_ref
;
5973 case OMP_CLAUSE_REDUCTION
:
5974 case OMP_CLAUSE_IN_REDUCTION
:
5975 /* OpenACC reductions are initialized using the
5976 GOACC_REDUCTION internal function. */
5977 if (is_gimple_omp_oacc (ctx
->stmt
))
5979 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
5981 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
5983 tree ptype
= TREE_TYPE (placeholder
);
5986 x
= error_mark_node
;
5987 if (OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
)
5988 && !task_reduction_needs_orig_p
)
5990 else if (OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
))
5992 tree pptype
= build_pointer_type (ptype
);
5993 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
)
5994 x
= build4 (ARRAY_REF
, ptr_type_node
, tskred_avar
,
5995 size_int (task_reduction_cnt_full
5996 + task_reduction_cntorig
- 1),
5997 NULL_TREE
, NULL_TREE
);
6001 = *ctx
->task_reduction_map
->get (c
);
6002 x
= task_reduction_read (ilist
, tskred_temp
,
6003 pptype
, 7 + 3 * idx
);
6005 x
= fold_convert (pptype
, x
);
6006 x
= build_simple_mem_ref (x
);
6011 lower_private_allocate (var
, new_var
, allocator
,
6012 allocate_ptr
, ilist
, ctx
, false,
6014 x
= build_outer_var_ref (var
, ctx
);
6016 if (omp_is_reference (var
)
6017 && !useless_type_conversion_p (ptype
, TREE_TYPE (x
)))
6018 x
= build_fold_addr_expr_loc (clause_loc
, x
);
6020 SET_DECL_VALUE_EXPR (placeholder
, x
);
6021 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
6022 tree new_vard
= new_var
;
6023 if (omp_is_reference (var
))
6025 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
6026 new_vard
= TREE_OPERAND (new_var
, 0);
6027 gcc_assert (DECL_P (new_vard
));
6029 tree rvar
= NULL_TREE
, *rvarp
= NULL
, rvar2
= NULL_TREE
;
6031 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6032 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
6035 && lower_rec_simd_input_clauses (new_var
, ctx
, &sctx
,
6039 if (new_vard
== new_var
)
6041 gcc_assert (DECL_VALUE_EXPR (new_var
) == lvar
);
6042 SET_DECL_VALUE_EXPR (new_var
, ivar
);
6046 SET_DECL_VALUE_EXPR (new_vard
,
6047 build_fold_addr_expr (ivar
));
6048 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
6050 x
= lang_hooks
.decls
.omp_clause_default_ctor
6051 (c
, unshare_expr (ivar
),
6052 build_outer_var_ref (var
, ctx
));
6053 if (rvarp
&& ctx
->for_simd_scan_phase
)
6056 gimplify_and_add (x
, &llist
[0]);
6057 x
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar
);
6059 gimplify_and_add (x
, &llist
[1]);
6066 gimplify_and_add (x
, &llist
[0]);
6068 tree ivar2
= unshare_expr (lvar
);
6069 TREE_OPERAND (ivar2
, 1) = sctx
.idx
;
6070 x
= lang_hooks
.decls
.omp_clause_default_ctor
6071 (c
, ivar2
, build_outer_var_ref (var
, ctx
));
6072 gimplify_and_add (x
, &llist
[0]);
6076 x
= lang_hooks
.decls
.omp_clause_default_ctor
6077 (c
, unshare_expr (rvar2
),
6078 build_outer_var_ref (var
, ctx
));
6079 gimplify_and_add (x
, &llist
[0]);
6082 /* For types that need construction, add another
6083 private var which will be default constructed
6084 and optionally initialized with
6085 OMP_CLAUSE_REDUCTION_GIMPLE_INIT, as in the
6086 loop we want to assign this value instead of
6087 constructing and destructing it in each
6089 tree nv
= create_tmp_var_raw (TREE_TYPE (ivar
));
6090 gimple_add_tmp_var (nv
);
6091 ctx
->cb
.decl_map
->put (TREE_OPERAND (rvar2
6095 x
= lang_hooks
.decls
.omp_clause_default_ctor
6096 (c
, nv
, build_outer_var_ref (var
, ctx
));
6097 gimplify_and_add (x
, ilist
);
6099 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
6101 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
6102 x
= DECL_VALUE_EXPR (new_vard
);
6104 if (new_vard
!= new_var
)
6105 vexpr
= build_fold_addr_expr (nv
);
6106 SET_DECL_VALUE_EXPR (new_vard
, vexpr
);
6107 lower_omp (&tseq
, ctx
);
6108 SET_DECL_VALUE_EXPR (new_vard
, x
);
6109 gimple_seq_add_seq (ilist
, tseq
);
6110 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6113 x
= lang_hooks
.decls
.omp_clause_dtor (c
, nv
);
6115 gimplify_and_add (x
, dlist
);
6118 tree ref
= build_outer_var_ref (var
, ctx
);
6119 x
= unshare_expr (ivar
);
6120 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
,
6122 gimplify_and_add (x
, &llist
[0]);
6124 ref
= build_outer_var_ref (var
, ctx
);
6125 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, ref
,
6127 gimplify_and_add (x
, &llist
[3]);
6129 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
6130 if (new_vard
== new_var
)
6131 SET_DECL_VALUE_EXPR (new_var
, lvar
);
6133 SET_DECL_VALUE_EXPR (new_vard
,
6134 build_fold_addr_expr (lvar
));
6136 x
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar
);
6138 gimplify_and_add (x
, &llist
[1]);
6140 tree ivar2
= unshare_expr (lvar
);
6141 TREE_OPERAND (ivar2
, 1) = sctx
.idx
;
6142 x
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar2
);
6144 gimplify_and_add (x
, &llist
[1]);
6148 x
= lang_hooks
.decls
.omp_clause_dtor (c
, rvar2
);
6150 gimplify_and_add (x
, &llist
[1]);
6155 gimplify_and_add (x
, &llist
[0]);
6156 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
6158 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
6159 lower_omp (&tseq
, ctx
);
6160 gimple_seq_add_seq (&llist
[0], tseq
);
6162 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6163 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
6164 lower_omp (&tseq
, ctx
);
6165 gimple_seq_add_seq (&llist
[1], tseq
);
6166 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
6167 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
6168 if (new_vard
== new_var
)
6169 SET_DECL_VALUE_EXPR (new_var
, lvar
);
6171 SET_DECL_VALUE_EXPR (new_vard
,
6172 build_fold_addr_expr (lvar
));
6173 x
= lang_hooks
.decls
.omp_clause_dtor (c
, ivar
);
6175 gimplify_and_add (x
, &llist
[1]);
6178 /* If this is a reference to constant size reduction var
6179 with placeholder, we haven't emitted the initializer
6180 for it because it is undesirable if SIMD arrays are used.
6181 But if they aren't used, we need to emit the deferred
6182 initialization now. */
6183 else if (omp_is_reference (var
) && is_simd
)
6184 handle_simd_reference (clause_loc
, new_vard
, ilist
);
6186 tree lab2
= NULL_TREE
;
6190 if (!is_parallel_ctx (ctx
))
6192 tree condv
= create_tmp_var (boolean_type_node
);
6193 tree m
= build_simple_mem_ref (cond
);
6194 g
= gimple_build_assign (condv
, m
);
6195 gimple_seq_add_stmt (ilist
, g
);
6197 = create_artificial_label (UNKNOWN_LOCATION
);
6198 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
6199 g
= gimple_build_cond (NE_EXPR
, condv
,
6202 gimple_seq_add_stmt (ilist
, g
);
6203 gimple_seq_add_stmt (ilist
,
6204 gimple_build_label (lab1
));
6206 g
= gimple_build_assign (build_simple_mem_ref (cond
),
6208 gimple_seq_add_stmt (ilist
, g
);
6210 x
= lang_hooks
.decls
.omp_clause_default_ctor
6211 (c
, unshare_expr (new_var
),
6213 : build_outer_var_ref (var
, ctx
));
6215 gimplify_and_add (x
, ilist
);
6217 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6218 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
6220 if (ctx
->for_simd_scan_phase
)
6223 && OMP_CLAUSE_REDUCTION_OMP_ORIG_REF (c
)))
6225 tree nv
= create_tmp_var_raw (TREE_TYPE (new_var
));
6226 gimple_add_tmp_var (nv
);
6227 ctx
->cb
.decl_map
->put (new_vard
, nv
);
6228 x
= lang_hooks
.decls
.omp_clause_default_ctor
6229 (c
, nv
, build_outer_var_ref (var
, ctx
));
6231 gimplify_and_add (x
, ilist
);
6232 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
6234 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
6236 if (new_vard
!= new_var
)
6237 vexpr
= build_fold_addr_expr (nv
);
6238 SET_DECL_VALUE_EXPR (new_vard
, vexpr
);
6239 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
6240 lower_omp (&tseq
, ctx
);
6241 SET_DECL_VALUE_EXPR (new_vard
, NULL_TREE
);
6242 DECL_HAS_VALUE_EXPR_P (new_vard
) = 0;
6243 gimple_seq_add_seq (ilist
, tseq
);
6245 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6246 if (is_simd
&& ctx
->scan_exclusive
)
6249 = create_tmp_var_raw (TREE_TYPE (new_var
));
6250 gimple_add_tmp_var (nv2
);
6251 ctx
->cb
.decl_map
->put (nv
, nv2
);
6252 x
= lang_hooks
.decls
.omp_clause_default_ctor
6253 (c
, nv2
, build_outer_var_ref (var
, ctx
));
6254 gimplify_and_add (x
, ilist
);
6255 x
= lang_hooks
.decls
.omp_clause_dtor (c
, nv2
);
6257 gimplify_and_add (x
, dlist
);
6259 x
= lang_hooks
.decls
.omp_clause_dtor (c
, nv
);
6261 gimplify_and_add (x
, dlist
);
6264 && ctx
->scan_exclusive
6265 && TREE_ADDRESSABLE (TREE_TYPE (new_var
)))
6267 tree nv2
= create_tmp_var_raw (TREE_TYPE (new_var
));
6268 gimple_add_tmp_var (nv2
);
6269 ctx
->cb
.decl_map
->put (new_vard
, nv2
);
6270 x
= lang_hooks
.decls
.omp_clause_dtor (c
, nv2
);
6272 gimplify_and_add (x
, dlist
);
6274 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
6278 if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
6280 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
6281 lower_omp (&tseq
, ctx
);
6282 gimple_seq_add_seq (ilist
, tseq
);
6284 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6287 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
6288 lower_omp (&tseq
, ctx
);
6289 gimple_seq_add_seq (dlist
, tseq
);
6290 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
6292 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
6296 gimple_seq_add_stmt (ilist
, gimple_build_label (lab2
));
6303 x
= omp_reduction_init (c
, TREE_TYPE (new_var
));
6304 gcc_assert (TREE_CODE (TREE_TYPE (new_var
)) != ARRAY_TYPE
);
6305 enum tree_code code
= OMP_CLAUSE_REDUCTION_CODE (c
);
6310 tree lab2
= NULL_TREE
;
6311 /* GOMP_taskgroup_reduction_register memsets the whole
6312 array to zero. If the initializer is zero, we don't
6313 need to initialize it again, just mark it as ever
6314 used unconditionally, i.e. cond = true. */
6315 if (initializer_zerop (x
))
6317 g
= gimple_build_assign (build_simple_mem_ref (cond
),
6319 gimple_seq_add_stmt (ilist
, g
);
6324 if (!cond) { cond = true; new_var = x; } */
6325 if (!is_parallel_ctx (ctx
))
6327 tree condv
= create_tmp_var (boolean_type_node
);
6328 tree m
= build_simple_mem_ref (cond
);
6329 g
= gimple_build_assign (condv
, m
);
6330 gimple_seq_add_stmt (ilist
, g
);
6332 = create_artificial_label (UNKNOWN_LOCATION
);
6333 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
6334 g
= gimple_build_cond (NE_EXPR
, condv
,
6337 gimple_seq_add_stmt (ilist
, g
);
6338 gimple_seq_add_stmt (ilist
,
6339 gimple_build_label (lab1
));
6341 g
= gimple_build_assign (build_simple_mem_ref (cond
),
6343 gimple_seq_add_stmt (ilist
, g
);
6344 gimplify_assign (new_var
, x
, ilist
);
6346 gimple_seq_add_stmt (ilist
, gimple_build_label (lab2
));
6350 /* reduction(-:var) sums up the partial results, so it
6351 acts identically to reduction(+:var). */
6352 if (code
== MINUS_EXPR
)
6355 tree new_vard
= new_var
;
6356 if (is_simd
&& omp_is_reference (var
))
6358 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
6359 new_vard
= TREE_OPERAND (new_var
, 0);
6360 gcc_assert (DECL_P (new_vard
));
6362 tree rvar
= NULL_TREE
, *rvarp
= NULL
, rvar2
= NULL_TREE
;
6364 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6365 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
6368 && lower_rec_simd_input_clauses (new_var
, ctx
, &sctx
,
6372 if (new_vard
!= new_var
)
6374 SET_DECL_VALUE_EXPR (new_vard
,
6375 build_fold_addr_expr (lvar
));
6376 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
6379 tree ref
= build_outer_var_ref (var
, ctx
);
6383 if (ctx
->for_simd_scan_phase
)
6385 gimplify_assign (ivar
, ref
, &llist
[0]);
6386 ref
= build_outer_var_ref (var
, ctx
);
6387 gimplify_assign (ref
, rvar
, &llist
[3]);
6391 gimplify_assign (unshare_expr (ivar
), x
, &llist
[0]);
6396 simt_lane
= create_tmp_var (unsigned_type_node
);
6397 x
= build_call_expr_internal_loc
6398 (UNKNOWN_LOCATION
, IFN_GOMP_SIMT_XCHG_BFLY
,
6399 TREE_TYPE (ivar
), 2, ivar
, simt_lane
);
6400 x
= build2 (code
, TREE_TYPE (ivar
), ivar
, x
);
6401 gimplify_assign (ivar
, x
, &llist
[2]);
6403 x
= build2 (code
, TREE_TYPE (ref
), ref
, ivar
);
6404 ref
= build_outer_var_ref (var
, ctx
);
6405 gimplify_assign (ref
, x
, &llist
[1]);
6410 lower_private_allocate (var
, new_var
, allocator
,
6411 allocate_ptr
, ilist
, ctx
,
6413 if (omp_is_reference (var
) && is_simd
)
6414 handle_simd_reference (clause_loc
, new_vard
, ilist
);
6415 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6416 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
6418 gimplify_assign (new_var
, x
, ilist
);
6421 tree ref
= build_outer_var_ref (var
, ctx
);
6423 x
= build2 (code
, TREE_TYPE (ref
), ref
, new_var
);
6424 ref
= build_outer_var_ref (var
, ctx
);
6425 gimplify_assign (ref
, x
, dlist
);
6440 tree clobber
= build_clobber (TREE_TYPE (tskred_avar
));
6441 gimple_seq_add_stmt (ilist
, gimple_build_assign (tskred_avar
, clobber
));
6444 if (known_eq (sctx
.max_vf
, 1U))
6446 sctx
.is_simt
= false;
6447 if (ctx
->lastprivate_conditional_map
)
6449 if (gimple_omp_for_combined_into_p (ctx
->stmt
))
6451 /* Signal to lower_omp_1 that it should use parent context. */
6452 ctx
->combined_into_simd_safelen1
= true;
6453 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
6454 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6455 && OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (c
))
6457 tree o
= lookup_decl (OMP_CLAUSE_DECL (c
), ctx
);
6458 omp_context
*outer
= ctx
->outer
;
6459 if (gimple_code (outer
->stmt
) == GIMPLE_OMP_SCAN
)
6460 outer
= outer
->outer
;
6461 tree
*v
= ctx
->lastprivate_conditional_map
->get (o
);
6462 tree po
= lookup_decl (OMP_CLAUSE_DECL (c
), outer
);
6463 tree
*pv
= outer
->lastprivate_conditional_map
->get (po
);
6469 /* When not vectorized, treat lastprivate(conditional:) like
6470 normal lastprivate, as there will be just one simd lane
6471 writing the privatized variable. */
6472 delete ctx
->lastprivate_conditional_map
;
6473 ctx
->lastprivate_conditional_map
= NULL
;
6478 if (nonconst_simd_if
)
6480 if (sctx
.lane
== NULL_TREE
)
6482 sctx
.idx
= create_tmp_var (unsigned_type_node
);
6483 sctx
.lane
= create_tmp_var (unsigned_type_node
);
6485 /* FIXME: For now. */
6486 sctx
.is_simt
= false;
6489 if (sctx
.lane
|| sctx
.is_simt
)
6491 uid
= create_tmp_var (ptr_type_node
, "simduid");
6492 /* Don't want uninit warnings on simduid, it is always uninitialized,
6493 but we use it not for the value, but for the DECL_UID only. */
6494 TREE_NO_WARNING (uid
) = 1;
6495 c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__SIMDUID_
);
6496 OMP_CLAUSE__SIMDUID__DECL (c
) = uid
;
6497 OMP_CLAUSE_CHAIN (c
) = gimple_omp_for_clauses (ctx
->stmt
);
6498 gimple_omp_for_set_clauses (ctx
->stmt
, c
);
6500 /* Emit calls denoting privatized variables and initializing a pointer to
6501 structure that holds private variables as fields after ompdevlow pass. */
6504 sctx
.simt_eargs
[0] = uid
;
6506 = gimple_build_call_internal_vec (IFN_GOMP_SIMT_ENTER
, sctx
.simt_eargs
);
6507 gimple_call_set_lhs (g
, uid
);
6508 gimple_seq_add_stmt (ilist
, g
);
6509 sctx
.simt_eargs
.release ();
6511 simtrec
= create_tmp_var (ptr_type_node
, ".omp_simt");
6512 g
= gimple_build_call_internal (IFN_GOMP_SIMT_ENTER_ALLOC
, 1, uid
);
6513 gimple_call_set_lhs (g
, simtrec
);
6514 gimple_seq_add_stmt (ilist
, g
);
6518 gimple
*g
= gimple_build_call_internal (IFN_GOMP_SIMD_LANE
,
6519 2 + (nonconst_simd_if
!= NULL
),
6520 uid
, integer_zero_node
,
6522 gimple_call_set_lhs (g
, sctx
.lane
);
6523 gimple_stmt_iterator gsi
= gsi_start_1 (gimple_omp_body_ptr (ctx
->stmt
));
6524 gsi_insert_before_without_update (&gsi
, g
, GSI_SAME_STMT
);
6525 g
= gimple_build_assign (sctx
.lane
, INTEGER_CST
,
6526 build_int_cst (unsigned_type_node
, 0));
6527 gimple_seq_add_stmt (ilist
, g
);
6530 g
= gimple_build_call_internal (IFN_GOMP_SIMD_LAST_LANE
,
6532 gimple_call_set_lhs (g
, sctx
.lastlane
);
6533 gimple_seq_add_stmt (dlist
, g
);
6534 gimple_seq_add_seq (dlist
, llist
[3]);
6536 /* Emit reductions across SIMT lanes in log_2(simt_vf) steps. */
6539 tree simt_vf
= create_tmp_var (unsigned_type_node
);
6540 g
= gimple_build_call_internal (IFN_GOMP_SIMT_VF
, 0);
6541 gimple_call_set_lhs (g
, simt_vf
);
6542 gimple_seq_add_stmt (dlist
, g
);
6544 tree t
= build_int_cst (unsigned_type_node
, 1);
6545 g
= gimple_build_assign (simt_lane
, INTEGER_CST
, t
);
6546 gimple_seq_add_stmt (dlist
, g
);
6548 t
= build_int_cst (unsigned_type_node
, 0);
6549 g
= gimple_build_assign (sctx
.idx
, INTEGER_CST
, t
);
6550 gimple_seq_add_stmt (dlist
, g
);
6552 tree body
= create_artificial_label (UNKNOWN_LOCATION
);
6553 tree header
= create_artificial_label (UNKNOWN_LOCATION
);
6554 tree end
= create_artificial_label (UNKNOWN_LOCATION
);
6555 gimple_seq_add_stmt (dlist
, gimple_build_goto (header
));
6556 gimple_seq_add_stmt (dlist
, gimple_build_label (body
));
6558 gimple_seq_add_seq (dlist
, llist
[2]);
6560 g
= gimple_build_assign (simt_lane
, LSHIFT_EXPR
, simt_lane
, integer_one_node
);
6561 gimple_seq_add_stmt (dlist
, g
);
6563 gimple_seq_add_stmt (dlist
, gimple_build_label (header
));
6564 g
= gimple_build_cond (LT_EXPR
, simt_lane
, simt_vf
, body
, end
);
6565 gimple_seq_add_stmt (dlist
, g
);
6567 gimple_seq_add_stmt (dlist
, gimple_build_label (end
));
6569 for (int i
= 0; i
< 2; i
++)
6572 tree vf
= create_tmp_var (unsigned_type_node
);
6573 g
= gimple_build_call_internal (IFN_GOMP_SIMD_VF
, 1, uid
);
6574 gimple_call_set_lhs (g
, vf
);
6575 gimple_seq
*seq
= i
== 0 ? ilist
: dlist
;
6576 gimple_seq_add_stmt (seq
, g
);
6577 tree t
= build_int_cst (unsigned_type_node
, 0);
6578 g
= gimple_build_assign (sctx
.idx
, INTEGER_CST
, t
);
6579 gimple_seq_add_stmt (seq
, g
);
6580 tree body
= create_artificial_label (UNKNOWN_LOCATION
);
6581 tree header
= create_artificial_label (UNKNOWN_LOCATION
);
6582 tree end
= create_artificial_label (UNKNOWN_LOCATION
);
6583 gimple_seq_add_stmt (seq
, gimple_build_goto (header
));
6584 gimple_seq_add_stmt (seq
, gimple_build_label (body
));
6585 gimple_seq_add_seq (seq
, llist
[i
]);
6586 t
= build_int_cst (unsigned_type_node
, 1);
6587 g
= gimple_build_assign (sctx
.idx
, PLUS_EXPR
, sctx
.idx
, t
);
6588 gimple_seq_add_stmt (seq
, g
);
6589 gimple_seq_add_stmt (seq
, gimple_build_label (header
));
6590 g
= gimple_build_cond (LT_EXPR
, sctx
.idx
, vf
, body
, end
);
6591 gimple_seq_add_stmt (seq
, g
);
6592 gimple_seq_add_stmt (seq
, gimple_build_label (end
));
6597 gimple_seq_add_seq (dlist
, sctx
.simt_dlist
);
6599 = gimple_build_call_internal (IFN_GOMP_SIMT_EXIT
, 1, simtrec
);
6600 gimple_seq_add_stmt (dlist
, g
);
6603 /* The copyin sequence is not to be executed by the main thread, since
6604 that would result in self-copies. Perhaps not visible to scalars,
6605 but it certainly is to C++ operator=. */
6608 x
= build_call_expr (builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM
),
6610 x
= build2 (NE_EXPR
, boolean_type_node
, x
,
6611 build_int_cst (TREE_TYPE (x
), 0));
6612 x
= build3 (COND_EXPR
, void_type_node
, x
, copyin_seq
, NULL
);
6613 gimplify_and_add (x
, ilist
);
6616 /* If any copyin variable is passed by reference, we must ensure the
6617 master thread doesn't modify it before it is copied over in all
6618 threads. Similarly for variables in both firstprivate and
6619 lastprivate clauses we need to ensure the lastprivate copying
6620 happens after firstprivate copying in all threads. And similarly
6621 for UDRs if initializer expression refers to omp_orig. */
6622 if (copyin_by_ref
|| lastprivate_firstprivate
6623 || (reduction_omp_orig_ref
6624 && !ctx
->scan_inclusive
6625 && !ctx
->scan_exclusive
))
6627 /* Don't add any barrier for #pragma omp simd or
6628 #pragma omp distribute. */
6629 if (!is_task_ctx (ctx
)
6630 && (gimple_code (ctx
->stmt
) != GIMPLE_OMP_FOR
6631 || gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_FOR
))
6632 gimple_seq_add_stmt (ilist
, omp_build_barrier (NULL_TREE
));
6635 /* If max_vf is non-zero, then we can use only a vectorization factor
6636 up to the max_vf we chose. So stick it into the safelen clause. */
6637 if (maybe_ne (sctx
.max_vf
, 0U))
6639 tree c
= omp_find_clause (gimple_omp_for_clauses (ctx
->stmt
),
6640 OMP_CLAUSE_SAFELEN
);
6641 poly_uint64 safe_len
;
6643 || (poly_int_tree_p (OMP_CLAUSE_SAFELEN_EXPR (c
), &safe_len
)
6644 && maybe_gt (safe_len
, sctx
.max_vf
)))
6646 c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE_SAFELEN
);
6647 OMP_CLAUSE_SAFELEN_EXPR (c
) = build_int_cst (integer_type_node
,
6649 OMP_CLAUSE_CHAIN (c
) = gimple_omp_for_clauses (ctx
->stmt
);
6650 gimple_omp_for_set_clauses (ctx
->stmt
, c
);
6655 /* Create temporary variables for lastprivate(conditional:) implementation
6656 in context CTX with CLAUSES. */
6659 lower_lastprivate_conditional_clauses (tree
*clauses
, omp_context
*ctx
)
6661 tree iter_type
= NULL_TREE
;
6662 tree cond_ptr
= NULL_TREE
;
6663 tree iter_var
= NULL_TREE
;
6664 bool is_simd
= (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
6665 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
);
6666 tree next
= *clauses
;
6667 for (tree c
= *clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
6668 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6669 && OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (c
))
6673 tree cc
= omp_find_clause (next
, OMP_CLAUSE__CONDTEMP_
);
6675 if (iter_type
== NULL_TREE
)
6677 iter_type
= TREE_TYPE (OMP_CLAUSE_DECL (cc
));
6678 iter_var
= create_tmp_var_raw (iter_type
);
6679 DECL_CONTEXT (iter_var
) = current_function_decl
;
6680 DECL_SEEN_IN_BIND_EXPR_P (iter_var
) = 1;
6681 DECL_CHAIN (iter_var
) = ctx
->block_vars
;
6682 ctx
->block_vars
= iter_var
;
6684 = build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__CONDTEMP_
);
6685 OMP_CLAUSE__CONDTEMP__ITER (c3
) = 1;
6686 OMP_CLAUSE_DECL (c3
) = iter_var
;
6687 OMP_CLAUSE_CHAIN (c3
) = *clauses
;
6689 ctx
->lastprivate_conditional_map
= new hash_map
<tree
, tree
>;
6691 next
= OMP_CLAUSE_CHAIN (cc
);
6692 tree o
= lookup_decl (OMP_CLAUSE_DECL (c
), ctx
);
6693 tree v
= lookup_decl (OMP_CLAUSE_DECL (cc
), ctx
);
6694 ctx
->lastprivate_conditional_map
->put (o
, v
);
6697 if (iter_type
== NULL
)
6699 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
)
6701 struct omp_for_data fd
;
6702 omp_extract_for_data (as_a
<gomp_for
*> (ctx
->stmt
), &fd
,
6704 iter_type
= unsigned_type_for (fd
.iter_type
);
6706 else if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_SECTIONS
)
6707 iter_type
= unsigned_type_node
;
6708 tree c2
= omp_find_clause (*clauses
, OMP_CLAUSE__CONDTEMP_
);
6712 = lookup_decl_in_outer_ctx (OMP_CLAUSE_DECL (c2
), ctx
);
6713 OMP_CLAUSE_DECL (c2
) = cond_ptr
;
6717 cond_ptr
= create_tmp_var_raw (build_pointer_type (iter_type
));
6718 DECL_CONTEXT (cond_ptr
) = current_function_decl
;
6719 DECL_SEEN_IN_BIND_EXPR_P (cond_ptr
) = 1;
6720 DECL_CHAIN (cond_ptr
) = ctx
->block_vars
;
6721 ctx
->block_vars
= cond_ptr
;
6722 c2
= build_omp_clause (UNKNOWN_LOCATION
,
6723 OMP_CLAUSE__CONDTEMP_
);
6724 OMP_CLAUSE_DECL (c2
) = cond_ptr
;
6725 OMP_CLAUSE_CHAIN (c2
) = *clauses
;
6728 iter_var
= create_tmp_var_raw (iter_type
);
6729 DECL_CONTEXT (iter_var
) = current_function_decl
;
6730 DECL_SEEN_IN_BIND_EXPR_P (iter_var
) = 1;
6731 DECL_CHAIN (iter_var
) = ctx
->block_vars
;
6732 ctx
->block_vars
= iter_var
;
6734 = build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__CONDTEMP_
);
6735 OMP_CLAUSE__CONDTEMP__ITER (c3
) = 1;
6736 OMP_CLAUSE_DECL (c3
) = iter_var
;
6737 OMP_CLAUSE_CHAIN (c3
) = OMP_CLAUSE_CHAIN (c2
);
6738 OMP_CLAUSE_CHAIN (c2
) = c3
;
6739 ctx
->lastprivate_conditional_map
= new hash_map
<tree
, tree
>;
6741 tree v
= create_tmp_var_raw (iter_type
);
6742 DECL_CONTEXT (v
) = current_function_decl
;
6743 DECL_SEEN_IN_BIND_EXPR_P (v
) = 1;
6744 DECL_CHAIN (v
) = ctx
->block_vars
;
6745 ctx
->block_vars
= v
;
6746 tree o
= lookup_decl (OMP_CLAUSE_DECL (c
), ctx
);
6747 ctx
->lastprivate_conditional_map
->put (o
, v
);
6752 /* Generate code to implement the LASTPRIVATE clauses. This is used for
6753 both parallel and workshare constructs. PREDICATE may be NULL if it's
6754 always true. BODY_P is the sequence to insert early initialization
6755 if needed, STMT_LIST is where the non-conditional lastprivate handling
6756 goes into and CSTMT_LIST is a sequence that needs to be run in a critical
6760 lower_lastprivate_clauses (tree clauses
, tree predicate
, gimple_seq
*body_p
,
6761 gimple_seq
*stmt_list
, gimple_seq
*cstmt_list
,
6764 tree x
, c
, label
= NULL
, orig_clauses
= clauses
;
6765 bool par_clauses
= false;
6766 tree simduid
= NULL
, lastlane
= NULL
, simtcond
= NULL
, simtlast
= NULL
;
6767 unsigned HOST_WIDE_INT conditional_off
= 0;
6768 gimple_seq post_stmt_list
= NULL
;
6770 /* Early exit if there are no lastprivate or linear clauses. */
6771 for (; clauses
; clauses
= OMP_CLAUSE_CHAIN (clauses
))
6772 if (OMP_CLAUSE_CODE (clauses
) == OMP_CLAUSE_LASTPRIVATE
6773 || (OMP_CLAUSE_CODE (clauses
) == OMP_CLAUSE_LINEAR
6774 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (clauses
)))
6776 if (clauses
== NULL
)
6778 /* If this was a workshare clause, see if it had been combined
6779 with its parallel. In that case, look for the clauses on the
6780 parallel statement itself. */
6781 if (is_parallel_ctx (ctx
))
6785 if (ctx
== NULL
|| !is_parallel_ctx (ctx
))
6788 clauses
= omp_find_clause (gimple_omp_parallel_clauses (ctx
->stmt
),
6789 OMP_CLAUSE_LASTPRIVATE
);
6790 if (clauses
== NULL
)
6795 bool maybe_simt
= false;
6796 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
6797 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
)
6799 maybe_simt
= omp_find_clause (orig_clauses
, OMP_CLAUSE__SIMT_
);
6800 simduid
= omp_find_clause (orig_clauses
, OMP_CLAUSE__SIMDUID_
);
6802 simduid
= OMP_CLAUSE__SIMDUID__DECL (simduid
);
6808 tree label_true
, arm1
, arm2
;
6809 enum tree_code pred_code
= TREE_CODE (predicate
);
6811 label
= create_artificial_label (UNKNOWN_LOCATION
);
6812 label_true
= create_artificial_label (UNKNOWN_LOCATION
);
6813 if (TREE_CODE_CLASS (pred_code
) == tcc_comparison
)
6815 arm1
= TREE_OPERAND (predicate
, 0);
6816 arm2
= TREE_OPERAND (predicate
, 1);
6817 gimplify_expr (&arm1
, stmt_list
, NULL
, is_gimple_val
, fb_rvalue
);
6818 gimplify_expr (&arm2
, stmt_list
, NULL
, is_gimple_val
, fb_rvalue
);
6823 gimplify_expr (&arm1
, stmt_list
, NULL
, is_gimple_val
, fb_rvalue
);
6824 arm2
= boolean_false_node
;
6825 pred_code
= NE_EXPR
;
6829 c
= build2 (pred_code
, boolean_type_node
, arm1
, arm2
);
6830 c
= fold_convert (integer_type_node
, c
);
6831 simtcond
= create_tmp_var (integer_type_node
);
6832 gimplify_assign (simtcond
, c
, stmt_list
);
6833 gcall
*g
= gimple_build_call_internal (IFN_GOMP_SIMT_VOTE_ANY
,
6835 c
= create_tmp_var (integer_type_node
);
6836 gimple_call_set_lhs (g
, c
);
6837 gimple_seq_add_stmt (stmt_list
, g
);
6838 stmt
= gimple_build_cond (NE_EXPR
, c
, integer_zero_node
,
6842 stmt
= gimple_build_cond (pred_code
, arm1
, arm2
, label_true
, label
);
6843 gimple_seq_add_stmt (stmt_list
, stmt
);
6844 gimple_seq_add_stmt (stmt_list
, gimple_build_label (label_true
));
6847 tree cond_ptr
= NULL_TREE
;
6848 for (c
= clauses
; c
;)
6851 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
6852 gimple_seq
*this_stmt_list
= stmt_list
;
6853 tree lab2
= NULL_TREE
;
6855 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6856 && OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (c
)
6857 && ctx
->lastprivate_conditional_map
6858 && !ctx
->combined_into_simd_safelen1
)
6860 gcc_assert (body_p
);
6863 if (cond_ptr
== NULL_TREE
)
6865 cond_ptr
= omp_find_clause (orig_clauses
, OMP_CLAUSE__CONDTEMP_
);
6866 cond_ptr
= OMP_CLAUSE_DECL (cond_ptr
);
6868 tree type
= TREE_TYPE (TREE_TYPE (cond_ptr
));
6869 tree o
= lookup_decl (OMP_CLAUSE_DECL (c
), ctx
);
6870 tree v
= *ctx
->lastprivate_conditional_map
->get (o
);
6871 gimplify_assign (v
, build_zero_cst (type
), body_p
);
6872 this_stmt_list
= cstmt_list
;
6874 if (POINTER_TYPE_P (TREE_TYPE (cond_ptr
)))
6876 mem
= build2 (MEM_REF
, type
, cond_ptr
,
6877 build_int_cst (TREE_TYPE (cond_ptr
),
6879 conditional_off
+= tree_to_uhwi (TYPE_SIZE_UNIT (type
));
6882 mem
= build4 (ARRAY_REF
, type
, cond_ptr
,
6883 size_int (conditional_off
++), NULL_TREE
, NULL_TREE
);
6884 tree mem2
= copy_node (mem
);
6885 gimple_seq seq
= NULL
;
6886 mem
= force_gimple_operand (mem
, &seq
, true, NULL_TREE
);
6887 gimple_seq_add_seq (this_stmt_list
, seq
);
6888 tree lab1
= create_artificial_label (UNKNOWN_LOCATION
);
6889 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
6890 gimple
*g
= gimple_build_cond (GT_EXPR
, v
, mem
, lab1
, lab2
);
6891 gimple_seq_add_stmt (this_stmt_list
, g
);
6892 gimple_seq_add_stmt (this_stmt_list
, gimple_build_label (lab1
));
6893 gimplify_assign (mem2
, v
, this_stmt_list
);
6896 && ctx
->combined_into_simd_safelen1
6897 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6898 && OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (c
)
6899 && ctx
->lastprivate_conditional_map
)
6900 this_stmt_list
= &post_stmt_list
;
6902 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6903 || (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
6904 && !OMP_CLAUSE_LINEAR_NO_COPYOUT (c
)))
6906 var
= OMP_CLAUSE_DECL (c
);
6907 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6908 && OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
)
6909 && is_taskloop_ctx (ctx
))
6911 gcc_checking_assert (ctx
->outer
&& is_task_ctx (ctx
->outer
));
6912 new_var
= lookup_decl (var
, ctx
->outer
);
6916 new_var
= lookup_decl (var
, ctx
);
6917 /* Avoid uninitialized warnings for lastprivate and
6918 for linear iterators. */
6920 && (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6921 || OMP_CLAUSE_LINEAR_NO_COPYIN (c
)))
6922 TREE_NO_WARNING (new_var
) = 1;
6925 if (!maybe_simt
&& simduid
&& DECL_HAS_VALUE_EXPR_P (new_var
))
6927 tree val
= DECL_VALUE_EXPR (new_var
);
6928 if (TREE_CODE (val
) == ARRAY_REF
6929 && VAR_P (TREE_OPERAND (val
, 0))
6930 && lookup_attribute ("omp simd array",
6931 DECL_ATTRIBUTES (TREE_OPERAND (val
,
6934 if (lastlane
== NULL
)
6936 lastlane
= create_tmp_var (unsigned_type_node
);
6938 = gimple_build_call_internal (IFN_GOMP_SIMD_LAST_LANE
,
6940 TREE_OPERAND (val
, 1));
6941 gimple_call_set_lhs (g
, lastlane
);
6942 gimple_seq_add_stmt (this_stmt_list
, g
);
6944 new_var
= build4 (ARRAY_REF
, TREE_TYPE (val
),
6945 TREE_OPERAND (val
, 0), lastlane
,
6946 NULL_TREE
, NULL_TREE
);
6947 TREE_THIS_NOTRAP (new_var
) = 1;
6950 else if (maybe_simt
)
6952 tree val
= (DECL_HAS_VALUE_EXPR_P (new_var
)
6953 ? DECL_VALUE_EXPR (new_var
)
6955 if (simtlast
== NULL
)
6957 simtlast
= create_tmp_var (unsigned_type_node
);
6958 gcall
*g
= gimple_build_call_internal
6959 (IFN_GOMP_SIMT_LAST_LANE
, 1, simtcond
);
6960 gimple_call_set_lhs (g
, simtlast
);
6961 gimple_seq_add_stmt (this_stmt_list
, g
);
6963 x
= build_call_expr_internal_loc
6964 (UNKNOWN_LOCATION
, IFN_GOMP_SIMT_XCHG_IDX
,
6965 TREE_TYPE (val
), 2, val
, simtlast
);
6966 new_var
= unshare_expr (new_var
);
6967 gimplify_assign (new_var
, x
, this_stmt_list
);
6968 new_var
= unshare_expr (new_var
);
6971 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6972 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
))
6974 lower_omp (&OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
), ctx
);
6975 gimple_seq_add_seq (this_stmt_list
,
6976 OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
));
6977 OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
) = NULL
;
6979 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
6980 && OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
))
6982 lower_omp (&OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
), ctx
);
6983 gimple_seq_add_seq (this_stmt_list
,
6984 OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
));
6985 OMP_CLAUSE_LINEAR_GIMPLE_SEQ (c
) = NULL
;
6989 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6990 && OMP_CLAUSE_LASTPRIVATE_LOOP_IV (c
)
6991 && is_taskloop_ctx (ctx
))
6993 tree ovar
= maybe_lookup_decl_in_outer_ctx (var
,
6995 if (is_global_var (ovar
))
6999 x
= build_outer_var_ref (var
, ctx
, OMP_CLAUSE_LASTPRIVATE
);
7000 if (omp_is_reference (var
))
7001 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
7002 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, new_var
);
7003 gimplify_and_add (x
, this_stmt_list
);
7006 gimple_seq_add_stmt (this_stmt_list
, gimple_build_label (lab2
));
7010 c
= OMP_CLAUSE_CHAIN (c
);
7011 if (c
== NULL
&& !par_clauses
)
7013 /* If this was a workshare clause, see if it had been combined
7014 with its parallel. In that case, continue looking for the
7015 clauses also on the parallel statement itself. */
7016 if (is_parallel_ctx (ctx
))
7020 if (ctx
== NULL
|| !is_parallel_ctx (ctx
))
7023 c
= omp_find_clause (gimple_omp_parallel_clauses (ctx
->stmt
),
7024 OMP_CLAUSE_LASTPRIVATE
);
7030 gimple_seq_add_stmt (stmt_list
, gimple_build_label (label
));
7031 gimple_seq_add_seq (stmt_list
, post_stmt_list
);
7034 /* Lower the OpenACC reductions of CLAUSES for compute axis LEVEL
7035 (which might be a placeholder). INNER is true if this is an inner
7036 axis of a multi-axis loop. FORK and JOIN are (optional) fork and
7037 join markers. Generate the before-loop forking sequence in
7038 FORK_SEQ and the after-loop joining sequence to JOIN_SEQ. The
7039 general form of these sequences is
7041 GOACC_REDUCTION_SETUP
7043 GOACC_REDUCTION_INIT
7045 GOACC_REDUCTION_FINI
7047 GOACC_REDUCTION_TEARDOWN. */
7050 lower_oacc_reductions (location_t loc
, tree clauses
, tree level
, bool inner
,
7051 gcall
*fork
, gcall
*join
, gimple_seq
*fork_seq
,
7052 gimple_seq
*join_seq
, omp_context
*ctx
)
7054 gimple_seq before_fork
= NULL
;
7055 gimple_seq after_fork
= NULL
;
7056 gimple_seq before_join
= NULL
;
7057 gimple_seq after_join
= NULL
;
7058 tree init_code
= NULL_TREE
, fini_code
= NULL_TREE
,
7059 setup_code
= NULL_TREE
, teardown_code
= NULL_TREE
;
7060 unsigned offset
= 0;
7062 for (tree c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7063 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
)
7065 /* No 'reduction' clauses on OpenACC 'kernels'. */
7066 gcc_checking_assert (!is_oacc_kernels (ctx
));
7067 /* Likewise, on OpenACC 'kernels' decomposed parts. */
7068 gcc_checking_assert (!is_oacc_kernels_decomposed_part (ctx
));
7070 tree orig
= OMP_CLAUSE_DECL (c
);
7071 tree var
= maybe_lookup_decl (orig
, ctx
);
7072 tree ref_to_res
= NULL_TREE
;
7073 tree incoming
, outgoing
, v1
, v2
, v3
;
7074 bool is_private
= false;
7076 enum tree_code rcode
= OMP_CLAUSE_REDUCTION_CODE (c
);
7077 if (rcode
== MINUS_EXPR
)
7079 else if (rcode
== TRUTH_ANDIF_EXPR
)
7080 rcode
= BIT_AND_EXPR
;
7081 else if (rcode
== TRUTH_ORIF_EXPR
)
7082 rcode
= BIT_IOR_EXPR
;
7083 tree op
= build_int_cst (unsigned_type_node
, rcode
);
7088 incoming
= outgoing
= var
;
7092 /* See if an outer construct also reduces this variable. */
7093 omp_context
*outer
= ctx
;
7095 while (omp_context
*probe
= outer
->outer
)
7097 enum gimple_code type
= gimple_code (probe
->stmt
);
7102 case GIMPLE_OMP_FOR
:
7103 cls
= gimple_omp_for_clauses (probe
->stmt
);
7106 case GIMPLE_OMP_TARGET
:
7107 /* No 'reduction' clauses inside OpenACC 'kernels'
7109 gcc_checking_assert (!is_oacc_kernels (probe
));
7111 if (!is_gimple_omp_offloaded (probe
->stmt
))
7114 cls
= gimple_omp_target_clauses (probe
->stmt
);
7122 for (; cls
; cls
= OMP_CLAUSE_CHAIN (cls
))
7123 if (OMP_CLAUSE_CODE (cls
) == OMP_CLAUSE_REDUCTION
7124 && orig
== OMP_CLAUSE_DECL (cls
))
7126 incoming
= outgoing
= lookup_decl (orig
, probe
);
7127 goto has_outer_reduction
;
7129 else if ((OMP_CLAUSE_CODE (cls
) == OMP_CLAUSE_FIRSTPRIVATE
7130 || OMP_CLAUSE_CODE (cls
) == OMP_CLAUSE_PRIVATE
)
7131 && orig
== OMP_CLAUSE_DECL (cls
))
7139 /* This is the outermost construct with this reduction,
7140 see if there's a mapping for it. */
7141 if (gimple_code (outer
->stmt
) == GIMPLE_OMP_TARGET
7142 && maybe_lookup_field (orig
, outer
) && !is_private
)
7144 ref_to_res
= build_receiver_ref (orig
, false, outer
);
7145 if (omp_is_reference (orig
))
7146 ref_to_res
= build_simple_mem_ref (ref_to_res
);
7148 tree type
= TREE_TYPE (var
);
7149 if (POINTER_TYPE_P (type
))
7150 type
= TREE_TYPE (type
);
7153 incoming
= omp_reduction_init_op (loc
, rcode
, type
);
7157 /* Try to look at enclosing contexts for reduction var,
7158 use original if no mapping found. */
7160 omp_context
*c
= ctx
->outer
;
7163 t
= maybe_lookup_decl (orig
, c
);
7166 incoming
= outgoing
= (t
? t
: orig
);
7169 has_outer_reduction
:;
7173 ref_to_res
= integer_zero_node
;
7175 if (omp_is_reference (orig
))
7177 tree type
= TREE_TYPE (var
);
7178 const char *id
= IDENTIFIER_POINTER (DECL_NAME (var
));
7182 tree x
= create_tmp_var (TREE_TYPE (type
), id
);
7183 gimplify_assign (var
, build_fold_addr_expr (x
), fork_seq
);
7186 v1
= create_tmp_var (type
, id
);
7187 v2
= create_tmp_var (type
, id
);
7188 v3
= create_tmp_var (type
, id
);
7190 gimplify_assign (v1
, var
, fork_seq
);
7191 gimplify_assign (v2
, var
, fork_seq
);
7192 gimplify_assign (v3
, var
, fork_seq
);
7194 var
= build_simple_mem_ref (var
);
7195 v1
= build_simple_mem_ref (v1
);
7196 v2
= build_simple_mem_ref (v2
);
7197 v3
= build_simple_mem_ref (v3
);
7198 outgoing
= build_simple_mem_ref (outgoing
);
7200 if (!TREE_CONSTANT (incoming
))
7201 incoming
= build_simple_mem_ref (incoming
);
7206 /* Determine position in reduction buffer, which may be used
7207 by target. The parser has ensured that this is not a
7208 variable-sized type. */
7209 fixed_size_mode mode
7210 = as_a
<fixed_size_mode
> (TYPE_MODE (TREE_TYPE (var
)));
7211 unsigned align
= GET_MODE_ALIGNMENT (mode
) / BITS_PER_UNIT
;
7212 offset
= (offset
+ align
- 1) & ~(align
- 1);
7213 tree off
= build_int_cst (sizetype
, offset
);
7214 offset
+= GET_MODE_SIZE (mode
);
7218 init_code
= build_int_cst (integer_type_node
,
7219 IFN_GOACC_REDUCTION_INIT
);
7220 fini_code
= build_int_cst (integer_type_node
,
7221 IFN_GOACC_REDUCTION_FINI
);
7222 setup_code
= build_int_cst (integer_type_node
,
7223 IFN_GOACC_REDUCTION_SETUP
);
7224 teardown_code
= build_int_cst (integer_type_node
,
7225 IFN_GOACC_REDUCTION_TEARDOWN
);
7229 = build_call_expr_internal_loc (loc
, IFN_GOACC_REDUCTION
,
7230 TREE_TYPE (var
), 6, setup_code
,
7231 unshare_expr (ref_to_res
),
7232 incoming
, level
, op
, off
);
7234 = build_call_expr_internal_loc (loc
, IFN_GOACC_REDUCTION
,
7235 TREE_TYPE (var
), 6, init_code
,
7236 unshare_expr (ref_to_res
),
7237 v1
, level
, op
, off
);
7239 = build_call_expr_internal_loc (loc
, IFN_GOACC_REDUCTION
,
7240 TREE_TYPE (var
), 6, fini_code
,
7241 unshare_expr (ref_to_res
),
7242 v2
, level
, op
, off
);
7244 = build_call_expr_internal_loc (loc
, IFN_GOACC_REDUCTION
,
7245 TREE_TYPE (var
), 6, teardown_code
,
7246 ref_to_res
, v3
, level
, op
, off
);
7248 gimplify_assign (v1
, setup_call
, &before_fork
);
7249 gimplify_assign (v2
, init_call
, &after_fork
);
7250 gimplify_assign (v3
, fini_call
, &before_join
);
7251 gimplify_assign (outgoing
, teardown_call
, &after_join
);
7254 /* Now stitch things together. */
7255 gimple_seq_add_seq (fork_seq
, before_fork
);
7257 gimple_seq_add_stmt (fork_seq
, fork
);
7258 gimple_seq_add_seq (fork_seq
, after_fork
);
7260 gimple_seq_add_seq (join_seq
, before_join
);
7262 gimple_seq_add_stmt (join_seq
, join
);
7263 gimple_seq_add_seq (join_seq
, after_join
);
7266 /* Generate code to implement the REDUCTION clauses, append it
7267 to STMT_SEQP. CLIST if non-NULL is a pointer to a sequence
7268 that should be emitted also inside of the critical section,
7269 in that case clear *CLIST afterwards, otherwise leave it as is
7270 and let the caller emit it itself. */
7273 lower_reduction_clauses (tree clauses
, gimple_seq
*stmt_seqp
,
7274 gimple_seq
*clist
, omp_context
*ctx
)
7276 gimple_seq sub_seq
= NULL
;
7281 /* OpenACC loop reductions are handled elsewhere. */
7282 if (is_gimple_omp_oacc (ctx
->stmt
))
7285 /* SIMD reductions are handled in lower_rec_input_clauses. */
7286 if (gimple_code (ctx
->stmt
) == GIMPLE_OMP_FOR
7287 && gimple_omp_for_kind (ctx
->stmt
) == GF_OMP_FOR_KIND_SIMD
)
7290 /* inscan reductions are handled elsewhere. */
7291 if (ctx
->scan_inclusive
|| ctx
->scan_exclusive
)
7294 /* First see if there is exactly one reduction clause. Use OMP_ATOMIC
7295 update in that case, otherwise use a lock. */
7296 for (c
= clauses
; c
&& count
< 2; c
= OMP_CLAUSE_CHAIN (c
))
7297 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
7298 && !OMP_CLAUSE_REDUCTION_TASK (c
))
7300 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
)
7301 || TREE_CODE (OMP_CLAUSE_DECL (c
)) == MEM_REF
)
7303 /* Never use OMP_ATOMIC for array reductions or UDRs. */
7313 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7315 tree var
, ref
, new_var
, orig_var
;
7316 enum tree_code code
;
7317 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
7319 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
7320 || OMP_CLAUSE_REDUCTION_TASK (c
))
7323 enum omp_clause_code ccode
= OMP_CLAUSE_REDUCTION
;
7324 orig_var
= var
= OMP_CLAUSE_DECL (c
);
7325 if (TREE_CODE (var
) == MEM_REF
)
7327 var
= TREE_OPERAND (var
, 0);
7328 if (TREE_CODE (var
) == POINTER_PLUS_EXPR
)
7329 var
= TREE_OPERAND (var
, 0);
7330 if (TREE_CODE (var
) == ADDR_EXPR
)
7331 var
= TREE_OPERAND (var
, 0);
7334 /* If this is a pointer or referenced based array
7335 section, the var could be private in the outer
7336 context e.g. on orphaned loop construct. Pretend this
7337 is private variable's outer reference. */
7338 ccode
= OMP_CLAUSE_PRIVATE
;
7339 if (TREE_CODE (var
) == INDIRECT_REF
)
7340 var
= TREE_OPERAND (var
, 0);
7343 if (is_variable_sized (var
))
7345 gcc_assert (DECL_HAS_VALUE_EXPR_P (var
));
7346 var
= DECL_VALUE_EXPR (var
);
7347 gcc_assert (TREE_CODE (var
) == INDIRECT_REF
);
7348 var
= TREE_OPERAND (var
, 0);
7349 gcc_assert (DECL_P (var
));
7352 new_var
= lookup_decl (var
, ctx
);
7353 if (var
== OMP_CLAUSE_DECL (c
) && omp_is_reference (var
))
7354 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
7355 ref
= build_outer_var_ref (var
, ctx
, ccode
);
7356 code
= OMP_CLAUSE_REDUCTION_CODE (c
);
7358 /* reduction(-:var) sums up the partial results, so it acts
7359 identically to reduction(+:var). */
7360 if (code
== MINUS_EXPR
)
7365 tree addr
= build_fold_addr_expr_loc (clause_loc
, ref
);
7367 addr
= save_expr (addr
);
7368 ref
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (addr
)), addr
);
7369 x
= fold_build2_loc (clause_loc
, code
, TREE_TYPE (ref
), ref
, new_var
);
7370 x
= build2 (OMP_ATOMIC
, void_type_node
, addr
, x
);
7371 OMP_ATOMIC_MEMORY_ORDER (x
) = OMP_MEMORY_ORDER_RELAXED
;
7372 gimplify_and_add (x
, stmt_seqp
);
7375 else if (TREE_CODE (OMP_CLAUSE_DECL (c
)) == MEM_REF
)
7377 tree d
= OMP_CLAUSE_DECL (c
);
7378 tree type
= TREE_TYPE (d
);
7379 tree v
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
7380 tree i
= create_tmp_var (TREE_TYPE (v
));
7381 tree ptype
= build_pointer_type (TREE_TYPE (type
));
7382 tree bias
= TREE_OPERAND (d
, 1);
7383 d
= TREE_OPERAND (d
, 0);
7384 if (TREE_CODE (d
) == POINTER_PLUS_EXPR
)
7386 tree b
= TREE_OPERAND (d
, 1);
7387 b
= maybe_lookup_decl (b
, ctx
);
7390 b
= TREE_OPERAND (d
, 1);
7391 b
= maybe_lookup_decl_in_outer_ctx (b
, ctx
);
7393 if (integer_zerop (bias
))
7397 bias
= fold_convert_loc (clause_loc
, TREE_TYPE (b
), bias
);
7398 bias
= fold_build2_loc (clause_loc
, PLUS_EXPR
,
7399 TREE_TYPE (b
), b
, bias
);
7401 d
= TREE_OPERAND (d
, 0);
7403 /* For ref build_outer_var_ref already performs this, so
7404 only new_var needs a dereference. */
7405 if (TREE_CODE (d
) == INDIRECT_REF
)
7407 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
7408 gcc_assert (omp_is_reference (var
) && var
== orig_var
);
7410 else if (TREE_CODE (d
) == ADDR_EXPR
)
7412 if (orig_var
== var
)
7414 new_var
= build_fold_addr_expr (new_var
);
7415 ref
= build_fold_addr_expr (ref
);
7420 gcc_assert (orig_var
== var
);
7421 if (omp_is_reference (var
))
7422 ref
= build_fold_addr_expr (ref
);
7426 tree t
= maybe_lookup_decl (v
, ctx
);
7430 v
= maybe_lookup_decl_in_outer_ctx (v
, ctx
);
7431 gimplify_expr (&v
, stmt_seqp
, NULL
, is_gimple_val
, fb_rvalue
);
7433 if (!integer_zerop (bias
))
7435 bias
= fold_convert_loc (clause_loc
, sizetype
, bias
);
7436 new_var
= fold_build2_loc (clause_loc
, POINTER_PLUS_EXPR
,
7437 TREE_TYPE (new_var
), new_var
,
7438 unshare_expr (bias
));
7439 ref
= fold_build2_loc (clause_loc
, POINTER_PLUS_EXPR
,
7440 TREE_TYPE (ref
), ref
, bias
);
7442 new_var
= fold_convert_loc (clause_loc
, ptype
, new_var
);
7443 ref
= fold_convert_loc (clause_loc
, ptype
, ref
);
7444 tree m
= create_tmp_var (ptype
);
7445 gimplify_assign (m
, new_var
, stmt_seqp
);
7447 m
= create_tmp_var (ptype
);
7448 gimplify_assign (m
, ref
, stmt_seqp
);
7450 gimplify_assign (i
, build_int_cst (TREE_TYPE (v
), 0), stmt_seqp
);
7451 tree body
= create_artificial_label (UNKNOWN_LOCATION
);
7452 tree end
= create_artificial_label (UNKNOWN_LOCATION
);
7453 gimple_seq_add_stmt (&sub_seq
, gimple_build_label (body
));
7454 tree priv
= build_simple_mem_ref_loc (clause_loc
, new_var
);
7455 tree out
= build_simple_mem_ref_loc (clause_loc
, ref
);
7456 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
7458 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
7459 tree decl_placeholder
7460 = OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
);
7461 SET_DECL_VALUE_EXPR (placeholder
, out
);
7462 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
7463 SET_DECL_VALUE_EXPR (decl_placeholder
, priv
);
7464 DECL_HAS_VALUE_EXPR_P (decl_placeholder
) = 1;
7465 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
), ctx
);
7466 gimple_seq_add_seq (&sub_seq
,
7467 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
7468 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
7469 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) = NULL
;
7470 OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
) = NULL
;
7474 x
= build2 (code
, TREE_TYPE (out
), out
, priv
);
7475 out
= unshare_expr (out
);
7476 gimplify_assign (out
, x
, &sub_seq
);
7478 gimple
*g
= gimple_build_assign (new_var
, POINTER_PLUS_EXPR
, new_var
,
7479 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
7480 gimple_seq_add_stmt (&sub_seq
, g
);
7481 g
= gimple_build_assign (ref
, POINTER_PLUS_EXPR
, ref
,
7482 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
7483 gimple_seq_add_stmt (&sub_seq
, g
);
7484 g
= gimple_build_assign (i
, PLUS_EXPR
, i
,
7485 build_int_cst (TREE_TYPE (i
), 1));
7486 gimple_seq_add_stmt (&sub_seq
, g
);
7487 g
= gimple_build_cond (LE_EXPR
, i
, v
, body
, end
);
7488 gimple_seq_add_stmt (&sub_seq
, g
);
7489 gimple_seq_add_stmt (&sub_seq
, gimple_build_label (end
));
7491 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
7493 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
7495 if (omp_is_reference (var
)
7496 && !useless_type_conversion_p (TREE_TYPE (placeholder
),
7498 ref
= build_fold_addr_expr_loc (clause_loc
, ref
);
7499 SET_DECL_VALUE_EXPR (placeholder
, ref
);
7500 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
7501 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
), ctx
);
7502 gimple_seq_add_seq (&sub_seq
, OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
7503 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
7504 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) = NULL
;
7508 x
= build2 (code
, TREE_TYPE (ref
), ref
, new_var
);
7509 ref
= build_outer_var_ref (var
, ctx
);
7510 gimplify_assign (ref
, x
, &sub_seq
);
7514 stmt
= gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_START
),
7516 gimple_seq_add_stmt (stmt_seqp
, stmt
);
7518 gimple_seq_add_seq (stmt_seqp
, sub_seq
);
7522 gimple_seq_add_seq (stmt_seqp
, *clist
);
7526 stmt
= gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_END
),
7528 gimple_seq_add_stmt (stmt_seqp
, stmt
);
7532 /* Generate code to implement the COPYPRIVATE clauses. */
7535 lower_copyprivate_clauses (tree clauses
, gimple_seq
*slist
, gimple_seq
*rlist
,
7540 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7542 tree var
, new_var
, ref
, x
;
7544 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
7546 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_COPYPRIVATE
)
7549 var
= OMP_CLAUSE_DECL (c
);
7550 by_ref
= use_pointer_for_field (var
, NULL
);
7552 ref
= build_sender_ref (var
, ctx
);
7553 x
= new_var
= lookup_decl_in_outer_ctx (var
, ctx
);
7556 x
= build_fold_addr_expr_loc (clause_loc
, new_var
);
7557 x
= fold_convert_loc (clause_loc
, TREE_TYPE (ref
), x
);
7559 gimplify_assign (ref
, x
, slist
);
7561 ref
= build_receiver_ref (var
, false, ctx
);
7564 ref
= fold_convert_loc (clause_loc
,
7565 build_pointer_type (TREE_TYPE (new_var
)),
7567 ref
= build_fold_indirect_ref_loc (clause_loc
, ref
);
7569 if (omp_is_reference (var
))
7571 ref
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), ref
);
7572 ref
= build_simple_mem_ref_loc (clause_loc
, ref
);
7573 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
7575 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, new_var
, ref
);
7576 gimplify_and_add (x
, rlist
);
7581 /* Generate code to implement the clauses, FIRSTPRIVATE, COPYIN, LASTPRIVATE,
7582 and REDUCTION from the sender (aka parent) side. */
7585 lower_send_clauses (tree clauses
, gimple_seq
*ilist
, gimple_seq
*olist
,
7589 int ignored_looptemp
= 0;
7590 bool is_taskloop
= false;
7592 /* For taskloop, ignore first two _looptemp_ clauses, those are initialized
7593 by GOMP_taskloop. */
7594 if (is_task_ctx (ctx
) && gimple_omp_task_taskloop_p (ctx
->stmt
))
7596 ignored_looptemp
= 2;
7600 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7602 tree val
, ref
, x
, var
;
7603 bool by_ref
, do_in
= false, do_out
= false;
7604 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
7606 switch (OMP_CLAUSE_CODE (c
))
7608 case OMP_CLAUSE_PRIVATE
:
7609 if (OMP_CLAUSE_PRIVATE_OUTER_REF (c
))
7612 case OMP_CLAUSE_FIRSTPRIVATE
:
7613 case OMP_CLAUSE_COPYIN
:
7614 case OMP_CLAUSE_LASTPRIVATE
:
7615 case OMP_CLAUSE_IN_REDUCTION
:
7616 case OMP_CLAUSE__REDUCTEMP_
:
7618 case OMP_CLAUSE_REDUCTION
:
7619 if (is_task_ctx (ctx
) || OMP_CLAUSE_REDUCTION_TASK (c
))
7622 case OMP_CLAUSE_SHARED
:
7623 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
7626 case OMP_CLAUSE__LOOPTEMP_
:
7627 if (ignored_looptemp
)
7637 val
= OMP_CLAUSE_DECL (c
);
7638 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
7639 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_IN_REDUCTION
)
7640 && TREE_CODE (val
) == MEM_REF
)
7642 val
= TREE_OPERAND (val
, 0);
7643 if (TREE_CODE (val
) == POINTER_PLUS_EXPR
)
7644 val
= TREE_OPERAND (val
, 0);
7645 if (TREE_CODE (val
) == INDIRECT_REF
7646 || TREE_CODE (val
) == ADDR_EXPR
)
7647 val
= TREE_OPERAND (val
, 0);
7648 if (is_variable_sized (val
))
7652 /* For OMP_CLAUSE_SHARED_FIRSTPRIVATE, look beyond the
7653 outer taskloop region. */
7654 omp_context
*ctx_for_o
= ctx
;
7656 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
7657 && OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
7658 ctx_for_o
= ctx
->outer
;
7660 var
= lookup_decl_in_outer_ctx (val
, ctx_for_o
);
7662 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_COPYIN
7663 && is_global_var (var
)
7664 && (val
== OMP_CLAUSE_DECL (c
)
7665 || !is_task_ctx (ctx
)
7666 || (TREE_CODE (TREE_TYPE (val
)) != POINTER_TYPE
7667 && (TREE_CODE (TREE_TYPE (val
)) != REFERENCE_TYPE
7668 || (TREE_CODE (TREE_TYPE (TREE_TYPE (val
)))
7669 != POINTER_TYPE
)))))
7672 t
= omp_member_access_dummy_var (var
);
7675 var
= DECL_VALUE_EXPR (var
);
7676 tree o
= maybe_lookup_decl_in_outer_ctx (t
, ctx_for_o
);
7678 var
= unshare_and_remap (var
, t
, o
);
7680 var
= unshare_expr (var
);
7683 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
)
7685 /* Handle taskloop firstprivate/lastprivate, where the
7686 lastprivate on GIMPLE_OMP_TASK is represented as
7687 OMP_CLAUSE_SHARED_FIRSTPRIVATE. */
7688 tree f
= lookup_sfield ((splay_tree_key
) &DECL_UID (val
), ctx
);
7689 x
= omp_build_component_ref (ctx
->sender_decl
, f
);
7690 if (use_pointer_for_field (val
, ctx
))
7691 var
= build_fold_addr_expr (var
);
7692 gimplify_assign (x
, var
, ilist
);
7693 DECL_ABSTRACT_ORIGIN (f
) = NULL
;
7697 if (((OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_REDUCTION
7698 && OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_IN_REDUCTION
)
7699 || val
== OMP_CLAUSE_DECL (c
))
7700 && is_variable_sized (val
))
7702 by_ref
= use_pointer_for_field (val
, NULL
);
7704 switch (OMP_CLAUSE_CODE (c
))
7706 case OMP_CLAUSE_FIRSTPRIVATE
:
7707 if (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT (c
)
7709 && is_task_ctx (ctx
))
7710 TREE_NO_WARNING (var
) = 1;
7714 case OMP_CLAUSE_PRIVATE
:
7715 case OMP_CLAUSE_COPYIN
:
7716 case OMP_CLAUSE__LOOPTEMP_
:
7717 case OMP_CLAUSE__REDUCTEMP_
:
7721 case OMP_CLAUSE_LASTPRIVATE
:
7722 if (by_ref
|| omp_is_reference (val
))
7724 if (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
))
7731 if (lang_hooks
.decls
.omp_private_outer_ref (val
))
7736 case OMP_CLAUSE_REDUCTION
:
7737 case OMP_CLAUSE_IN_REDUCTION
:
7739 if (val
== OMP_CLAUSE_DECL (c
))
7741 if (is_task_ctx (ctx
))
7742 by_ref
= use_pointer_for_field (val
, ctx
);
7744 do_out
= !(by_ref
|| omp_is_reference (val
));
7747 by_ref
= TREE_CODE (TREE_TYPE (val
)) == ARRAY_TYPE
;
7756 ref
= build_sender_ref (val
, ctx
);
7757 x
= by_ref
? build_fold_addr_expr_loc (clause_loc
, var
) : var
;
7758 gimplify_assign (ref
, x
, ilist
);
7759 if (is_task_ctx (ctx
))
7760 DECL_ABSTRACT_ORIGIN (TREE_OPERAND (ref
, 1)) = NULL
;
7765 ref
= build_sender_ref (val
, ctx
);
7766 gimplify_assign (var
, ref
, olist
);
7771 /* Generate code to implement SHARED from the sender (aka parent)
7772 side. This is trickier, since GIMPLE_OMP_PARALLEL_CLAUSES doesn't
7773 list things that got automatically shared. */
7776 lower_send_shared_vars (gimple_seq
*ilist
, gimple_seq
*olist
, omp_context
*ctx
)
7778 tree var
, ovar
, nvar
, t
, f
, x
, record_type
;
7780 if (ctx
->record_type
== NULL
)
7783 record_type
= ctx
->srecord_type
? ctx
->srecord_type
: ctx
->record_type
;
7784 for (f
= TYPE_FIELDS (record_type
); f
; f
= DECL_CHAIN (f
))
7786 ovar
= DECL_ABSTRACT_ORIGIN (f
);
7787 if (!ovar
|| TREE_CODE (ovar
) == FIELD_DECL
)
7790 nvar
= maybe_lookup_decl (ovar
, ctx
);
7792 || !DECL_HAS_VALUE_EXPR_P (nvar
)
7793 || (ctx
->allocate_map
7794 && ctx
->allocate_map
->get (ovar
)))
7797 /* If CTX is a nested parallel directive. Find the immediately
7798 enclosing parallel or workshare construct that contains a
7799 mapping for OVAR. */
7800 var
= lookup_decl_in_outer_ctx (ovar
, ctx
);
7802 t
= omp_member_access_dummy_var (var
);
7805 var
= DECL_VALUE_EXPR (var
);
7806 tree o
= maybe_lookup_decl_in_outer_ctx (t
, ctx
);
7808 var
= unshare_and_remap (var
, t
, o
);
7810 var
= unshare_expr (var
);
7813 if (use_pointer_for_field (ovar
, ctx
))
7815 x
= build_sender_ref (ovar
, ctx
);
7816 if (TREE_CODE (TREE_TYPE (f
)) == ARRAY_TYPE
7817 && TREE_TYPE (f
) == TREE_TYPE (ovar
))
7819 gcc_assert (is_parallel_ctx (ctx
)
7820 && DECL_ARTIFICIAL (ovar
));
7821 /* _condtemp_ clause. */
7822 var
= build_constructor (TREE_TYPE (x
), NULL
);
7825 var
= build_fold_addr_expr (var
);
7826 gimplify_assign (x
, var
, ilist
);
7830 x
= build_sender_ref (ovar
, ctx
);
7831 gimplify_assign (x
, var
, ilist
);
7833 if (!TREE_READONLY (var
)
7834 /* We don't need to receive a new reference to a result
7835 or parm decl. In fact we may not store to it as we will
7836 invalidate any pending RSO and generate wrong gimple
7838 && !((TREE_CODE (var
) == RESULT_DECL
7839 || TREE_CODE (var
) == PARM_DECL
)
7840 && DECL_BY_REFERENCE (var
)))
7842 x
= build_sender_ref (ovar
, ctx
);
7843 gimplify_assign (var
, x
, olist
);
7849 /* Emit an OpenACC head marker call, encapulating the partitioning and
7850 other information that must be processed by the target compiler.
7851 Return the maximum number of dimensions the associated loop might
7852 be partitioned over. */
7855 lower_oacc_head_mark (location_t loc
, tree ddvar
, tree clauses
,
7856 gimple_seq
*seq
, omp_context
*ctx
)
7858 unsigned levels
= 0;
7860 tree gang_static
= NULL_TREE
;
7861 auto_vec
<tree
, 5> args
;
7863 args
.quick_push (build_int_cst
7864 (integer_type_node
, IFN_UNIQUE_OACC_HEAD_MARK
));
7865 args
.quick_push (ddvar
);
7866 for (tree c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
7868 switch (OMP_CLAUSE_CODE (c
))
7870 case OMP_CLAUSE_GANG
:
7871 tag
|= OLF_DIM_GANG
;
7872 gang_static
= OMP_CLAUSE_GANG_STATIC_EXPR (c
);
7873 /* static:* is represented by -1, and we can ignore it, as
7874 scheduling is always static. */
7875 if (gang_static
&& integer_minus_onep (gang_static
))
7876 gang_static
= NULL_TREE
;
7880 case OMP_CLAUSE_WORKER
:
7881 tag
|= OLF_DIM_WORKER
;
7885 case OMP_CLAUSE_VECTOR
:
7886 tag
|= OLF_DIM_VECTOR
;
7890 case OMP_CLAUSE_SEQ
:
7894 case OMP_CLAUSE_AUTO
:
7898 case OMP_CLAUSE_INDEPENDENT
:
7899 tag
|= OLF_INDEPENDENT
;
7902 case OMP_CLAUSE_TILE
:
7913 if (DECL_P (gang_static
))
7914 gang_static
= build_outer_var_ref (gang_static
, ctx
);
7915 tag
|= OLF_GANG_STATIC
;
7918 omp_context
*tgt
= enclosing_target_ctx (ctx
);
7919 if (!tgt
|| is_oacc_parallel_or_serial (tgt
))
7921 else if (is_oacc_kernels (tgt
))
7922 /* Not using this loops handling inside OpenACC 'kernels' regions. */
7924 else if (is_oacc_kernels_decomposed_part (tgt
))
7929 /* In a parallel region, loops are implicitly INDEPENDENT. */
7930 if (!tgt
|| is_oacc_parallel_or_serial (tgt
))
7931 tag
|= OLF_INDEPENDENT
;
7933 /* Loops inside OpenACC 'kernels' decomposed parts' regions are expected to
7934 have an explicit 'seq' or 'independent' clause, and no 'auto' clause. */
7935 if (tgt
&& is_oacc_kernels_decomposed_part (tgt
))
7937 gcc_assert (tag
& (OLF_SEQ
| OLF_INDEPENDENT
));
7938 gcc_assert (!(tag
& OLF_AUTO
));
7942 /* Tiling could use all 3 levels. */
7946 /* A loop lacking SEQ, GANG, WORKER and/or VECTOR could be AUTO.
7947 Ensure at least one level, or 2 for possible auto
7949 bool maybe_auto
= !(tag
& (((GOMP_DIM_MASK (GOMP_DIM_MAX
) - 1)
7950 << OLF_DIM_BASE
) | OLF_SEQ
));
7952 if (levels
< 1u + maybe_auto
)
7953 levels
= 1u + maybe_auto
;
7956 args
.quick_push (build_int_cst (integer_type_node
, levels
));
7957 args
.quick_push (build_int_cst (integer_type_node
, tag
));
7959 args
.quick_push (gang_static
);
7961 gcall
*call
= gimple_build_call_internal_vec (IFN_UNIQUE
, args
);
7962 gimple_set_location (call
, loc
);
7963 gimple_set_lhs (call
, ddvar
);
7964 gimple_seq_add_stmt (seq
, call
);
7969 /* Emit an OpenACC lopp head or tail marker to SEQ. LEVEL is the
7970 partitioning level of the enclosed region. */
7973 lower_oacc_loop_marker (location_t loc
, tree ddvar
, bool head
,
7974 tree tofollow
, gimple_seq
*seq
)
7976 int marker_kind
= (head
? IFN_UNIQUE_OACC_HEAD_MARK
7977 : IFN_UNIQUE_OACC_TAIL_MARK
);
7978 tree marker
= build_int_cst (integer_type_node
, marker_kind
);
7979 int nargs
= 2 + (tofollow
!= NULL_TREE
);
7980 gcall
*call
= gimple_build_call_internal (IFN_UNIQUE
, nargs
,
7981 marker
, ddvar
, tofollow
);
7982 gimple_set_location (call
, loc
);
7983 gimple_set_lhs (call
, ddvar
);
7984 gimple_seq_add_stmt (seq
, call
);
7987 /* Generate the before and after OpenACC loop sequences. CLAUSES are
7988 the loop clauses, from which we extract reductions. Initialize
7992 lower_oacc_head_tail (location_t loc
, tree clauses
,
7993 gimple_seq
*head
, gimple_seq
*tail
, omp_context
*ctx
)
7996 tree ddvar
= create_tmp_var (integer_type_node
, ".data_dep");
7997 gimple_seq_add_stmt (head
, gimple_build_assign (ddvar
, integer_zero_node
));
7999 unsigned count
= lower_oacc_head_mark (loc
, ddvar
, clauses
, head
, ctx
);
8000 tree fork_kind
= build_int_cst (unsigned_type_node
, IFN_UNIQUE_OACC_FORK
);
8001 tree join_kind
= build_int_cst (unsigned_type_node
, IFN_UNIQUE_OACC_JOIN
);
8004 for (unsigned done
= 1; count
; count
--, done
++)
8006 gimple_seq fork_seq
= NULL
;
8007 gimple_seq join_seq
= NULL
;
8009 tree place
= build_int_cst (integer_type_node
, -1);
8010 gcall
*fork
= gimple_build_call_internal (IFN_UNIQUE
, 3,
8011 fork_kind
, ddvar
, place
);
8012 gimple_set_location (fork
, loc
);
8013 gimple_set_lhs (fork
, ddvar
);
8015 gcall
*join
= gimple_build_call_internal (IFN_UNIQUE
, 3,
8016 join_kind
, ddvar
, place
);
8017 gimple_set_location (join
, loc
);
8018 gimple_set_lhs (join
, ddvar
);
8020 /* Mark the beginning of this level sequence. */
8022 lower_oacc_loop_marker (loc
, ddvar
, true,
8023 build_int_cst (integer_type_node
, count
),
8025 lower_oacc_loop_marker (loc
, ddvar
, false,
8026 build_int_cst (integer_type_node
, done
),
8029 lower_oacc_reductions (loc
, clauses
, place
, inner
,
8030 fork
, join
, &fork_seq
, &join_seq
, ctx
);
8032 /* Append this level to head. */
8033 gimple_seq_add_seq (head
, fork_seq
);
8034 /* Prepend it to tail. */
8035 gimple_seq_add_seq (&join_seq
, *tail
);
8041 /* Mark the end of the sequence. */
8042 lower_oacc_loop_marker (loc
, ddvar
, true, NULL_TREE
, head
);
8043 lower_oacc_loop_marker (loc
, ddvar
, false, NULL_TREE
, tail
);
8046 /* If exceptions are enabled, wrap the statements in BODY in a MUST_NOT_THROW
8047 catch handler and return it. This prevents programs from violating the
8048 structured block semantics with throws. */
8051 maybe_catch_exception (gimple_seq body
)
8056 if (!flag_exceptions
)
8059 if (lang_hooks
.eh_protect_cleanup_actions
!= NULL
)
8060 decl
= lang_hooks
.eh_protect_cleanup_actions ();
8062 decl
= builtin_decl_explicit (BUILT_IN_TRAP
);
8064 g
= gimple_build_eh_must_not_throw (decl
);
8065 g
= gimple_build_try (body
, gimple_seq_alloc_with_stmt (g
),
8068 return gimple_seq_alloc_with_stmt (g
);
8072 /* Routines to lower OMP directives into OMP-GIMPLE. */
8074 /* If ctx is a worksharing context inside of a cancellable parallel
8075 region and it isn't nowait, add lhs to its GIMPLE_OMP_RETURN
8076 and conditional branch to parallel's cancel_label to handle
8077 cancellation in the implicit barrier. */
8080 maybe_add_implicit_barrier_cancel (omp_context
*ctx
, gimple
*omp_return
,
8083 gcc_assert (gimple_code (omp_return
) == GIMPLE_OMP_RETURN
);
8084 if (gimple_omp_return_nowait_p (omp_return
))
8086 for (omp_context
*outer
= ctx
->outer
; outer
; outer
= outer
->outer
)
8087 if (gimple_code (outer
->stmt
) == GIMPLE_OMP_PARALLEL
8088 && outer
->cancellable
)
8090 tree fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_CANCEL
);
8091 tree c_bool_type
= TREE_TYPE (TREE_TYPE (fndecl
));
8092 tree lhs
= create_tmp_var (c_bool_type
);
8093 gimple_omp_return_set_lhs (omp_return
, lhs
);
8094 tree fallthru_label
= create_artificial_label (UNKNOWN_LOCATION
);
8095 gimple
*g
= gimple_build_cond (NE_EXPR
, lhs
,
8096 fold_convert (c_bool_type
,
8097 boolean_false_node
),
8098 outer
->cancel_label
, fallthru_label
);
8099 gimple_seq_add_stmt (body
, g
);
8100 gimple_seq_add_stmt (body
, gimple_build_label (fallthru_label
));
8102 else if (gimple_code (outer
->stmt
) != GIMPLE_OMP_TASKGROUP
)
8106 /* Find the first task_reduction or reduction clause or return NULL
8107 if there are none. */
8110 omp_task_reductions_find_first (tree clauses
, enum tree_code code
,
8111 enum omp_clause_code ccode
)
8115 clauses
= omp_find_clause (clauses
, ccode
);
8116 if (clauses
== NULL_TREE
)
8118 if (ccode
!= OMP_CLAUSE_REDUCTION
8119 || code
== OMP_TASKLOOP
8120 || OMP_CLAUSE_REDUCTION_TASK (clauses
))
8122 clauses
= OMP_CLAUSE_CHAIN (clauses
);
8126 static void lower_omp_task_reductions (omp_context
*, enum tree_code
, tree
,
8127 gimple_seq
*, gimple_seq
*);
8129 /* Lower the OpenMP sections directive in the current statement in GSI_P.
8130 CTX is the enclosing OMP context for the current statement. */
8133 lower_omp_sections (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
8135 tree block
, control
;
8136 gimple_stmt_iterator tgsi
;
8137 gomp_sections
*stmt
;
8139 gbind
*new_stmt
, *bind
;
8140 gimple_seq ilist
, dlist
, olist
, tred_dlist
= NULL
, clist
= NULL
, new_body
;
8142 stmt
= as_a
<gomp_sections
*> (gsi_stmt (*gsi_p
));
8144 push_gimplify_context ();
8150 = omp_task_reductions_find_first (gimple_omp_sections_clauses (stmt
),
8151 OMP_SECTIONS
, OMP_CLAUSE_REDUCTION
);
8152 tree rtmp
= NULL_TREE
;
8155 tree type
= build_pointer_type (pointer_sized_int_node
);
8156 tree temp
= create_tmp_var (type
);
8157 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__REDUCTEMP_
);
8158 OMP_CLAUSE_DECL (c
) = temp
;
8159 OMP_CLAUSE_CHAIN (c
) = gimple_omp_sections_clauses (stmt
);
8160 gimple_omp_sections_set_clauses (stmt
, c
);
8161 lower_omp_task_reductions (ctx
, OMP_SECTIONS
,
8162 gimple_omp_sections_clauses (stmt
),
8163 &ilist
, &tred_dlist
);
8165 rtmp
= make_ssa_name (type
);
8166 gimple_seq_add_stmt (&ilist
, gimple_build_assign (rtmp
, temp
));
8169 tree
*clauses_ptr
= gimple_omp_sections_clauses_ptr (stmt
);
8170 lower_lastprivate_conditional_clauses (clauses_ptr
, ctx
);
8172 lower_rec_input_clauses (gimple_omp_sections_clauses (stmt
),
8173 &ilist
, &dlist
, ctx
, NULL
);
8175 control
= create_tmp_var (unsigned_type_node
, ".section");
8176 gimple_omp_sections_set_control (stmt
, control
);
8178 new_body
= gimple_omp_body (stmt
);
8179 gimple_omp_set_body (stmt
, NULL
);
8180 tgsi
= gsi_start (new_body
);
8181 for (; !gsi_end_p (tgsi
); gsi_next (&tgsi
))
8186 sec_start
= gsi_stmt (tgsi
);
8187 sctx
= maybe_lookup_ctx (sec_start
);
8190 lower_omp (gimple_omp_body_ptr (sec_start
), sctx
);
8191 gsi_insert_seq_after (&tgsi
, gimple_omp_body (sec_start
),
8192 GSI_CONTINUE_LINKING
);
8193 gimple_omp_set_body (sec_start
, NULL
);
8195 if (gsi_one_before_end_p (tgsi
))
8197 gimple_seq l
= NULL
;
8198 lower_lastprivate_clauses (gimple_omp_sections_clauses (stmt
), NULL
,
8199 &ilist
, &l
, &clist
, ctx
);
8200 gsi_insert_seq_after (&tgsi
, l
, GSI_CONTINUE_LINKING
);
8201 gimple_omp_section_set_last (sec_start
);
8204 gsi_insert_after (&tgsi
, gimple_build_omp_return (false),
8205 GSI_CONTINUE_LINKING
);
8208 block
= make_node (BLOCK
);
8209 bind
= gimple_build_bind (NULL
, new_body
, block
);
8212 lower_reduction_clauses (gimple_omp_sections_clauses (stmt
), &olist
,
8216 tree fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_START
);
8217 gcall
*g
= gimple_build_call (fndecl
, 0);
8218 gimple_seq_add_stmt (&olist
, g
);
8219 gimple_seq_add_seq (&olist
, clist
);
8220 fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_END
);
8221 g
= gimple_build_call (fndecl
, 0);
8222 gimple_seq_add_stmt (&olist
, g
);
8225 block
= make_node (BLOCK
);
8226 new_stmt
= gimple_build_bind (NULL
, NULL
, block
);
8227 gsi_replace (gsi_p
, new_stmt
, true);
8229 pop_gimplify_context (new_stmt
);
8230 gimple_bind_append_vars (new_stmt
, ctx
->block_vars
);
8231 BLOCK_VARS (block
) = gimple_bind_vars (bind
);
8232 if (BLOCK_VARS (block
))
8233 TREE_USED (block
) = 1;
8236 gimple_seq_add_seq (&new_body
, ilist
);
8237 gimple_seq_add_stmt (&new_body
, stmt
);
8238 gimple_seq_add_stmt (&new_body
, gimple_build_omp_sections_switch ());
8239 gimple_seq_add_stmt (&new_body
, bind
);
8241 t
= gimple_build_omp_continue (control
, control
);
8242 gimple_seq_add_stmt (&new_body
, t
);
8244 gimple_seq_add_seq (&new_body
, olist
);
8245 if (ctx
->cancellable
)
8246 gimple_seq_add_stmt (&new_body
, gimple_build_label (ctx
->cancel_label
));
8247 gimple_seq_add_seq (&new_body
, dlist
);
8249 new_body
= maybe_catch_exception (new_body
);
8251 bool nowait
= omp_find_clause (gimple_omp_sections_clauses (stmt
),
8252 OMP_CLAUSE_NOWAIT
) != NULL_TREE
;
8253 t
= gimple_build_omp_return (nowait
);
8254 gimple_seq_add_stmt (&new_body
, t
);
8255 gimple_seq_add_seq (&new_body
, tred_dlist
);
8256 maybe_add_implicit_barrier_cancel (ctx
, t
, &new_body
);
8259 OMP_CLAUSE_DECL (rclauses
) = rtmp
;
8261 gimple_bind_set_body (new_stmt
, new_body
);
8265 /* A subroutine of lower_omp_single. Expand the simple form of
8266 a GIMPLE_OMP_SINGLE, without a copyprivate clause:
8268 if (GOMP_single_start ())
8270 [ GOMP_barrier (); ] -> unless 'nowait' is present.
8272 FIXME. It may be better to delay expanding the logic of this until
8273 pass_expand_omp. The expanded logic may make the job more difficult
8274 to a synchronization analysis pass. */
8277 lower_omp_single_simple (gomp_single
*single_stmt
, gimple_seq
*pre_p
)
8279 location_t loc
= gimple_location (single_stmt
);
8280 tree tlabel
= create_artificial_label (loc
);
8281 tree flabel
= create_artificial_label (loc
);
8282 gimple
*call
, *cond
;
8285 decl
= builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_START
);
8286 lhs
= create_tmp_var (TREE_TYPE (TREE_TYPE (decl
)));
8287 call
= gimple_build_call (decl
, 0);
8288 gimple_call_set_lhs (call
, lhs
);
8289 gimple_seq_add_stmt (pre_p
, call
);
8291 cond
= gimple_build_cond (EQ_EXPR
, lhs
,
8292 fold_convert_loc (loc
, TREE_TYPE (lhs
),
8295 gimple_seq_add_stmt (pre_p
, cond
);
8296 gimple_seq_add_stmt (pre_p
, gimple_build_label (tlabel
));
8297 gimple_seq_add_seq (pre_p
, gimple_omp_body (single_stmt
));
8298 gimple_seq_add_stmt (pre_p
, gimple_build_label (flabel
));
8302 /* A subroutine of lower_omp_single. Expand the simple form of
8303 a GIMPLE_OMP_SINGLE, with a copyprivate clause:
8305 #pragma omp single copyprivate (a, b, c)
8307 Create a new structure to hold copies of 'a', 'b' and 'c' and emit:
8310 if ((copyout_p = GOMP_single_copy_start ()) == NULL)
8316 GOMP_single_copy_end (©out);
8327 FIXME. It may be better to delay expanding the logic of this until
8328 pass_expand_omp. The expanded logic may make the job more difficult
8329 to a synchronization analysis pass. */
8332 lower_omp_single_copy (gomp_single
*single_stmt
, gimple_seq
*pre_p
,
8335 tree ptr_type
, t
, l0
, l1
, l2
, bfn_decl
;
8336 gimple_seq copyin_seq
;
8337 location_t loc
= gimple_location (single_stmt
);
8339 ctx
->sender_decl
= create_tmp_var (ctx
->record_type
, ".omp_copy_o");
8341 ptr_type
= build_pointer_type (ctx
->record_type
);
8342 ctx
->receiver_decl
= create_tmp_var (ptr_type
, ".omp_copy_i");
8344 l0
= create_artificial_label (loc
);
8345 l1
= create_artificial_label (loc
);
8346 l2
= create_artificial_label (loc
);
8348 bfn_decl
= builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_COPY_START
);
8349 t
= build_call_expr_loc (loc
, bfn_decl
, 0);
8350 t
= fold_convert_loc (loc
, ptr_type
, t
);
8351 gimplify_assign (ctx
->receiver_decl
, t
, pre_p
);
8353 t
= build2 (EQ_EXPR
, boolean_type_node
, ctx
->receiver_decl
,
8354 build_int_cst (ptr_type
, 0));
8355 t
= build3 (COND_EXPR
, void_type_node
, t
,
8356 build_and_jump (&l0
), build_and_jump (&l1
));
8357 gimplify_and_add (t
, pre_p
);
8359 gimple_seq_add_stmt (pre_p
, gimple_build_label (l0
));
8361 gimple_seq_add_seq (pre_p
, gimple_omp_body (single_stmt
));
8364 lower_copyprivate_clauses (gimple_omp_single_clauses (single_stmt
), pre_p
,
8367 t
= build_fold_addr_expr_loc (loc
, ctx
->sender_decl
);
8368 bfn_decl
= builtin_decl_explicit (BUILT_IN_GOMP_SINGLE_COPY_END
);
8369 t
= build_call_expr_loc (loc
, bfn_decl
, 1, t
);
8370 gimplify_and_add (t
, pre_p
);
8372 t
= build_and_jump (&l2
);
8373 gimplify_and_add (t
, pre_p
);
8375 gimple_seq_add_stmt (pre_p
, gimple_build_label (l1
));
8377 gimple_seq_add_seq (pre_p
, copyin_seq
);
8379 gimple_seq_add_stmt (pre_p
, gimple_build_label (l2
));
8383 /* Expand code for an OpenMP single directive. */
8386 lower_omp_single (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
8389 gomp_single
*single_stmt
= as_a
<gomp_single
*> (gsi_stmt (*gsi_p
));
8391 gimple_seq bind_body
, bind_body_tail
= NULL
, dlist
;
8393 push_gimplify_context ();
8395 block
= make_node (BLOCK
);
8396 bind
= gimple_build_bind (NULL
, NULL
, block
);
8397 gsi_replace (gsi_p
, bind
, true);
8400 lower_rec_input_clauses (gimple_omp_single_clauses (single_stmt
),
8401 &bind_body
, &dlist
, ctx
, NULL
);
8402 lower_omp (gimple_omp_body_ptr (single_stmt
), ctx
);
8404 gimple_seq_add_stmt (&bind_body
, single_stmt
);
8406 if (ctx
->record_type
)
8407 lower_omp_single_copy (single_stmt
, &bind_body
, ctx
);
8409 lower_omp_single_simple (single_stmt
, &bind_body
);
8411 gimple_omp_set_body (single_stmt
, NULL
);
8413 gimple_seq_add_seq (&bind_body
, dlist
);
8415 bind_body
= maybe_catch_exception (bind_body
);
8417 bool nowait
= omp_find_clause (gimple_omp_single_clauses (single_stmt
),
8418 OMP_CLAUSE_NOWAIT
) != NULL_TREE
;
8419 gimple
*g
= gimple_build_omp_return (nowait
);
8420 gimple_seq_add_stmt (&bind_body_tail
, g
);
8421 maybe_add_implicit_barrier_cancel (ctx
, g
, &bind_body_tail
);
8422 if (ctx
->record_type
)
8424 gimple_stmt_iterator gsi
= gsi_start (bind_body_tail
);
8425 tree clobber
= build_clobber (ctx
->record_type
);
8426 gsi_insert_after (&gsi
, gimple_build_assign (ctx
->sender_decl
,
8427 clobber
), GSI_SAME_STMT
);
8429 gimple_seq_add_seq (&bind_body
, bind_body_tail
);
8430 gimple_bind_set_body (bind
, bind_body
);
8432 pop_gimplify_context (bind
);
8434 gimple_bind_append_vars (bind
, ctx
->block_vars
);
8435 BLOCK_VARS (block
) = ctx
->block_vars
;
8436 if (BLOCK_VARS (block
))
8437 TREE_USED (block
) = 1;
8441 /* Expand code for an OpenMP master directive. */
8444 lower_omp_master (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
8446 tree block
, lab
= NULL
, x
, bfn_decl
;
8447 gimple
*stmt
= gsi_stmt (*gsi_p
);
8449 location_t loc
= gimple_location (stmt
);
8452 push_gimplify_context ();
8454 block
= make_node (BLOCK
);
8455 bind
= gimple_build_bind (NULL
, NULL
, block
);
8456 gsi_replace (gsi_p
, bind
, true);
8457 gimple_bind_add_stmt (bind
, stmt
);
8459 bfn_decl
= builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM
);
8460 x
= build_call_expr_loc (loc
, bfn_decl
, 0);
8461 x
= build2 (EQ_EXPR
, boolean_type_node
, x
, integer_zero_node
);
8462 x
= build3 (COND_EXPR
, void_type_node
, x
, NULL
, build_and_jump (&lab
));
8464 gimplify_and_add (x
, &tseq
);
8465 gimple_bind_add_seq (bind
, tseq
);
8467 lower_omp (gimple_omp_body_ptr (stmt
), ctx
);
8468 gimple_omp_set_body (stmt
, maybe_catch_exception (gimple_omp_body (stmt
)));
8469 gimple_bind_add_seq (bind
, gimple_omp_body (stmt
));
8470 gimple_omp_set_body (stmt
, NULL
);
8472 gimple_bind_add_stmt (bind
, gimple_build_label (lab
));
8474 gimple_bind_add_stmt (bind
, gimple_build_omp_return (true));
8476 pop_gimplify_context (bind
);
8478 gimple_bind_append_vars (bind
, ctx
->block_vars
);
8479 BLOCK_VARS (block
) = ctx
->block_vars
;
8482 /* Helper function for lower_omp_task_reductions. For a specific PASS
8483 find out the current clause it should be processed, or return false
8484 if all have been processed already. */
8487 omp_task_reduction_iterate (int pass
, enum tree_code code
,
8488 enum omp_clause_code ccode
, tree
*c
, tree
*decl
,
8489 tree
*type
, tree
*next
)
8491 for (; *c
; *c
= omp_find_clause (OMP_CLAUSE_CHAIN (*c
), ccode
))
8493 if (ccode
== OMP_CLAUSE_REDUCTION
8494 && code
!= OMP_TASKLOOP
8495 && !OMP_CLAUSE_REDUCTION_TASK (*c
))
8497 *decl
= OMP_CLAUSE_DECL (*c
);
8498 *type
= TREE_TYPE (*decl
);
8499 if (TREE_CODE (*decl
) == MEM_REF
)
8506 if (omp_is_reference (*decl
))
8507 *type
= TREE_TYPE (*type
);
8508 if (pass
!= (!TREE_CONSTANT (TYPE_SIZE_UNIT (*type
))))
8511 *next
= omp_find_clause (OMP_CLAUSE_CHAIN (*c
), ccode
);
8520 /* Lower task_reduction and reduction clauses (the latter unless CODE is
8521 OMP_TASKGROUP only with task modifier). Register mapping of those in
8522 START sequence and reducing them and unregister them in the END sequence. */
8525 lower_omp_task_reductions (omp_context
*ctx
, enum tree_code code
, tree clauses
,
8526 gimple_seq
*start
, gimple_seq
*end
)
8528 enum omp_clause_code ccode
8529 = (code
== OMP_TASKGROUP
8530 ? OMP_CLAUSE_TASK_REDUCTION
: OMP_CLAUSE_REDUCTION
);
8531 tree cancellable
= NULL_TREE
;
8532 clauses
= omp_task_reductions_find_first (clauses
, code
, ccode
);
8533 if (clauses
== NULL_TREE
)
8535 if (code
== OMP_FOR
|| code
== OMP_SECTIONS
)
8537 for (omp_context
*outer
= ctx
->outer
; outer
; outer
= outer
->outer
)
8538 if (gimple_code (outer
->stmt
) == GIMPLE_OMP_PARALLEL
8539 && outer
->cancellable
)
8541 cancellable
= error_mark_node
;
8544 else if (gimple_code (outer
->stmt
) != GIMPLE_OMP_TASKGROUP
)
8547 tree record_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
8548 tree
*last
= &TYPE_FIELDS (record_type
);
8552 tree field
= build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
8554 tree ifield
= build_decl (UNKNOWN_LOCATION
, FIELD_DECL
, NULL_TREE
,
8557 DECL_CHAIN (field
) = ifield
;
8558 last
= &DECL_CHAIN (ifield
);
8559 DECL_CONTEXT (field
) = record_type
;
8560 if (TYPE_ALIGN (record_type
) < DECL_ALIGN (field
))
8561 SET_TYPE_ALIGN (record_type
, DECL_ALIGN (field
));
8562 DECL_CONTEXT (ifield
) = record_type
;
8563 if (TYPE_ALIGN (record_type
) < DECL_ALIGN (ifield
))
8564 SET_TYPE_ALIGN (record_type
, DECL_ALIGN (ifield
));
8566 for (int pass
= 0; pass
< 2; pass
++)
8568 tree decl
, type
, next
;
8569 for (tree c
= clauses
;
8570 omp_task_reduction_iterate (pass
, code
, ccode
,
8571 &c
, &decl
, &type
, &next
); c
= next
)
8574 tree new_type
= type
;
8576 new_type
= remap_type (type
, &ctx
->outer
->cb
);
8578 = build_decl (OMP_CLAUSE_LOCATION (c
), FIELD_DECL
,
8579 DECL_P (decl
) ? DECL_NAME (decl
) : NULL_TREE
,
8581 if (DECL_P (decl
) && type
== TREE_TYPE (decl
))
8583 SET_DECL_ALIGN (field
, DECL_ALIGN (decl
));
8584 DECL_USER_ALIGN (field
) = DECL_USER_ALIGN (decl
);
8585 TREE_THIS_VOLATILE (field
) = TREE_THIS_VOLATILE (decl
);
8588 SET_DECL_ALIGN (field
, TYPE_ALIGN (type
));
8589 DECL_CONTEXT (field
) = record_type
;
8590 if (TYPE_ALIGN (record_type
) < DECL_ALIGN (field
))
8591 SET_TYPE_ALIGN (record_type
, DECL_ALIGN (field
));
8593 last
= &DECL_CHAIN (field
);
8595 = build_decl (OMP_CLAUSE_LOCATION (c
), FIELD_DECL
, NULL_TREE
,
8597 DECL_CONTEXT (bfield
) = record_type
;
8598 if (TYPE_ALIGN (record_type
) < DECL_ALIGN (bfield
))
8599 SET_TYPE_ALIGN (record_type
, DECL_ALIGN (bfield
));
8601 last
= &DECL_CHAIN (bfield
);
8605 layout_type (record_type
);
8607 /* Build up an array which registers with the runtime all the reductions
8608 and deregisters them at the end. Format documented in libgomp/task.c. */
8609 tree atype
= build_array_type_nelts (pointer_sized_int_node
, 7 + cnt
* 3);
8610 tree avar
= create_tmp_var_raw (atype
);
8611 gimple_add_tmp_var (avar
);
8612 TREE_ADDRESSABLE (avar
) = 1;
8613 tree r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_zero_node
,
8614 NULL_TREE
, NULL_TREE
);
8615 tree t
= build_int_cst (pointer_sized_int_node
, cnt
);
8616 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8617 gimple_seq seq
= NULL
;
8618 tree sz
= fold_convert (pointer_sized_int_node
,
8619 TYPE_SIZE_UNIT (record_type
));
8621 sz
= fold_build2 (PLUS_EXPR
, pointer_sized_int_node
, sz
,
8622 build_int_cst (pointer_sized_int_node
, cachesz
- 1));
8623 sz
= fold_build2 (BIT_AND_EXPR
, pointer_sized_int_node
, sz
,
8624 build_int_cst (pointer_sized_int_node
, ~(cachesz
- 1)));
8625 ctx
->task_reductions
.create (1 + cnt
);
8626 ctx
->task_reduction_map
= new hash_map
<tree
, unsigned>;
8627 ctx
->task_reductions
.quick_push (TREE_CODE (sz
) == INTEGER_CST
8629 sz
= force_gimple_operand (sz
, &seq
, true, NULL_TREE
);
8630 gimple_seq_add_seq (start
, seq
);
8631 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_one_node
,
8632 NULL_TREE
, NULL_TREE
);
8633 gimple_seq_add_stmt (start
, gimple_build_assign (r
, sz
));
8634 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_int (2),
8635 NULL_TREE
, NULL_TREE
);
8636 t
= build_int_cst (pointer_sized_int_node
,
8637 MAX (TYPE_ALIGN_UNIT (record_type
), (unsigned) cachesz
));
8638 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8639 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_int (3),
8640 NULL_TREE
, NULL_TREE
);
8641 t
= build_int_cst (pointer_sized_int_node
, -1);
8642 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8643 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_int (4),
8644 NULL_TREE
, NULL_TREE
);
8645 t
= build_int_cst (pointer_sized_int_node
, 0);
8646 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8648 /* In end, build a loop that iterates from 0 to < omp_get_num_threads ()
8649 and for each task reduction checks a bool right after the private variable
8650 within that thread's chunk; if the bool is clear, it hasn't been
8651 initialized and thus isn't going to be reduced nor destructed, otherwise
8652 reduce and destruct it. */
8653 tree idx
= create_tmp_var (size_type_node
);
8654 gimple_seq_add_stmt (end
, gimple_build_assign (idx
, size_zero_node
));
8655 tree num_thr_sz
= create_tmp_var (size_type_node
);
8656 tree lab1
= create_artificial_label (UNKNOWN_LOCATION
);
8657 tree lab2
= create_artificial_label (UNKNOWN_LOCATION
);
8658 tree lab3
= NULL_TREE
;
8660 if (code
== OMP_FOR
|| code
== OMP_SECTIONS
)
8662 /* For worksharing constructs, only perform it in the master thread,
8663 with the exception of cancelled implicit barriers - then only handle
8664 the current thread. */
8665 tree lab4
= create_artificial_label (UNKNOWN_LOCATION
);
8666 t
= builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM
);
8667 tree thr_num
= create_tmp_var (integer_type_node
);
8668 g
= gimple_build_call (t
, 0);
8669 gimple_call_set_lhs (g
, thr_num
);
8670 gimple_seq_add_stmt (end
, g
);
8674 tree lab5
= create_artificial_label (UNKNOWN_LOCATION
);
8675 tree lab6
= create_artificial_label (UNKNOWN_LOCATION
);
8676 lab3
= create_artificial_label (UNKNOWN_LOCATION
);
8677 if (code
== OMP_FOR
)
8678 c
= gimple_omp_for_clauses (ctx
->stmt
);
8679 else /* if (code == OMP_SECTIONS) */
8680 c
= gimple_omp_sections_clauses (ctx
->stmt
);
8681 c
= OMP_CLAUSE_DECL (omp_find_clause (c
, OMP_CLAUSE__REDUCTEMP_
));
8683 g
= gimple_build_cond (NE_EXPR
, c
, build_zero_cst (TREE_TYPE (c
)),
8685 gimple_seq_add_stmt (end
, g
);
8686 gimple_seq_add_stmt (end
, gimple_build_label (lab5
));
8687 g
= gimple_build_assign (idx
, NOP_EXPR
, thr_num
);
8688 gimple_seq_add_stmt (end
, g
);
8689 g
= gimple_build_assign (num_thr_sz
, PLUS_EXPR
, idx
,
8690 build_one_cst (TREE_TYPE (idx
)));
8691 gimple_seq_add_stmt (end
, g
);
8692 gimple_seq_add_stmt (end
, gimple_build_goto (lab3
));
8693 gimple_seq_add_stmt (end
, gimple_build_label (lab6
));
8695 g
= gimple_build_cond (NE_EXPR
, thr_num
, integer_zero_node
, lab2
, lab4
);
8696 gimple_seq_add_stmt (end
, g
);
8697 gimple_seq_add_stmt (end
, gimple_build_label (lab4
));
8699 if (code
!= OMP_PARALLEL
)
8701 t
= builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS
);
8702 tree num_thr
= create_tmp_var (integer_type_node
);
8703 g
= gimple_build_call (t
, 0);
8704 gimple_call_set_lhs (g
, num_thr
);
8705 gimple_seq_add_stmt (end
, g
);
8706 g
= gimple_build_assign (num_thr_sz
, NOP_EXPR
, num_thr
);
8707 gimple_seq_add_stmt (end
, g
);
8709 gimple_seq_add_stmt (end
, gimple_build_label (lab3
));
8713 tree c
= omp_find_clause (gimple_omp_parallel_clauses (ctx
->stmt
),
8714 OMP_CLAUSE__REDUCTEMP_
);
8715 t
= fold_convert (pointer_sized_int_node
, OMP_CLAUSE_DECL (c
));
8716 t
= fold_convert (size_type_node
, t
);
8717 gimplify_assign (num_thr_sz
, t
, end
);
8719 t
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
, size_int (2),
8720 NULL_TREE
, NULL_TREE
);
8721 tree data
= create_tmp_var (pointer_sized_int_node
);
8722 gimple_seq_add_stmt (end
, gimple_build_assign (data
, t
));
8723 gimple_seq_add_stmt (end
, gimple_build_label (lab1
));
8725 if (TREE_CODE (TYPE_SIZE_UNIT (record_type
)) == INTEGER_CST
)
8726 ptr
= create_tmp_var (build_pointer_type (record_type
));
8728 ptr
= create_tmp_var (ptr_type_node
);
8729 gimple_seq_add_stmt (end
, gimple_build_assign (ptr
, NOP_EXPR
, data
));
8731 tree field
= TYPE_FIELDS (record_type
);
8734 field
= DECL_CHAIN (DECL_CHAIN (field
));
8735 for (int pass
= 0; pass
< 2; pass
++)
8737 tree decl
, type
, next
;
8738 for (tree c
= clauses
;
8739 omp_task_reduction_iterate (pass
, code
, ccode
,
8740 &c
, &decl
, &type
, &next
); c
= next
)
8742 tree var
= decl
, ref
;
8743 if (TREE_CODE (decl
) == MEM_REF
)
8745 var
= TREE_OPERAND (var
, 0);
8746 if (TREE_CODE (var
) == POINTER_PLUS_EXPR
)
8747 var
= TREE_OPERAND (var
, 0);
8749 if (TREE_CODE (var
) == ADDR_EXPR
)
8750 var
= TREE_OPERAND (var
, 0);
8751 else if (TREE_CODE (var
) == INDIRECT_REF
)
8752 var
= TREE_OPERAND (var
, 0);
8753 tree orig_var
= var
;
8754 if (is_variable_sized (var
))
8756 gcc_assert (DECL_HAS_VALUE_EXPR_P (var
));
8757 var
= DECL_VALUE_EXPR (var
);
8758 gcc_assert (TREE_CODE (var
) == INDIRECT_REF
);
8759 var
= TREE_OPERAND (var
, 0);
8760 gcc_assert (DECL_P (var
));
8762 t
= ref
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
8763 if (orig_var
!= var
)
8764 gcc_assert (TREE_CODE (v
) == ADDR_EXPR
);
8765 else if (TREE_CODE (v
) == ADDR_EXPR
)
8766 t
= build_fold_addr_expr (t
);
8767 else if (TREE_CODE (v
) == INDIRECT_REF
)
8768 t
= build_fold_indirect_ref (t
);
8769 if (TREE_CODE (TREE_OPERAND (decl
, 0)) == POINTER_PLUS_EXPR
)
8771 tree b
= TREE_OPERAND (TREE_OPERAND (decl
, 0), 1);
8772 b
= maybe_lookup_decl_in_outer_ctx (b
, ctx
);
8773 t
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (t
), t
, b
);
8775 if (!integer_zerop (TREE_OPERAND (decl
, 1)))
8776 t
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (t
), t
,
8777 fold_convert (size_type_node
,
8778 TREE_OPERAND (decl
, 1)));
8782 t
= ref
= maybe_lookup_decl_in_outer_ctx (var
, ctx
);
8783 if (!omp_is_reference (decl
))
8784 t
= build_fold_addr_expr (t
);
8786 t
= fold_convert (pointer_sized_int_node
, t
);
8788 t
= force_gimple_operand (t
, &seq
, true, NULL_TREE
);
8789 gimple_seq_add_seq (start
, seq
);
8790 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
,
8791 size_int (7 + cnt
* 3), NULL_TREE
, NULL_TREE
);
8792 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8793 t
= unshare_expr (byte_position (field
));
8794 t
= fold_convert (pointer_sized_int_node
, t
);
8795 ctx
->task_reduction_map
->put (c
, cnt
);
8796 ctx
->task_reductions
.quick_push (TREE_CODE (t
) == INTEGER_CST
8799 t
= force_gimple_operand (t
, &seq
, true, NULL_TREE
);
8800 gimple_seq_add_seq (start
, seq
);
8801 r
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
,
8802 size_int (7 + cnt
* 3 + 1), NULL_TREE
, NULL_TREE
);
8803 gimple_seq_add_stmt (start
, gimple_build_assign (r
, t
));
8805 tree bfield
= DECL_CHAIN (field
);
8807 if (code
== OMP_PARALLEL
|| code
== OMP_FOR
|| code
== OMP_SECTIONS
)
8808 /* In parallel or worksharing all threads unconditionally
8809 initialize all their task reduction private variables. */
8810 cond
= boolean_true_node
;
8811 else if (TREE_TYPE (ptr
) == ptr_type_node
)
8813 cond
= build2 (POINTER_PLUS_EXPR
, ptr_type_node
, ptr
,
8814 unshare_expr (byte_position (bfield
)));
8816 cond
= force_gimple_operand (cond
, &seq
, true, NULL_TREE
);
8817 gimple_seq_add_seq (end
, seq
);
8818 tree pbool
= build_pointer_type (TREE_TYPE (bfield
));
8819 cond
= build2 (MEM_REF
, TREE_TYPE (bfield
), cond
,
8820 build_int_cst (pbool
, 0));
8823 cond
= build3 (COMPONENT_REF
, TREE_TYPE (bfield
),
8824 build_simple_mem_ref (ptr
), bfield
, NULL_TREE
);
8825 tree lab3
= create_artificial_label (UNKNOWN_LOCATION
);
8826 tree lab4
= create_artificial_label (UNKNOWN_LOCATION
);
8827 tree condv
= create_tmp_var (boolean_type_node
);
8828 gimple_seq_add_stmt (end
, gimple_build_assign (condv
, cond
));
8829 g
= gimple_build_cond (NE_EXPR
, condv
, boolean_false_node
,
8831 gimple_seq_add_stmt (end
, g
);
8832 gimple_seq_add_stmt (end
, gimple_build_label (lab3
));
8833 if (cancellable
&& OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) == NULL_TREE
)
8835 /* If this reduction doesn't need destruction and parallel
8836 has been cancelled, there is nothing to do for this
8837 reduction, so jump around the merge operation. */
8838 tree lab5
= create_artificial_label (UNKNOWN_LOCATION
);
8839 g
= gimple_build_cond (NE_EXPR
, cancellable
,
8840 build_zero_cst (TREE_TYPE (cancellable
)),
8842 gimple_seq_add_stmt (end
, g
);
8843 gimple_seq_add_stmt (end
, gimple_build_label (lab5
));
8847 if (TREE_TYPE (ptr
) == ptr_type_node
)
8849 new_var
= build2 (POINTER_PLUS_EXPR
, ptr_type_node
, ptr
,
8850 unshare_expr (byte_position (field
)));
8852 new_var
= force_gimple_operand (new_var
, &seq
, true, NULL_TREE
);
8853 gimple_seq_add_seq (end
, seq
);
8854 tree pbool
= build_pointer_type (TREE_TYPE (field
));
8855 new_var
= build2 (MEM_REF
, TREE_TYPE (field
), new_var
,
8856 build_int_cst (pbool
, 0));
8859 new_var
= build3 (COMPONENT_REF
, TREE_TYPE (field
),
8860 build_simple_mem_ref (ptr
), field
, NULL_TREE
);
8862 enum tree_code rcode
= OMP_CLAUSE_REDUCTION_CODE (c
);
8863 if (TREE_CODE (decl
) != MEM_REF
&& omp_is_reference (decl
))
8864 ref
= build_simple_mem_ref (ref
);
8865 /* reduction(-:var) sums up the partial results, so it acts
8866 identically to reduction(+:var). */
8867 if (rcode
== MINUS_EXPR
)
8869 if (TREE_CODE (decl
) == MEM_REF
)
8871 tree type
= TREE_TYPE (new_var
);
8872 tree v
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
8873 tree i
= create_tmp_var (TREE_TYPE (v
));
8874 tree ptype
= build_pointer_type (TREE_TYPE (type
));
8877 v
= maybe_lookup_decl_in_outer_ctx (v
, ctx
);
8878 tree vv
= create_tmp_var (TREE_TYPE (v
));
8879 gimplify_assign (vv
, v
, start
);
8882 ref
= build4 (ARRAY_REF
, pointer_sized_int_node
, avar
,
8883 size_int (7 + cnt
* 3), NULL_TREE
, NULL_TREE
);
8884 new_var
= build_fold_addr_expr (new_var
);
8885 new_var
= fold_convert (ptype
, new_var
);
8886 ref
= fold_convert (ptype
, ref
);
8887 tree m
= create_tmp_var (ptype
);
8888 gimplify_assign (m
, new_var
, end
);
8890 m
= create_tmp_var (ptype
);
8891 gimplify_assign (m
, ref
, end
);
8893 gimplify_assign (i
, build_int_cst (TREE_TYPE (v
), 0), end
);
8894 tree body
= create_artificial_label (UNKNOWN_LOCATION
);
8895 tree endl
= create_artificial_label (UNKNOWN_LOCATION
);
8896 gimple_seq_add_stmt (end
, gimple_build_label (body
));
8897 tree priv
= build_simple_mem_ref (new_var
);
8898 tree out
= build_simple_mem_ref (ref
);
8899 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
8901 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
8902 tree decl_placeholder
8903 = OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
);
8904 tree lab6
= NULL_TREE
;
8907 /* If this reduction needs destruction and parallel
8908 has been cancelled, jump around the merge operation
8909 to the destruction. */
8910 tree lab5
= create_artificial_label (UNKNOWN_LOCATION
);
8911 lab6
= create_artificial_label (UNKNOWN_LOCATION
);
8912 tree zero
= build_zero_cst (TREE_TYPE (cancellable
));
8913 g
= gimple_build_cond (NE_EXPR
, cancellable
, zero
,
8915 gimple_seq_add_stmt (end
, g
);
8916 gimple_seq_add_stmt (end
, gimple_build_label (lab5
));
8918 SET_DECL_VALUE_EXPR (placeholder
, out
);
8919 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
8920 SET_DECL_VALUE_EXPR (decl_placeholder
, priv
);
8921 DECL_HAS_VALUE_EXPR_P (decl_placeholder
) = 1;
8922 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
), ctx
);
8923 gimple_seq_add_seq (end
,
8924 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
8925 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
8926 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TASK_REDUCTION
)
8928 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) = NULL
;
8929 OMP_CLAUSE_REDUCTION_DECL_PLACEHOLDER (c
) = NULL
;
8932 gimple_seq_add_stmt (end
, gimple_build_label (lab6
));
8933 tree x
= lang_hooks
.decls
.omp_clause_dtor (c
, priv
);
8936 gimple_seq tseq
= NULL
;
8937 gimplify_stmt (&x
, &tseq
);
8938 gimple_seq_add_seq (end
, tseq
);
8943 tree x
= build2 (rcode
, TREE_TYPE (out
), out
, priv
);
8944 out
= unshare_expr (out
);
8945 gimplify_assign (out
, x
, end
);
8948 = gimple_build_assign (new_var
, POINTER_PLUS_EXPR
, new_var
,
8949 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8950 gimple_seq_add_stmt (end
, g
);
8951 g
= gimple_build_assign (ref
, POINTER_PLUS_EXPR
, ref
,
8952 TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8953 gimple_seq_add_stmt (end
, g
);
8954 g
= gimple_build_assign (i
, PLUS_EXPR
, i
,
8955 build_int_cst (TREE_TYPE (i
), 1));
8956 gimple_seq_add_stmt (end
, g
);
8957 g
= gimple_build_cond (LE_EXPR
, i
, v
, body
, endl
);
8958 gimple_seq_add_stmt (end
, g
);
8959 gimple_seq_add_stmt (end
, gimple_build_label (endl
));
8961 else if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
8963 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
8964 tree oldv
= NULL_TREE
;
8965 tree lab6
= NULL_TREE
;
8968 /* If this reduction needs destruction and parallel
8969 has been cancelled, jump around the merge operation
8970 to the destruction. */
8971 tree lab5
= create_artificial_label (UNKNOWN_LOCATION
);
8972 lab6
= create_artificial_label (UNKNOWN_LOCATION
);
8973 tree zero
= build_zero_cst (TREE_TYPE (cancellable
));
8974 g
= gimple_build_cond (NE_EXPR
, cancellable
, zero
,
8976 gimple_seq_add_stmt (end
, g
);
8977 gimple_seq_add_stmt (end
, gimple_build_label (lab5
));
8979 if (omp_is_reference (decl
)
8980 && !useless_type_conversion_p (TREE_TYPE (placeholder
),
8982 ref
= build_fold_addr_expr_loc (OMP_CLAUSE_LOCATION (c
), ref
);
8983 ref
= build_fold_addr_expr_loc (OMP_CLAUSE_LOCATION (c
), ref
);
8984 tree refv
= create_tmp_var (TREE_TYPE (ref
));
8985 gimplify_assign (refv
, ref
, end
);
8986 ref
= build_simple_mem_ref_loc (OMP_CLAUSE_LOCATION (c
), refv
);
8987 SET_DECL_VALUE_EXPR (placeholder
, ref
);
8988 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
8989 tree d
= maybe_lookup_decl (decl
, ctx
);
8991 if (DECL_HAS_VALUE_EXPR_P (d
))
8992 oldv
= DECL_VALUE_EXPR (d
);
8993 if (omp_is_reference (var
))
8995 tree v
= fold_convert (TREE_TYPE (d
),
8996 build_fold_addr_expr (new_var
));
8997 SET_DECL_VALUE_EXPR (d
, v
);
9000 SET_DECL_VALUE_EXPR (d
, new_var
);
9001 DECL_HAS_VALUE_EXPR_P (d
) = 1;
9002 lower_omp (&OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
), ctx
);
9004 SET_DECL_VALUE_EXPR (d
, oldv
);
9007 SET_DECL_VALUE_EXPR (d
, NULL_TREE
);
9008 DECL_HAS_VALUE_EXPR_P (d
) = 0;
9010 gimple_seq_add_seq (end
, OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
9011 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
9012 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TASK_REDUCTION
)
9013 OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
) = NULL
;
9015 gimple_seq_add_stmt (end
, gimple_build_label (lab6
));
9016 tree x
= lang_hooks
.decls
.omp_clause_dtor (c
, new_var
);
9019 gimple_seq tseq
= NULL
;
9020 gimplify_stmt (&x
, &tseq
);
9021 gimple_seq_add_seq (end
, tseq
);
9026 tree x
= build2 (rcode
, TREE_TYPE (ref
), ref
, new_var
);
9027 ref
= unshare_expr (ref
);
9028 gimplify_assign (ref
, x
, end
);
9030 gimple_seq_add_stmt (end
, gimple_build_label (lab4
));
9032 field
= DECL_CHAIN (bfield
);
9036 if (code
== OMP_TASKGROUP
)
9038 t
= builtin_decl_explicit (BUILT_IN_GOMP_TASKGROUP_REDUCTION_REGISTER
);
9039 g
= gimple_build_call (t
, 1, build_fold_addr_expr (avar
));
9040 gimple_seq_add_stmt (start
, g
);
9045 if (code
== OMP_FOR
)
9046 c
= gimple_omp_for_clauses (ctx
->stmt
);
9047 else if (code
== OMP_SECTIONS
)
9048 c
= gimple_omp_sections_clauses (ctx
->stmt
);
9050 c
= gimple_omp_taskreg_clauses (ctx
->stmt
);
9051 c
= omp_find_clause (c
, OMP_CLAUSE__REDUCTEMP_
);
9052 t
= fold_convert (TREE_TYPE (OMP_CLAUSE_DECL (c
)),
9053 build_fold_addr_expr (avar
));
9054 gimplify_assign (OMP_CLAUSE_DECL (c
), t
, start
);
9057 gimple_seq_add_stmt (end
, gimple_build_assign (data
, PLUS_EXPR
, data
, sz
));
9058 gimple_seq_add_stmt (end
, gimple_build_assign (idx
, PLUS_EXPR
, idx
,
9060 g
= gimple_build_cond (NE_EXPR
, idx
, num_thr_sz
, lab1
, lab2
);
9061 gimple_seq_add_stmt (end
, g
);
9062 gimple_seq_add_stmt (end
, gimple_build_label (lab2
));
9063 if (code
== OMP_FOR
|| code
== OMP_SECTIONS
)
9065 enum built_in_function bfn
9066 = BUILT_IN_GOMP_WORKSHARE_TASK_REDUCTION_UNREGISTER
;
9067 t
= builtin_decl_explicit (bfn
);
9068 tree c_bool_type
= TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t
)));
9072 arg
= create_tmp_var (c_bool_type
);
9073 gimple_seq_add_stmt (end
, gimple_build_assign (arg
, NOP_EXPR
,
9077 arg
= build_int_cst (c_bool_type
, 0);
9078 g
= gimple_build_call (t
, 1, arg
);
9082 t
= builtin_decl_explicit (BUILT_IN_GOMP_TASKGROUP_REDUCTION_UNREGISTER
);
9083 g
= gimple_build_call (t
, 1, build_fold_addr_expr (avar
));
9085 gimple_seq_add_stmt (end
, g
);
9086 t
= build_constructor (atype
, NULL
);
9087 TREE_THIS_VOLATILE (t
) = 1;
9088 gimple_seq_add_stmt (end
, gimple_build_assign (avar
, t
));
9091 /* Expand code for an OpenMP taskgroup directive. */
9094 lower_omp_taskgroup (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
9096 gimple
*stmt
= gsi_stmt (*gsi_p
);
9099 gimple_seq dseq
= NULL
;
9100 tree block
= make_node (BLOCK
);
9102 bind
= gimple_build_bind (NULL
, NULL
, block
);
9103 gsi_replace (gsi_p
, bind
, true);
9104 gimple_bind_add_stmt (bind
, stmt
);
9106 push_gimplify_context ();
9108 x
= gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_TASKGROUP_START
),
9110 gimple_bind_add_stmt (bind
, x
);
9112 lower_omp_task_reductions (ctx
, OMP_TASKGROUP
,
9113 gimple_omp_taskgroup_clauses (stmt
),
9114 gimple_bind_body_ptr (bind
), &dseq
);
9116 lower_omp (gimple_omp_body_ptr (stmt
), ctx
);
9117 gimple_bind_add_seq (bind
, gimple_omp_body (stmt
));
9118 gimple_omp_set_body (stmt
, NULL
);
9120 gimple_bind_add_stmt (bind
, gimple_build_omp_return (true));
9121 gimple_bind_add_seq (bind
, dseq
);
9123 pop_gimplify_context (bind
);
9125 gimple_bind_append_vars (bind
, ctx
->block_vars
);
9126 BLOCK_VARS (block
) = ctx
->block_vars
;
9130 /* Fold the OMP_ORDERED_CLAUSES for the OMP_ORDERED in STMT if possible. */
9133 lower_omp_ordered_clauses (gimple_stmt_iterator
*gsi_p
, gomp_ordered
*ord_stmt
,
9136 struct omp_for_data fd
;
9137 if (!ctx
->outer
|| gimple_code (ctx
->outer
->stmt
) != GIMPLE_OMP_FOR
)
9140 unsigned int len
= gimple_omp_for_collapse (ctx
->outer
->stmt
);
9141 struct omp_for_data_loop
*loops
= XALLOCAVEC (struct omp_for_data_loop
, len
);
9142 omp_extract_for_data (as_a
<gomp_for
*> (ctx
->outer
->stmt
), &fd
, loops
);
9146 tree
*list_p
= gimple_omp_ordered_clauses_ptr (ord_stmt
);
9147 tree c
= gimple_omp_ordered_clauses (ord_stmt
);
9148 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
9149 && OMP_CLAUSE_DEPEND_KIND (c
) == OMP_CLAUSE_DEPEND_SINK
)
9151 /* Merge depend clauses from multiple adjacent
9152 #pragma omp ordered depend(sink:...) constructs
9153 into one #pragma omp ordered depend(sink:...), so that
9154 we can optimize them together. */
9155 gimple_stmt_iterator gsi
= *gsi_p
;
9157 while (!gsi_end_p (gsi
))
9159 gimple
*stmt
= gsi_stmt (gsi
);
9160 if (is_gimple_debug (stmt
)
9161 || gimple_code (stmt
) == GIMPLE_NOP
)
9166 if (gimple_code (stmt
) != GIMPLE_OMP_ORDERED
)
9168 gomp_ordered
*ord_stmt2
= as_a
<gomp_ordered
*> (stmt
);
9169 c
= gimple_omp_ordered_clauses (ord_stmt2
);
9171 || OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
9172 || OMP_CLAUSE_DEPEND_KIND (c
) != OMP_CLAUSE_DEPEND_SINK
)
9175 list_p
= &OMP_CLAUSE_CHAIN (*list_p
);
9177 gsi_remove (&gsi
, true);
9181 /* Canonicalize sink dependence clauses into one folded clause if
9184 The basic algorithm is to create a sink vector whose first
9185 element is the GCD of all the first elements, and whose remaining
9186 elements are the minimum of the subsequent columns.
9188 We ignore dependence vectors whose first element is zero because
9189 such dependencies are known to be executed by the same thread.
9191 We take into account the direction of the loop, so a minimum
9192 becomes a maximum if the loop is iterating forwards. We also
9193 ignore sink clauses where the loop direction is unknown, or where
9194 the offsets are clearly invalid because they are not a multiple
9195 of the loop increment.
9199 #pragma omp for ordered(2)
9200 for (i=0; i < N; ++i)
9201 for (j=0; j < M; ++j)
9203 #pragma omp ordered \
9204 depend(sink:i-8,j-2) \
9205 depend(sink:i,j-1) \ // Completely ignored because i+0.
9206 depend(sink:i-4,j-3) \
9207 depend(sink:i-6,j-4)
9208 #pragma omp ordered depend(source)
9213 depend(sink:-gcd(8,4,6),-min(2,3,4))
9218 /* FIXME: Computing GCD's where the first element is zero is
9219 non-trivial in the presence of collapsed loops. Do this later. */
9220 if (fd
.collapse
> 1)
9223 wide_int
*folded_deps
= XALLOCAVEC (wide_int
, 2 * len
- 1);
9225 /* wide_int is not a POD so it must be default-constructed. */
9226 for (unsigned i
= 0; i
!= 2 * len
- 1; ++i
)
9227 new (static_cast<void*>(folded_deps
+ i
)) wide_int ();
9229 tree folded_dep
= NULL_TREE
;
9230 /* TRUE if the first dimension's offset is negative. */
9231 bool neg_offset_p
= false;
9233 list_p
= gimple_omp_ordered_clauses_ptr (ord_stmt
);
9235 while ((c
= *list_p
) != NULL
)
9237 bool remove
= false;
9239 gcc_assert (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
);
9240 if (OMP_CLAUSE_DEPEND_KIND (c
) != OMP_CLAUSE_DEPEND_SINK
)
9241 goto next_ordered_clause
;
9244 for (vec
= OMP_CLAUSE_DECL (c
), i
= 0;
9245 vec
&& TREE_CODE (vec
) == TREE_LIST
;
9246 vec
= TREE_CHAIN (vec
), ++i
)
9248 gcc_assert (i
< len
);
9250 /* omp_extract_for_data has canonicalized the condition. */
9251 gcc_assert (fd
.loops
[i
].cond_code
== LT_EXPR
9252 || fd
.loops
[i
].cond_code
== GT_EXPR
);
9253 bool forward
= fd
.loops
[i
].cond_code
== LT_EXPR
;
9254 bool maybe_lexically_later
= true;
9256 /* While the committee makes up its mind, bail if we have any
9257 non-constant steps. */
9258 if (TREE_CODE (fd
.loops
[i
].step
) != INTEGER_CST
)
9259 goto lower_omp_ordered_ret
;
9261 tree itype
= TREE_TYPE (TREE_VALUE (vec
));
9262 if (POINTER_TYPE_P (itype
))
9264 wide_int offset
= wide_int::from (wi::to_wide (TREE_PURPOSE (vec
)),
9265 TYPE_PRECISION (itype
),
9268 /* Ignore invalid offsets that are not multiples of the step. */
9269 if (!wi::multiple_of_p (wi::abs (offset
),
9270 wi::abs (wi::to_wide (fd
.loops
[i
].step
)),
9273 warning_at (OMP_CLAUSE_LOCATION (c
), 0,
9274 "ignoring sink clause with offset that is not "
9275 "a multiple of the loop step");
9277 goto next_ordered_clause
;
9280 /* Calculate the first dimension. The first dimension of
9281 the folded dependency vector is the GCD of the first
9282 elements, while ignoring any first elements whose offset
9286 /* Ignore dependence vectors whose first dimension is 0. */
9290 goto next_ordered_clause
;
9294 if (!TYPE_UNSIGNED (itype
) && (forward
^ wi::neg_p (offset
)))
9296 error_at (OMP_CLAUSE_LOCATION (c
),
9297 "first offset must be in opposite direction "
9298 "of loop iterations");
9299 goto lower_omp_ordered_ret
;
9303 neg_offset_p
= forward
;
9304 /* Initialize the first time around. */
9305 if (folded_dep
== NULL_TREE
)
9308 folded_deps
[0] = offset
;
9311 folded_deps
[0] = wi::gcd (folded_deps
[0],
9315 /* Calculate minimum for the remaining dimensions. */
9318 folded_deps
[len
+ i
- 1] = offset
;
9319 if (folded_dep
== c
)
9320 folded_deps
[i
] = offset
;
9321 else if (maybe_lexically_later
9322 && !wi::eq_p (folded_deps
[i
], offset
))
9324 if (forward
^ wi::gts_p (folded_deps
[i
], offset
))
9328 for (j
= 1; j
<= i
; j
++)
9329 folded_deps
[j
] = folded_deps
[len
+ j
- 1];
9332 maybe_lexically_later
= false;
9336 gcc_assert (i
== len
);
9340 next_ordered_clause
:
9342 *list_p
= OMP_CLAUSE_CHAIN (c
);
9344 list_p
= &OMP_CLAUSE_CHAIN (c
);
9350 folded_deps
[0] = -folded_deps
[0];
9352 tree itype
= TREE_TYPE (TREE_VALUE (OMP_CLAUSE_DECL (folded_dep
)));
9353 if (POINTER_TYPE_P (itype
))
9356 TREE_PURPOSE (OMP_CLAUSE_DECL (folded_dep
))
9357 = wide_int_to_tree (itype
, folded_deps
[0]);
9358 OMP_CLAUSE_CHAIN (folded_dep
) = gimple_omp_ordered_clauses (ord_stmt
);
9359 *gimple_omp_ordered_clauses_ptr (ord_stmt
) = folded_dep
;
9362 lower_omp_ordered_ret
:
9364 /* Ordered without clauses is #pragma omp threads, while we want
9365 a nop instead if we remove all clauses. */
9366 if (gimple_omp_ordered_clauses (ord_stmt
) == NULL_TREE
)
9367 gsi_replace (gsi_p
, gimple_build_nop (), true);
9371 /* Expand code for an OpenMP ordered directive. */
9374 lower_omp_ordered (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
9377 gimple
*stmt
= gsi_stmt (*gsi_p
), *g
;
9378 gomp_ordered
*ord_stmt
= as_a
<gomp_ordered
*> (stmt
);
9381 bool simd
= omp_find_clause (gimple_omp_ordered_clauses (ord_stmt
),
9383 /* FIXME: this should check presence of OMP_CLAUSE__SIMT_ on the enclosing
9386 = simd
&& omp_maybe_offloaded_ctx (ctx
) && omp_max_simt_vf () > 1;
9387 bool threads
= omp_find_clause (gimple_omp_ordered_clauses (ord_stmt
),
9388 OMP_CLAUSE_THREADS
);
9390 if (omp_find_clause (gimple_omp_ordered_clauses (ord_stmt
),
9393 /* FIXME: This is needs to be moved to the expansion to verify various
9394 conditions only testable on cfg with dominators computed, and also
9395 all the depend clauses to be merged still might need to be available
9396 for the runtime checks. */
9398 lower_omp_ordered_clauses (gsi_p
, ord_stmt
, ctx
);
9402 push_gimplify_context ();
9404 block
= make_node (BLOCK
);
9405 bind
= gimple_build_bind (NULL
, NULL
, block
);
9406 gsi_replace (gsi_p
, bind
, true);
9407 gimple_bind_add_stmt (bind
, stmt
);
9411 x
= gimple_build_call_internal (IFN_GOMP_SIMD_ORDERED_START
, 1,
9412 build_int_cst (NULL_TREE
, threads
));
9413 cfun
->has_simduid_loops
= true;
9416 x
= gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ORDERED_START
),
9418 gimple_bind_add_stmt (bind
, x
);
9420 tree counter
= NULL_TREE
, test
= NULL_TREE
, body
= NULL_TREE
;
9423 counter
= create_tmp_var (integer_type_node
);
9424 g
= gimple_build_call_internal (IFN_GOMP_SIMT_LANE
, 0);
9425 gimple_call_set_lhs (g
, counter
);
9426 gimple_bind_add_stmt (bind
, g
);
9428 body
= create_artificial_label (UNKNOWN_LOCATION
);
9429 test
= create_artificial_label (UNKNOWN_LOCATION
);
9430 gimple_bind_add_stmt (bind
, gimple_build_label (body
));
9432 tree simt_pred
= create_tmp_var (integer_type_node
);
9433 g
= gimple_build_call_internal (IFN_GOMP_SIMT_ORDERED_PRED
, 1, counter
);
9434 gimple_call_set_lhs (g
, simt_pred
);
9435 gimple_bind_add_stmt (bind
, g
);
9437 tree t
= create_artificial_label (UNKNOWN_LOCATION
);
9438 g
= gimple_build_cond (EQ_EXPR
, simt_pred
, integer_zero_node
, t
, test
);
9439 gimple_bind_add_stmt (bind
, g
);
9441 gimple_bind_add_stmt (bind
, gimple_build_label (t
));
9443 lower_omp (gimple_omp_body_ptr (stmt
), ctx
);
9444 gimple_omp_set_body (stmt
, maybe_catch_exception (gimple_omp_body (stmt
)));
9445 gimple_bind_add_seq (bind
, gimple_omp_body (stmt
));
9446 gimple_omp_set_body (stmt
, NULL
);
9450 gimple_bind_add_stmt (bind
, gimple_build_label (test
));
9451 g
= gimple_build_assign (counter
, MINUS_EXPR
, counter
, integer_one_node
);
9452 gimple_bind_add_stmt (bind
, g
);
9454 tree c
= build2 (GE_EXPR
, boolean_type_node
, counter
, integer_zero_node
);
9455 tree nonneg
= create_tmp_var (integer_type_node
);
9456 gimple_seq tseq
= NULL
;
9457 gimplify_assign (nonneg
, fold_convert (integer_type_node
, c
), &tseq
);
9458 gimple_bind_add_seq (bind
, tseq
);
9460 g
= gimple_build_call_internal (IFN_GOMP_SIMT_VOTE_ANY
, 1, nonneg
);
9461 gimple_call_set_lhs (g
, nonneg
);
9462 gimple_bind_add_stmt (bind
, g
);
9464 tree end
= create_artificial_label (UNKNOWN_LOCATION
);
9465 g
= gimple_build_cond (NE_EXPR
, nonneg
, integer_zero_node
, body
, end
);
9466 gimple_bind_add_stmt (bind
, g
);
9468 gimple_bind_add_stmt (bind
, gimple_build_label (end
));
9471 x
= gimple_build_call_internal (IFN_GOMP_SIMD_ORDERED_END
, 1,
9472 build_int_cst (NULL_TREE
, threads
));
9474 x
= gimple_build_call (builtin_decl_explicit (BUILT_IN_GOMP_ORDERED_END
),
9476 gimple_bind_add_stmt (bind
, x
);
9478 gimple_bind_add_stmt (bind
, gimple_build_omp_return (true));
9480 pop_gimplify_context (bind
);
9482 gimple_bind_append_vars (bind
, ctx
->block_vars
);
9483 BLOCK_VARS (block
) = gimple_bind_vars (bind
);
9487 /* Expand code for an OpenMP scan directive and the structured block
9488 before the scan directive. */
9491 lower_omp_scan (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
9493 gimple
*stmt
= gsi_stmt (*gsi_p
);
9495 = gimple_omp_scan_clauses (as_a
<gomp_scan
*> (stmt
)) != NULL
;
9496 tree lane
= NULL_TREE
;
9497 gimple_seq before
= NULL
;
9498 omp_context
*octx
= ctx
->outer
;
9500 if (octx
->scan_exclusive
&& !has_clauses
)
9502 gimple_stmt_iterator gsi2
= *gsi_p
;
9504 gimple
*stmt2
= gsi_stmt (gsi2
);
9505 /* For exclusive scan, swap GIMPLE_OMP_SCAN without clauses
9506 with following GIMPLE_OMP_SCAN with clauses, so that input_phase,
9507 the one with exclusive clause(s), comes first. */
9509 && gimple_code (stmt2
) == GIMPLE_OMP_SCAN
9510 && gimple_omp_scan_clauses (as_a
<gomp_scan
*> (stmt2
)) != NULL
)
9512 gsi_remove (gsi_p
, false);
9513 gsi_insert_after (gsi_p
, stmt
, GSI_SAME_STMT
);
9514 ctx
= maybe_lookup_ctx (stmt2
);
9516 lower_omp_scan (gsi_p
, ctx
);
9521 bool input_phase
= has_clauses
^ octx
->scan_inclusive
;
9522 bool is_simd
= (gimple_code (octx
->stmt
) == GIMPLE_OMP_FOR
9523 && gimple_omp_for_kind (octx
->stmt
) == GF_OMP_FOR_KIND_SIMD
);
9524 bool is_for
= (gimple_code (octx
->stmt
) == GIMPLE_OMP_FOR
9525 && gimple_omp_for_kind (octx
->stmt
) == GF_OMP_FOR_KIND_FOR
9526 && !gimple_omp_for_combined_p (octx
->stmt
));
9527 bool is_for_simd
= is_simd
&& gimple_omp_for_combined_into_p (octx
->stmt
);
9528 if (is_for_simd
&& octx
->for_simd_scan_phase
)
9531 if (tree c
= omp_find_clause (gimple_omp_for_clauses (octx
->stmt
),
9532 OMP_CLAUSE__SIMDUID_
))
9534 tree uid
= OMP_CLAUSE__SIMDUID__DECL (c
);
9535 lane
= create_tmp_var (unsigned_type_node
);
9536 tree t
= build_int_cst (integer_type_node
,
9538 : octx
->scan_inclusive
? 2 : 3);
9540 = gimple_build_call_internal (IFN_GOMP_SIMD_LANE
, 2, uid
, t
);
9541 gimple_call_set_lhs (g
, lane
);
9542 gimple_seq_add_stmt (&before
, g
);
9545 if (is_simd
|| is_for
)
9547 for (tree c
= gimple_omp_for_clauses (octx
->stmt
);
9548 c
; c
= OMP_CLAUSE_CHAIN (c
))
9549 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
9550 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
9552 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
9553 tree var
= OMP_CLAUSE_DECL (c
);
9554 tree new_var
= lookup_decl (var
, octx
);
9556 tree var2
= NULL_TREE
;
9557 tree var3
= NULL_TREE
;
9558 tree var4
= NULL_TREE
;
9559 tree lane0
= NULL_TREE
;
9560 tree new_vard
= new_var
;
9561 if (omp_is_reference (var
))
9563 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
9566 if (DECL_HAS_VALUE_EXPR_P (new_vard
))
9568 val
= DECL_VALUE_EXPR (new_vard
);
9569 if (new_vard
!= new_var
)
9571 gcc_assert (TREE_CODE (val
) == ADDR_EXPR
);
9572 val
= TREE_OPERAND (val
, 0);
9574 if (TREE_CODE (val
) == ARRAY_REF
9575 && VAR_P (TREE_OPERAND (val
, 0)))
9577 tree v
= TREE_OPERAND (val
, 0);
9578 if (lookup_attribute ("omp simd array",
9579 DECL_ATTRIBUTES (v
)))
9581 val
= unshare_expr (val
);
9582 lane0
= TREE_OPERAND (val
, 1);
9583 TREE_OPERAND (val
, 1) = lane
;
9584 var2
= lookup_decl (v
, octx
);
9585 if (octx
->scan_exclusive
)
9586 var4
= lookup_decl (var2
, octx
);
9588 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
9589 var3
= maybe_lookup_decl (var4
? var4
: var2
, octx
);
9592 var2
= build4 (ARRAY_REF
, TREE_TYPE (val
),
9593 var2
, lane
, NULL_TREE
, NULL_TREE
);
9594 TREE_THIS_NOTRAP (var2
) = 1;
9595 if (octx
->scan_exclusive
)
9597 var4
= build4 (ARRAY_REF
, TREE_TYPE (val
),
9598 var4
, lane
, NULL_TREE
,
9600 TREE_THIS_NOTRAP (var4
) = 1;
9611 var2
= build_outer_var_ref (var
, octx
);
9612 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
9614 var3
= maybe_lookup_decl (new_vard
, octx
);
9615 if (var3
== new_vard
|| var3
== NULL_TREE
)
9617 else if (is_simd
&& octx
->scan_exclusive
&& !input_phase
)
9619 var4
= maybe_lookup_decl (var3
, octx
);
9620 if (var4
== var3
|| var4
== NULL_TREE
)
9622 if (TREE_ADDRESSABLE (TREE_TYPE (new_var
)))
9633 && octx
->scan_exclusive
9635 && var4
== NULL_TREE
)
9636 var4
= create_tmp_var (TREE_TYPE (val
));
9638 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
9640 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
9645 /* If we've added a separate identity element
9646 variable, copy it over into val. */
9647 tree x
= lang_hooks
.decls
.omp_clause_assign_op (c
, val
,
9649 gimplify_and_add (x
, &before
);
9651 else if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
9653 /* Otherwise, assign to it the identity element. */
9654 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
9656 tseq
= copy_gimple_seq_and_replace_locals (tseq
);
9657 tree ref
= build_outer_var_ref (var
, octx
);
9658 tree x
= (DECL_HAS_VALUE_EXPR_P (new_vard
)
9659 ? DECL_VALUE_EXPR (new_vard
) : NULL_TREE
);
9662 if (new_vard
!= new_var
)
9663 val
= build_fold_addr_expr_loc (clause_loc
, val
);
9664 SET_DECL_VALUE_EXPR (new_vard
, val
);
9666 SET_DECL_VALUE_EXPR (placeholder
, ref
);
9667 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
9668 lower_omp (&tseq
, octx
);
9670 SET_DECL_VALUE_EXPR (new_vard
, x
);
9671 SET_DECL_VALUE_EXPR (placeholder
, NULL_TREE
);
9672 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
9673 gimple_seq_add_seq (&before
, tseq
);
9675 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
9681 if (octx
->scan_exclusive
)
9683 tree v4
= unshare_expr (var4
);
9684 tree v2
= unshare_expr (var2
);
9685 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, v4
, v2
);
9686 gimplify_and_add (x
, &before
);
9688 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
9689 x
= (DECL_HAS_VALUE_EXPR_P (new_vard
)
9690 ? DECL_VALUE_EXPR (new_vard
) : NULL_TREE
);
9692 if (x
&& new_vard
!= new_var
)
9693 vexpr
= build_fold_addr_expr_loc (clause_loc
, val
);
9695 SET_DECL_VALUE_EXPR (new_vard
, vexpr
);
9696 SET_DECL_VALUE_EXPR (placeholder
, var2
);
9697 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
9698 lower_omp (&tseq
, octx
);
9699 gimple_seq_add_seq (&before
, tseq
);
9700 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
9702 SET_DECL_VALUE_EXPR (new_vard
, x
);
9703 SET_DECL_VALUE_EXPR (placeholder
, NULL_TREE
);
9704 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
9705 if (octx
->scan_inclusive
)
9707 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, val
,
9709 gimplify_and_add (x
, &before
);
9711 else if (lane0
== NULL_TREE
)
9713 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, val
,
9715 gimplify_and_add (x
, &before
);
9723 /* input phase. Set val to initializer before
9725 tree x
= omp_reduction_init (c
, TREE_TYPE (new_var
));
9726 gimplify_assign (val
, x
, &before
);
9731 enum tree_code code
= OMP_CLAUSE_REDUCTION_CODE (c
);
9732 if (code
== MINUS_EXPR
)
9735 tree x
= build2 (code
, TREE_TYPE (var2
),
9736 unshare_expr (var2
), unshare_expr (val
));
9737 if (octx
->scan_inclusive
)
9739 gimplify_assign (unshare_expr (var2
), x
, &before
);
9740 gimplify_assign (val
, var2
, &before
);
9744 gimplify_assign (unshare_expr (var4
),
9745 unshare_expr (var2
), &before
);
9746 gimplify_assign (var2
, x
, &before
);
9747 if (lane0
== NULL_TREE
)
9748 gimplify_assign (val
, var4
, &before
);
9752 if (octx
->scan_exclusive
&& !input_phase
&& lane0
)
9754 tree vexpr
= unshare_expr (var4
);
9755 TREE_OPERAND (vexpr
, 1) = lane0
;
9756 if (new_vard
!= new_var
)
9757 vexpr
= build_fold_addr_expr_loc (clause_loc
, vexpr
);
9758 SET_DECL_VALUE_EXPR (new_vard
, vexpr
);
9762 if (is_simd
&& !is_for_simd
)
9764 gsi_insert_seq_after (gsi_p
, gimple_omp_body (stmt
), GSI_SAME_STMT
);
9765 gsi_insert_seq_after (gsi_p
, before
, GSI_SAME_STMT
);
9766 gsi_replace (gsi_p
, gimple_build_nop (), true);
9769 lower_omp (gimple_omp_body_ptr (stmt
), octx
);
9772 gimple_stmt_iterator gsi
= gsi_start_1 (gimple_omp_body_ptr (stmt
));
9773 gsi_insert_seq_before (&gsi
, before
, GSI_SAME_STMT
);
9778 /* Gimplify a GIMPLE_OMP_CRITICAL statement. This is a relatively simple
9779 substitution of a couple of function calls. But in the NAMED case,
9780 requires that languages coordinate a symbol name. It is therefore
9781 best put here in common code. */
9783 static GTY(()) hash_map
<tree
, tree
> *critical_name_mutexes
;
9786 lower_omp_critical (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
9789 tree name
, lock
, unlock
;
9790 gomp_critical
*stmt
= as_a
<gomp_critical
*> (gsi_stmt (*gsi_p
));
9792 location_t loc
= gimple_location (stmt
);
9795 name
= gimple_omp_critical_name (stmt
);
9800 if (!critical_name_mutexes
)
9801 critical_name_mutexes
= hash_map
<tree
, tree
>::create_ggc (10);
9803 tree
*n
= critical_name_mutexes
->get (name
);
9808 decl
= create_tmp_var_raw (ptr_type_node
);
9810 new_str
= ACONCAT ((".gomp_critical_user_",
9811 IDENTIFIER_POINTER (name
), NULL
));
9812 DECL_NAME (decl
) = get_identifier (new_str
);
9813 TREE_PUBLIC (decl
) = 1;
9814 TREE_STATIC (decl
) = 1;
9815 DECL_COMMON (decl
) = 1;
9816 DECL_ARTIFICIAL (decl
) = 1;
9817 DECL_IGNORED_P (decl
) = 1;
9819 varpool_node::finalize_decl (decl
);
9821 critical_name_mutexes
->put (name
, decl
);
9826 /* If '#pragma omp critical' is inside offloaded region or
9827 inside function marked as offloadable, the symbol must be
9828 marked as offloadable too. */
9830 if (cgraph_node::get (current_function_decl
)->offloadable
)
9831 varpool_node::get_create (decl
)->offloadable
= 1;
9833 for (octx
= ctx
->outer
; octx
; octx
= octx
->outer
)
9834 if (is_gimple_omp_offloaded (octx
->stmt
))
9836 varpool_node::get_create (decl
)->offloadable
= 1;
9840 lock
= builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_NAME_START
);
9841 lock
= build_call_expr_loc (loc
, lock
, 1,
9842 build_fold_addr_expr_loc (loc
, decl
));
9844 unlock
= builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_NAME_END
);
9845 unlock
= build_call_expr_loc (loc
, unlock
, 1,
9846 build_fold_addr_expr_loc (loc
, decl
));
9850 lock
= builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_START
);
9851 lock
= build_call_expr_loc (loc
, lock
, 0);
9853 unlock
= builtin_decl_explicit (BUILT_IN_GOMP_CRITICAL_END
);
9854 unlock
= build_call_expr_loc (loc
, unlock
, 0);
9857 push_gimplify_context ();
9859 block
= make_node (BLOCK
);
9860 bind
= gimple_build_bind (NULL
, NULL
, block
);
9861 gsi_replace (gsi_p
, bind
, true);
9862 gimple_bind_add_stmt (bind
, stmt
);
9864 tbody
= gimple_bind_body (bind
);
9865 gimplify_and_add (lock
, &tbody
);
9866 gimple_bind_set_body (bind
, tbody
);
9868 lower_omp (gimple_omp_body_ptr (stmt
), ctx
);
9869 gimple_omp_set_body (stmt
, maybe_catch_exception (gimple_omp_body (stmt
)));
9870 gimple_bind_add_seq (bind
, gimple_omp_body (stmt
));
9871 gimple_omp_set_body (stmt
, NULL
);
9873 tbody
= gimple_bind_body (bind
);
9874 gimplify_and_add (unlock
, &tbody
);
9875 gimple_bind_set_body (bind
, tbody
);
9877 gimple_bind_add_stmt (bind
, gimple_build_omp_return (true));
9879 pop_gimplify_context (bind
);
9880 gimple_bind_append_vars (bind
, ctx
->block_vars
);
9881 BLOCK_VARS (block
) = gimple_bind_vars (bind
);
9884 /* A subroutine of lower_omp_for. Generate code to emit the predicate
9885 for a lastprivate clause. Given a loop control predicate of (V
9886 cond N2), we gate the clause on (!(V cond N2)). The lowered form
9887 is appended to *DLIST, iterator initialization is appended to
9888 *BODY_P. *CLIST is for lastprivate(conditional:) code that needs
9889 to be emitted in a critical section. */
9892 lower_omp_for_lastprivate (struct omp_for_data
*fd
, gimple_seq
*body_p
,
9893 gimple_seq
*dlist
, gimple_seq
*clist
,
9894 struct omp_context
*ctx
)
9896 tree clauses
, cond
, vinit
;
9897 enum tree_code cond_code
;
9900 cond_code
= fd
->loop
.cond_code
;
9901 cond_code
= cond_code
== LT_EXPR
? GE_EXPR
: LE_EXPR
;
9903 /* When possible, use a strict equality expression. This can let VRP
9904 type optimizations deduce the value and remove a copy. */
9905 if (tree_fits_shwi_p (fd
->loop
.step
))
9907 HOST_WIDE_INT step
= tree_to_shwi (fd
->loop
.step
);
9908 if (step
== 1 || step
== -1)
9909 cond_code
= EQ_EXPR
;
9912 tree n2
= fd
->loop
.n2
;
9913 if (fd
->collapse
> 1
9914 && TREE_CODE (n2
) != INTEGER_CST
9915 && gimple_omp_for_combined_into_p (fd
->for_stmt
))
9917 struct omp_context
*taskreg_ctx
= NULL
;
9918 if (gimple_code (ctx
->outer
->stmt
) == GIMPLE_OMP_FOR
)
9920 gomp_for
*gfor
= as_a
<gomp_for
*> (ctx
->outer
->stmt
);
9921 if (gimple_omp_for_kind (gfor
) == GF_OMP_FOR_KIND_FOR
9922 || gimple_omp_for_kind (gfor
) == GF_OMP_FOR_KIND_DISTRIBUTE
)
9924 if (gimple_omp_for_combined_into_p (gfor
))
9926 gcc_assert (ctx
->outer
->outer
9927 && is_parallel_ctx (ctx
->outer
->outer
));
9928 taskreg_ctx
= ctx
->outer
->outer
;
9932 struct omp_for_data outer_fd
;
9933 omp_extract_for_data (gfor
, &outer_fd
, NULL
);
9934 n2
= fold_convert (TREE_TYPE (n2
), outer_fd
.loop
.n2
);
9937 else if (gimple_omp_for_kind (gfor
) == GF_OMP_FOR_KIND_TASKLOOP
)
9938 taskreg_ctx
= ctx
->outer
->outer
;
9940 else if (is_taskreg_ctx (ctx
->outer
))
9941 taskreg_ctx
= ctx
->outer
;
9945 tree taskreg_clauses
9946 = gimple_omp_taskreg_clauses (taskreg_ctx
->stmt
);
9947 tree innerc
= omp_find_clause (taskreg_clauses
,
9948 OMP_CLAUSE__LOOPTEMP_
);
9949 gcc_assert (innerc
);
9950 int count
= fd
->collapse
;
9952 && fd
->last_nonrect
== fd
->first_nonrect
+ 1)
9953 if (tree v
= gimple_omp_for_index (fd
->for_stmt
, fd
->last_nonrect
))
9954 if (!TYPE_UNSIGNED (TREE_TYPE (v
)))
9956 for (i
= 0; i
< count
; i
++)
9958 innerc
= omp_find_clause (OMP_CLAUSE_CHAIN (innerc
),
9959 OMP_CLAUSE__LOOPTEMP_
);
9960 gcc_assert (innerc
);
9962 innerc
= omp_find_clause (OMP_CLAUSE_CHAIN (innerc
),
9963 OMP_CLAUSE__LOOPTEMP_
);
9965 n2
= fold_convert (TREE_TYPE (n2
),
9966 lookup_decl (OMP_CLAUSE_DECL (innerc
),
9970 cond
= build2 (cond_code
, boolean_type_node
, fd
->loop
.v
, n2
);
9972 clauses
= gimple_omp_for_clauses (fd
->for_stmt
);
9974 lower_lastprivate_clauses (clauses
, cond
, body_p
, &stmts
, clist
, ctx
);
9975 if (!gimple_seq_empty_p (stmts
))
9977 gimple_seq_add_seq (&stmts
, *dlist
);
9980 /* Optimize: v = 0; is usually cheaper than v = some_other_constant. */
9981 vinit
= fd
->loop
.n1
;
9982 if (cond_code
== EQ_EXPR
9983 && tree_fits_shwi_p (fd
->loop
.n2
)
9984 && ! integer_zerop (fd
->loop
.n2
))
9985 vinit
= build_int_cst (TREE_TYPE (fd
->loop
.v
), 0);
9987 vinit
= unshare_expr (vinit
);
9989 /* Initialize the iterator variable, so that threads that don't execute
9990 any iterations don't execute the lastprivate clauses by accident. */
9991 gimplify_assign (fd
->loop
.v
, vinit
, body_p
);
9995 /* Callback for walk_gimple_seq. Find #pragma omp scan statement. */
9998 omp_find_scan (gimple_stmt_iterator
*gsi_p
, bool *handled_ops_p
,
9999 struct walk_stmt_info
*wi
)
10001 gimple
*stmt
= gsi_stmt (*gsi_p
);
10003 *handled_ops_p
= true;
10004 switch (gimple_code (stmt
))
10008 case GIMPLE_OMP_FOR
:
10009 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_SIMD
10010 && gimple_omp_for_combined_into_p (stmt
))
10011 *handled_ops_p
= false;
10014 case GIMPLE_OMP_SCAN
:
10015 *(gimple_stmt_iterator
*) (wi
->info
) = *gsi_p
;
10016 return integer_zero_node
;
10023 /* Helper function for lower_omp_for, add transformations for a worksharing
10024 loop with scan directives inside of it.
10025 For worksharing loop not combined with simd, transform:
10026 #pragma omp for reduction(inscan,+:r) private(i)
10027 for (i = 0; i < n; i = i + 1)
10032 #pragma omp scan inclusive(r)
10038 into two worksharing loops + code to merge results:
10040 num_threads = omp_get_num_threads ();
10041 thread_num = omp_get_thread_num ();
10042 if (thread_num == 0) goto <D.2099>; else goto <D.2100>;
10047 // For UDRs this is UDR init, or if ctors are needed, copy from
10048 // var3 that has been constructed to contain the neutral element.
10052 // The _scantemp_ clauses will arrange for rpriva to be initialized to
10053 // a shared array with num_threads elements and rprivb to a local array
10054 // number of elements equal to the number of (contiguous) iterations the
10055 // current thread will perform. controlb and controlp variables are
10056 // temporaries to handle deallocation of rprivb at the end of second
10058 #pragma omp for _scantemp_(rpriva) _scantemp_(rprivb) _scantemp_(controlb) \
10059 _scantemp_(controlp) reduction(inscan,+:r) private(i) nowait
10060 for (i = 0; i < n; i = i + 1)
10063 // For UDRs this is UDR init or copy from var3.
10065 // This is the input phase from user code.
10069 // For UDRs this is UDR merge.
10071 // Rather than handing it over to the user, save to local thread's
10073 rprivb[ivar] = var2;
10074 // For exclusive scan, the above two statements are swapped.
10078 // And remember the final value from this thread's into the shared
10080 rpriva[(sizetype) thread_num] = var2;
10081 // If more than one thread, compute using Work-Efficient prefix sum
10082 // the inclusive parallel scan of the rpriva array.
10083 if (num_threads > 1) goto <D.2102>; else goto <D.2103>;
10088 num_threadsu = (unsigned int) num_threads;
10089 thread_numup1 = (unsigned int) thread_num + 1;
10092 if (twok > num_threadsu) goto <D.2110>; else goto <D.2111>;
10096 if (k == num_threadsu) goto <D.2112>; else goto <D.2111>;
10101 cplx = .MUL_OVERFLOW (thread_nump1, twok);
10102 mul = REALPART_EXPR <cplx>;
10103 ovf = IMAGPART_EXPR <cplx>;
10104 if (ovf == 0) goto <D.2116>; else goto <D.2117>;
10107 andvm1 = andv + 4294967295;
10109 if (l < num_threadsu) goto <D.2120>; else goto <D.2117>;
10111 // For UDRs this is UDR merge, performed using var2 variable as temporary,
10112 // i.e. var2 = rpriva[l - k]; UDR merge (var2, rpriva[l]); rpriva[l] = var2;
10113 rpriva[l] = rpriva[l - k] + rpriva[l];
10115 if (down == 0) goto <D.2121>; else goto <D.2122>;
10123 if (k != 0) goto <D.2108>; else goto <D.2103>;
10125 if (thread_num == 0) goto <D.2124>; else goto <D.2125>;
10127 // For UDRs this is UDR init or copy from var3.
10131 var2 = rpriva[thread_num - 1];
10134 #pragma omp for _scantemp_(controlb) _scantemp_(controlp) \
10135 reduction(inscan,+:r) private(i)
10136 for (i = 0; i < n; i = i + 1)
10139 // For UDRs, this is r = var2; UDR merge (r, rprivb[ivar]);
10140 r = var2 + rprivb[ivar];
10143 // This is the scan phase from user code.
10145 // Plus a bump of the iterator.
10151 lower_omp_for_scan (gimple_seq
*body_p
, gimple_seq
*dlist
, gomp_for
*stmt
,
10152 struct omp_for_data
*fd
, omp_context
*ctx
)
10154 bool is_for_simd
= gimple_omp_for_combined_p (stmt
);
10155 gcc_assert (ctx
->scan_inclusive
|| ctx
->scan_exclusive
);
10157 gimple_seq body
= gimple_omp_body (stmt
);
10158 gimple_stmt_iterator input1_gsi
= gsi_none ();
10159 struct walk_stmt_info wi
;
10160 memset (&wi
, 0, sizeof (wi
));
10161 wi
.val_only
= true;
10162 wi
.info
= (void *) &input1_gsi
;
10163 walk_gimple_seq_mod (&body
, omp_find_scan
, NULL
, &wi
);
10164 gcc_assert (!gsi_end_p (input1_gsi
));
10166 gimple
*input_stmt1
= gsi_stmt (input1_gsi
);
10167 gimple_stmt_iterator gsi
= input1_gsi
;
10169 gimple_stmt_iterator scan1_gsi
= gsi
;
10170 gimple
*scan_stmt1
= gsi_stmt (gsi
);
10171 gcc_assert (scan_stmt1
&& gimple_code (scan_stmt1
) == GIMPLE_OMP_SCAN
);
10173 gimple_seq input_body
= gimple_omp_body (input_stmt1
);
10174 gimple_seq scan_body
= gimple_omp_body (scan_stmt1
);
10175 gimple_omp_set_body (input_stmt1
, NULL
);
10176 gimple_omp_set_body (scan_stmt1
, NULL
);
10177 gimple_omp_set_body (stmt
, NULL
);
10179 gomp_for
*new_stmt
= as_a
<gomp_for
*> (gimple_copy (stmt
));
10180 gimple_seq new_body
= copy_gimple_seq_and_replace_locals (body
);
10181 gimple_omp_set_body (stmt
, body
);
10182 gimple_omp_set_body (input_stmt1
, input_body
);
10184 gimple_stmt_iterator input2_gsi
= gsi_none ();
10185 memset (&wi
, 0, sizeof (wi
));
10186 wi
.val_only
= true;
10187 wi
.info
= (void *) &input2_gsi
;
10188 walk_gimple_seq_mod (&new_body
, omp_find_scan
, NULL
, &wi
);
10189 gcc_assert (!gsi_end_p (input2_gsi
));
10191 gimple
*input_stmt2
= gsi_stmt (input2_gsi
);
10194 gimple_stmt_iterator scan2_gsi
= gsi
;
10195 gimple
*scan_stmt2
= gsi_stmt (gsi
);
10196 gcc_assert (scan_stmt2
&& gimple_code (scan_stmt2
) == GIMPLE_OMP_SCAN
);
10197 gimple_omp_set_body (scan_stmt2
, scan_body
);
10199 gimple_stmt_iterator input3_gsi
= gsi_none ();
10200 gimple_stmt_iterator scan3_gsi
= gsi_none ();
10201 gimple_stmt_iterator input4_gsi
= gsi_none ();
10202 gimple_stmt_iterator scan4_gsi
= gsi_none ();
10203 gimple
*input_stmt3
= NULL
, *scan_stmt3
= NULL
;
10204 gimple
*input_stmt4
= NULL
, *scan_stmt4
= NULL
;
10205 omp_context
*input_simd_ctx
= NULL
, *scan_simd_ctx
= NULL
;
10208 memset (&wi
, 0, sizeof (wi
));
10209 wi
.val_only
= true;
10210 wi
.info
= (void *) &input3_gsi
;
10211 walk_gimple_seq_mod (&input_body
, omp_find_scan
, NULL
, &wi
);
10212 gcc_assert (!gsi_end_p (input3_gsi
));
10214 input_stmt3
= gsi_stmt (input3_gsi
);
10218 scan_stmt3
= gsi_stmt (gsi
);
10219 gcc_assert (scan_stmt3
&& gimple_code (scan_stmt3
) == GIMPLE_OMP_SCAN
);
10221 memset (&wi
, 0, sizeof (wi
));
10222 wi
.val_only
= true;
10223 wi
.info
= (void *) &input4_gsi
;
10224 walk_gimple_seq_mod (&scan_body
, omp_find_scan
, NULL
, &wi
);
10225 gcc_assert (!gsi_end_p (input4_gsi
));
10227 input_stmt4
= gsi_stmt (input4_gsi
);
10231 scan_stmt4
= gsi_stmt (gsi
);
10232 gcc_assert (scan_stmt4
&& gimple_code (scan_stmt4
) == GIMPLE_OMP_SCAN
);
10234 input_simd_ctx
= maybe_lookup_ctx (input_stmt3
)->outer
;
10235 scan_simd_ctx
= maybe_lookup_ctx (input_stmt4
)->outer
;
10238 tree num_threads
= create_tmp_var (integer_type_node
);
10239 tree thread_num
= create_tmp_var (integer_type_node
);
10240 tree nthreads_decl
= builtin_decl_explicit (BUILT_IN_OMP_GET_NUM_THREADS
);
10241 tree threadnum_decl
= builtin_decl_explicit (BUILT_IN_OMP_GET_THREAD_NUM
);
10242 gimple
*g
= gimple_build_call (nthreads_decl
, 0);
10243 gimple_call_set_lhs (g
, num_threads
);
10244 gimple_seq_add_stmt (body_p
, g
);
10245 g
= gimple_build_call (threadnum_decl
, 0);
10246 gimple_call_set_lhs (g
, thread_num
);
10247 gimple_seq_add_stmt (body_p
, g
);
10249 tree ivar
= create_tmp_var (sizetype
);
10250 tree new_clauses1
= NULL_TREE
, new_clauses2
= NULL_TREE
;
10251 tree
*cp1
= &new_clauses1
, *cp2
= &new_clauses2
;
10252 tree k
= create_tmp_var (unsigned_type_node
);
10253 tree l
= create_tmp_var (unsigned_type_node
);
10255 gimple_seq clist
= NULL
, mdlist
= NULL
;
10256 gimple_seq thr01_list
= NULL
, thrn1_list
= NULL
;
10257 gimple_seq thr02_list
= NULL
, thrn2_list
= NULL
;
10258 gimple_seq scan1_list
= NULL
, input2_list
= NULL
;
10259 gimple_seq last_list
= NULL
, reduc_list
= NULL
;
10260 for (tree c
= gimple_omp_for_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
10261 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
10262 && OMP_CLAUSE_REDUCTION_INSCAN (c
))
10264 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
10265 tree var
= OMP_CLAUSE_DECL (c
);
10266 tree new_var
= lookup_decl (var
, ctx
);
10267 tree var3
= NULL_TREE
;
10268 tree new_vard
= new_var
;
10269 if (omp_is_reference (var
))
10270 new_var
= build_simple_mem_ref_loc (clause_loc
, new_var
);
10271 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
10273 var3
= maybe_lookup_decl (new_vard
, ctx
);
10274 if (var3
== new_vard
)
10278 tree ptype
= build_pointer_type (TREE_TYPE (new_var
));
10279 tree rpriva
= create_tmp_var (ptype
);
10280 tree nc
= build_omp_clause (clause_loc
, OMP_CLAUSE__SCANTEMP_
);
10281 OMP_CLAUSE_DECL (nc
) = rpriva
;
10283 cp1
= &OMP_CLAUSE_CHAIN (nc
);
10285 tree rprivb
= create_tmp_var (ptype
);
10286 nc
= build_omp_clause (clause_loc
, OMP_CLAUSE__SCANTEMP_
);
10287 OMP_CLAUSE_DECL (nc
) = rprivb
;
10288 OMP_CLAUSE__SCANTEMP__ALLOC (nc
) = 1;
10290 cp1
= &OMP_CLAUSE_CHAIN (nc
);
10292 tree var2
= create_tmp_var_raw (TREE_TYPE (new_var
));
10293 if (new_vard
!= new_var
)
10294 TREE_ADDRESSABLE (var2
) = 1;
10295 gimple_add_tmp_var (var2
);
10297 tree x
= fold_convert_loc (clause_loc
, sizetype
, thread_num
);
10298 x
= fold_build2_loc (clause_loc
, MULT_EXPR
, sizetype
, x
,
10299 TYPE_SIZE_UNIT (TREE_TYPE (ptype
)));
10300 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (rpriva
), rpriva
, x
);
10301 tree rpriva_ref
= build_simple_mem_ref_loc (clause_loc
, x
);
10303 x
= fold_build2_loc (clause_loc
, PLUS_EXPR
, integer_type_node
,
10304 thread_num
, integer_minus_one_node
);
10305 x
= fold_convert_loc (clause_loc
, sizetype
, x
);
10306 x
= fold_build2_loc (clause_loc
, MULT_EXPR
, sizetype
, x
,
10307 TYPE_SIZE_UNIT (TREE_TYPE (ptype
)));
10308 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (rpriva
), rpriva
, x
);
10309 tree rprivam1_ref
= build_simple_mem_ref_loc (clause_loc
, x
);
10311 x
= fold_convert_loc (clause_loc
, sizetype
, l
);
10312 x
= fold_build2_loc (clause_loc
, MULT_EXPR
, sizetype
, x
,
10313 TYPE_SIZE_UNIT (TREE_TYPE (ptype
)));
10314 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (rpriva
), rpriva
, x
);
10315 tree rprival_ref
= build_simple_mem_ref_loc (clause_loc
, x
);
10317 x
= fold_build2_loc (clause_loc
, MINUS_EXPR
, unsigned_type_node
, l
, k
);
10318 x
= fold_convert_loc (clause_loc
, sizetype
, x
);
10319 x
= fold_build2_loc (clause_loc
, MULT_EXPR
, sizetype
, x
,
10320 TYPE_SIZE_UNIT (TREE_TYPE (ptype
)));
10321 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (rpriva
), rpriva
, x
);
10322 tree rprivalmk_ref
= build_simple_mem_ref_loc (clause_loc
, x
);
10324 x
= fold_build2_loc (clause_loc
, MULT_EXPR
, sizetype
, ivar
,
10325 TYPE_SIZE_UNIT (TREE_TYPE (ptype
)));
10326 x
= fold_build2 (POINTER_PLUS_EXPR
, TREE_TYPE (rprivb
), rprivb
, x
);
10327 tree rprivb_ref
= build_simple_mem_ref_loc (clause_loc
, x
);
10329 tree var4
= is_for_simd
? new_var
: var2
;
10330 tree var5
= NULL_TREE
, var6
= NULL_TREE
;
10333 var5
= lookup_decl (var
, input_simd_ctx
);
10334 var6
= lookup_decl (var
, scan_simd_ctx
);
10335 if (new_vard
!= new_var
)
10337 var5
= build_simple_mem_ref_loc (clause_loc
, var5
);
10338 var6
= build_simple_mem_ref_loc (clause_loc
, var6
);
10341 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
10343 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
);
10346 x
= lang_hooks
.decls
.omp_clause_default_ctor
10347 (c
, var2
, build_outer_var_ref (var
, ctx
));
10349 gimplify_and_add (x
, &clist
);
10351 x
= build_outer_var_ref (var
, ctx
);
10352 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, unshare_expr (var4
),
10354 gimplify_and_add (x
, &thr01_list
);
10356 tree y
= (DECL_HAS_VALUE_EXPR_P (new_vard
)
10357 ? DECL_VALUE_EXPR (new_vard
) : NULL_TREE
);
10360 x
= unshare_expr (var4
);
10361 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var3
);
10362 gimplify_and_add (x
, &thrn1_list
);
10363 x
= unshare_expr (var4
);
10364 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var3
);
10365 gimplify_and_add (x
, &thr02_list
);
10367 else if (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
))
10369 /* Otherwise, assign to it the identity element. */
10370 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
10371 tseq
= copy_gimple_seq_and_replace_locals (tseq
);
10374 if (new_vard
!= new_var
)
10375 val
= build_fold_addr_expr_loc (clause_loc
, val
);
10376 SET_DECL_VALUE_EXPR (new_vard
, val
);
10377 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
10379 SET_DECL_VALUE_EXPR (placeholder
, error_mark_node
);
10380 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
10381 lower_omp (&tseq
, ctx
);
10382 gimple_seq_add_seq (&thrn1_list
, tseq
);
10383 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
);
10384 lower_omp (&tseq
, ctx
);
10385 gimple_seq_add_seq (&thr02_list
, tseq
);
10386 SET_DECL_VALUE_EXPR (placeholder
, NULL_TREE
);
10387 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
10388 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
10390 SET_DECL_VALUE_EXPR (new_vard
, y
);
10393 DECL_HAS_VALUE_EXPR_P (new_vard
) = 0;
10394 SET_DECL_VALUE_EXPR (new_vard
, NULL_TREE
);
10398 x
= unshare_expr (var4
);
10399 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, rprivam1_ref
);
10400 gimplify_and_add (x
, &thrn2_list
);
10404 x
= unshare_expr (rprivb_ref
);
10405 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var5
);
10406 gimplify_and_add (x
, &scan1_list
);
10410 if (ctx
->scan_exclusive
)
10412 x
= unshare_expr (rprivb_ref
);
10413 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var2
);
10414 gimplify_and_add (x
, &scan1_list
);
10417 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
10418 tseq
= copy_gimple_seq_and_replace_locals (tseq
);
10419 SET_DECL_VALUE_EXPR (placeholder
, var2
);
10420 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
10421 lower_omp (&tseq
, ctx
);
10422 gimple_seq_add_seq (&scan1_list
, tseq
);
10424 if (ctx
->scan_inclusive
)
10426 x
= unshare_expr (rprivb_ref
);
10427 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var2
);
10428 gimplify_and_add (x
, &scan1_list
);
10432 x
= unshare_expr (rpriva_ref
);
10433 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
,
10434 unshare_expr (var4
));
10435 gimplify_and_add (x
, &mdlist
);
10437 x
= unshare_expr (is_for_simd
? var6
: new_var
);
10438 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, var4
);
10439 gimplify_and_add (x
, &input2_list
);
10442 if (new_vard
!= new_var
)
10443 val
= build_fold_addr_expr_loc (clause_loc
, val
);
10445 gimple_seq tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
10446 tseq
= copy_gimple_seq_and_replace_locals (tseq
);
10447 SET_DECL_VALUE_EXPR (new_vard
, val
);
10448 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
10451 SET_DECL_VALUE_EXPR (placeholder
, var6
);
10452 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
10455 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
10456 lower_omp (&tseq
, ctx
);
10458 SET_DECL_VALUE_EXPR (new_vard
, y
);
10461 DECL_HAS_VALUE_EXPR_P (new_vard
) = 0;
10462 SET_DECL_VALUE_EXPR (new_vard
, NULL_TREE
);
10466 SET_DECL_VALUE_EXPR (placeholder
, new_var
);
10467 DECL_HAS_VALUE_EXPR_P (placeholder
) = 1;
10468 lower_omp (&tseq
, ctx
);
10470 gimple_seq_add_seq (&input2_list
, tseq
);
10472 x
= build_outer_var_ref (var
, ctx
);
10473 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, x
, rpriva_ref
);
10474 gimplify_and_add (x
, &last_list
);
10476 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, var2
, rprivalmk_ref
);
10477 gimplify_and_add (x
, &reduc_list
);
10478 tseq
= OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
);
10479 tseq
= copy_gimple_seq_and_replace_locals (tseq
);
10481 if (new_vard
!= new_var
)
10482 val
= build_fold_addr_expr_loc (clause_loc
, val
);
10483 SET_DECL_VALUE_EXPR (new_vard
, val
);
10484 DECL_HAS_VALUE_EXPR_P (new_vard
) = 1;
10485 SET_DECL_VALUE_EXPR (placeholder
, var2
);
10486 lower_omp (&tseq
, ctx
);
10487 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
10488 SET_DECL_VALUE_EXPR (placeholder
, NULL_TREE
);
10489 DECL_HAS_VALUE_EXPR_P (placeholder
) = 0;
10491 SET_DECL_VALUE_EXPR (new_vard
, y
);
10494 DECL_HAS_VALUE_EXPR_P (new_vard
) = 0;
10495 SET_DECL_VALUE_EXPR (new_vard
, NULL_TREE
);
10497 gimple_seq_add_seq (&reduc_list
, tseq
);
10498 x
= lang_hooks
.decls
.omp_clause_assign_op (c
, rprival_ref
, var2
);
10499 gimplify_and_add (x
, &reduc_list
);
10501 x
= lang_hooks
.decls
.omp_clause_dtor (c
, var2
);
10503 gimplify_and_add (x
, dlist
);
10507 x
= build_outer_var_ref (var
, ctx
);
10508 gimplify_assign (unshare_expr (var4
), x
, &thr01_list
);
10510 x
= omp_reduction_init (c
, TREE_TYPE (new_var
));
10511 gimplify_assign (unshare_expr (var4
), unshare_expr (x
),
10513 gimplify_assign (unshare_expr (var4
), x
, &thr02_list
);
10515 gimplify_assign (unshare_expr (var4
), rprivam1_ref
, &thrn2_list
);
10517 enum tree_code code
= OMP_CLAUSE_REDUCTION_CODE (c
);
10518 if (code
== MINUS_EXPR
)
10522 gimplify_assign (unshare_expr (rprivb_ref
), var5
, &scan1_list
);
10525 if (ctx
->scan_exclusive
)
10526 gimplify_assign (unshare_expr (rprivb_ref
), var2
,
10528 x
= build2 (code
, TREE_TYPE (new_var
), var2
, new_var
);
10529 gimplify_assign (var2
, x
, &scan1_list
);
10530 if (ctx
->scan_inclusive
)
10531 gimplify_assign (unshare_expr (rprivb_ref
), var2
,
10535 gimplify_assign (unshare_expr (rpriva_ref
), unshare_expr (var4
),
10538 x
= build2 (code
, TREE_TYPE (new_var
), var4
, rprivb_ref
);
10539 gimplify_assign (is_for_simd
? var6
: new_var
, x
, &input2_list
);
10541 gimplify_assign (build_outer_var_ref (var
, ctx
), rpriva_ref
,
10544 x
= build2 (code
, TREE_TYPE (new_var
), rprivalmk_ref
,
10545 unshare_expr (rprival_ref
));
10546 gimplify_assign (rprival_ref
, x
, &reduc_list
);
10550 g
= gimple_build_assign (ivar
, PLUS_EXPR
, ivar
, size_one_node
);
10551 gimple_seq_add_stmt (&scan1_list
, g
);
10552 g
= gimple_build_assign (ivar
, PLUS_EXPR
, ivar
, size_one_node
);
10553 gimple_seq_add_stmt (gimple_omp_body_ptr (is_for_simd
10554 ? scan_stmt4
: scan_stmt2
), g
);
10556 tree controlb
= create_tmp_var (boolean_type_node
);
10557 tree controlp
= create_tmp_var (ptr_type_node
);
10558 tree nc
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__SCANTEMP_
);
10559 OMP_CLAUSE_DECL (nc
) = controlb
;
10560 OMP_CLAUSE__SCANTEMP__CONTROL (nc
) = 1;
10562 cp1
= &OMP_CLAUSE_CHAIN (nc
);
10563 nc
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__SCANTEMP_
);
10564 OMP_CLAUSE_DECL (nc
) = controlp
;
10565 OMP_CLAUSE__SCANTEMP__CONTROL (nc
) = 1;
10567 cp1
= &OMP_CLAUSE_CHAIN (nc
);
10568 nc
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__SCANTEMP_
);
10569 OMP_CLAUSE_DECL (nc
) = controlb
;
10570 OMP_CLAUSE__SCANTEMP__CONTROL (nc
) = 1;
10572 cp2
= &OMP_CLAUSE_CHAIN (nc
);
10573 nc
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__SCANTEMP_
);
10574 OMP_CLAUSE_DECL (nc
) = controlp
;
10575 OMP_CLAUSE__SCANTEMP__CONTROL (nc
) = 1;
10577 cp2
= &OMP_CLAUSE_CHAIN (nc
);
10579 *cp1
= gimple_omp_for_clauses (stmt
);
10580 gimple_omp_for_set_clauses (stmt
, new_clauses1
);
10581 *cp2
= gimple_omp_for_clauses (new_stmt
);
10582 gimple_omp_for_set_clauses (new_stmt
, new_clauses2
);
10586 gimple_seq_add_seq (gimple_omp_body_ptr (scan_stmt3
), scan1_list
);
10587 gimple_seq_add_seq (gimple_omp_body_ptr (input_stmt4
), input2_list
);
10589 gsi_insert_seq_after (&input3_gsi
, gimple_omp_body (input_stmt3
),
10591 gsi_remove (&input3_gsi
, true);
10592 gsi_insert_seq_after (&scan3_gsi
, gimple_omp_body (scan_stmt3
),
10594 gsi_remove (&scan3_gsi
, true);
10595 gsi_insert_seq_after (&input4_gsi
, gimple_omp_body (input_stmt4
),
10597 gsi_remove (&input4_gsi
, true);
10598 gsi_insert_seq_after (&scan4_gsi
, gimple_omp_body (scan_stmt4
),
10600 gsi_remove (&scan4_gsi
, true);
10604 gimple_omp_set_body (scan_stmt1
, scan1_list
);
10605 gimple_omp_set_body (input_stmt2
, input2_list
);
10608 gsi_insert_seq_after (&input1_gsi
, gimple_omp_body (input_stmt1
),
10610 gsi_remove (&input1_gsi
, true);
10611 gsi_insert_seq_after (&scan1_gsi
, gimple_omp_body (scan_stmt1
),
10613 gsi_remove (&scan1_gsi
, true);
10614 gsi_insert_seq_after (&input2_gsi
, gimple_omp_body (input_stmt2
),
10616 gsi_remove (&input2_gsi
, true);
10617 gsi_insert_seq_after (&scan2_gsi
, gimple_omp_body (scan_stmt2
),
10619 gsi_remove (&scan2_gsi
, true);
10621 gimple_seq_add_seq (body_p
, clist
);
10623 tree lab1
= create_artificial_label (UNKNOWN_LOCATION
);
10624 tree lab2
= create_artificial_label (UNKNOWN_LOCATION
);
10625 tree lab3
= create_artificial_label (UNKNOWN_LOCATION
);
10626 g
= gimple_build_cond (EQ_EXPR
, thread_num
, integer_zero_node
, lab1
, lab2
);
10627 gimple_seq_add_stmt (body_p
, g
);
10628 g
= gimple_build_label (lab1
);
10629 gimple_seq_add_stmt (body_p
, g
);
10630 gimple_seq_add_seq (body_p
, thr01_list
);
10631 g
= gimple_build_goto (lab3
);
10632 gimple_seq_add_stmt (body_p
, g
);
10633 g
= gimple_build_label (lab2
);
10634 gimple_seq_add_stmt (body_p
, g
);
10635 gimple_seq_add_seq (body_p
, thrn1_list
);
10636 g
= gimple_build_label (lab3
);
10637 gimple_seq_add_stmt (body_p
, g
);
10639 g
= gimple_build_assign (ivar
, size_zero_node
);
10640 gimple_seq_add_stmt (body_p
, g
);
10642 gimple_seq_add_stmt (body_p
, stmt
);
10643 gimple_seq_add_seq (body_p
, body
);
10644 gimple_seq_add_stmt (body_p
, gimple_build_omp_continue (fd
->loop
.v
,
10647 g
= gimple_build_omp_return (true);
10648 gimple_seq_add_stmt (body_p
, g
);
10649 gimple_seq_add_seq (body_p
, mdlist
);
10651 lab1
= create_artificial_label (UNKNOWN_LOCATION
);
10652 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
10653 g
= gimple_build_cond (GT_EXPR
, num_threads
, integer_one_node
, lab1
, lab2
);
10654 gimple_seq_add_stmt (body_p
, g
);
10655 g
= gimple_build_label (lab1
);
10656 gimple_seq_add_stmt (body_p
, g
);
10658 g
= omp_build_barrier (NULL
);
10659 gimple_seq_add_stmt (body_p
, g
);
10661 tree down
= create_tmp_var (unsigned_type_node
);
10662 g
= gimple_build_assign (down
, build_zero_cst (unsigned_type_node
));
10663 gimple_seq_add_stmt (body_p
, g
);
10665 g
= gimple_build_assign (k
, build_one_cst (unsigned_type_node
));
10666 gimple_seq_add_stmt (body_p
, g
);
10668 tree num_threadsu
= create_tmp_var (unsigned_type_node
);
10669 g
= gimple_build_assign (num_threadsu
, NOP_EXPR
, num_threads
);
10670 gimple_seq_add_stmt (body_p
, g
);
10672 tree thread_numu
= create_tmp_var (unsigned_type_node
);
10673 g
= gimple_build_assign (thread_numu
, NOP_EXPR
, thread_num
);
10674 gimple_seq_add_stmt (body_p
, g
);
10676 tree thread_nump1
= create_tmp_var (unsigned_type_node
);
10677 g
= gimple_build_assign (thread_nump1
, PLUS_EXPR
, thread_numu
,
10678 build_int_cst (unsigned_type_node
, 1));
10679 gimple_seq_add_stmt (body_p
, g
);
10681 lab3
= create_artificial_label (UNKNOWN_LOCATION
);
10682 g
= gimple_build_label (lab3
);
10683 gimple_seq_add_stmt (body_p
, g
);
10685 tree twok
= create_tmp_var (unsigned_type_node
);
10686 g
= gimple_build_assign (twok
, LSHIFT_EXPR
, k
, integer_one_node
);
10687 gimple_seq_add_stmt (body_p
, g
);
10689 tree lab4
= create_artificial_label (UNKNOWN_LOCATION
);
10690 tree lab5
= create_artificial_label (UNKNOWN_LOCATION
);
10691 tree lab6
= create_artificial_label (UNKNOWN_LOCATION
);
10692 g
= gimple_build_cond (GT_EXPR
, twok
, num_threadsu
, lab4
, lab5
);
10693 gimple_seq_add_stmt (body_p
, g
);
10694 g
= gimple_build_label (lab4
);
10695 gimple_seq_add_stmt (body_p
, g
);
10696 g
= gimple_build_assign (down
, build_all_ones_cst (unsigned_type_node
));
10697 gimple_seq_add_stmt (body_p
, g
);
10698 g
= gimple_build_assign (k
, RSHIFT_EXPR
, k
, integer_one_node
);
10699 gimple_seq_add_stmt (body_p
, g
);
10701 g
= gimple_build_cond (EQ_EXPR
, k
, num_threadsu
, lab6
, lab5
);
10702 gimple_seq_add_stmt (body_p
, g
);
10703 g
= gimple_build_label (lab6
);
10704 gimple_seq_add_stmt (body_p
, g
);
10706 g
= gimple_build_assign (k
, RSHIFT_EXPR
, k
, integer_one_node
);
10707 gimple_seq_add_stmt (body_p
, g
);
10709 g
= gimple_build_label (lab5
);
10710 gimple_seq_add_stmt (body_p
, g
);
10712 g
= gimple_build_assign (twok
, LSHIFT_EXPR
, k
, integer_one_node
);
10713 gimple_seq_add_stmt (body_p
, g
);
10715 tree cplx
= create_tmp_var (build_complex_type (unsigned_type_node
, false));
10716 g
= gimple_build_call_internal (IFN_MUL_OVERFLOW
, 2, thread_nump1
, twok
);
10717 gimple_call_set_lhs (g
, cplx
);
10718 gimple_seq_add_stmt (body_p
, g
);
10719 tree mul
= create_tmp_var (unsigned_type_node
);
10720 g
= gimple_build_assign (mul
, REALPART_EXPR
,
10721 build1 (REALPART_EXPR
, unsigned_type_node
, cplx
));
10722 gimple_seq_add_stmt (body_p
, g
);
10723 tree ovf
= create_tmp_var (unsigned_type_node
);
10724 g
= gimple_build_assign (ovf
, IMAGPART_EXPR
,
10725 build1 (IMAGPART_EXPR
, unsigned_type_node
, cplx
));
10726 gimple_seq_add_stmt (body_p
, g
);
10728 tree lab7
= create_artificial_label (UNKNOWN_LOCATION
);
10729 tree lab8
= create_artificial_label (UNKNOWN_LOCATION
);
10730 g
= gimple_build_cond (EQ_EXPR
, ovf
, build_zero_cst (unsigned_type_node
),
10732 gimple_seq_add_stmt (body_p
, g
);
10733 g
= gimple_build_label (lab7
);
10734 gimple_seq_add_stmt (body_p
, g
);
10736 tree andv
= create_tmp_var (unsigned_type_node
);
10737 g
= gimple_build_assign (andv
, BIT_AND_EXPR
, k
, down
);
10738 gimple_seq_add_stmt (body_p
, g
);
10739 tree andvm1
= create_tmp_var (unsigned_type_node
);
10740 g
= gimple_build_assign (andvm1
, PLUS_EXPR
, andv
,
10741 build_minus_one_cst (unsigned_type_node
));
10742 gimple_seq_add_stmt (body_p
, g
);
10744 g
= gimple_build_assign (l
, PLUS_EXPR
, mul
, andvm1
);
10745 gimple_seq_add_stmt (body_p
, g
);
10747 tree lab9
= create_artificial_label (UNKNOWN_LOCATION
);
10748 g
= gimple_build_cond (LT_EXPR
, l
, num_threadsu
, lab9
, lab8
);
10749 gimple_seq_add_stmt (body_p
, g
);
10750 g
= gimple_build_label (lab9
);
10751 gimple_seq_add_stmt (body_p
, g
);
10752 gimple_seq_add_seq (body_p
, reduc_list
);
10753 g
= gimple_build_label (lab8
);
10754 gimple_seq_add_stmt (body_p
, g
);
10756 tree lab10
= create_artificial_label (UNKNOWN_LOCATION
);
10757 tree lab11
= create_artificial_label (UNKNOWN_LOCATION
);
10758 tree lab12
= create_artificial_label (UNKNOWN_LOCATION
);
10759 g
= gimple_build_cond (EQ_EXPR
, down
, build_zero_cst (unsigned_type_node
),
10761 gimple_seq_add_stmt (body_p
, g
);
10762 g
= gimple_build_label (lab10
);
10763 gimple_seq_add_stmt (body_p
, g
);
10764 g
= gimple_build_assign (k
, LSHIFT_EXPR
, k
, integer_one_node
);
10765 gimple_seq_add_stmt (body_p
, g
);
10766 g
= gimple_build_goto (lab12
);
10767 gimple_seq_add_stmt (body_p
, g
);
10768 g
= gimple_build_label (lab11
);
10769 gimple_seq_add_stmt (body_p
, g
);
10770 g
= gimple_build_assign (k
, RSHIFT_EXPR
, k
, integer_one_node
);
10771 gimple_seq_add_stmt (body_p
, g
);
10772 g
= gimple_build_label (lab12
);
10773 gimple_seq_add_stmt (body_p
, g
);
10775 g
= omp_build_barrier (NULL
);
10776 gimple_seq_add_stmt (body_p
, g
);
10778 g
= gimple_build_cond (NE_EXPR
, k
, build_zero_cst (unsigned_type_node
),
10780 gimple_seq_add_stmt (body_p
, g
);
10782 g
= gimple_build_label (lab2
);
10783 gimple_seq_add_stmt (body_p
, g
);
10785 lab1
= create_artificial_label (UNKNOWN_LOCATION
);
10786 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
10787 lab3
= create_artificial_label (UNKNOWN_LOCATION
);
10788 g
= gimple_build_cond (EQ_EXPR
, thread_num
, integer_zero_node
, lab1
, lab2
);
10789 gimple_seq_add_stmt (body_p
, g
);
10790 g
= gimple_build_label (lab1
);
10791 gimple_seq_add_stmt (body_p
, g
);
10792 gimple_seq_add_seq (body_p
, thr02_list
);
10793 g
= gimple_build_goto (lab3
);
10794 gimple_seq_add_stmt (body_p
, g
);
10795 g
= gimple_build_label (lab2
);
10796 gimple_seq_add_stmt (body_p
, g
);
10797 gimple_seq_add_seq (body_p
, thrn2_list
);
10798 g
= gimple_build_label (lab3
);
10799 gimple_seq_add_stmt (body_p
, g
);
10801 g
= gimple_build_assign (ivar
, size_zero_node
);
10802 gimple_seq_add_stmt (body_p
, g
);
10803 gimple_seq_add_stmt (body_p
, new_stmt
);
10804 gimple_seq_add_seq (body_p
, new_body
);
10806 gimple_seq new_dlist
= NULL
;
10807 lab1
= create_artificial_label (UNKNOWN_LOCATION
);
10808 lab2
= create_artificial_label (UNKNOWN_LOCATION
);
10809 tree num_threadsm1
= create_tmp_var (integer_type_node
);
10810 g
= gimple_build_assign (num_threadsm1
, PLUS_EXPR
, num_threads
,
10811 integer_minus_one_node
);
10812 gimple_seq_add_stmt (&new_dlist
, g
);
10813 g
= gimple_build_cond (EQ_EXPR
, thread_num
, num_threadsm1
, lab1
, lab2
);
10814 gimple_seq_add_stmt (&new_dlist
, g
);
10815 g
= gimple_build_label (lab1
);
10816 gimple_seq_add_stmt (&new_dlist
, g
);
10817 gimple_seq_add_seq (&new_dlist
, last_list
);
10818 g
= gimple_build_label (lab2
);
10819 gimple_seq_add_stmt (&new_dlist
, g
);
10820 gimple_seq_add_seq (&new_dlist
, *dlist
);
10821 *dlist
= new_dlist
;
10824 /* Lower code for an OMP loop directive. */
10827 lower_omp_for (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
10829 tree
*rhs_p
, block
;
10830 struct omp_for_data fd
, *fdp
= NULL
;
10831 gomp_for
*stmt
= as_a
<gomp_for
*> (gsi_stmt (*gsi_p
));
10833 gimple_seq omp_for_body
, body
, dlist
, tred_ilist
= NULL
, tred_dlist
= NULL
;
10834 gimple_seq cnt_list
= NULL
, clist
= NULL
;
10835 gimple_seq oacc_head
= NULL
, oacc_tail
= NULL
;
10838 push_gimplify_context ();
10840 lower_omp (gimple_omp_for_pre_body_ptr (stmt
), ctx
);
10842 block
= make_node (BLOCK
);
10843 new_stmt
= gimple_build_bind (NULL
, NULL
, block
);
10844 /* Replace at gsi right away, so that 'stmt' is no member
10845 of a sequence anymore as we're going to add to a different
10847 gsi_replace (gsi_p
, new_stmt
, true);
10849 /* Move declaration of temporaries in the loop body before we make
10851 omp_for_body
= gimple_omp_body (stmt
);
10852 if (!gimple_seq_empty_p (omp_for_body
)
10853 && gimple_code (gimple_seq_first_stmt (omp_for_body
)) == GIMPLE_BIND
)
10856 = as_a
<gbind
*> (gimple_seq_first_stmt (omp_for_body
));
10857 tree vars
= gimple_bind_vars (inner_bind
);
10858 gimple_bind_append_vars (new_stmt
, vars
);
10859 /* bind_vars/BLOCK_VARS are being moved to new_stmt/block, don't
10860 keep them on the inner_bind and it's block. */
10861 gimple_bind_set_vars (inner_bind
, NULL_TREE
);
10862 if (gimple_bind_block (inner_bind
))
10863 BLOCK_VARS (gimple_bind_block (inner_bind
)) = NULL_TREE
;
10866 if (gimple_omp_for_combined_into_p (stmt
))
10868 omp_extract_for_data (stmt
, &fd
, NULL
);
10871 /* We need two temporaries with fd.loop.v type (istart/iend)
10872 and then (fd.collapse - 1) temporaries with the same
10873 type for count2 ... countN-1 vars if not constant. */
10875 tree type
= fd
.iter_type
;
10876 if (fd
.collapse
> 1
10877 && TREE_CODE (fd
.loop
.n2
) != INTEGER_CST
)
10878 count
+= fd
.collapse
- 1;
10880 tree type2
= NULL_TREE
;
10882 = (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_FOR
10883 || gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_TASKLOOP
);
10884 tree outerc
= NULL
, *pc
= gimple_omp_for_clauses_ptr (stmt
);
10886 tree clauses
= *pc
;
10887 if (fd
.collapse
> 1
10889 && fd
.last_nonrect
== fd
.first_nonrect
+ 1
10890 && TREE_CODE (fd
.loop
.n2
) != INTEGER_CST
)
10891 if (tree v
= gimple_omp_for_index (stmt
, fd
.last_nonrect
))
10892 if (!TYPE_UNSIGNED (TREE_TYPE (v
)))
10894 v
= gimple_omp_for_index (stmt
, fd
.first_nonrect
);
10895 type2
= TREE_TYPE (v
);
10901 = omp_find_clause (gimple_omp_taskreg_clauses (ctx
->outer
->stmt
),
10902 OMP_CLAUSE__LOOPTEMP_
);
10903 if (ctx
->simt_stmt
)
10904 simtc
= omp_find_clause (gimple_omp_for_clauses (ctx
->simt_stmt
),
10905 OMP_CLAUSE__LOOPTEMP_
);
10906 for (i
= 0; i
< count
+ count2
; i
++)
10911 gcc_assert (outerc
);
10912 temp
= lookup_decl (OMP_CLAUSE_DECL (outerc
), ctx
->outer
);
10913 outerc
= omp_find_clause (OMP_CLAUSE_CHAIN (outerc
),
10914 OMP_CLAUSE__LOOPTEMP_
);
10918 /* If there are 2 adjacent SIMD stmts, one with _simt_
10919 clause, another without, make sure they have the same
10920 decls in _looptemp_ clauses, because the outer stmt
10921 they are combined into will look up just one inner_stmt. */
10922 if (ctx
->simt_stmt
)
10923 temp
= OMP_CLAUSE_DECL (simtc
);
10925 temp
= create_tmp_var (i
>= count
? type2
: type
);
10926 insert_decl_map (&ctx
->outer
->cb
, temp
, temp
);
10928 *pc
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__LOOPTEMP_
);
10929 OMP_CLAUSE_DECL (*pc
) = temp
;
10930 pc
= &OMP_CLAUSE_CHAIN (*pc
);
10931 if (ctx
->simt_stmt
)
10932 simtc
= omp_find_clause (OMP_CLAUSE_CHAIN (simtc
),
10933 OMP_CLAUSE__LOOPTEMP_
);
10938 /* The pre-body and input clauses go before the lowered GIMPLE_OMP_FOR. */
10942 = omp_task_reductions_find_first (gimple_omp_for_clauses (stmt
), OMP_FOR
,
10943 OMP_CLAUSE_REDUCTION
);
10944 tree rtmp
= NULL_TREE
;
10947 tree type
= build_pointer_type (pointer_sized_int_node
);
10948 tree temp
= create_tmp_var (type
);
10949 tree c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE__REDUCTEMP_
);
10950 OMP_CLAUSE_DECL (c
) = temp
;
10951 OMP_CLAUSE_CHAIN (c
) = gimple_omp_for_clauses (stmt
);
10952 gimple_omp_for_set_clauses (stmt
, c
);
10953 lower_omp_task_reductions (ctx
, OMP_FOR
,
10954 gimple_omp_for_clauses (stmt
),
10955 &tred_ilist
, &tred_dlist
);
10957 rtmp
= make_ssa_name (type
);
10958 gimple_seq_add_stmt (&body
, gimple_build_assign (rtmp
, temp
));
10961 lower_lastprivate_conditional_clauses (gimple_omp_for_clauses_ptr (stmt
),
10964 lower_rec_input_clauses (gimple_omp_for_clauses (stmt
), &body
, &dlist
, ctx
,
10966 gimple_seq_add_seq (rclauses
? &tred_ilist
: &body
,
10967 gimple_omp_for_pre_body (stmt
));
10969 lower_omp (gimple_omp_body_ptr (stmt
), ctx
);
10971 /* Lower the header expressions. At this point, we can assume that
10972 the header is of the form:
10974 #pragma omp for (V = VAL1; V {<|>|<=|>=} VAL2; V = V [+-] VAL3)
10976 We just need to make sure that VAL1, VAL2 and VAL3 are lowered
10977 using the .omp_data_s mapping, if needed. */
10978 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
10980 rhs_p
= gimple_omp_for_initial_ptr (stmt
, i
);
10981 if (TREE_CODE (*rhs_p
) == TREE_VEC
)
10983 if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p
, 1)))
10984 TREE_VEC_ELT (*rhs_p
, 1)
10985 = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p
, 1), &cnt_list
);
10986 if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p
, 2)))
10987 TREE_VEC_ELT (*rhs_p
, 2)
10988 = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p
, 2), &cnt_list
);
10990 else if (!is_gimple_min_invariant (*rhs_p
))
10991 *rhs_p
= get_formal_tmp_var (*rhs_p
, &cnt_list
);
10992 else if (TREE_CODE (*rhs_p
) == ADDR_EXPR
)
10993 recompute_tree_invariant_for_addr_expr (*rhs_p
);
10995 rhs_p
= gimple_omp_for_final_ptr (stmt
, i
);
10996 if (TREE_CODE (*rhs_p
) == TREE_VEC
)
10998 if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p
, 1)))
10999 TREE_VEC_ELT (*rhs_p
, 1)
11000 = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p
, 1), &cnt_list
);
11001 if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p
, 2)))
11002 TREE_VEC_ELT (*rhs_p
, 2)
11003 = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p
, 2), &cnt_list
);
11005 else if (!is_gimple_min_invariant (*rhs_p
))
11006 *rhs_p
= get_formal_tmp_var (*rhs_p
, &cnt_list
);
11007 else if (TREE_CODE (*rhs_p
) == ADDR_EXPR
)
11008 recompute_tree_invariant_for_addr_expr (*rhs_p
);
11010 rhs_p
= &TREE_OPERAND (gimple_omp_for_incr (stmt
, i
), 1);
11011 if (!is_gimple_min_invariant (*rhs_p
))
11012 *rhs_p
= get_formal_tmp_var (*rhs_p
, &cnt_list
);
11015 gimple_seq_add_seq (&tred_ilist
, cnt_list
);
11017 gimple_seq_add_seq (&body
, cnt_list
);
11019 /* Once lowered, extract the bounds and clauses. */
11020 omp_extract_for_data (stmt
, &fd
, NULL
);
11022 if (is_gimple_omp_oacc (ctx
->stmt
)
11023 && !ctx_in_oacc_kernels_region (ctx
))
11024 lower_oacc_head_tail (gimple_location (stmt
),
11025 gimple_omp_for_clauses (stmt
),
11026 &oacc_head
, &oacc_tail
, ctx
);
11028 /* Add OpenACC partitioning and reduction markers just before the loop. */
11030 gimple_seq_add_seq (&body
, oacc_head
);
11032 lower_omp_for_lastprivate (&fd
, &body
, &dlist
, &clist
, ctx
);
11034 if (gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_FOR
)
11035 for (tree c
= gimple_omp_for_clauses (stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
11036 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LINEAR
11037 && !OMP_CLAUSE_LINEAR_NO_COPYIN (c
))
11039 OMP_CLAUSE_DECL (c
) = lookup_decl (OMP_CLAUSE_DECL (c
), ctx
);
11040 if (DECL_P (OMP_CLAUSE_LINEAR_STEP (c
)))
11041 OMP_CLAUSE_LINEAR_STEP (c
)
11042 = maybe_lookup_decl_in_outer_ctx (OMP_CLAUSE_LINEAR_STEP (c
),
11046 if ((ctx
->scan_inclusive
|| ctx
->scan_exclusive
)
11047 && gimple_omp_for_kind (stmt
) == GF_OMP_FOR_KIND_FOR
)
11048 lower_omp_for_scan (&body
, &dlist
, stmt
, &fd
, ctx
);
11051 gimple_seq_add_stmt (&body
, stmt
);
11052 gimple_seq_add_seq (&body
, gimple_omp_body (stmt
));
11055 gimple_seq_add_stmt (&body
, gimple_build_omp_continue (fd
.loop
.v
,
11058 /* After the loop, add exit clauses. */
11059 lower_reduction_clauses (gimple_omp_for_clauses (stmt
), &body
, &clist
, ctx
);
11063 tree fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_START
);
11064 gcall
*g
= gimple_build_call (fndecl
, 0);
11065 gimple_seq_add_stmt (&body
, g
);
11066 gimple_seq_add_seq (&body
, clist
);
11067 fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_ATOMIC_END
);
11068 g
= gimple_build_call (fndecl
, 0);
11069 gimple_seq_add_stmt (&body
, g
);
11072 if (ctx
->cancellable
)
11073 gimple_seq_add_stmt (&body
, gimple_build_label (ctx
->cancel_label
));
11075 gimple_seq_add_seq (&body
, dlist
);
11079 gimple_seq_add_seq (&tred_ilist
, body
);
11083 body
= maybe_catch_exception (body
);
11085 /* Region exit marker goes at the end of the loop body. */
11086 gimple
*g
= gimple_build_omp_return (fd
.have_nowait
);
11087 gimple_seq_add_stmt (&body
, g
);
11089 gimple_seq_add_seq (&body
, tred_dlist
);
11091 maybe_add_implicit_barrier_cancel (ctx
, g
, &body
);
11094 OMP_CLAUSE_DECL (rclauses
) = rtmp
;
11096 /* Add OpenACC joining and reduction markers just after the loop. */
11098 gimple_seq_add_seq (&body
, oacc_tail
);
11100 pop_gimplify_context (new_stmt
);
11102 gimple_bind_append_vars (new_stmt
, ctx
->block_vars
);
11103 maybe_remove_omp_member_access_dummy_vars (new_stmt
);
11104 BLOCK_VARS (block
) = gimple_bind_vars (new_stmt
);
11105 if (BLOCK_VARS (block
))
11106 TREE_USED (block
) = 1;
11108 gimple_bind_set_body (new_stmt
, body
);
11109 gimple_omp_set_body (stmt
, NULL
);
11110 gimple_omp_for_set_pre_body (stmt
, NULL
);
11113 /* Callback for walk_stmts. Check if the current statement only contains
11114 GIMPLE_OMP_FOR or GIMPLE_OMP_SECTIONS. */
11117 check_combined_parallel (gimple_stmt_iterator
*gsi_p
,
11118 bool *handled_ops_p
,
11119 struct walk_stmt_info
*wi
)
11121 int *info
= (int *) wi
->info
;
11122 gimple
*stmt
= gsi_stmt (*gsi_p
);
11124 *handled_ops_p
= true;
11125 switch (gimple_code (stmt
))
11131 case GIMPLE_OMP_FOR
:
11132 case GIMPLE_OMP_SECTIONS
:
11133 *info
= *info
== 0 ? 1 : -1;
11142 struct omp_taskcopy_context
11144 /* This field must be at the beginning, as we do "inheritance": Some
11145 callback functions for tree-inline.c (e.g., omp_copy_decl)
11146 receive a copy_body_data pointer that is up-casted to an
11147 omp_context pointer. */
11153 task_copyfn_copy_decl (tree var
, copy_body_data
*cb
)
11155 struct omp_taskcopy_context
*tcctx
= (struct omp_taskcopy_context
*) cb
;
11157 if (splay_tree_lookup (tcctx
->ctx
->sfield_map
, (splay_tree_key
) var
))
11158 return create_tmp_var (TREE_TYPE (var
));
11164 task_copyfn_remap_type (struct omp_taskcopy_context
*tcctx
, tree orig_type
)
11166 tree name
, new_fields
= NULL
, type
, f
;
11168 type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
11169 name
= DECL_NAME (TYPE_NAME (orig_type
));
11170 name
= build_decl (gimple_location (tcctx
->ctx
->stmt
),
11171 TYPE_DECL
, name
, type
);
11172 TYPE_NAME (type
) = name
;
11174 for (f
= TYPE_FIELDS (orig_type
); f
; f
= TREE_CHAIN (f
))
11176 tree new_f
= copy_node (f
);
11177 DECL_CONTEXT (new_f
) = type
;
11178 TREE_TYPE (new_f
) = remap_type (TREE_TYPE (f
), &tcctx
->cb
);
11179 TREE_CHAIN (new_f
) = new_fields
;
11180 walk_tree (&DECL_SIZE (new_f
), copy_tree_body_r
, &tcctx
->cb
, NULL
);
11181 walk_tree (&DECL_SIZE_UNIT (new_f
), copy_tree_body_r
, &tcctx
->cb
, NULL
);
11182 walk_tree (&DECL_FIELD_OFFSET (new_f
), copy_tree_body_r
,
11184 new_fields
= new_f
;
11185 tcctx
->cb
.decl_map
->put (f
, new_f
);
11187 TYPE_FIELDS (type
) = nreverse (new_fields
);
11188 layout_type (type
);
11192 /* Create task copyfn. */
11195 create_task_copyfn (gomp_task
*task_stmt
, omp_context
*ctx
)
11197 struct function
*child_cfun
;
11198 tree child_fn
, t
, c
, src
, dst
, f
, sf
, arg
, sarg
, decl
;
11199 tree record_type
, srecord_type
, bind
, list
;
11200 bool record_needs_remap
= false, srecord_needs_remap
= false;
11202 struct omp_taskcopy_context tcctx
;
11203 location_t loc
= gimple_location (task_stmt
);
11204 size_t looptempno
= 0;
11206 child_fn
= gimple_omp_task_copy_fn (task_stmt
);
11207 child_cfun
= DECL_STRUCT_FUNCTION (child_fn
);
11208 gcc_assert (child_cfun
->cfg
== NULL
);
11209 DECL_SAVED_TREE (child_fn
) = alloc_stmt_list ();
11211 /* Reset DECL_CONTEXT on function arguments. */
11212 for (t
= DECL_ARGUMENTS (child_fn
); t
; t
= DECL_CHAIN (t
))
11213 DECL_CONTEXT (t
) = child_fn
;
11215 /* Populate the function. */
11216 push_gimplify_context ();
11217 push_cfun (child_cfun
);
11219 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
11220 TREE_SIDE_EFFECTS (bind
) = 1;
11222 DECL_SAVED_TREE (child_fn
) = bind
;
11223 DECL_SOURCE_LOCATION (child_fn
) = gimple_location (task_stmt
);
11225 /* Remap src and dst argument types if needed. */
11226 record_type
= ctx
->record_type
;
11227 srecord_type
= ctx
->srecord_type
;
11228 for (f
= TYPE_FIELDS (record_type
); f
; f
= DECL_CHAIN (f
))
11229 if (variably_modified_type_p (TREE_TYPE (f
), ctx
->cb
.src_fn
))
11231 record_needs_remap
= true;
11234 for (f
= TYPE_FIELDS (srecord_type
); f
; f
= DECL_CHAIN (f
))
11235 if (variably_modified_type_p (TREE_TYPE (f
), ctx
->cb
.src_fn
))
11237 srecord_needs_remap
= true;
11241 if (record_needs_remap
|| srecord_needs_remap
)
11243 memset (&tcctx
, '\0', sizeof (tcctx
));
11244 tcctx
.cb
.src_fn
= ctx
->cb
.src_fn
;
11245 tcctx
.cb
.dst_fn
= child_fn
;
11246 tcctx
.cb
.src_node
= cgraph_node::get (tcctx
.cb
.src_fn
);
11247 gcc_checking_assert (tcctx
.cb
.src_node
);
11248 tcctx
.cb
.dst_node
= tcctx
.cb
.src_node
;
11249 tcctx
.cb
.src_cfun
= ctx
->cb
.src_cfun
;
11250 tcctx
.cb
.copy_decl
= task_copyfn_copy_decl
;
11251 tcctx
.cb
.eh_lp_nr
= 0;
11252 tcctx
.cb
.transform_call_graph_edges
= CB_CGE_MOVE
;
11253 tcctx
.cb
.decl_map
= new hash_map
<tree
, tree
>;
11256 if (record_needs_remap
)
11257 record_type
= task_copyfn_remap_type (&tcctx
, record_type
);
11258 if (srecord_needs_remap
)
11259 srecord_type
= task_copyfn_remap_type (&tcctx
, srecord_type
);
11262 tcctx
.cb
.decl_map
= NULL
;
11264 arg
= DECL_ARGUMENTS (child_fn
);
11265 TREE_TYPE (arg
) = build_pointer_type (record_type
);
11266 sarg
= DECL_CHAIN (arg
);
11267 TREE_TYPE (sarg
) = build_pointer_type (srecord_type
);
11269 /* First pass: initialize temporaries used in record_type and srecord_type
11270 sizes and field offsets. */
11271 if (tcctx
.cb
.decl_map
)
11272 for (c
= gimple_omp_task_clauses (task_stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
11273 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
11277 decl
= OMP_CLAUSE_DECL (c
);
11278 p
= tcctx
.cb
.decl_map
->get (decl
);
11281 n
= splay_tree_lookup (ctx
->sfield_map
, (splay_tree_key
) decl
);
11282 sf
= (tree
) n
->value
;
11283 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11284 src
= build_simple_mem_ref_loc (loc
, sarg
);
11285 src
= omp_build_component_ref (src
, sf
);
11286 t
= build2 (MODIFY_EXPR
, TREE_TYPE (*p
), *p
, src
);
11287 append_to_statement_list (t
, &list
);
11290 /* Second pass: copy shared var pointers and copy construct non-VLA
11291 firstprivate vars. */
11292 for (c
= gimple_omp_task_clauses (task_stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
11293 switch (OMP_CLAUSE_CODE (c
))
11295 splay_tree_key key
;
11296 case OMP_CLAUSE_SHARED
:
11297 decl
= OMP_CLAUSE_DECL (c
);
11298 key
= (splay_tree_key
) decl
;
11299 if (OMP_CLAUSE_SHARED_FIRSTPRIVATE (c
))
11300 key
= (splay_tree_key
) &DECL_UID (decl
);
11301 n
= splay_tree_lookup (ctx
->field_map
, key
);
11304 f
= (tree
) n
->value
;
11305 if (tcctx
.cb
.decl_map
)
11306 f
= *tcctx
.cb
.decl_map
->get (f
);
11307 n
= splay_tree_lookup (ctx
->sfield_map
, key
);
11308 sf
= (tree
) n
->value
;
11309 if (tcctx
.cb
.decl_map
)
11310 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11311 src
= build_simple_mem_ref_loc (loc
, sarg
);
11312 src
= omp_build_component_ref (src
, sf
);
11313 dst
= build_simple_mem_ref_loc (loc
, arg
);
11314 dst
= omp_build_component_ref (dst
, f
);
11315 t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
11316 append_to_statement_list (t
, &list
);
11318 case OMP_CLAUSE_REDUCTION
:
11319 case OMP_CLAUSE_IN_REDUCTION
:
11320 decl
= OMP_CLAUSE_DECL (c
);
11321 if (TREE_CODE (decl
) == MEM_REF
)
11323 decl
= TREE_OPERAND (decl
, 0);
11324 if (TREE_CODE (decl
) == POINTER_PLUS_EXPR
)
11325 decl
= TREE_OPERAND (decl
, 0);
11326 if (TREE_CODE (decl
) == INDIRECT_REF
11327 || TREE_CODE (decl
) == ADDR_EXPR
)
11328 decl
= TREE_OPERAND (decl
, 0);
11330 key
= (splay_tree_key
) decl
;
11331 n
= splay_tree_lookup (ctx
->field_map
, key
);
11334 f
= (tree
) n
->value
;
11335 if (tcctx
.cb
.decl_map
)
11336 f
= *tcctx
.cb
.decl_map
->get (f
);
11337 n
= splay_tree_lookup (ctx
->sfield_map
, key
);
11338 sf
= (tree
) n
->value
;
11339 if (tcctx
.cb
.decl_map
)
11340 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11341 src
= build_simple_mem_ref_loc (loc
, sarg
);
11342 src
= omp_build_component_ref (src
, sf
);
11343 if (decl
!= OMP_CLAUSE_DECL (c
)
11344 && TREE_CODE (TREE_TYPE (decl
)) == REFERENCE_TYPE
11345 && TREE_CODE (TREE_TYPE (TREE_TYPE (decl
))) == POINTER_TYPE
)
11346 src
= build_simple_mem_ref_loc (loc
, src
);
11347 dst
= build_simple_mem_ref_loc (loc
, arg
);
11348 dst
= omp_build_component_ref (dst
, f
);
11349 t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
11350 append_to_statement_list (t
, &list
);
11352 case OMP_CLAUSE__LOOPTEMP_
:
11353 /* Fields for first two _looptemp_ clauses are initialized by
11354 GOMP_taskloop*, the rest are handled like firstprivate. */
11355 if (looptempno
< 2)
11361 case OMP_CLAUSE__REDUCTEMP_
:
11362 case OMP_CLAUSE_FIRSTPRIVATE
:
11363 decl
= OMP_CLAUSE_DECL (c
);
11364 if (is_variable_sized (decl
))
11366 n
= splay_tree_lookup (ctx
->field_map
, (splay_tree_key
) decl
);
11369 f
= (tree
) n
->value
;
11370 if (tcctx
.cb
.decl_map
)
11371 f
= *tcctx
.cb
.decl_map
->get (f
);
11372 n
= splay_tree_lookup (ctx
->sfield_map
, (splay_tree_key
) decl
);
11375 sf
= (tree
) n
->value
;
11376 if (tcctx
.cb
.decl_map
)
11377 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11378 src
= build_simple_mem_ref_loc (loc
, sarg
);
11379 src
= omp_build_component_ref (src
, sf
);
11380 if (use_pointer_for_field (decl
, NULL
) || omp_is_reference (decl
))
11381 src
= build_simple_mem_ref_loc (loc
, src
);
11385 dst
= build_simple_mem_ref_loc (loc
, arg
);
11386 dst
= omp_build_component_ref (dst
, f
);
11387 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_FIRSTPRIVATE
)
11388 t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
11391 if (ctx
->allocate_map
)
11392 if (tree
*allocatorp
= ctx
->allocate_map
->get (decl
))
11394 tree allocator
= *allocatorp
;
11395 if (TREE_CODE (allocator
) != INTEGER_CST
)
11397 n
= splay_tree_lookup (ctx
->sfield_map
,
11398 (splay_tree_key
) allocator
);
11399 allocator
= (tree
) n
->value
;
11400 if (tcctx
.cb
.decl_map
)
11401 allocator
= *tcctx
.cb
.decl_map
->get (allocator
);
11402 tree a
= build_simple_mem_ref_loc (loc
, sarg
);
11403 allocator
= omp_build_component_ref (a
, allocator
);
11405 allocator
= fold_convert (pointer_sized_int_node
, allocator
);
11406 tree a
= builtin_decl_explicit (BUILT_IN_GOMP_ALLOC
);
11407 tree align
= build_int_cst (size_type_node
,
11408 DECL_ALIGN_UNIT (decl
));
11409 tree sz
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (dst
)));
11410 tree ptr
= build_call_expr_loc (loc
, a
, 3, align
, sz
,
11412 ptr
= fold_convert (TREE_TYPE (dst
), ptr
);
11413 t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, ptr
);
11414 append_to_statement_list (t
, &list
);
11415 dst
= build_simple_mem_ref_loc (loc
, dst
);
11417 t
= lang_hooks
.decls
.omp_clause_copy_ctor (c
, dst
, src
);
11419 append_to_statement_list (t
, &list
);
11421 case OMP_CLAUSE_PRIVATE
:
11422 if (! OMP_CLAUSE_PRIVATE_OUTER_REF (c
))
11424 decl
= OMP_CLAUSE_DECL (c
);
11425 n
= splay_tree_lookup (ctx
->field_map
, (splay_tree_key
) decl
);
11426 f
= (tree
) n
->value
;
11427 if (tcctx
.cb
.decl_map
)
11428 f
= *tcctx
.cb
.decl_map
->get (f
);
11429 n
= splay_tree_lookup (ctx
->sfield_map
, (splay_tree_key
) decl
);
11432 sf
= (tree
) n
->value
;
11433 if (tcctx
.cb
.decl_map
)
11434 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11435 src
= build_simple_mem_ref_loc (loc
, sarg
);
11436 src
= omp_build_component_ref (src
, sf
);
11437 if (use_pointer_for_field (decl
, NULL
))
11438 src
= build_simple_mem_ref_loc (loc
, src
);
11442 dst
= build_simple_mem_ref_loc (loc
, arg
);
11443 dst
= omp_build_component_ref (dst
, f
);
11444 t
= build2 (MODIFY_EXPR
, TREE_TYPE (dst
), dst
, src
);
11445 append_to_statement_list (t
, &list
);
11451 /* Last pass: handle VLA firstprivates. */
11452 if (tcctx
.cb
.decl_map
)
11453 for (c
= gimple_omp_task_clauses (task_stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
11454 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
11458 decl
= OMP_CLAUSE_DECL (c
);
11459 if (!is_variable_sized (decl
))
11461 n
= splay_tree_lookup (ctx
->field_map
, (splay_tree_key
) decl
);
11464 f
= (tree
) n
->value
;
11465 f
= *tcctx
.cb
.decl_map
->get (f
);
11466 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl
));
11467 ind
= DECL_VALUE_EXPR (decl
);
11468 gcc_assert (TREE_CODE (ind
) == INDIRECT_REF
);
11469 gcc_assert (DECL_P (TREE_OPERAND (ind
, 0)));
11470 n
= splay_tree_lookup (ctx
->sfield_map
,
11471 (splay_tree_key
) TREE_OPERAND (ind
, 0));
11472 sf
= (tree
) n
->value
;
11473 sf
= *tcctx
.cb
.decl_map
->get (sf
);
11474 src
= build_simple_mem_ref_loc (loc
, sarg
);
11475 src
= omp_build_component_ref (src
, sf
);
11476 src
= build_simple_mem_ref_loc (loc
, src
);
11477 dst
= build_simple_mem_ref_loc (loc
, arg
);
11478 dst
= omp_build_component_ref (dst
, f
);
11479 t
= lang_hooks
.decls
.omp_clause_copy_ctor (c
, dst
, src
);
11480 append_to_statement_list (t
, &list
);
11481 n
= splay_tree_lookup (ctx
->field_map
,
11482 (splay_tree_key
) TREE_OPERAND (ind
, 0));
11483 df
= (tree
) n
->value
;
11484 df
= *tcctx
.cb
.decl_map
->get (df
);
11485 ptr
= build_simple_mem_ref_loc (loc
, arg
);
11486 ptr
= omp_build_component_ref (ptr
, df
);
11487 t
= build2 (MODIFY_EXPR
, TREE_TYPE (ptr
), ptr
,
11488 build_fold_addr_expr_loc (loc
, dst
));
11489 append_to_statement_list (t
, &list
);
11492 t
= build1 (RETURN_EXPR
, void_type_node
, NULL
);
11493 append_to_statement_list (t
, &list
);
11495 if (tcctx
.cb
.decl_map
)
11496 delete tcctx
.cb
.decl_map
;
11497 pop_gimplify_context (NULL
);
11498 BIND_EXPR_BODY (bind
) = list
;
11503 lower_depend_clauses (tree
*pclauses
, gimple_seq
*iseq
, gimple_seq
*oseq
)
11507 size_t cnt
[4] = { 0, 0, 0, 0 }, idx
= 2, i
;
11509 clauses
= omp_find_clause (*pclauses
, OMP_CLAUSE_DEPEND
);
11510 gcc_assert (clauses
);
11511 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
11512 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_DEPEND
)
11513 switch (OMP_CLAUSE_DEPEND_KIND (c
))
11515 case OMP_CLAUSE_DEPEND_LAST
:
11516 /* Lowering already done at gimplification. */
11518 case OMP_CLAUSE_DEPEND_IN
:
11521 case OMP_CLAUSE_DEPEND_OUT
:
11522 case OMP_CLAUSE_DEPEND_INOUT
:
11525 case OMP_CLAUSE_DEPEND_MUTEXINOUTSET
:
11528 case OMP_CLAUSE_DEPEND_DEPOBJ
:
11531 case OMP_CLAUSE_DEPEND_SOURCE
:
11532 case OMP_CLAUSE_DEPEND_SINK
:
11535 gcc_unreachable ();
11537 if (cnt
[1] || cnt
[3])
11539 size_t total
= cnt
[0] + cnt
[1] + cnt
[2] + cnt
[3];
11540 tree type
= build_array_type_nelts (ptr_type_node
, total
+ idx
);
11541 tree array
= create_tmp_var (type
);
11542 TREE_ADDRESSABLE (array
) = 1;
11543 tree r
= build4 (ARRAY_REF
, ptr_type_node
, array
, size_int (0), NULL_TREE
,
11547 g
= gimple_build_assign (r
, build_int_cst (ptr_type_node
, 0));
11548 gimple_seq_add_stmt (iseq
, g
);
11549 r
= build4 (ARRAY_REF
, ptr_type_node
, array
, size_int (1), NULL_TREE
,
11552 g
= gimple_build_assign (r
, build_int_cst (ptr_type_node
, total
));
11553 gimple_seq_add_stmt (iseq
, g
);
11554 for (i
= 0; i
< (idx
== 5 ? 3 : 1); i
++)
11556 r
= build4 (ARRAY_REF
, ptr_type_node
, array
,
11557 size_int (i
+ 1 + (idx
== 5)), NULL_TREE
, NULL_TREE
);
11558 g
= gimple_build_assign (r
, build_int_cst (ptr_type_node
, cnt
[i
]));
11559 gimple_seq_add_stmt (iseq
, g
);
11561 for (i
= 0; i
< 4; i
++)
11565 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
11566 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_DEPEND
)
11570 switch (OMP_CLAUSE_DEPEND_KIND (c
))
11572 case OMP_CLAUSE_DEPEND_IN
:
11576 case OMP_CLAUSE_DEPEND_OUT
:
11577 case OMP_CLAUSE_DEPEND_INOUT
:
11581 case OMP_CLAUSE_DEPEND_MUTEXINOUTSET
:
11585 case OMP_CLAUSE_DEPEND_DEPOBJ
:
11590 gcc_unreachable ();
11592 tree t
= OMP_CLAUSE_DECL (c
);
11593 t
= fold_convert (ptr_type_node
, t
);
11594 gimplify_expr (&t
, iseq
, NULL
, is_gimple_val
, fb_rvalue
);
11595 r
= build4 (ARRAY_REF
, ptr_type_node
, array
, size_int (idx
++),
11596 NULL_TREE
, NULL_TREE
);
11597 g
= gimple_build_assign (r
, t
);
11598 gimple_seq_add_stmt (iseq
, g
);
11601 c
= build_omp_clause (UNKNOWN_LOCATION
, OMP_CLAUSE_DEPEND
);
11602 OMP_CLAUSE_DEPEND_KIND (c
) = OMP_CLAUSE_DEPEND_LAST
;
11603 OMP_CLAUSE_DECL (c
) = build_fold_addr_expr (array
);
11604 OMP_CLAUSE_CHAIN (c
) = *pclauses
;
11606 tree clobber
= build_clobber (type
);
11607 g
= gimple_build_assign (array
, clobber
);
11608 gimple_seq_add_stmt (oseq
, g
);
11611 /* Lower the OpenMP parallel or task directive in the current statement
11612 in GSI_P. CTX holds context information for the directive. */
11615 lower_omp_taskreg (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
11619 gimple
*stmt
= gsi_stmt (*gsi_p
);
11620 gbind
*par_bind
, *bind
, *dep_bind
= NULL
;
11621 gimple_seq par_body
;
11622 location_t loc
= gimple_location (stmt
);
11624 clauses
= gimple_omp_taskreg_clauses (stmt
);
11625 if (gimple_code (stmt
) == GIMPLE_OMP_TASK
11626 && gimple_omp_task_taskwait_p (stmt
))
11634 = as_a
<gbind
*> (gimple_seq_first_stmt (gimple_omp_body (stmt
)));
11635 par_body
= gimple_bind_body (par_bind
);
11637 child_fn
= ctx
->cb
.dst_fn
;
11638 if (gimple_code (stmt
) == GIMPLE_OMP_PARALLEL
11639 && !gimple_omp_parallel_combined_p (stmt
))
11641 struct walk_stmt_info wi
;
11644 memset (&wi
, 0, sizeof (wi
));
11646 wi
.val_only
= true;
11647 walk_gimple_seq (par_body
, check_combined_parallel
, NULL
, &wi
);
11649 gimple_omp_parallel_set_combined_p (stmt
, true);
11651 gimple_seq dep_ilist
= NULL
;
11652 gimple_seq dep_olist
= NULL
;
11653 if (gimple_code (stmt
) == GIMPLE_OMP_TASK
11654 && omp_find_clause (clauses
, OMP_CLAUSE_DEPEND
))
11656 push_gimplify_context ();
11657 dep_bind
= gimple_build_bind (NULL
, NULL
, make_node (BLOCK
));
11658 lower_depend_clauses (gimple_omp_task_clauses_ptr (stmt
),
11659 &dep_ilist
, &dep_olist
);
11662 if (gimple_code (stmt
) == GIMPLE_OMP_TASK
11663 && gimple_omp_task_taskwait_p (stmt
))
11667 gsi_replace (gsi_p
, dep_bind
, true);
11668 gimple_bind_add_seq (dep_bind
, dep_ilist
);
11669 gimple_bind_add_stmt (dep_bind
, stmt
);
11670 gimple_bind_add_seq (dep_bind
, dep_olist
);
11671 pop_gimplify_context (dep_bind
);
11676 if (ctx
->srecord_type
)
11677 create_task_copyfn (as_a
<gomp_task
*> (stmt
), ctx
);
11679 gimple_seq tskred_ilist
= NULL
;
11680 gimple_seq tskred_olist
= NULL
;
11681 if ((is_task_ctx (ctx
)
11682 && gimple_omp_task_taskloop_p (ctx
->stmt
)
11683 && omp_find_clause (gimple_omp_task_clauses (ctx
->stmt
),
11684 OMP_CLAUSE_REDUCTION
))
11685 || (is_parallel_ctx (ctx
)
11686 && omp_find_clause (gimple_omp_parallel_clauses (stmt
),
11687 OMP_CLAUSE__REDUCTEMP_
)))
11689 if (dep_bind
== NULL
)
11691 push_gimplify_context ();
11692 dep_bind
= gimple_build_bind (NULL
, NULL
, make_node (BLOCK
));
11694 lower_omp_task_reductions (ctx
, is_task_ctx (ctx
) ? OMP_TASKLOOP
11696 gimple_omp_taskreg_clauses (ctx
->stmt
),
11697 &tskred_ilist
, &tskred_olist
);
11700 push_gimplify_context ();
11702 gimple_seq par_olist
= NULL
;
11703 gimple_seq par_ilist
= NULL
;
11704 gimple_seq par_rlist
= NULL
;
11705 lower_rec_input_clauses (clauses
, &par_ilist
, &par_olist
, ctx
, NULL
);
11706 lower_omp (&par_body
, ctx
);
11707 if (gimple_code (stmt
) != GIMPLE_OMP_TASK
)
11708 lower_reduction_clauses (clauses
, &par_rlist
, NULL
, ctx
);
11710 /* Declare all the variables created by mapping and the variables
11711 declared in the scope of the parallel body. */
11712 record_vars_into (ctx
->block_vars
, child_fn
);
11713 maybe_remove_omp_member_access_dummy_vars (par_bind
);
11714 record_vars_into (gimple_bind_vars (par_bind
), child_fn
);
11716 if (ctx
->record_type
)
11719 = create_tmp_var (ctx
->srecord_type
? ctx
->srecord_type
11720 : ctx
->record_type
, ".omp_data_o");
11721 DECL_NAMELESS (ctx
->sender_decl
) = 1;
11722 TREE_ADDRESSABLE (ctx
->sender_decl
) = 1;
11723 gimple_omp_taskreg_set_data_arg (stmt
, ctx
->sender_decl
);
11726 gimple_seq olist
= NULL
;
11727 gimple_seq ilist
= NULL
;
11728 lower_send_clauses (clauses
, &ilist
, &olist
, ctx
);
11729 lower_send_shared_vars (&ilist
, &olist
, ctx
);
11731 if (ctx
->record_type
)
11733 tree clobber
= build_clobber (TREE_TYPE (ctx
->sender_decl
));
11734 gimple_seq_add_stmt (&olist
, gimple_build_assign (ctx
->sender_decl
,
11738 /* Once all the expansions are done, sequence all the different
11739 fragments inside gimple_omp_body. */
11741 gimple_seq new_body
= NULL
;
11743 if (ctx
->record_type
)
11745 t
= build_fold_addr_expr_loc (loc
, ctx
->sender_decl
);
11746 /* fixup_child_record_type might have changed receiver_decl's type. */
11747 t
= fold_convert_loc (loc
, TREE_TYPE (ctx
->receiver_decl
), t
);
11748 gimple_seq_add_stmt (&new_body
,
11749 gimple_build_assign (ctx
->receiver_decl
, t
));
11752 gimple_seq_add_seq (&new_body
, par_ilist
);
11753 gimple_seq_add_seq (&new_body
, par_body
);
11754 gimple_seq_add_seq (&new_body
, par_rlist
);
11755 if (ctx
->cancellable
)
11756 gimple_seq_add_stmt (&new_body
, gimple_build_label (ctx
->cancel_label
));
11757 gimple_seq_add_seq (&new_body
, par_olist
);
11758 new_body
= maybe_catch_exception (new_body
);
11759 if (gimple_code (stmt
) == GIMPLE_OMP_TASK
)
11760 gimple_seq_add_stmt (&new_body
,
11761 gimple_build_omp_continue (integer_zero_node
,
11762 integer_zero_node
));
11763 gimple_seq_add_stmt (&new_body
, gimple_build_omp_return (false));
11764 gimple_omp_set_body (stmt
, new_body
);
11766 if (dep_bind
&& gimple_bind_block (par_bind
) == NULL_TREE
)
11767 bind
= gimple_build_bind (NULL
, NULL
, make_node (BLOCK
));
11769 bind
= gimple_build_bind (NULL
, NULL
, gimple_bind_block (par_bind
));
11770 gsi_replace (gsi_p
, dep_bind
? dep_bind
: bind
, true);
11771 gimple_bind_add_seq (bind
, ilist
);
11772 gimple_bind_add_stmt (bind
, stmt
);
11773 gimple_bind_add_seq (bind
, olist
);
11775 pop_gimplify_context (NULL
);
11779 gimple_bind_add_seq (dep_bind
, dep_ilist
);
11780 gimple_bind_add_seq (dep_bind
, tskred_ilist
);
11781 gimple_bind_add_stmt (dep_bind
, bind
);
11782 gimple_bind_add_seq (dep_bind
, tskred_olist
);
11783 gimple_bind_add_seq (dep_bind
, dep_olist
);
11784 pop_gimplify_context (dep_bind
);
11788 /* Lower the GIMPLE_OMP_TARGET in the current statement
11789 in GSI_P. CTX holds context information for the directive. */
11792 lower_omp_target (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
11795 tree child_fn
, t
, c
;
11796 gomp_target
*stmt
= as_a
<gomp_target
*> (gsi_stmt (*gsi_p
));
11797 gbind
*tgt_bind
, *bind
, *dep_bind
= NULL
;
11798 gimple_seq tgt_body
, olist
, ilist
, fplist
, new_body
;
11799 location_t loc
= gimple_location (stmt
);
11800 bool offloaded
, data_region
;
11801 unsigned int map_cnt
= 0;
11803 offloaded
= is_gimple_omp_offloaded (stmt
);
11804 switch (gimple_omp_target_kind (stmt
))
11806 case GF_OMP_TARGET_KIND_REGION
:
11807 case GF_OMP_TARGET_KIND_UPDATE
:
11808 case GF_OMP_TARGET_KIND_ENTER_DATA
:
11809 case GF_OMP_TARGET_KIND_EXIT_DATA
:
11810 case GF_OMP_TARGET_KIND_OACC_PARALLEL
:
11811 case GF_OMP_TARGET_KIND_OACC_KERNELS
:
11812 case GF_OMP_TARGET_KIND_OACC_SERIAL
:
11813 case GF_OMP_TARGET_KIND_OACC_UPDATE
:
11814 case GF_OMP_TARGET_KIND_OACC_ENTER_EXIT_DATA
:
11815 case GF_OMP_TARGET_KIND_OACC_DECLARE
:
11816 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_PARALLELIZED
:
11817 case GF_OMP_TARGET_KIND_OACC_PARALLEL_KERNELS_GANG_SINGLE
:
11818 data_region
= false;
11820 case GF_OMP_TARGET_KIND_DATA
:
11821 case GF_OMP_TARGET_KIND_OACC_DATA
:
11822 case GF_OMP_TARGET_KIND_OACC_HOST_DATA
:
11823 case GF_OMP_TARGET_KIND_OACC_DATA_KERNELS
:
11824 data_region
= true;
11827 gcc_unreachable ();
11830 clauses
= gimple_omp_target_clauses (stmt
);
11832 gimple_seq dep_ilist
= NULL
;
11833 gimple_seq dep_olist
= NULL
;
11834 if (omp_find_clause (clauses
, OMP_CLAUSE_DEPEND
))
11836 push_gimplify_context ();
11837 dep_bind
= gimple_build_bind (NULL
, NULL
, make_node (BLOCK
));
11838 lower_depend_clauses (gimple_omp_target_clauses_ptr (stmt
),
11839 &dep_ilist
, &dep_olist
);
11846 tgt_bind
= gimple_seq_first_stmt_as_a_bind (gimple_omp_body (stmt
));
11847 tgt_body
= gimple_bind_body (tgt_bind
);
11849 else if (data_region
)
11850 tgt_body
= gimple_omp_body (stmt
);
11851 child_fn
= ctx
->cb
.dst_fn
;
11853 push_gimplify_context ();
11856 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
11857 switch (OMP_CLAUSE_CODE (c
))
11863 case OMP_CLAUSE_MAP
:
11865 /* First check what we're prepared to handle in the following. */
11866 switch (OMP_CLAUSE_MAP_KIND (c
))
11868 case GOMP_MAP_ALLOC
:
11870 case GOMP_MAP_FROM
:
11871 case GOMP_MAP_TOFROM
:
11872 case GOMP_MAP_POINTER
:
11873 case GOMP_MAP_TO_PSET
:
11874 case GOMP_MAP_DELETE
:
11875 case GOMP_MAP_RELEASE
:
11876 case GOMP_MAP_ALWAYS_TO
:
11877 case GOMP_MAP_ALWAYS_FROM
:
11878 case GOMP_MAP_ALWAYS_TOFROM
:
11879 case GOMP_MAP_FIRSTPRIVATE_POINTER
:
11880 case GOMP_MAP_FIRSTPRIVATE_REFERENCE
:
11881 case GOMP_MAP_STRUCT
:
11882 case GOMP_MAP_ALWAYS_POINTER
:
11883 case GOMP_MAP_ATTACH
:
11884 case GOMP_MAP_DETACH
:
11886 case GOMP_MAP_IF_PRESENT
:
11887 case GOMP_MAP_FORCE_ALLOC
:
11888 case GOMP_MAP_FORCE_TO
:
11889 case GOMP_MAP_FORCE_FROM
:
11890 case GOMP_MAP_FORCE_TOFROM
:
11891 case GOMP_MAP_FORCE_PRESENT
:
11892 case GOMP_MAP_FORCE_DEVICEPTR
:
11893 case GOMP_MAP_DEVICE_RESIDENT
:
11894 case GOMP_MAP_LINK
:
11895 case GOMP_MAP_FORCE_DETACH
:
11896 gcc_assert (is_gimple_omp_oacc (stmt
));
11899 gcc_unreachable ();
11903 case OMP_CLAUSE_TO
:
11904 case OMP_CLAUSE_FROM
:
11906 var
= OMP_CLAUSE_DECL (c
);
11909 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_MAP
11910 || (!OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
)
11911 && (OMP_CLAUSE_MAP_KIND (c
)
11912 != GOMP_MAP_FIRSTPRIVATE_POINTER
)))
11917 if (DECL_SIZE (var
)
11918 && TREE_CODE (DECL_SIZE (var
)) != INTEGER_CST
)
11920 tree var2
= DECL_VALUE_EXPR (var
);
11921 gcc_assert (TREE_CODE (var2
) == INDIRECT_REF
);
11922 var2
= TREE_OPERAND (var2
, 0);
11923 gcc_assert (DECL_P (var2
));
11928 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
11929 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
11930 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_REFERENCE
))
11932 if (TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
)
11934 if (is_global_var (maybe_lookup_decl_in_outer_ctx (var
, ctx
))
11935 && varpool_node::get_create (var
)->offloadable
)
11938 tree type
= build_pointer_type (TREE_TYPE (var
));
11939 tree new_var
= lookup_decl (var
, ctx
);
11940 x
= create_tmp_var_raw (type
, get_name (new_var
));
11941 gimple_add_tmp_var (x
);
11942 x
= build_simple_mem_ref (x
);
11943 SET_DECL_VALUE_EXPR (new_var
, x
);
11944 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
11949 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
11950 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_ATTACH
11951 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_DETACH
)
11952 && is_omp_target (stmt
))
11954 gcc_assert (maybe_lookup_field (c
, ctx
));
11959 if (!maybe_lookup_field (var
, ctx
))
11962 /* Don't remap compute constructs' reduction variables, because the
11963 intermediate result must be local to each gang. */
11964 if (offloaded
&& !(OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
11965 && OMP_CLAUSE_MAP_IN_REDUCTION (c
)))
11967 x
= build_receiver_ref (var
, true, ctx
);
11968 tree new_var
= lookup_decl (var
, ctx
);
11970 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
11971 && OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
11972 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
)
11973 && TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
)
11974 x
= build_simple_mem_ref (x
);
11975 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
11977 gcc_assert (is_gimple_omp_oacc (ctx
->stmt
));
11978 if (omp_is_reference (new_var
)
11979 && (TREE_CODE (TREE_TYPE (new_var
)) != POINTER_TYPE
11980 || DECL_BY_REFERENCE (var
)))
11982 /* Create a local object to hold the instance
11984 tree type
= TREE_TYPE (TREE_TYPE (new_var
));
11985 const char *id
= IDENTIFIER_POINTER (DECL_NAME (new_var
));
11986 tree inst
= create_tmp_var (type
, id
);
11987 gimplify_assign (inst
, fold_indirect_ref (x
), &fplist
);
11988 x
= build_fold_addr_expr (inst
);
11990 gimplify_assign (new_var
, x
, &fplist
);
11992 else if (DECL_P (new_var
))
11994 SET_DECL_VALUE_EXPR (new_var
, x
);
11995 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
11998 gcc_unreachable ();
12003 case OMP_CLAUSE_FIRSTPRIVATE
:
12004 gcc_checking_assert (offloaded
);
12005 if (is_gimple_omp_oacc (ctx
->stmt
))
12007 /* No 'firstprivate' clauses on OpenACC 'kernels'. */
12008 gcc_checking_assert (!is_oacc_kernels (ctx
));
12009 /* Likewise, on OpenACC 'kernels' decomposed parts. */
12010 gcc_checking_assert (!is_oacc_kernels_decomposed_part (ctx
));
12012 goto oacc_firstprivate
;
12015 var
= OMP_CLAUSE_DECL (c
);
12016 if (!omp_is_reference (var
)
12017 && !is_gimple_reg_type (TREE_TYPE (var
)))
12019 tree new_var
= lookup_decl (var
, ctx
);
12020 if (is_variable_sized (var
))
12022 tree pvar
= DECL_VALUE_EXPR (var
);
12023 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12024 pvar
= TREE_OPERAND (pvar
, 0);
12025 gcc_assert (DECL_P (pvar
));
12026 tree new_pvar
= lookup_decl (pvar
, ctx
);
12027 x
= build_fold_indirect_ref (new_pvar
);
12028 TREE_THIS_NOTRAP (x
) = 1;
12031 x
= build_receiver_ref (var
, true, ctx
);
12032 SET_DECL_VALUE_EXPR (new_var
, x
);
12033 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
12037 case OMP_CLAUSE_PRIVATE
:
12038 gcc_checking_assert (offloaded
);
12039 if (is_gimple_omp_oacc (ctx
->stmt
))
12041 /* No 'private' clauses on OpenACC 'kernels'. */
12042 gcc_checking_assert (!is_oacc_kernels (ctx
));
12043 /* Likewise, on OpenACC 'kernels' decomposed parts. */
12044 gcc_checking_assert (!is_oacc_kernels_decomposed_part (ctx
));
12048 var
= OMP_CLAUSE_DECL (c
);
12049 if (is_variable_sized (var
))
12051 tree new_var
= lookup_decl (var
, ctx
);
12052 tree pvar
= DECL_VALUE_EXPR (var
);
12053 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12054 pvar
= TREE_OPERAND (pvar
, 0);
12055 gcc_assert (DECL_P (pvar
));
12056 tree new_pvar
= lookup_decl (pvar
, ctx
);
12057 x
= build_fold_indirect_ref (new_pvar
);
12058 TREE_THIS_NOTRAP (x
) = 1;
12059 SET_DECL_VALUE_EXPR (new_var
, x
);
12060 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
12064 case OMP_CLAUSE_USE_DEVICE_PTR
:
12065 case OMP_CLAUSE_USE_DEVICE_ADDR
:
12066 case OMP_CLAUSE_IS_DEVICE_PTR
:
12067 var
= OMP_CLAUSE_DECL (c
);
12069 if (is_variable_sized (var
))
12071 tree new_var
= lookup_decl (var
, ctx
);
12072 tree pvar
= DECL_VALUE_EXPR (var
);
12073 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12074 pvar
= TREE_OPERAND (pvar
, 0);
12075 gcc_assert (DECL_P (pvar
));
12076 tree new_pvar
= lookup_decl (pvar
, ctx
);
12077 x
= build_fold_indirect_ref (new_pvar
);
12078 TREE_THIS_NOTRAP (x
) = 1;
12079 SET_DECL_VALUE_EXPR (new_var
, x
);
12080 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
12082 else if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_USE_DEVICE_ADDR
12083 && !omp_is_reference (var
)
12084 && !omp_is_allocatable_or_ptr (var
)
12085 && !lang_hooks
.decls
.omp_array_data (var
, true))
12086 || TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
)
12088 tree new_var
= lookup_decl (var
, ctx
);
12089 tree type
= build_pointer_type (TREE_TYPE (var
));
12090 x
= create_tmp_var_raw (type
, get_name (new_var
));
12091 gimple_add_tmp_var (x
);
12092 x
= build_simple_mem_ref (x
);
12093 SET_DECL_VALUE_EXPR (new_var
, x
);
12094 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
12098 tree new_var
= lookup_decl (var
, ctx
);
12099 x
= create_tmp_var_raw (TREE_TYPE (new_var
), get_name (new_var
));
12100 gimple_add_tmp_var (x
);
12101 SET_DECL_VALUE_EXPR (new_var
, x
);
12102 DECL_HAS_VALUE_EXPR_P (new_var
) = 1;
12109 target_nesting_level
++;
12110 lower_omp (&tgt_body
, ctx
);
12111 target_nesting_level
--;
12113 else if (data_region
)
12114 lower_omp (&tgt_body
, ctx
);
12118 /* Declare all the variables created by mapping and the variables
12119 declared in the scope of the target body. */
12120 record_vars_into (ctx
->block_vars
, child_fn
);
12121 maybe_remove_omp_member_access_dummy_vars (tgt_bind
);
12122 record_vars_into (gimple_bind_vars (tgt_bind
), child_fn
);
12127 if (ctx
->record_type
)
12130 = create_tmp_var (ctx
->record_type
, ".omp_data_arr");
12131 DECL_NAMELESS (ctx
->sender_decl
) = 1;
12132 TREE_ADDRESSABLE (ctx
->sender_decl
) = 1;
12133 t
= make_tree_vec (3);
12134 TREE_VEC_ELT (t
, 0) = ctx
->sender_decl
;
12135 TREE_VEC_ELT (t
, 1)
12136 = create_tmp_var (build_array_type_nelts (size_type_node
, map_cnt
),
12137 ".omp_data_sizes");
12138 DECL_NAMELESS (TREE_VEC_ELT (t
, 1)) = 1;
12139 TREE_ADDRESSABLE (TREE_VEC_ELT (t
, 1)) = 1;
12140 TREE_STATIC (TREE_VEC_ELT (t
, 1)) = 1;
12141 tree tkind_type
= short_unsigned_type_node
;
12142 int talign_shift
= 8;
12143 TREE_VEC_ELT (t
, 2)
12144 = create_tmp_var (build_array_type_nelts (tkind_type
, map_cnt
),
12145 ".omp_data_kinds");
12146 DECL_NAMELESS (TREE_VEC_ELT (t
, 2)) = 1;
12147 TREE_ADDRESSABLE (TREE_VEC_ELT (t
, 2)) = 1;
12148 TREE_STATIC (TREE_VEC_ELT (t
, 2)) = 1;
12149 gimple_omp_target_set_data_arg (stmt
, t
);
12151 vec
<constructor_elt
, va_gc
> *vsize
;
12152 vec
<constructor_elt
, va_gc
> *vkind
;
12153 vec_alloc (vsize
, map_cnt
);
12154 vec_alloc (vkind
, map_cnt
);
12155 unsigned int map_idx
= 0;
12157 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
12158 switch (OMP_CLAUSE_CODE (c
))
12160 tree ovar
, nc
, s
, purpose
, var
, x
, type
;
12161 unsigned int talign
;
12166 case OMP_CLAUSE_MAP
:
12167 case OMP_CLAUSE_TO
:
12168 case OMP_CLAUSE_FROM
:
12169 oacc_firstprivate_map
:
12171 ovar
= OMP_CLAUSE_DECL (c
);
12172 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12173 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
12174 || (OMP_CLAUSE_MAP_KIND (c
)
12175 == GOMP_MAP_FIRSTPRIVATE_REFERENCE
)))
12177 if (!DECL_P (ovar
))
12179 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12180 && OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
))
12182 gcc_checking_assert (OMP_CLAUSE_DECL (OMP_CLAUSE_CHAIN (c
))
12183 == get_base_address (ovar
));
12184 nc
= OMP_CLAUSE_CHAIN (c
);
12185 ovar
= OMP_CLAUSE_DECL (nc
);
12189 tree x
= build_sender_ref (ovar
, ctx
);
12191 = build_fold_addr_expr_with_type (ovar
, ptr_type_node
);
12192 gimplify_assign (x
, v
, &ilist
);
12198 if (DECL_SIZE (ovar
)
12199 && TREE_CODE (DECL_SIZE (ovar
)) != INTEGER_CST
)
12201 tree ovar2
= DECL_VALUE_EXPR (ovar
);
12202 gcc_assert (TREE_CODE (ovar2
) == INDIRECT_REF
);
12203 ovar2
= TREE_OPERAND (ovar2
, 0);
12204 gcc_assert (DECL_P (ovar2
));
12207 if (!maybe_lookup_field (ovar
, ctx
)
12208 && !(OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12209 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_ATTACH
12210 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_DETACH
)))
12214 talign
= TYPE_ALIGN_UNIT (TREE_TYPE (ovar
));
12215 if (DECL_P (ovar
) && DECL_ALIGN_UNIT (ovar
) > talign
)
12216 talign
= DECL_ALIGN_UNIT (ovar
);
12219 && OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12220 && (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_ATTACH
12221 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_DETACH
)
12222 && is_omp_target (stmt
))
12224 var
= lookup_decl_in_outer_ctx (ovar
, ctx
);
12225 x
= build_sender_ref (c
, ctx
);
12226 gimplify_assign (x
, build_fold_addr_expr (var
), &ilist
);
12230 var
= lookup_decl_in_outer_ctx (ovar
, ctx
);
12231 x
= build_sender_ref (ovar
, ctx
);
12233 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_MAP
12234 && OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_POINTER
12235 && !OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION (c
)
12236 && TREE_CODE (TREE_TYPE (ovar
)) == ARRAY_TYPE
)
12238 gcc_assert (offloaded
);
12240 = create_tmp_var (TREE_TYPE (TREE_TYPE (x
)));
12241 mark_addressable (avar
);
12242 gimplify_assign (avar
, build_fold_addr_expr (var
), &ilist
);
12243 talign
= DECL_ALIGN_UNIT (avar
);
12244 avar
= build_fold_addr_expr (avar
);
12245 gimplify_assign (x
, avar
, &ilist
);
12247 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
12249 gcc_assert (is_gimple_omp_oacc (ctx
->stmt
));
12250 if (!omp_is_reference (var
))
12252 if (is_gimple_reg (var
)
12253 && OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT (c
))
12254 TREE_NO_WARNING (var
) = 1;
12255 var
= build_fold_addr_expr (var
);
12258 talign
= TYPE_ALIGN_UNIT (TREE_TYPE (TREE_TYPE (ovar
)));
12259 gimplify_assign (x
, var
, &ilist
);
12261 else if (is_gimple_reg (var
))
12263 gcc_assert (offloaded
);
12264 tree avar
= create_tmp_var (TREE_TYPE (var
));
12265 mark_addressable (avar
);
12266 enum gomp_map_kind map_kind
= OMP_CLAUSE_MAP_KIND (c
);
12267 if (GOMP_MAP_COPY_TO_P (map_kind
)
12268 || map_kind
== GOMP_MAP_POINTER
12269 || map_kind
== GOMP_MAP_TO_PSET
12270 || map_kind
== GOMP_MAP_FORCE_DEVICEPTR
)
12272 /* If we need to initialize a temporary
12273 with VAR because it is not addressable, and
12274 the variable hasn't been initialized yet, then
12275 we'll get a warning for the store to avar.
12276 Don't warn in that case, the mapping might
12278 TREE_NO_WARNING (var
) = 1;
12279 gimplify_assign (avar
, var
, &ilist
);
12281 avar
= build_fold_addr_expr (avar
);
12282 gimplify_assign (x
, avar
, &ilist
);
12283 if ((GOMP_MAP_COPY_FROM_P (map_kind
)
12284 || map_kind
== GOMP_MAP_FORCE_DEVICEPTR
)
12285 && !TYPE_READONLY (TREE_TYPE (var
)))
12287 x
= unshare_expr (x
);
12288 x
= build_simple_mem_ref (x
);
12289 gimplify_assign (var
, x
, &olist
);
12294 /* While MAP is handled explicitly by the FE,
12295 for 'target update', only the identified is passed. */
12296 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FROM
12297 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_TO
)
12298 && (omp_is_allocatable_or_ptr (var
)
12299 && omp_check_optional_argument (var
, false)))
12300 var
= build_fold_indirect_ref (var
);
12301 else if ((OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_FROM
12302 && OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_TO
)
12303 || (!omp_is_allocatable_or_ptr (var
)
12304 && !omp_check_optional_argument (var
, false)))
12305 var
= build_fold_addr_expr (var
);
12306 gimplify_assign (x
, var
, &ilist
);
12310 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
)
12312 gcc_checking_assert (is_gimple_omp_oacc (ctx
->stmt
));
12313 s
= TREE_TYPE (ovar
);
12314 if (TREE_CODE (s
) == REFERENCE_TYPE
12315 || omp_check_optional_argument (ovar
, false))
12317 s
= TYPE_SIZE_UNIT (s
);
12320 s
= OMP_CLAUSE_SIZE (c
);
12321 if (s
== NULL_TREE
)
12322 s
= TYPE_SIZE_UNIT (TREE_TYPE (ovar
));
12323 s
= fold_convert (size_type_node
, s
);
12324 purpose
= size_int (map_idx
++);
12325 CONSTRUCTOR_APPEND_ELT (vsize
, purpose
, s
);
12326 if (TREE_CODE (s
) != INTEGER_CST
)
12327 TREE_STATIC (TREE_VEC_ELT (t
, 1)) = 0;
12329 unsigned HOST_WIDE_INT tkind
, tkind_zero
;
12330 switch (OMP_CLAUSE_CODE (c
))
12332 case OMP_CLAUSE_MAP
:
12333 tkind
= OMP_CLAUSE_MAP_KIND (c
);
12334 tkind_zero
= tkind
;
12335 if (OMP_CLAUSE_MAP_MAYBE_ZERO_LENGTH_ARRAY_SECTION (c
))
12338 case GOMP_MAP_ALLOC
:
12339 case GOMP_MAP_IF_PRESENT
:
12341 case GOMP_MAP_FROM
:
12342 case GOMP_MAP_TOFROM
:
12343 case GOMP_MAP_ALWAYS_TO
:
12344 case GOMP_MAP_ALWAYS_FROM
:
12345 case GOMP_MAP_ALWAYS_TOFROM
:
12346 case GOMP_MAP_RELEASE
:
12347 case GOMP_MAP_FORCE_TO
:
12348 case GOMP_MAP_FORCE_FROM
:
12349 case GOMP_MAP_FORCE_TOFROM
:
12350 case GOMP_MAP_FORCE_PRESENT
:
12351 tkind_zero
= GOMP_MAP_ZERO_LEN_ARRAY_SECTION
;
12353 case GOMP_MAP_DELETE
:
12354 tkind_zero
= GOMP_MAP_DELETE_ZERO_LEN_ARRAY_SECTION
;
12358 if (tkind_zero
!= tkind
)
12360 if (integer_zerop (s
))
12361 tkind
= tkind_zero
;
12362 else if (integer_nonzerop (s
))
12363 tkind_zero
= tkind
;
12366 case OMP_CLAUSE_FIRSTPRIVATE
:
12367 gcc_checking_assert (is_gimple_omp_oacc (ctx
->stmt
));
12368 tkind
= GOMP_MAP_TO
;
12369 tkind_zero
= tkind
;
12371 case OMP_CLAUSE_TO
:
12372 tkind
= GOMP_MAP_TO
;
12373 tkind_zero
= tkind
;
12375 case OMP_CLAUSE_FROM
:
12376 tkind
= GOMP_MAP_FROM
;
12377 tkind_zero
= tkind
;
12380 gcc_unreachable ();
12382 gcc_checking_assert (tkind
12383 < (HOST_WIDE_INT_C (1U) << talign_shift
));
12384 gcc_checking_assert (tkind_zero
12385 < (HOST_WIDE_INT_C (1U) << talign_shift
));
12386 talign
= ceil_log2 (talign
);
12387 tkind
|= talign
<< talign_shift
;
12388 tkind_zero
|= talign
<< talign_shift
;
12389 gcc_checking_assert (tkind
12390 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type
)));
12391 gcc_checking_assert (tkind_zero
12392 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type
)));
12393 if (tkind
== tkind_zero
)
12394 x
= build_int_cstu (tkind_type
, tkind
);
12397 TREE_STATIC (TREE_VEC_ELT (t
, 2)) = 0;
12398 x
= build3 (COND_EXPR
, tkind_type
,
12399 fold_build2 (EQ_EXPR
, boolean_type_node
,
12400 unshare_expr (s
), size_zero_node
),
12401 build_int_cstu (tkind_type
, tkind_zero
),
12402 build_int_cstu (tkind_type
, tkind
));
12404 CONSTRUCTOR_APPEND_ELT (vkind
, purpose
, x
);
12409 case OMP_CLAUSE_FIRSTPRIVATE
:
12410 if (is_gimple_omp_oacc (ctx
->stmt
))
12411 goto oacc_firstprivate_map
;
12412 ovar
= OMP_CLAUSE_DECL (c
);
12413 if (omp_is_reference (ovar
))
12414 talign
= TYPE_ALIGN_UNIT (TREE_TYPE (TREE_TYPE (ovar
)));
12416 talign
= DECL_ALIGN_UNIT (ovar
);
12417 var
= lookup_decl_in_outer_ctx (ovar
, ctx
);
12418 x
= build_sender_ref (ovar
, ctx
);
12419 tkind
= GOMP_MAP_FIRSTPRIVATE
;
12420 type
= TREE_TYPE (ovar
);
12421 if (omp_is_reference (ovar
))
12422 type
= TREE_TYPE (type
);
12423 if ((INTEGRAL_TYPE_P (type
)
12424 && TYPE_PRECISION (type
) <= POINTER_SIZE
)
12425 || TREE_CODE (type
) == POINTER_TYPE
)
12427 tkind
= GOMP_MAP_FIRSTPRIVATE_INT
;
12429 if (omp_is_reference (var
))
12430 t
= build_simple_mem_ref (var
);
12431 else if (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT (c
))
12432 TREE_NO_WARNING (var
) = 1;
12433 if (TREE_CODE (type
) != POINTER_TYPE
)
12434 t
= fold_convert (pointer_sized_int_node
, t
);
12435 t
= fold_convert (TREE_TYPE (x
), t
);
12436 gimplify_assign (x
, t
, &ilist
);
12438 else if (omp_is_reference (var
))
12439 gimplify_assign (x
, var
, &ilist
);
12440 else if (is_gimple_reg (var
))
12442 tree avar
= create_tmp_var (TREE_TYPE (var
));
12443 mark_addressable (avar
);
12444 if (OMP_CLAUSE_FIRSTPRIVATE_IMPLICIT (c
))
12445 TREE_NO_WARNING (var
) = 1;
12446 gimplify_assign (avar
, var
, &ilist
);
12447 avar
= build_fold_addr_expr (avar
);
12448 gimplify_assign (x
, avar
, &ilist
);
12452 var
= build_fold_addr_expr (var
);
12453 gimplify_assign (x
, var
, &ilist
);
12455 if (tkind
== GOMP_MAP_FIRSTPRIVATE_INT
)
12457 else if (omp_is_reference (ovar
))
12458 s
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ovar
)));
12460 s
= TYPE_SIZE_UNIT (TREE_TYPE (ovar
));
12461 s
= fold_convert (size_type_node
, s
);
12462 purpose
= size_int (map_idx
++);
12463 CONSTRUCTOR_APPEND_ELT (vsize
, purpose
, s
);
12464 if (TREE_CODE (s
) != INTEGER_CST
)
12465 TREE_STATIC (TREE_VEC_ELT (t
, 1)) = 0;
12467 gcc_checking_assert (tkind
12468 < (HOST_WIDE_INT_C (1U) << talign_shift
));
12469 talign
= ceil_log2 (talign
);
12470 tkind
|= talign
<< talign_shift
;
12471 gcc_checking_assert (tkind
12472 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type
)));
12473 CONSTRUCTOR_APPEND_ELT (vkind
, purpose
,
12474 build_int_cstu (tkind_type
, tkind
));
12477 case OMP_CLAUSE_USE_DEVICE_PTR
:
12478 case OMP_CLAUSE_USE_DEVICE_ADDR
:
12479 case OMP_CLAUSE_IS_DEVICE_PTR
:
12480 ovar
= OMP_CLAUSE_DECL (c
);
12481 var
= lookup_decl_in_outer_ctx (ovar
, ctx
);
12483 if (lang_hooks
.decls
.omp_array_data (ovar
, true))
12485 tkind
= (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_IS_DEVICE_PTR
12486 ? GOMP_MAP_USE_DEVICE_PTR
: GOMP_MAP_FIRSTPRIVATE_INT
);
12487 x
= build_sender_ref ((splay_tree_key
) &DECL_NAME (ovar
), ctx
);
12489 else if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_IS_DEVICE_PTR
)
12491 tkind
= GOMP_MAP_USE_DEVICE_PTR
;
12492 x
= build_sender_ref ((splay_tree_key
) &DECL_UID (ovar
), ctx
);
12496 tkind
= GOMP_MAP_FIRSTPRIVATE_INT
;
12497 x
= build_sender_ref (ovar
, ctx
);
12500 if (is_gimple_omp_oacc (ctx
->stmt
))
12502 gcc_assert (tkind
== GOMP_MAP_USE_DEVICE_PTR
);
12504 if (OMP_CLAUSE_USE_DEVICE_PTR_IF_PRESENT (c
))
12505 tkind
= GOMP_MAP_USE_DEVICE_PTR_IF_PRESENT
;
12508 type
= TREE_TYPE (ovar
);
12509 if (lang_hooks
.decls
.omp_array_data (ovar
, true))
12510 var
= lang_hooks
.decls
.omp_array_data (ovar
, false);
12511 else if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_USE_DEVICE_ADDR
12512 && !omp_is_reference (ovar
)
12513 && !omp_is_allocatable_or_ptr (ovar
))
12514 || TREE_CODE (type
) == ARRAY_TYPE
)
12515 var
= build_fold_addr_expr (var
);
12518 if (omp_is_reference (ovar
)
12519 || omp_check_optional_argument (ovar
, false)
12520 || omp_is_allocatable_or_ptr (ovar
))
12522 type
= TREE_TYPE (type
);
12523 if (POINTER_TYPE_P (type
)
12524 && TREE_CODE (type
) != ARRAY_TYPE
12525 && ((OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_USE_DEVICE_ADDR
12526 && !omp_is_allocatable_or_ptr (ovar
))
12527 || (omp_is_reference (ovar
)
12528 && omp_is_allocatable_or_ptr (ovar
))))
12529 var
= build_simple_mem_ref (var
);
12530 var
= fold_convert (TREE_TYPE (x
), var
);
12534 present
= omp_check_optional_argument (ovar
, true);
12537 tree null_label
= create_artificial_label (UNKNOWN_LOCATION
);
12538 tree notnull_label
= create_artificial_label (UNKNOWN_LOCATION
);
12539 tree opt_arg_label
= create_artificial_label (UNKNOWN_LOCATION
);
12540 tree new_x
= unshare_expr (x
);
12541 gimplify_expr (&present
, &ilist
, NULL
, is_gimple_val
,
12543 gcond
*cond
= gimple_build_cond_from_tree (present
,
12546 gimple_seq_add_stmt (&ilist
, cond
);
12547 gimple_seq_add_stmt (&ilist
, gimple_build_label (null_label
));
12548 gimplify_assign (new_x
, null_pointer_node
, &ilist
);
12549 gimple_seq_add_stmt (&ilist
, gimple_build_goto (opt_arg_label
));
12550 gimple_seq_add_stmt (&ilist
,
12551 gimple_build_label (notnull_label
));
12552 gimplify_assign (x
, var
, &ilist
);
12553 gimple_seq_add_stmt (&ilist
,
12554 gimple_build_label (opt_arg_label
));
12557 gimplify_assign (x
, var
, &ilist
);
12559 purpose
= size_int (map_idx
++);
12560 CONSTRUCTOR_APPEND_ELT (vsize
, purpose
, s
);
12561 gcc_checking_assert (tkind
12562 < (HOST_WIDE_INT_C (1U) << talign_shift
));
12563 gcc_checking_assert (tkind
12564 <= tree_to_uhwi (TYPE_MAX_VALUE (tkind_type
)));
12565 CONSTRUCTOR_APPEND_ELT (vkind
, purpose
,
12566 build_int_cstu (tkind_type
, tkind
));
12570 gcc_assert (map_idx
== map_cnt
);
12572 DECL_INITIAL (TREE_VEC_ELT (t
, 1))
12573 = build_constructor (TREE_TYPE (TREE_VEC_ELT (t
, 1)), vsize
);
12574 DECL_INITIAL (TREE_VEC_ELT (t
, 2))
12575 = build_constructor (TREE_TYPE (TREE_VEC_ELT (t
, 2)), vkind
);
12576 for (int i
= 1; i
<= 2; i
++)
12577 if (!TREE_STATIC (TREE_VEC_ELT (t
, i
)))
12579 gimple_seq initlist
= NULL
;
12580 force_gimple_operand (build1 (DECL_EXPR
, void_type_node
,
12581 TREE_VEC_ELT (t
, i
)),
12582 &initlist
, true, NULL_TREE
);
12583 gimple_seq_add_seq (&ilist
, initlist
);
12585 tree clobber
= build_clobber (TREE_TYPE (TREE_VEC_ELT (t
, i
)));
12586 gimple_seq_add_stmt (&olist
,
12587 gimple_build_assign (TREE_VEC_ELT (t
, i
),
12591 tree clobber
= build_clobber (ctx
->record_type
);
12592 gimple_seq_add_stmt (&olist
, gimple_build_assign (ctx
->sender_decl
,
12596 /* Once all the expansions are done, sequence all the different
12597 fragments inside gimple_omp_body. */
12602 && ctx
->record_type
)
12604 t
= build_fold_addr_expr_loc (loc
, ctx
->sender_decl
);
12605 /* fixup_child_record_type might have changed receiver_decl's type. */
12606 t
= fold_convert_loc (loc
, TREE_TYPE (ctx
->receiver_decl
), t
);
12607 gimple_seq_add_stmt (&new_body
,
12608 gimple_build_assign (ctx
->receiver_decl
, t
));
12610 gimple_seq_add_seq (&new_body
, fplist
);
12612 if (offloaded
|| data_region
)
12614 tree prev
= NULL_TREE
;
12615 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
12616 switch (OMP_CLAUSE_CODE (c
))
12621 case OMP_CLAUSE_FIRSTPRIVATE
:
12622 if (is_gimple_omp_oacc (ctx
->stmt
))
12624 var
= OMP_CLAUSE_DECL (c
);
12625 if (omp_is_reference (var
)
12626 || is_gimple_reg_type (TREE_TYPE (var
)))
12628 tree new_var
= lookup_decl (var
, ctx
);
12630 type
= TREE_TYPE (var
);
12631 if (omp_is_reference (var
))
12632 type
= TREE_TYPE (type
);
12633 if ((INTEGRAL_TYPE_P (type
)
12634 && TYPE_PRECISION (type
) <= POINTER_SIZE
)
12635 || TREE_CODE (type
) == POINTER_TYPE
)
12637 x
= build_receiver_ref (var
, false, ctx
);
12638 if (TREE_CODE (type
) != POINTER_TYPE
)
12639 x
= fold_convert (pointer_sized_int_node
, x
);
12640 x
= fold_convert (type
, x
);
12641 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
,
12643 if (omp_is_reference (var
))
12645 tree v
= create_tmp_var_raw (type
, get_name (var
));
12646 gimple_add_tmp_var (v
);
12647 TREE_ADDRESSABLE (v
) = 1;
12648 gimple_seq_add_stmt (&new_body
,
12649 gimple_build_assign (v
, x
));
12650 x
= build_fold_addr_expr (v
);
12652 gimple_seq_add_stmt (&new_body
,
12653 gimple_build_assign (new_var
, x
));
12657 x
= build_receiver_ref (var
, !omp_is_reference (var
), ctx
);
12658 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
,
12660 gimple_seq_add_stmt (&new_body
,
12661 gimple_build_assign (new_var
, x
));
12664 else if (is_variable_sized (var
))
12666 tree pvar
= DECL_VALUE_EXPR (var
);
12667 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12668 pvar
= TREE_OPERAND (pvar
, 0);
12669 gcc_assert (DECL_P (pvar
));
12670 tree new_var
= lookup_decl (pvar
, ctx
);
12671 x
= build_receiver_ref (var
, false, ctx
);
12672 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
, fb_rvalue
);
12673 gimple_seq_add_stmt (&new_body
,
12674 gimple_build_assign (new_var
, x
));
12677 case OMP_CLAUSE_PRIVATE
:
12678 if (is_gimple_omp_oacc (ctx
->stmt
))
12680 var
= OMP_CLAUSE_DECL (c
);
12681 if (omp_is_reference (var
))
12683 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
12684 tree new_var
= lookup_decl (var
, ctx
);
12685 x
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_var
)));
12686 if (TREE_CONSTANT (x
))
12688 x
= create_tmp_var_raw (TREE_TYPE (TREE_TYPE (new_var
)),
12690 gimple_add_tmp_var (x
);
12691 TREE_ADDRESSABLE (x
) = 1;
12692 x
= build_fold_addr_expr_loc (clause_loc
, x
);
12697 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
12698 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
, fb_rvalue
);
12699 gimple_seq_add_stmt (&new_body
,
12700 gimple_build_assign (new_var
, x
));
12703 case OMP_CLAUSE_USE_DEVICE_PTR
:
12704 case OMP_CLAUSE_USE_DEVICE_ADDR
:
12705 case OMP_CLAUSE_IS_DEVICE_PTR
:
12707 gimple_seq assign_body
;
12708 bool is_array_data
;
12709 bool do_optional_check
;
12710 assign_body
= NULL
;
12711 do_optional_check
= false;
12712 var
= OMP_CLAUSE_DECL (c
);
12713 is_array_data
= lang_hooks
.decls
.omp_array_data (var
, true) != NULL
;
12715 if (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_IS_DEVICE_PTR
)
12716 x
= build_sender_ref (is_array_data
12717 ? (splay_tree_key
) &DECL_NAME (var
)
12718 : (splay_tree_key
) &DECL_UID (var
), ctx
);
12720 x
= build_receiver_ref (var
, false, ctx
);
12724 bool is_ref
= omp_is_reference (var
);
12725 do_optional_check
= true;
12726 /* First, we copy the descriptor data from the host; then
12727 we update its data to point to the target address. */
12728 new_var
= lookup_decl (var
, ctx
);
12729 new_var
= DECL_VALUE_EXPR (new_var
);
12734 var
= build_fold_indirect_ref (var
);
12735 gimplify_expr (&var
, &assign_body
, NULL
, is_gimple_val
,
12737 v
= create_tmp_var_raw (TREE_TYPE (var
), get_name (var
));
12738 gimple_add_tmp_var (v
);
12739 TREE_ADDRESSABLE (v
) = 1;
12740 gimple_seq_add_stmt (&assign_body
,
12741 gimple_build_assign (v
, var
));
12742 tree rhs
= build_fold_addr_expr (v
);
12743 gimple_seq_add_stmt (&assign_body
,
12744 gimple_build_assign (new_var
, rhs
));
12747 gimple_seq_add_stmt (&assign_body
,
12748 gimple_build_assign (new_var
, var
));
12750 tree v2
= lang_hooks
.decls
.omp_array_data (unshare_expr (v
), false);
12752 gimplify_expr (&x
, &assign_body
, NULL
, is_gimple_val
, fb_rvalue
);
12753 gimple_seq_add_stmt (&assign_body
,
12754 gimple_build_assign (v2
, x
));
12756 else if (is_variable_sized (var
))
12758 tree pvar
= DECL_VALUE_EXPR (var
);
12759 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12760 pvar
= TREE_OPERAND (pvar
, 0);
12761 gcc_assert (DECL_P (pvar
));
12762 new_var
= lookup_decl (pvar
, ctx
);
12763 gimplify_expr (&x
, &assign_body
, NULL
, is_gimple_val
, fb_rvalue
);
12764 gimple_seq_add_stmt (&assign_body
,
12765 gimple_build_assign (new_var
, x
));
12767 else if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_USE_DEVICE_ADDR
12768 && !omp_is_reference (var
)
12769 && !omp_is_allocatable_or_ptr (var
))
12770 || TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
)
12772 new_var
= lookup_decl (var
, ctx
);
12773 new_var
= DECL_VALUE_EXPR (new_var
);
12774 gcc_assert (TREE_CODE (new_var
) == MEM_REF
);
12775 new_var
= TREE_OPERAND (new_var
, 0);
12776 gcc_assert (DECL_P (new_var
));
12777 gimplify_expr (&x
, &assign_body
, NULL
, is_gimple_val
, fb_rvalue
);
12778 gimple_seq_add_stmt (&assign_body
,
12779 gimple_build_assign (new_var
, x
));
12783 tree type
= TREE_TYPE (var
);
12784 new_var
= lookup_decl (var
, ctx
);
12785 if (omp_is_reference (var
))
12787 type
= TREE_TYPE (type
);
12788 if (POINTER_TYPE_P (type
)
12789 && TREE_CODE (type
) != ARRAY_TYPE
12790 && (OMP_CLAUSE_CODE (c
) != OMP_CLAUSE_USE_DEVICE_ADDR
12791 || (omp_is_reference (var
)
12792 && omp_is_allocatable_or_ptr (var
))))
12794 tree v
= create_tmp_var_raw (type
, get_name (var
));
12795 gimple_add_tmp_var (v
);
12796 TREE_ADDRESSABLE (v
) = 1;
12797 x
= fold_convert (type
, x
);
12798 gimplify_expr (&x
, &assign_body
, NULL
, is_gimple_val
,
12800 gimple_seq_add_stmt (&assign_body
,
12801 gimple_build_assign (v
, x
));
12802 x
= build_fold_addr_expr (v
);
12803 do_optional_check
= true;
12806 new_var
= DECL_VALUE_EXPR (new_var
);
12807 x
= fold_convert (TREE_TYPE (new_var
), x
);
12808 gimplify_expr (&x
, &assign_body
, NULL
, is_gimple_val
, fb_rvalue
);
12809 gimple_seq_add_stmt (&assign_body
,
12810 gimple_build_assign (new_var
, x
));
12813 present
= (do_optional_check
12814 ? omp_check_optional_argument (OMP_CLAUSE_DECL (c
), true)
12818 tree null_label
= create_artificial_label (UNKNOWN_LOCATION
);
12819 tree notnull_label
= create_artificial_label (UNKNOWN_LOCATION
);
12820 tree opt_arg_label
= create_artificial_label (UNKNOWN_LOCATION
);
12821 glabel
*null_glabel
= gimple_build_label (null_label
);
12822 glabel
*notnull_glabel
= gimple_build_label (notnull_label
);
12823 ggoto
*opt_arg_ggoto
= gimple_build_goto (opt_arg_label
);
12824 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
,
12826 gimplify_expr (&present
, &new_body
, NULL
, is_gimple_val
,
12828 gcond
*cond
= gimple_build_cond_from_tree (present
,
12831 gimple_seq_add_stmt (&new_body
, cond
);
12832 gimple_seq_add_stmt (&new_body
, null_glabel
);
12833 gimplify_assign (new_var
, null_pointer_node
, &new_body
);
12834 gimple_seq_add_stmt (&new_body
, opt_arg_ggoto
);
12835 gimple_seq_add_stmt (&new_body
, notnull_glabel
);
12836 gimple_seq_add_seq (&new_body
, assign_body
);
12837 gimple_seq_add_stmt (&new_body
,
12838 gimple_build_label (opt_arg_label
));
12841 gimple_seq_add_seq (&new_body
, assign_body
);
12844 /* Handle GOMP_MAP_FIRSTPRIVATE_{POINTER,REFERENCE} in second pass,
12845 so that firstprivate vars holding OMP_CLAUSE_SIZE if needed
12846 are already handled. Similarly OMP_CLAUSE_PRIVATE for VLAs
12847 or references to VLAs. */
12848 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
12849 switch (OMP_CLAUSE_CODE (c
))
12854 case OMP_CLAUSE_MAP
:
12855 if (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_POINTER
12856 || OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_REFERENCE
)
12858 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
12859 poly_int64 offset
= 0;
12861 var
= OMP_CLAUSE_DECL (c
);
12863 && TREE_CODE (TREE_TYPE (var
)) == ARRAY_TYPE
12864 && is_global_var (maybe_lookup_decl_in_outer_ctx (var
,
12866 && varpool_node::get_create (var
)->offloadable
)
12868 if (TREE_CODE (var
) == INDIRECT_REF
12869 && TREE_CODE (TREE_OPERAND (var
, 0)) == COMPONENT_REF
)
12870 var
= TREE_OPERAND (var
, 0);
12871 if (TREE_CODE (var
) == COMPONENT_REF
)
12873 var
= get_addr_base_and_unit_offset (var
, &offset
);
12874 gcc_assert (var
!= NULL_TREE
&& DECL_P (var
));
12876 else if (DECL_SIZE (var
)
12877 && TREE_CODE (DECL_SIZE (var
)) != INTEGER_CST
)
12879 tree var2
= DECL_VALUE_EXPR (var
);
12880 gcc_assert (TREE_CODE (var2
) == INDIRECT_REF
);
12881 var2
= TREE_OPERAND (var2
, 0);
12882 gcc_assert (DECL_P (var2
));
12885 tree new_var
= lookup_decl (var
, ctx
), x
;
12886 tree type
= TREE_TYPE (new_var
);
12888 if (TREE_CODE (OMP_CLAUSE_DECL (c
)) == INDIRECT_REF
12889 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (c
), 0))
12892 type
= TREE_TYPE (TREE_OPERAND (OMP_CLAUSE_DECL (c
), 0));
12894 new_var
= build2 (MEM_REF
, type
,
12895 build_fold_addr_expr (new_var
),
12896 build_int_cst (build_pointer_type (type
),
12899 else if (TREE_CODE (OMP_CLAUSE_DECL (c
)) == COMPONENT_REF
)
12901 type
= TREE_TYPE (OMP_CLAUSE_DECL (c
));
12902 is_ref
= TREE_CODE (type
) == REFERENCE_TYPE
;
12903 new_var
= build2 (MEM_REF
, type
,
12904 build_fold_addr_expr (new_var
),
12905 build_int_cst (build_pointer_type (type
),
12909 is_ref
= omp_is_reference (var
);
12910 if (OMP_CLAUSE_MAP_KIND (c
) == GOMP_MAP_FIRSTPRIVATE_REFERENCE
)
12912 bool ref_to_array
= false;
12915 type
= TREE_TYPE (type
);
12916 if (TREE_CODE (type
) == ARRAY_TYPE
)
12918 type
= build_pointer_type (type
);
12919 ref_to_array
= true;
12922 else if (TREE_CODE (type
) == ARRAY_TYPE
)
12924 tree decl2
= DECL_VALUE_EXPR (new_var
);
12925 gcc_assert (TREE_CODE (decl2
) == MEM_REF
);
12926 decl2
= TREE_OPERAND (decl2
, 0);
12927 gcc_assert (DECL_P (decl2
));
12929 type
= TREE_TYPE (new_var
);
12931 x
= build_receiver_ref (OMP_CLAUSE_DECL (prev
), false, ctx
);
12932 x
= fold_convert_loc (clause_loc
, type
, x
);
12933 if (!integer_zerop (OMP_CLAUSE_SIZE (c
)))
12935 tree bias
= OMP_CLAUSE_SIZE (c
);
12937 bias
= lookup_decl (bias
, ctx
);
12938 bias
= fold_convert_loc (clause_loc
, sizetype
, bias
);
12939 bias
= fold_build1_loc (clause_loc
, NEGATE_EXPR
, sizetype
,
12941 x
= fold_build2_loc (clause_loc
, POINTER_PLUS_EXPR
,
12942 TREE_TYPE (x
), x
, bias
);
12945 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
12946 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
, fb_rvalue
);
12947 if (is_ref
&& !ref_to_array
)
12949 tree t
= create_tmp_var_raw (type
, get_name (var
));
12950 gimple_add_tmp_var (t
);
12951 TREE_ADDRESSABLE (t
) = 1;
12952 gimple_seq_add_stmt (&new_body
,
12953 gimple_build_assign (t
, x
));
12954 x
= build_fold_addr_expr_loc (clause_loc
, t
);
12956 gimple_seq_add_stmt (&new_body
,
12957 gimple_build_assign (new_var
, x
));
12960 else if (OMP_CLAUSE_CHAIN (c
)
12961 && OMP_CLAUSE_CODE (OMP_CLAUSE_CHAIN (c
))
12963 && (OMP_CLAUSE_MAP_KIND (OMP_CLAUSE_CHAIN (c
))
12964 == GOMP_MAP_FIRSTPRIVATE_POINTER
12965 || (OMP_CLAUSE_MAP_KIND (OMP_CLAUSE_CHAIN (c
))
12966 == GOMP_MAP_FIRSTPRIVATE_REFERENCE
)))
12969 case OMP_CLAUSE_PRIVATE
:
12970 var
= OMP_CLAUSE_DECL (c
);
12971 if (is_variable_sized (var
))
12973 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
12974 tree new_var
= lookup_decl (var
, ctx
);
12975 tree pvar
= DECL_VALUE_EXPR (var
);
12976 gcc_assert (TREE_CODE (pvar
) == INDIRECT_REF
);
12977 pvar
= TREE_OPERAND (pvar
, 0);
12978 gcc_assert (DECL_P (pvar
));
12979 tree new_pvar
= lookup_decl (pvar
, ctx
);
12980 tree atmp
= builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
12981 tree al
= size_int (DECL_ALIGN (var
));
12982 tree x
= TYPE_SIZE_UNIT (TREE_TYPE (new_var
));
12983 x
= build_call_expr_loc (clause_loc
, atmp
, 2, x
, al
);
12984 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_pvar
), x
);
12985 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
, fb_rvalue
);
12986 gimple_seq_add_stmt (&new_body
,
12987 gimple_build_assign (new_pvar
, x
));
12989 else if (omp_is_reference (var
) && !is_gimple_omp_oacc (ctx
->stmt
))
12991 location_t clause_loc
= OMP_CLAUSE_LOCATION (c
);
12992 tree new_var
= lookup_decl (var
, ctx
);
12993 tree x
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (new_var
)));
12994 if (TREE_CONSTANT (x
))
12999 = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
13000 tree rtype
= TREE_TYPE (TREE_TYPE (new_var
));
13001 tree al
= size_int (TYPE_ALIGN (rtype
));
13002 x
= build_call_expr_loc (clause_loc
, atmp
, 2, x
, al
);
13005 x
= fold_convert_loc (clause_loc
, TREE_TYPE (new_var
), x
);
13006 gimplify_expr (&x
, &new_body
, NULL
, is_gimple_val
, fb_rvalue
);
13007 gimple_seq_add_stmt (&new_body
,
13008 gimple_build_assign (new_var
, x
));
13013 gimple_seq fork_seq
= NULL
;
13014 gimple_seq join_seq
= NULL
;
13016 if (offloaded
&& is_gimple_omp_oacc (ctx
->stmt
))
13018 /* If there are reductions on the offloaded region itself, treat
13019 them as a dummy GANG loop. */
13020 tree level
= build_int_cst (integer_type_node
, GOMP_DIM_GANG
);
13022 lower_oacc_reductions (gimple_location (ctx
->stmt
), clauses
, level
,
13023 false, NULL
, NULL
, &fork_seq
, &join_seq
, ctx
);
13026 gimple_seq_add_seq (&new_body
, fork_seq
);
13027 gimple_seq_add_seq (&new_body
, tgt_body
);
13028 gimple_seq_add_seq (&new_body
, join_seq
);
13032 new_body
= maybe_catch_exception (new_body
);
13033 gimple_seq_add_stmt (&new_body
, gimple_build_omp_return (false));
13035 gimple_omp_set_body (stmt
, new_body
);
13038 bind
= gimple_build_bind (NULL
, NULL
,
13039 tgt_bind
? gimple_bind_block (tgt_bind
)
13041 gsi_replace (gsi_p
, dep_bind
? dep_bind
: bind
, true);
13042 gimple_bind_add_seq (bind
, ilist
);
13043 gimple_bind_add_stmt (bind
, stmt
);
13044 gimple_bind_add_seq (bind
, olist
);
13046 pop_gimplify_context (NULL
);
13050 gimple_bind_add_seq (dep_bind
, dep_ilist
);
13051 gimple_bind_add_stmt (dep_bind
, bind
);
13052 gimple_bind_add_seq (dep_bind
, dep_olist
);
13053 pop_gimplify_context (dep_bind
);
13057 /* Expand code for an OpenMP teams directive. */
13060 lower_omp_teams (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
13062 gomp_teams
*teams_stmt
= as_a
<gomp_teams
*> (gsi_stmt (*gsi_p
));
13063 push_gimplify_context ();
13065 tree block
= make_node (BLOCK
);
13066 gbind
*bind
= gimple_build_bind (NULL
, NULL
, block
);
13067 gsi_replace (gsi_p
, bind
, true);
13068 gimple_seq bind_body
= NULL
;
13069 gimple_seq dlist
= NULL
;
13070 gimple_seq olist
= NULL
;
13072 tree num_teams
= omp_find_clause (gimple_omp_teams_clauses (teams_stmt
),
13073 OMP_CLAUSE_NUM_TEAMS
);
13074 if (num_teams
== NULL_TREE
)
13075 num_teams
= build_int_cst (unsigned_type_node
, 0);
13078 num_teams
= OMP_CLAUSE_NUM_TEAMS_EXPR (num_teams
);
13079 num_teams
= fold_convert (unsigned_type_node
, num_teams
);
13080 gimplify_expr (&num_teams
, &bind_body
, NULL
, is_gimple_val
, fb_rvalue
);
13082 tree thread_limit
= omp_find_clause (gimple_omp_teams_clauses (teams_stmt
),
13083 OMP_CLAUSE_THREAD_LIMIT
);
13084 if (thread_limit
== NULL_TREE
)
13085 thread_limit
= build_int_cst (unsigned_type_node
, 0);
13088 thread_limit
= OMP_CLAUSE_THREAD_LIMIT_EXPR (thread_limit
);
13089 thread_limit
= fold_convert (unsigned_type_node
, thread_limit
);
13090 gimplify_expr (&thread_limit
, &bind_body
, NULL
, is_gimple_val
,
13094 lower_rec_input_clauses (gimple_omp_teams_clauses (teams_stmt
),
13095 &bind_body
, &dlist
, ctx
, NULL
);
13096 lower_omp (gimple_omp_body_ptr (teams_stmt
), ctx
);
13097 lower_reduction_clauses (gimple_omp_teams_clauses (teams_stmt
), &olist
,
13099 gimple_seq_add_stmt (&bind_body
, teams_stmt
);
13101 location_t loc
= gimple_location (teams_stmt
);
13102 tree decl
= builtin_decl_explicit (BUILT_IN_GOMP_TEAMS
);
13103 gimple
*call
= gimple_build_call (decl
, 2, num_teams
, thread_limit
);
13104 gimple_set_location (call
, loc
);
13105 gimple_seq_add_stmt (&bind_body
, call
);
13107 gimple_seq_add_seq (&bind_body
, gimple_omp_body (teams_stmt
));
13108 gimple_omp_set_body (teams_stmt
, NULL
);
13109 gimple_seq_add_seq (&bind_body
, olist
);
13110 gimple_seq_add_seq (&bind_body
, dlist
);
13111 gimple_seq_add_stmt (&bind_body
, gimple_build_omp_return (true));
13112 gimple_bind_set_body (bind
, bind_body
);
13114 pop_gimplify_context (bind
);
13116 gimple_bind_append_vars (bind
, ctx
->block_vars
);
13117 BLOCK_VARS (block
) = ctx
->block_vars
;
13118 if (BLOCK_VARS (block
))
13119 TREE_USED (block
) = 1;
13122 /* Callback for lower_omp_1. Return non-NULL if *tp needs to be
13123 regimplified. If DATA is non-NULL, lower_omp_1 is outside
13124 of OMP context, but with task_shared_vars set. */
13127 lower_omp_regimplify_p (tree
*tp
, int *walk_subtrees
,
13132 /* Any variable with DECL_VALUE_EXPR needs to be regimplified. */
13133 if (VAR_P (t
) && data
== NULL
&& DECL_HAS_VALUE_EXPR_P (t
))
13136 if (task_shared_vars
13138 && bitmap_bit_p (task_shared_vars
, DECL_UID (t
)))
13141 /* If a global variable has been privatized, TREE_CONSTANT on
13142 ADDR_EXPR might be wrong. */
13143 if (data
== NULL
&& TREE_CODE (t
) == ADDR_EXPR
)
13144 recompute_tree_invariant_for_addr_expr (t
);
13146 *walk_subtrees
= !IS_TYPE_OR_DECL_P (t
);
13150 /* Data to be communicated between lower_omp_regimplify_operands and
13151 lower_omp_regimplify_operands_p. */
13153 struct lower_omp_regimplify_operands_data
13159 /* Helper function for lower_omp_regimplify_operands. Find
13160 omp_member_access_dummy_var vars and adjust temporarily their
13161 DECL_VALUE_EXPRs if needed. */
13164 lower_omp_regimplify_operands_p (tree
*tp
, int *walk_subtrees
,
13167 tree t
= omp_member_access_dummy_var (*tp
);
13170 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data
;
13171 lower_omp_regimplify_operands_data
*ldata
13172 = (lower_omp_regimplify_operands_data
*) wi
->info
;
13173 tree o
= maybe_lookup_decl (t
, ldata
->ctx
);
13176 ldata
->decls
->safe_push (DECL_VALUE_EXPR (*tp
));
13177 ldata
->decls
->safe_push (*tp
);
13178 tree v
= unshare_and_remap (DECL_VALUE_EXPR (*tp
), t
, o
);
13179 SET_DECL_VALUE_EXPR (*tp
, v
);
13182 *walk_subtrees
= !IS_TYPE_OR_DECL_P (*tp
);
13186 /* Wrapper around gimple_regimplify_operands that adjusts DECL_VALUE_EXPRs
13187 of omp_member_access_dummy_var vars during regimplification. */
13190 lower_omp_regimplify_operands (omp_context
*ctx
, gimple
*stmt
,
13191 gimple_stmt_iterator
*gsi_p
)
13193 auto_vec
<tree
, 10> decls
;
13196 struct walk_stmt_info wi
;
13197 memset (&wi
, '\0', sizeof (wi
));
13198 struct lower_omp_regimplify_operands_data data
;
13200 data
.decls
= &decls
;
13202 walk_gimple_op (stmt
, lower_omp_regimplify_operands_p
, &wi
);
13204 gimple_regimplify_operands (stmt
, gsi_p
);
13205 while (!decls
.is_empty ())
13207 tree t
= decls
.pop ();
13208 tree v
= decls
.pop ();
13209 SET_DECL_VALUE_EXPR (t
, v
);
13214 lower_omp_1 (gimple_stmt_iterator
*gsi_p
, omp_context
*ctx
)
13216 gimple
*stmt
= gsi_stmt (*gsi_p
);
13217 struct walk_stmt_info wi
;
13220 if (gimple_has_location (stmt
))
13221 input_location
= gimple_location (stmt
);
13223 if (task_shared_vars
)
13224 memset (&wi
, '\0', sizeof (wi
));
13226 /* If we have issued syntax errors, avoid doing any heavy lifting.
13227 Just replace the OMP directives with a NOP to avoid
13228 confusing RTL expansion. */
13229 if (seen_error () && is_gimple_omp (stmt
))
13231 gsi_replace (gsi_p
, gimple_build_nop (), true);
13235 switch (gimple_code (stmt
))
13239 gcond
*cond_stmt
= as_a
<gcond
*> (stmt
);
13240 if ((ctx
|| task_shared_vars
)
13241 && (walk_tree (gimple_cond_lhs_ptr (cond_stmt
),
13242 lower_omp_regimplify_p
,
13243 ctx
? NULL
: &wi
, NULL
)
13244 || walk_tree (gimple_cond_rhs_ptr (cond_stmt
),
13245 lower_omp_regimplify_p
,
13246 ctx
? NULL
: &wi
, NULL
)))
13247 lower_omp_regimplify_operands (ctx
, cond_stmt
, gsi_p
);
13251 lower_omp (gimple_catch_handler_ptr (as_a
<gcatch
*> (stmt
)), ctx
);
13253 case GIMPLE_EH_FILTER
:
13254 lower_omp (gimple_eh_filter_failure_ptr (stmt
), ctx
);
13257 lower_omp (gimple_try_eval_ptr (stmt
), ctx
);
13258 lower_omp (gimple_try_cleanup_ptr (stmt
), ctx
);
13260 case GIMPLE_TRANSACTION
:
13261 lower_omp (gimple_transaction_body_ptr (as_a
<gtransaction
*> (stmt
)),
13265 lower_omp (gimple_bind_body_ptr (as_a
<gbind
*> (stmt
)), ctx
);
13266 maybe_remove_omp_member_access_dummy_vars (as_a
<gbind
*> (stmt
));
13268 case GIMPLE_OMP_PARALLEL
:
13269 case GIMPLE_OMP_TASK
:
13270 ctx
= maybe_lookup_ctx (stmt
);
13272 if (ctx
->cancellable
)
13273 ctx
->cancel_label
= create_artificial_label (UNKNOWN_LOCATION
);
13274 lower_omp_taskreg (gsi_p
, ctx
);
13276 case GIMPLE_OMP_FOR
:
13277 ctx
= maybe_lookup_ctx (stmt
);
13279 if (ctx
->cancellable
)
13280 ctx
->cancel_label
= create_artificial_label (UNKNOWN_LOCATION
);
13281 lower_omp_for (gsi_p
, ctx
);
13283 case GIMPLE_OMP_SECTIONS
:
13284 ctx
= maybe_lookup_ctx (stmt
);
13286 if (ctx
->cancellable
)
13287 ctx
->cancel_label
= create_artificial_label (UNKNOWN_LOCATION
);
13288 lower_omp_sections (gsi_p
, ctx
);
13290 case GIMPLE_OMP_SINGLE
:
13291 ctx
= maybe_lookup_ctx (stmt
);
13293 lower_omp_single (gsi_p
, ctx
);
13295 case GIMPLE_OMP_MASTER
:
13296 ctx
= maybe_lookup_ctx (stmt
);
13298 lower_omp_master (gsi_p
, ctx
);
13300 case GIMPLE_OMP_TASKGROUP
:
13301 ctx
= maybe_lookup_ctx (stmt
);
13303 lower_omp_taskgroup (gsi_p
, ctx
);
13305 case GIMPLE_OMP_ORDERED
:
13306 ctx
= maybe_lookup_ctx (stmt
);
13308 lower_omp_ordered (gsi_p
, ctx
);
13310 case GIMPLE_OMP_SCAN
:
13311 ctx
= maybe_lookup_ctx (stmt
);
13313 lower_omp_scan (gsi_p
, ctx
);
13315 case GIMPLE_OMP_CRITICAL
:
13316 ctx
= maybe_lookup_ctx (stmt
);
13318 lower_omp_critical (gsi_p
, ctx
);
13320 case GIMPLE_OMP_ATOMIC_LOAD
:
13321 if ((ctx
|| task_shared_vars
)
13322 && walk_tree (gimple_omp_atomic_load_rhs_ptr (
13323 as_a
<gomp_atomic_load
*> (stmt
)),
13324 lower_omp_regimplify_p
, ctx
? NULL
: &wi
, NULL
))
13325 lower_omp_regimplify_operands (ctx
, stmt
, gsi_p
);
13327 case GIMPLE_OMP_TARGET
:
13328 ctx
= maybe_lookup_ctx (stmt
);
13330 lower_omp_target (gsi_p
, ctx
);
13332 case GIMPLE_OMP_TEAMS
:
13333 ctx
= maybe_lookup_ctx (stmt
);
13335 if (gimple_omp_teams_host (as_a
<gomp_teams
*> (stmt
)))
13336 lower_omp_taskreg (gsi_p
, ctx
);
13338 lower_omp_teams (gsi_p
, ctx
);
13342 call_stmt
= as_a
<gcall
*> (stmt
);
13343 fndecl
= gimple_call_fndecl (call_stmt
);
13345 && fndecl_built_in_p (fndecl
, BUILT_IN_NORMAL
))
13346 switch (DECL_FUNCTION_CODE (fndecl
))
13348 case BUILT_IN_GOMP_BARRIER
:
13352 case BUILT_IN_GOMP_CANCEL
:
13353 case BUILT_IN_GOMP_CANCELLATION_POINT
:
13356 if (gimple_code (cctx
->stmt
) == GIMPLE_OMP_SECTION
)
13357 cctx
= cctx
->outer
;
13358 gcc_assert (gimple_call_lhs (call_stmt
) == NULL_TREE
);
13359 if (!cctx
->cancellable
)
13361 if (DECL_FUNCTION_CODE (fndecl
)
13362 == BUILT_IN_GOMP_CANCELLATION_POINT
)
13364 stmt
= gimple_build_nop ();
13365 gsi_replace (gsi_p
, stmt
, false);
13369 if (DECL_FUNCTION_CODE (fndecl
) == BUILT_IN_GOMP_BARRIER
)
13371 fndecl
= builtin_decl_explicit (BUILT_IN_GOMP_BARRIER_CANCEL
);
13372 gimple_call_set_fndecl (call_stmt
, fndecl
);
13373 gimple_call_set_fntype (call_stmt
, TREE_TYPE (fndecl
));
13376 lhs
= create_tmp_var (TREE_TYPE (TREE_TYPE (fndecl
)));
13377 gimple_call_set_lhs (call_stmt
, lhs
);
13378 tree fallthru_label
;
13379 fallthru_label
= create_artificial_label (UNKNOWN_LOCATION
);
13381 g
= gimple_build_label (fallthru_label
);
13382 gsi_insert_after (gsi_p
, g
, GSI_SAME_STMT
);
13383 g
= gimple_build_cond (NE_EXPR
, lhs
,
13384 fold_convert (TREE_TYPE (lhs
),
13385 boolean_false_node
),
13386 cctx
->cancel_label
, fallthru_label
);
13387 gsi_insert_after (gsi_p
, g
, GSI_SAME_STMT
);
13394 case GIMPLE_ASSIGN
:
13395 for (omp_context
*up
= ctx
; up
; up
= up
->outer
)
13397 if (gimple_code (up
->stmt
) == GIMPLE_OMP_ORDERED
13398 || gimple_code (up
->stmt
) == GIMPLE_OMP_CRITICAL
13399 || gimple_code (up
->stmt
) == GIMPLE_OMP_TASKGROUP
13400 || gimple_code (up
->stmt
) == GIMPLE_OMP_SECTION
13401 || gimple_code (up
->stmt
) == GIMPLE_OMP_SCAN
13402 || (gimple_code (up
->stmt
) == GIMPLE_OMP_TARGET
13403 && (gimple_omp_target_kind (up
->stmt
)
13404 == GF_OMP_TARGET_KIND_DATA
)))
13406 else if (!up
->lastprivate_conditional_map
)
13408 tree lhs
= get_base_address (gimple_assign_lhs (stmt
));
13409 if (TREE_CODE (lhs
) == MEM_REF
13410 && DECL_P (TREE_OPERAND (lhs
, 0))
13411 && TREE_CODE (TREE_TYPE (TREE_OPERAND (lhs
,
13412 0))) == REFERENCE_TYPE
)
13413 lhs
= TREE_OPERAND (lhs
, 0);
13415 if (tree
*v
= up
->lastprivate_conditional_map
->get (lhs
))
13418 if (up
->combined_into_simd_safelen1
)
13421 if (gimple_code (up
->stmt
) == GIMPLE_OMP_SCAN
)
13424 if (gimple_code (up
->stmt
) == GIMPLE_OMP_FOR
)
13425 clauses
= gimple_omp_for_clauses (up
->stmt
);
13427 clauses
= gimple_omp_sections_clauses (up
->stmt
);
13428 tree c
= omp_find_clause (clauses
, OMP_CLAUSE__CONDTEMP_
);
13429 if (!OMP_CLAUSE__CONDTEMP__ITER (c
))
13430 c
= omp_find_clause (OMP_CLAUSE_CHAIN (c
),
13431 OMP_CLAUSE__CONDTEMP_
);
13432 gcc_assert (OMP_CLAUSE__CONDTEMP__ITER (c
));
13433 gimple
*g
= gimple_build_assign (*v
, OMP_CLAUSE_DECL (c
));
13434 gsi_insert_after (gsi_p
, g
, GSI_SAME_STMT
);
13441 if ((ctx
|| task_shared_vars
)
13442 && walk_gimple_op (stmt
, lower_omp_regimplify_p
,
13445 /* Just remove clobbers, this should happen only if we have
13446 "privatized" local addressable variables in SIMD regions,
13447 the clobber isn't needed in that case and gimplifying address
13448 of the ARRAY_REF into a pointer and creating MEM_REF based
13449 clobber would create worse code than we get with the clobber
13451 if (gimple_clobber_p (stmt
))
13453 gsi_replace (gsi_p
, gimple_build_nop (), true);
13456 lower_omp_regimplify_operands (ctx
, stmt
, gsi_p
);
13463 lower_omp (gimple_seq
*body
, omp_context
*ctx
)
13465 location_t saved_location
= input_location
;
13466 gimple_stmt_iterator gsi
;
13467 for (gsi
= gsi_start (*body
); !gsi_end_p (gsi
); gsi_next (&gsi
))
13468 lower_omp_1 (&gsi
, ctx
);
13469 /* During gimplification, we haven't folded statments inside offloading
13470 or taskreg regions (gimplify.c:maybe_fold_stmt); do that now. */
13471 if (target_nesting_level
|| taskreg_nesting_level
)
13472 for (gsi
= gsi_start (*body
); !gsi_end_p (gsi
); gsi_next (&gsi
))
13474 input_location
= saved_location
;
13477 /* Main entry point. */
13479 static unsigned int
13480 execute_lower_omp (void)
13486 /* This pass always runs, to provide PROP_gimple_lomp.
13487 But often, there is nothing to do. */
13488 if (flag_openacc
== 0 && flag_openmp
== 0
13489 && flag_openmp_simd
== 0)
13492 all_contexts
= splay_tree_new (splay_tree_compare_pointers
, 0,
13493 delete_omp_context
);
13495 body
= gimple_body (current_function_decl
);
13497 scan_omp (&body
, NULL
);
13498 gcc_assert (taskreg_nesting_level
== 0);
13499 FOR_EACH_VEC_ELT (taskreg_contexts
, i
, ctx
)
13500 finish_taskreg_scan (ctx
);
13501 taskreg_contexts
.release ();
13503 if (all_contexts
->root
)
13505 if (task_shared_vars
)
13506 push_gimplify_context ();
13507 lower_omp (&body
, NULL
);
13508 if (task_shared_vars
)
13509 pop_gimplify_context (NULL
);
13514 splay_tree_delete (all_contexts
);
13515 all_contexts
= NULL
;
13517 BITMAP_FREE (task_shared_vars
);
13518 BITMAP_FREE (global_nonaddressable_vars
);
13520 /* If current function is a method, remove artificial dummy VAR_DECL created
13521 for non-static data member privatization, they aren't needed for
13522 debuginfo nor anything else, have been already replaced everywhere in the
13523 IL and cause problems with LTO. */
13524 if (DECL_ARGUMENTS (current_function_decl
)
13525 && DECL_ARTIFICIAL (DECL_ARGUMENTS (current_function_decl
))
13526 && (TREE_CODE (TREE_TYPE (DECL_ARGUMENTS (current_function_decl
)))
13528 remove_member_access_dummy_vars (DECL_INITIAL (current_function_decl
));
13534 const pass_data pass_data_lower_omp
=
13536 GIMPLE_PASS
, /* type */
13537 "omplower", /* name */
13538 OPTGROUP_OMP
, /* optinfo_flags */
13539 TV_NONE
, /* tv_id */
13540 PROP_gimple_any
, /* properties_required */
13541 PROP_gimple_lomp
| PROP_gimple_lomp_dev
, /* properties_provided */
13542 0, /* properties_destroyed */
13543 0, /* todo_flags_start */
13544 0, /* todo_flags_finish */
13547 class pass_lower_omp
: public gimple_opt_pass
13550 pass_lower_omp (gcc::context
*ctxt
)
13551 : gimple_opt_pass (pass_data_lower_omp
, ctxt
)
13554 /* opt_pass methods: */
13555 virtual unsigned int execute (function
*) { return execute_lower_omp (); }
13557 }; // class pass_lower_omp
13559 } // anon namespace
13562 make_pass_lower_omp (gcc::context
*ctxt
)
13564 return new pass_lower_omp (ctxt
);
13567 /* The following is a utility to diagnose structured block violations.
13568 It is not part of the "omplower" pass, as that's invoked too late. It
13569 should be invoked by the respective front ends after gimplification. */
13571 static splay_tree all_labels
;
13573 /* Check for mismatched contexts and generate an error if needed. Return
13574 true if an error is detected. */
13577 diagnose_sb_0 (gimple_stmt_iterator
*gsi_p
,
13578 gimple
*branch_ctx
, gimple
*label_ctx
)
13580 gcc_checking_assert (!branch_ctx
|| is_gimple_omp (branch_ctx
));
13581 gcc_checking_assert (!label_ctx
|| is_gimple_omp (label_ctx
));
13583 if (label_ctx
== branch_ctx
)
13586 const char* kind
= NULL
;
13590 if ((branch_ctx
&& is_gimple_omp_oacc (branch_ctx
))
13591 || (label_ctx
&& is_gimple_omp_oacc (label_ctx
)))
13593 gcc_checking_assert (kind
== NULL
);
13599 gcc_checking_assert (flag_openmp
|| flag_openmp_simd
);
13603 /* Previously we kept track of the label's entire context in diagnose_sb_[12]
13604 so we could traverse it and issue a correct "exit" or "enter" error
13605 message upon a structured block violation.
13607 We built the context by building a list with tree_cons'ing, but there is
13608 no easy counterpart in gimple tuples. It seems like far too much work
13609 for issuing exit/enter error messages. If someone really misses the
13610 distinct error message... patches welcome. */
13613 /* Try to avoid confusing the user by producing and error message
13614 with correct "exit" or "enter" verbiage. We prefer "exit"
13615 unless we can show that LABEL_CTX is nested within BRANCH_CTX. */
13616 if (branch_ctx
== NULL
)
13622 if (TREE_VALUE (label_ctx
) == branch_ctx
)
13627 label_ctx
= TREE_CHAIN (label_ctx
);
13632 error ("invalid exit from %s structured block", kind
);
13634 error ("invalid entry to %s structured block", kind
);
13637 /* If it's obvious we have an invalid entry, be specific about the error. */
13638 if (branch_ctx
== NULL
)
13639 error ("invalid entry to %s structured block", kind
);
13642 /* Otherwise, be vague and lazy, but efficient. */
13643 error ("invalid branch to/from %s structured block", kind
);
13646 gsi_replace (gsi_p
, gimple_build_nop (), false);
13650 /* Pass 1: Create a minimal tree of structured blocks, and record
13651 where each label is found. */
13654 diagnose_sb_1 (gimple_stmt_iterator
*gsi_p
, bool *handled_ops_p
,
13655 struct walk_stmt_info
*wi
)
13657 gimple
*context
= (gimple
*) wi
->info
;
13658 gimple
*inner_context
;
13659 gimple
*stmt
= gsi_stmt (*gsi_p
);
13661 *handled_ops_p
= true;
13663 switch (gimple_code (stmt
))
13667 case GIMPLE_OMP_PARALLEL
:
13668 case GIMPLE_OMP_TASK
:
13669 case GIMPLE_OMP_SECTIONS
:
13670 case GIMPLE_OMP_SINGLE
:
13671 case GIMPLE_OMP_SECTION
:
13672 case GIMPLE_OMP_MASTER
:
13673 case GIMPLE_OMP_ORDERED
:
13674 case GIMPLE_OMP_SCAN
:
13675 case GIMPLE_OMP_CRITICAL
:
13676 case GIMPLE_OMP_TARGET
:
13677 case GIMPLE_OMP_TEAMS
:
13678 case GIMPLE_OMP_TASKGROUP
:
13679 /* The minimal context here is just the current OMP construct. */
13680 inner_context
= stmt
;
13681 wi
->info
= inner_context
;
13682 walk_gimple_seq (gimple_omp_body (stmt
), diagnose_sb_1
, NULL
, wi
);
13683 wi
->info
= context
;
13686 case GIMPLE_OMP_FOR
:
13687 inner_context
= stmt
;
13688 wi
->info
= inner_context
;
13689 /* gimple_omp_for_{index,initial,final} are all DECLs; no need to
13691 walk_gimple_seq (gimple_omp_for_pre_body (stmt
),
13692 diagnose_sb_1
, NULL
, wi
);
13693 walk_gimple_seq (gimple_omp_body (stmt
), diagnose_sb_1
, NULL
, wi
);
13694 wi
->info
= context
;
13698 splay_tree_insert (all_labels
,
13699 (splay_tree_key
) gimple_label_label (
13700 as_a
<glabel
*> (stmt
)),
13701 (splay_tree_value
) context
);
13711 /* Pass 2: Check each branch and see if its context differs from that of
13712 the destination label's context. */
13715 diagnose_sb_2 (gimple_stmt_iterator
*gsi_p
, bool *handled_ops_p
,
13716 struct walk_stmt_info
*wi
)
13718 gimple
*context
= (gimple
*) wi
->info
;
13720 gimple
*stmt
= gsi_stmt (*gsi_p
);
13722 *handled_ops_p
= true;
13724 switch (gimple_code (stmt
))
13728 case GIMPLE_OMP_PARALLEL
:
13729 case GIMPLE_OMP_TASK
:
13730 case GIMPLE_OMP_SECTIONS
:
13731 case GIMPLE_OMP_SINGLE
:
13732 case GIMPLE_OMP_SECTION
:
13733 case GIMPLE_OMP_MASTER
:
13734 case GIMPLE_OMP_ORDERED
:
13735 case GIMPLE_OMP_SCAN
:
13736 case GIMPLE_OMP_CRITICAL
:
13737 case GIMPLE_OMP_TARGET
:
13738 case GIMPLE_OMP_TEAMS
:
13739 case GIMPLE_OMP_TASKGROUP
:
13741 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), diagnose_sb_2
, NULL
, wi
);
13742 wi
->info
= context
;
13745 case GIMPLE_OMP_FOR
:
13747 /* gimple_omp_for_{index,initial,final} are all DECLs; no need to
13749 walk_gimple_seq_mod (gimple_omp_for_pre_body_ptr (stmt
),
13750 diagnose_sb_2
, NULL
, wi
);
13751 walk_gimple_seq_mod (gimple_omp_body_ptr (stmt
), diagnose_sb_2
, NULL
, wi
);
13752 wi
->info
= context
;
13757 gcond
*cond_stmt
= as_a
<gcond
*> (stmt
);
13758 tree lab
= gimple_cond_true_label (cond_stmt
);
13761 n
= splay_tree_lookup (all_labels
,
13762 (splay_tree_key
) lab
);
13763 diagnose_sb_0 (gsi_p
, context
,
13764 n
? (gimple
*) n
->value
: NULL
);
13766 lab
= gimple_cond_false_label (cond_stmt
);
13769 n
= splay_tree_lookup (all_labels
,
13770 (splay_tree_key
) lab
);
13771 diagnose_sb_0 (gsi_p
, context
,
13772 n
? (gimple
*) n
->value
: NULL
);
13779 tree lab
= gimple_goto_dest (stmt
);
13780 if (TREE_CODE (lab
) != LABEL_DECL
)
13783 n
= splay_tree_lookup (all_labels
, (splay_tree_key
) lab
);
13784 diagnose_sb_0 (gsi_p
, context
, n
? (gimple
*) n
->value
: NULL
);
13788 case GIMPLE_SWITCH
:
13790 gswitch
*switch_stmt
= as_a
<gswitch
*> (stmt
);
13792 for (i
= 0; i
< gimple_switch_num_labels (switch_stmt
); ++i
)
13794 tree lab
= CASE_LABEL (gimple_switch_label (switch_stmt
, i
));
13795 n
= splay_tree_lookup (all_labels
, (splay_tree_key
) lab
);
13796 if (n
&& diagnose_sb_0 (gsi_p
, context
, (gimple
*) n
->value
))
13802 case GIMPLE_RETURN
:
13803 diagnose_sb_0 (gsi_p
, context
, NULL
);
13813 static unsigned int
13814 diagnose_omp_structured_block_errors (void)
13816 struct walk_stmt_info wi
;
13817 gimple_seq body
= gimple_body (current_function_decl
);
13819 all_labels
= splay_tree_new (splay_tree_compare_pointers
, 0, 0);
13821 memset (&wi
, 0, sizeof (wi
));
13822 walk_gimple_seq (body
, diagnose_sb_1
, NULL
, &wi
);
13824 memset (&wi
, 0, sizeof (wi
));
13825 wi
.want_locations
= true;
13826 walk_gimple_seq_mod (&body
, diagnose_sb_2
, NULL
, &wi
);
13828 gimple_set_body (current_function_decl
, body
);
13830 splay_tree_delete (all_labels
);
13838 const pass_data pass_data_diagnose_omp_blocks
=
13840 GIMPLE_PASS
, /* type */
13841 "*diagnose_omp_blocks", /* name */
13842 OPTGROUP_OMP
, /* optinfo_flags */
13843 TV_NONE
, /* tv_id */
13844 PROP_gimple_any
, /* properties_required */
13845 0, /* properties_provided */
13846 0, /* properties_destroyed */
13847 0, /* todo_flags_start */
13848 0, /* todo_flags_finish */
13851 class pass_diagnose_omp_blocks
: public gimple_opt_pass
13854 pass_diagnose_omp_blocks (gcc::context
*ctxt
)
13855 : gimple_opt_pass (pass_data_diagnose_omp_blocks
, ctxt
)
13858 /* opt_pass methods: */
13859 virtual bool gate (function
*)
13861 return flag_openacc
|| flag_openmp
|| flag_openmp_simd
;
13863 virtual unsigned int execute (function
*)
13865 return diagnose_omp_structured_block_errors ();
13868 }; // class pass_diagnose_omp_blocks
13870 } // anon namespace
13873 make_pass_diagnose_omp_blocks (gcc::context
*ctxt
)
13875 return new pass_diagnose_omp_blocks (ctxt
);
13879 #include "gt-omp-low.h"