Support TI mode and soft float on PA64
[official-gcc.git] / gcc / omp-general.c
blob44527552413456ab8df83e73387bf2aa9a2f41c8
1 /* General types and functions that are uselful for processing of OpenMP,
2 OpenACC and similar directivers at various stages of compilation.
4 Copyright (C) 2005-2021 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Find an OMP clause of type KIND within CLAUSES. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "backend.h"
28 #include "target.h"
29 #include "tree.h"
30 #include "gimple.h"
31 #include "ssa.h"
32 #include "diagnostic-core.h"
33 #include "fold-const.h"
34 #include "langhooks.h"
35 #include "omp-general.h"
36 #include "stringpool.h"
37 #include "attribs.h"
38 #include "gimplify.h"
39 #include "cgraph.h"
40 #include "alloc-pool.h"
41 #include "symbol-summary.h"
42 #include "tree-pass.h"
43 #include "omp-device-properties.h"
44 #include "tree-iterator.h"
45 #include "data-streamer.h"
46 #include "streamer-hooks.h"
47 #include "opts.h"
49 enum omp_requires omp_requires_mask;
51 tree
52 omp_find_clause (tree clauses, enum omp_clause_code kind)
54 for (; clauses ; clauses = OMP_CLAUSE_CHAIN (clauses))
55 if (OMP_CLAUSE_CODE (clauses) == kind)
56 return clauses;
58 return NULL_TREE;
61 /* True if OpenMP should regard this DECL as being a scalar which has Fortran's
62 allocatable or pointer attribute. */
63 bool
64 omp_is_allocatable_or_ptr (tree decl)
66 return lang_hooks.decls.omp_is_allocatable_or_ptr (decl);
69 /* Check whether this DECL belongs to a Fortran optional argument.
70 With 'for_present_check' set to false, decls which are optional parameters
71 themselve are returned as tree - or a NULL_TREE otherwise. Those decls are
72 always pointers. With 'for_present_check' set to true, the decl for checking
73 whether an argument is present is returned; for arguments with value
74 attribute this is the hidden argument and of BOOLEAN_TYPE. If the decl is
75 unrelated to optional arguments, NULL_TREE is returned. */
77 tree
78 omp_check_optional_argument (tree decl, bool for_present_check)
80 return lang_hooks.decls.omp_check_optional_argument (decl, for_present_check);
83 /* True if OpenMP should privatize what this DECL points to rather
84 than the DECL itself. */
86 bool
87 omp_privatize_by_reference (tree decl)
89 return lang_hooks.decls.omp_privatize_by_reference (decl);
92 /* Adjust *COND_CODE and *N2 so that the former is either LT_EXPR or GT_EXPR,
93 given that V is the loop index variable and STEP is loop step. */
95 void
96 omp_adjust_for_condition (location_t loc, enum tree_code *cond_code, tree *n2,
97 tree v, tree step)
99 switch (*cond_code)
101 case LT_EXPR:
102 case GT_EXPR:
103 break;
105 case NE_EXPR:
106 gcc_assert (TREE_CODE (step) == INTEGER_CST);
107 if (TREE_CODE (TREE_TYPE (v)) == INTEGER_TYPE)
109 if (integer_onep (step))
110 *cond_code = LT_EXPR;
111 else
113 gcc_assert (integer_minus_onep (step));
114 *cond_code = GT_EXPR;
117 else
119 tree unit = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (v)));
120 gcc_assert (TREE_CODE (unit) == INTEGER_CST);
121 if (tree_int_cst_equal (unit, step))
122 *cond_code = LT_EXPR;
123 else
125 gcc_assert (wi::neg (wi::to_widest (unit))
126 == wi::to_widest (step));
127 *cond_code = GT_EXPR;
131 break;
133 case LE_EXPR:
134 if (POINTER_TYPE_P (TREE_TYPE (*n2)))
135 *n2 = fold_build_pointer_plus_hwi_loc (loc, *n2, 1);
136 else
137 *n2 = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (*n2), *n2,
138 build_int_cst (TREE_TYPE (*n2), 1));
139 *cond_code = LT_EXPR;
140 break;
141 case GE_EXPR:
142 if (POINTER_TYPE_P (TREE_TYPE (*n2)))
143 *n2 = fold_build_pointer_plus_hwi_loc (loc, *n2, -1);
144 else
145 *n2 = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (*n2), *n2,
146 build_int_cst (TREE_TYPE (*n2), 1));
147 *cond_code = GT_EXPR;
148 break;
149 default:
150 gcc_unreachable ();
154 /* Return the looping step from INCR, extracted from the step of a gimple omp
155 for statement. */
157 tree
158 omp_get_for_step_from_incr (location_t loc, tree incr)
160 tree step;
161 switch (TREE_CODE (incr))
163 case PLUS_EXPR:
164 step = TREE_OPERAND (incr, 1);
165 break;
166 case POINTER_PLUS_EXPR:
167 step = fold_convert (ssizetype, TREE_OPERAND (incr, 1));
168 break;
169 case MINUS_EXPR:
170 step = TREE_OPERAND (incr, 1);
171 step = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (step), step);
172 break;
173 default:
174 gcc_unreachable ();
176 return step;
179 /* Extract the header elements of parallel loop FOR_STMT and store
180 them into *FD. */
182 void
183 omp_extract_for_data (gomp_for *for_stmt, struct omp_for_data *fd,
184 struct omp_for_data_loop *loops)
186 tree t, var, *collapse_iter, *collapse_count;
187 tree count = NULL_TREE, iter_type = long_integer_type_node;
188 struct omp_for_data_loop *loop;
189 int i;
190 struct omp_for_data_loop dummy_loop;
191 location_t loc = gimple_location (for_stmt);
192 bool simd = gimple_omp_for_kind (for_stmt) == GF_OMP_FOR_KIND_SIMD;
193 bool distribute = gimple_omp_for_kind (for_stmt)
194 == GF_OMP_FOR_KIND_DISTRIBUTE;
195 bool taskloop = gimple_omp_for_kind (for_stmt)
196 == GF_OMP_FOR_KIND_TASKLOOP;
197 bool order_reproducible = false;
198 tree iterv, countv;
200 fd->for_stmt = for_stmt;
201 fd->pre = NULL;
202 fd->have_nowait = distribute || simd;
203 fd->have_ordered = false;
204 fd->have_reductemp = false;
205 fd->have_pointer_condtemp = false;
206 fd->have_scantemp = false;
207 fd->have_nonctrl_scantemp = false;
208 fd->non_rect = false;
209 fd->lastprivate_conditional = 0;
210 fd->tiling = NULL_TREE;
211 fd->collapse = 1;
212 fd->ordered = 0;
213 fd->first_nonrect = -1;
214 fd->last_nonrect = -1;
215 fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;
216 fd->sched_modifiers = 0;
217 fd->chunk_size = NULL_TREE;
218 fd->simd_schedule = false;
219 fd->first_inner_iterations = NULL_TREE;
220 fd->factor = NULL_TREE;
221 fd->adjn1 = NULL_TREE;
222 collapse_iter = NULL;
223 collapse_count = NULL;
225 for (t = gimple_omp_for_clauses (for_stmt); t ; t = OMP_CLAUSE_CHAIN (t))
226 switch (OMP_CLAUSE_CODE (t))
228 case OMP_CLAUSE_NOWAIT:
229 fd->have_nowait = true;
230 break;
231 case OMP_CLAUSE_ORDERED:
232 fd->have_ordered = true;
233 if (OMP_CLAUSE_ORDERED_EXPR (t))
234 fd->ordered = tree_to_shwi (OMP_CLAUSE_ORDERED_EXPR (t));
235 break;
236 case OMP_CLAUSE_SCHEDULE:
237 gcc_assert (!distribute && !taskloop);
238 fd->sched_kind
239 = (enum omp_clause_schedule_kind)
240 (OMP_CLAUSE_SCHEDULE_KIND (t) & OMP_CLAUSE_SCHEDULE_MASK);
241 fd->sched_modifiers = (OMP_CLAUSE_SCHEDULE_KIND (t)
242 & ~OMP_CLAUSE_SCHEDULE_MASK);
243 fd->chunk_size = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (t);
244 fd->simd_schedule = OMP_CLAUSE_SCHEDULE_SIMD (t);
245 break;
246 case OMP_CLAUSE_DIST_SCHEDULE:
247 gcc_assert (distribute);
248 fd->chunk_size = OMP_CLAUSE_DIST_SCHEDULE_CHUNK_EXPR (t);
249 break;
250 case OMP_CLAUSE_COLLAPSE:
251 fd->collapse = tree_to_shwi (OMP_CLAUSE_COLLAPSE_EXPR (t));
252 if (fd->collapse > 1)
254 collapse_iter = &OMP_CLAUSE_COLLAPSE_ITERVAR (t);
255 collapse_count = &OMP_CLAUSE_COLLAPSE_COUNT (t);
257 break;
258 case OMP_CLAUSE_TILE:
259 fd->tiling = OMP_CLAUSE_TILE_LIST (t);
260 fd->collapse = list_length (fd->tiling);
261 gcc_assert (fd->collapse);
262 collapse_iter = &OMP_CLAUSE_TILE_ITERVAR (t);
263 collapse_count = &OMP_CLAUSE_TILE_COUNT (t);
264 break;
265 case OMP_CLAUSE__REDUCTEMP_:
266 fd->have_reductemp = true;
267 break;
268 case OMP_CLAUSE_LASTPRIVATE:
269 if (OMP_CLAUSE_LASTPRIVATE_CONDITIONAL (t))
270 fd->lastprivate_conditional++;
271 break;
272 case OMP_CLAUSE__CONDTEMP_:
273 if (POINTER_TYPE_P (TREE_TYPE (OMP_CLAUSE_DECL (t))))
274 fd->have_pointer_condtemp = true;
275 break;
276 case OMP_CLAUSE__SCANTEMP_:
277 fd->have_scantemp = true;
278 if (!OMP_CLAUSE__SCANTEMP__ALLOC (t)
279 && !OMP_CLAUSE__SCANTEMP__CONTROL (t))
280 fd->have_nonctrl_scantemp = true;
281 break;
282 case OMP_CLAUSE_ORDER:
283 /* FIXME: For OpenMP 5.2 this should change to
284 if (OMP_CLAUSE_ORDER_REPRODUCIBLE (t))
285 (with the exception of loop construct but that lowers to
286 no schedule/dist_schedule clauses currently). */
287 if (!OMP_CLAUSE_ORDER_UNCONSTRAINED (t))
288 order_reproducible = true;
289 default:
290 break;
293 /* For order(reproducible:concurrent) schedule ({dynamic,guided,runtime})
294 we have either the option to expensively remember at runtime how we've
295 distributed work from first loop and reuse that in following loops with
296 the same number of iterations and schedule, or just force static schedule.
297 OpenMP API calls etc. aren't allowed in order(concurrent) bodies so
298 users can't observe it easily anyway. */
299 if (order_reproducible)
300 fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;
301 if (fd->collapse > 1 || fd->tiling)
302 fd->loops = loops;
303 else
304 fd->loops = &fd->loop;
306 if (fd->ordered && fd->collapse == 1 && loops != NULL)
308 fd->loops = loops;
309 iterv = NULL_TREE;
310 countv = NULL_TREE;
311 collapse_iter = &iterv;
312 collapse_count = &countv;
315 /* FIXME: for now map schedule(auto) to schedule(static).
316 There should be analysis to determine whether all iterations
317 are approximately the same amount of work (then schedule(static)
318 is best) or if it varies (then schedule(dynamic,N) is better). */
319 if (fd->sched_kind == OMP_CLAUSE_SCHEDULE_AUTO)
321 fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;
322 gcc_assert (fd->chunk_size == NULL);
324 gcc_assert ((fd->collapse == 1 && !fd->tiling) || collapse_iter != NULL);
325 if (taskloop)
326 fd->sched_kind = OMP_CLAUSE_SCHEDULE_RUNTIME;
327 if (fd->sched_kind == OMP_CLAUSE_SCHEDULE_RUNTIME)
328 gcc_assert (fd->chunk_size == NULL);
329 else if (fd->chunk_size == NULL)
331 /* We only need to compute a default chunk size for ordered
332 static loops and dynamic loops. */
333 if (fd->sched_kind != OMP_CLAUSE_SCHEDULE_STATIC
334 || fd->have_ordered)
335 fd->chunk_size = (fd->sched_kind == OMP_CLAUSE_SCHEDULE_STATIC)
336 ? integer_zero_node : integer_one_node;
339 int cnt = fd->ordered ? fd->ordered : fd->collapse;
340 int single_nonrect = -1;
341 tree single_nonrect_count = NULL_TREE;
342 enum tree_code single_nonrect_cond_code = ERROR_MARK;
343 for (i = 1; i < cnt; i++)
345 tree n1 = gimple_omp_for_initial (for_stmt, i);
346 tree n2 = gimple_omp_for_final (for_stmt, i);
347 if (TREE_CODE (n1) == TREE_VEC)
349 if (fd->non_rect)
351 single_nonrect = -1;
352 break;
354 for (int j = i - 1; j >= 0; j--)
355 if (TREE_VEC_ELT (n1, 0) == gimple_omp_for_index (for_stmt, j))
357 single_nonrect = j;
358 break;
360 fd->non_rect = true;
362 else if (TREE_CODE (n2) == TREE_VEC)
364 if (fd->non_rect)
366 single_nonrect = -1;
367 break;
369 for (int j = i - 1; j >= 0; j--)
370 if (TREE_VEC_ELT (n2, 0) == gimple_omp_for_index (for_stmt, j))
372 single_nonrect = j;
373 break;
375 fd->non_rect = true;
378 for (i = 0; i < cnt; i++)
380 if (i == 0
381 && fd->collapse == 1
382 && !fd->tiling
383 && (fd->ordered == 0 || loops == NULL))
384 loop = &fd->loop;
385 else if (loops != NULL)
386 loop = loops + i;
387 else
388 loop = &dummy_loop;
390 loop->v = gimple_omp_for_index (for_stmt, i);
391 gcc_assert (SSA_VAR_P (loop->v));
392 gcc_assert (TREE_CODE (TREE_TYPE (loop->v)) == INTEGER_TYPE
393 || TREE_CODE (TREE_TYPE (loop->v)) == POINTER_TYPE);
394 var = TREE_CODE (loop->v) == SSA_NAME ? SSA_NAME_VAR (loop->v) : loop->v;
395 loop->n1 = gimple_omp_for_initial (for_stmt, i);
396 loop->m1 = NULL_TREE;
397 loop->m2 = NULL_TREE;
398 loop->outer = 0;
399 loop->non_rect_referenced = false;
400 if (TREE_CODE (loop->n1) == TREE_VEC)
402 for (int j = i - 1; j >= 0; j--)
403 if (TREE_VEC_ELT (loop->n1, 0) == gimple_omp_for_index (for_stmt, j))
405 loop->outer = i - j;
406 if (loops != NULL)
407 loops[j].non_rect_referenced = true;
408 if (fd->first_nonrect == -1 || fd->first_nonrect > j)
409 fd->first_nonrect = j;
410 break;
412 gcc_assert (loop->outer);
413 loop->m1 = TREE_VEC_ELT (loop->n1, 1);
414 loop->n1 = TREE_VEC_ELT (loop->n1, 2);
415 fd->non_rect = true;
416 fd->last_nonrect = i;
419 loop->cond_code = gimple_omp_for_cond (for_stmt, i);
420 loop->n2 = gimple_omp_for_final (for_stmt, i);
421 gcc_assert (loop->cond_code != NE_EXPR
422 || (gimple_omp_for_kind (for_stmt)
423 != GF_OMP_FOR_KIND_OACC_LOOP));
424 if (TREE_CODE (loop->n2) == TREE_VEC)
426 if (loop->outer)
427 gcc_assert (TREE_VEC_ELT (loop->n2, 0)
428 == gimple_omp_for_index (for_stmt, i - loop->outer));
429 else
430 for (int j = i - 1; j >= 0; j--)
431 if (TREE_VEC_ELT (loop->n2, 0) == gimple_omp_for_index (for_stmt, j))
433 loop->outer = i - j;
434 if (loops != NULL)
435 loops[j].non_rect_referenced = true;
436 if (fd->first_nonrect == -1 || fd->first_nonrect > j)
437 fd->first_nonrect = j;
438 break;
440 gcc_assert (loop->outer);
441 loop->m2 = TREE_VEC_ELT (loop->n2, 1);
442 loop->n2 = TREE_VEC_ELT (loop->n2, 2);
443 fd->non_rect = true;
444 fd->last_nonrect = i;
447 t = gimple_omp_for_incr (for_stmt, i);
448 gcc_assert (TREE_OPERAND (t, 0) == var);
449 loop->step = omp_get_for_step_from_incr (loc, t);
451 omp_adjust_for_condition (loc, &loop->cond_code, &loop->n2, loop->v,
452 loop->step);
454 if (simd
455 || (fd->sched_kind == OMP_CLAUSE_SCHEDULE_STATIC
456 && !fd->have_ordered))
458 if (fd->collapse == 1 && !fd->tiling)
459 iter_type = TREE_TYPE (loop->v);
460 else if (i == 0
461 || TYPE_PRECISION (iter_type)
462 < TYPE_PRECISION (TREE_TYPE (loop->v)))
463 iter_type
464 = build_nonstandard_integer_type
465 (TYPE_PRECISION (TREE_TYPE (loop->v)), 1);
467 else if (iter_type != long_long_unsigned_type_node)
469 if (POINTER_TYPE_P (TREE_TYPE (loop->v)))
470 iter_type = long_long_unsigned_type_node;
471 else if (TYPE_UNSIGNED (TREE_TYPE (loop->v))
472 && TYPE_PRECISION (TREE_TYPE (loop->v))
473 >= TYPE_PRECISION (iter_type))
475 tree n;
477 if (loop->cond_code == LT_EXPR)
478 n = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (loop->v),
479 loop->n2, loop->step);
480 else
481 n = loop->n1;
482 if (loop->m1
483 || loop->m2
484 || TREE_CODE (n) != INTEGER_CST
485 || tree_int_cst_lt (TYPE_MAX_VALUE (iter_type), n))
486 iter_type = long_long_unsigned_type_node;
488 else if (TYPE_PRECISION (TREE_TYPE (loop->v))
489 > TYPE_PRECISION (iter_type))
491 tree n1, n2;
493 if (loop->cond_code == LT_EXPR)
495 n1 = loop->n1;
496 n2 = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (loop->v),
497 loop->n2, loop->step);
499 else
501 n1 = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (loop->v),
502 loop->n2, loop->step);
503 n2 = loop->n1;
505 if (loop->m1
506 || loop->m2
507 || TREE_CODE (n1) != INTEGER_CST
508 || TREE_CODE (n2) != INTEGER_CST
509 || !tree_int_cst_lt (TYPE_MIN_VALUE (iter_type), n1)
510 || !tree_int_cst_lt (n2, TYPE_MAX_VALUE (iter_type)))
511 iter_type = long_long_unsigned_type_node;
515 if (i >= fd->collapse)
516 continue;
518 if (collapse_count && *collapse_count == NULL)
520 if (count && integer_zerop (count))
521 continue;
522 tree n1first = NULL_TREE, n2first = NULL_TREE;
523 tree n1last = NULL_TREE, n2last = NULL_TREE;
524 tree ostep = NULL_TREE;
525 if (loop->m1 || loop->m2)
527 if (count == NULL_TREE)
528 continue;
529 if (single_nonrect == -1
530 || (loop->m1 && TREE_CODE (loop->m1) != INTEGER_CST)
531 || (loop->m2 && TREE_CODE (loop->m2) != INTEGER_CST)
532 || TREE_CODE (loop->n1) != INTEGER_CST
533 || TREE_CODE (loop->n2) != INTEGER_CST
534 || TREE_CODE (loop->step) != INTEGER_CST)
536 count = NULL_TREE;
537 continue;
539 tree var = gimple_omp_for_initial (for_stmt, single_nonrect);
540 tree itype = TREE_TYPE (var);
541 tree first = gimple_omp_for_initial (for_stmt, single_nonrect);
542 t = gimple_omp_for_incr (for_stmt, single_nonrect);
543 ostep = omp_get_for_step_from_incr (loc, t);
544 t = fold_binary (MINUS_EXPR, long_long_unsigned_type_node,
545 single_nonrect_count,
546 build_one_cst (long_long_unsigned_type_node));
547 t = fold_convert (itype, t);
548 first = fold_convert (itype, first);
549 ostep = fold_convert (itype, ostep);
550 tree last = fold_binary (PLUS_EXPR, itype, first,
551 fold_binary (MULT_EXPR, itype, t,
552 ostep));
553 if (TREE_CODE (first) != INTEGER_CST
554 || TREE_CODE (last) != INTEGER_CST)
556 count = NULL_TREE;
557 continue;
559 if (loop->m1)
561 tree m1 = fold_convert (itype, loop->m1);
562 tree n1 = fold_convert (itype, loop->n1);
563 n1first = fold_binary (PLUS_EXPR, itype,
564 fold_binary (MULT_EXPR, itype,
565 first, m1), n1);
566 n1last = fold_binary (PLUS_EXPR, itype,
567 fold_binary (MULT_EXPR, itype,
568 last, m1), n1);
570 else
571 n1first = n1last = loop->n1;
572 if (loop->m2)
574 tree n2 = fold_convert (itype, loop->n2);
575 tree m2 = fold_convert (itype, loop->m2);
576 n2first = fold_binary (PLUS_EXPR, itype,
577 fold_binary (MULT_EXPR, itype,
578 first, m2), n2);
579 n2last = fold_binary (PLUS_EXPR, itype,
580 fold_binary (MULT_EXPR, itype,
581 last, m2), n2);
583 else
584 n2first = n2last = loop->n2;
585 n1first = fold_convert (TREE_TYPE (loop->v), n1first);
586 n2first = fold_convert (TREE_TYPE (loop->v), n2first);
587 n1last = fold_convert (TREE_TYPE (loop->v), n1last);
588 n2last = fold_convert (TREE_TYPE (loop->v), n2last);
589 t = fold_binary (loop->cond_code, boolean_type_node,
590 n1first, n2first);
591 tree t2 = fold_binary (loop->cond_code, boolean_type_node,
592 n1last, n2last);
593 if (t && t2 && integer_nonzerop (t) && integer_nonzerop (t2))
594 /* All outer loop iterators have at least one inner loop
595 iteration. Try to compute the count at compile time. */
596 t = NULL_TREE;
597 else if (t && t2 && integer_zerop (t) && integer_zerop (t2))
598 /* No iterations of the inner loop. count will be set to
599 zero cst below. */;
600 else if (TYPE_UNSIGNED (itype)
601 || t == NULL_TREE
602 || t2 == NULL_TREE
603 || TREE_CODE (t) != INTEGER_CST
604 || TREE_CODE (t2) != INTEGER_CST)
606 /* Punt (for now). */
607 count = NULL_TREE;
608 continue;
610 else
612 /* Some iterations of the outer loop have zero iterations
613 of the inner loop, while others have at least one.
614 In this case, we need to adjust one of those outer
615 loop bounds. If ADJ_FIRST, we need to adjust outer n1
616 (first), otherwise outer n2 (last). */
617 bool adj_first = integer_zerop (t);
618 tree n1 = fold_convert (itype, loop->n1);
619 tree n2 = fold_convert (itype, loop->n2);
620 tree m1 = loop->m1 ? fold_convert (itype, loop->m1)
621 : build_zero_cst (itype);
622 tree m2 = loop->m2 ? fold_convert (itype, loop->m2)
623 : build_zero_cst (itype);
624 t = fold_binary (MINUS_EXPR, itype, n1, n2);
625 t2 = fold_binary (MINUS_EXPR, itype, m2, m1);
626 t = fold_binary (TRUNC_DIV_EXPR, itype, t, t2);
627 t2 = fold_binary (MINUS_EXPR, itype, t, first);
628 t2 = fold_binary (TRUNC_MOD_EXPR, itype, t2, ostep);
629 t = fold_binary (MINUS_EXPR, itype, t, t2);
630 tree n1cur
631 = fold_binary (PLUS_EXPR, itype, n1,
632 fold_binary (MULT_EXPR, itype, m1, t));
633 tree n2cur
634 = fold_binary (PLUS_EXPR, itype, n2,
635 fold_binary (MULT_EXPR, itype, m2, t));
636 t2 = fold_binary (loop->cond_code, boolean_type_node,
637 n1cur, n2cur);
638 tree t3 = fold_binary (MULT_EXPR, itype, m1, ostep);
639 tree t4 = fold_binary (MULT_EXPR, itype, m2, ostep);
640 tree diff;
641 if (adj_first)
643 tree new_first;
644 if (integer_nonzerop (t2))
646 new_first = t;
647 n1first = n1cur;
648 n2first = n2cur;
649 if (flag_checking)
651 t3 = fold_binary (MINUS_EXPR, itype, n1cur, t3);
652 t4 = fold_binary (MINUS_EXPR, itype, n2cur, t4);
653 t3 = fold_binary (loop->cond_code,
654 boolean_type_node, t3, t4);
655 gcc_assert (integer_zerop (t3));
658 else
660 t3 = fold_binary (PLUS_EXPR, itype, n1cur, t3);
661 t4 = fold_binary (PLUS_EXPR, itype, n2cur, t4);
662 new_first = fold_binary (PLUS_EXPR, itype, t, ostep);
663 n1first = t3;
664 n2first = t4;
665 if (flag_checking)
667 t3 = fold_binary (loop->cond_code,
668 boolean_type_node, t3, t4);
669 gcc_assert (integer_nonzerop (t3));
672 diff = fold_binary (MINUS_EXPR, itype, new_first, first);
673 first = new_first;
674 fd->adjn1 = first;
676 else
678 tree new_last;
679 if (integer_zerop (t2))
681 t3 = fold_binary (MINUS_EXPR, itype, n1cur, t3);
682 t4 = fold_binary (MINUS_EXPR, itype, n2cur, t4);
683 new_last = fold_binary (MINUS_EXPR, itype, t, ostep);
684 n1last = t3;
685 n2last = t4;
686 if (flag_checking)
688 t3 = fold_binary (loop->cond_code,
689 boolean_type_node, t3, t4);
690 gcc_assert (integer_nonzerop (t3));
693 else
695 new_last = t;
696 n1last = n1cur;
697 n2last = n2cur;
698 if (flag_checking)
700 t3 = fold_binary (PLUS_EXPR, itype, n1cur, t3);
701 t4 = fold_binary (PLUS_EXPR, itype, n2cur, t4);
702 t3 = fold_binary (loop->cond_code,
703 boolean_type_node, t3, t4);
704 gcc_assert (integer_zerop (t3));
707 diff = fold_binary (MINUS_EXPR, itype, last, new_last);
709 if (TYPE_UNSIGNED (itype)
710 && single_nonrect_cond_code == GT_EXPR)
711 diff = fold_binary (TRUNC_DIV_EXPR, itype,
712 fold_unary (NEGATE_EXPR, itype, diff),
713 fold_unary (NEGATE_EXPR, itype,
714 ostep));
715 else
716 diff = fold_binary (TRUNC_DIV_EXPR, itype, diff, ostep);
717 diff = fold_convert (long_long_unsigned_type_node, diff);
718 single_nonrect_count
719 = fold_binary (MINUS_EXPR, long_long_unsigned_type_node,
720 single_nonrect_count, diff);
721 t = NULL_TREE;
724 else
725 t = fold_binary (loop->cond_code, boolean_type_node,
726 fold_convert (TREE_TYPE (loop->v), loop->n1),
727 fold_convert (TREE_TYPE (loop->v), loop->n2));
728 if (t && integer_zerop (t))
729 count = build_zero_cst (long_long_unsigned_type_node);
730 else if ((i == 0 || count != NULL_TREE)
731 && TREE_CODE (TREE_TYPE (loop->v)) == INTEGER_TYPE
732 && TREE_CONSTANT (loop->n1)
733 && TREE_CONSTANT (loop->n2)
734 && TREE_CODE (loop->step) == INTEGER_CST)
736 tree itype = TREE_TYPE (loop->v);
738 if (POINTER_TYPE_P (itype))
739 itype = signed_type_for (itype);
740 t = build_int_cst (itype, (loop->cond_code == LT_EXPR ? -1 : 1));
741 t = fold_build2 (PLUS_EXPR, itype,
742 fold_convert (itype, loop->step), t);
743 tree n1 = loop->n1;
744 tree n2 = loop->n2;
745 if (loop->m1 || loop->m2)
747 gcc_assert (single_nonrect != -1);
748 n1 = n1first;
749 n2 = n2first;
751 t = fold_build2 (PLUS_EXPR, itype, t, fold_convert (itype, n2));
752 t = fold_build2 (MINUS_EXPR, itype, t, fold_convert (itype, n1));
753 tree step = fold_convert_loc (loc, itype, loop->step);
754 if (TYPE_UNSIGNED (itype) && loop->cond_code == GT_EXPR)
755 t = fold_build2 (TRUNC_DIV_EXPR, itype,
756 fold_build1 (NEGATE_EXPR, itype, t),
757 fold_build1 (NEGATE_EXPR, itype, step));
758 else
759 t = fold_build2 (TRUNC_DIV_EXPR, itype, t, step);
760 tree llutype = long_long_unsigned_type_node;
761 t = fold_convert (llutype, t);
762 if (loop->m1 || loop->m2)
764 /* t is number of iterations of inner loop at either first
765 or last value of the outer iterator (the one with fewer
766 iterations).
767 Compute t2 = ((m2 - m1) * ostep) / step
768 and niters = outer_count * t
769 + t2 * ((outer_count - 1) * outer_count / 2)
771 tree m1 = loop->m1 ? loop->m1 : integer_zero_node;
772 tree m2 = loop->m2 ? loop->m2 : integer_zero_node;
773 m1 = fold_convert (itype, m1);
774 m2 = fold_convert (itype, m2);
775 tree t2 = fold_build2 (MINUS_EXPR, itype, m2, m1);
776 t2 = fold_build2 (MULT_EXPR, itype, t2, ostep);
777 if (TYPE_UNSIGNED (itype) && loop->cond_code == GT_EXPR)
778 t2 = fold_build2 (TRUNC_DIV_EXPR, itype,
779 fold_build1 (NEGATE_EXPR, itype, t2),
780 fold_build1 (NEGATE_EXPR, itype, step));
781 else
782 t2 = fold_build2 (TRUNC_DIV_EXPR, itype, t2, step);
783 t2 = fold_convert (llutype, t2);
784 fd->first_inner_iterations = t;
785 fd->factor = t2;
786 t = fold_build2 (MULT_EXPR, llutype, t,
787 single_nonrect_count);
788 tree t3 = fold_build2 (MINUS_EXPR, llutype,
789 single_nonrect_count,
790 build_one_cst (llutype));
791 t3 = fold_build2 (MULT_EXPR, llutype, t3,
792 single_nonrect_count);
793 t3 = fold_build2 (TRUNC_DIV_EXPR, llutype, t3,
794 build_int_cst (llutype, 2));
795 t2 = fold_build2 (MULT_EXPR, llutype, t2, t3);
796 t = fold_build2 (PLUS_EXPR, llutype, t, t2);
798 if (i == single_nonrect)
800 if (integer_zerop (t) || TREE_CODE (t) != INTEGER_CST)
801 count = t;
802 else
804 single_nonrect_count = t;
805 single_nonrect_cond_code = loop->cond_code;
806 if (count == NULL_TREE)
807 count = build_one_cst (llutype);
810 else if (count != NULL_TREE)
811 count = fold_build2 (MULT_EXPR, llutype, count, t);
812 else
813 count = t;
814 if (TREE_CODE (count) != INTEGER_CST)
815 count = NULL_TREE;
817 else if (count && !integer_zerop (count))
818 count = NULL_TREE;
822 if (count
823 && !simd
824 && (fd->sched_kind != OMP_CLAUSE_SCHEDULE_STATIC
825 || fd->have_ordered))
827 if (!tree_int_cst_lt (count, TYPE_MAX_VALUE (long_integer_type_node)))
828 iter_type = long_long_unsigned_type_node;
829 else
830 iter_type = long_integer_type_node;
832 else if (collapse_iter && *collapse_iter != NULL)
833 iter_type = TREE_TYPE (*collapse_iter);
834 fd->iter_type = iter_type;
835 if (collapse_iter && *collapse_iter == NULL)
836 *collapse_iter = create_tmp_var (iter_type, ".iter");
837 if (collapse_count && *collapse_count == NULL)
839 if (count)
841 *collapse_count = fold_convert_loc (loc, iter_type, count);
842 if (fd->first_inner_iterations && fd->factor)
844 t = make_tree_vec (4);
845 TREE_VEC_ELT (t, 0) = *collapse_count;
846 TREE_VEC_ELT (t, 1) = fd->first_inner_iterations;
847 TREE_VEC_ELT (t, 2) = fd->factor;
848 TREE_VEC_ELT (t, 3) = fd->adjn1;
849 *collapse_count = t;
852 else
853 *collapse_count = create_tmp_var (iter_type, ".count");
856 if (fd->collapse > 1 || fd->tiling || (fd->ordered && loops))
858 fd->loop.v = *collapse_iter;
859 fd->loop.n1 = build_int_cst (TREE_TYPE (fd->loop.v), 0);
860 fd->loop.n2 = *collapse_count;
861 if (TREE_CODE (fd->loop.n2) == TREE_VEC)
863 gcc_assert (fd->non_rect);
864 fd->first_inner_iterations = TREE_VEC_ELT (fd->loop.n2, 1);
865 fd->factor = TREE_VEC_ELT (fd->loop.n2, 2);
866 fd->adjn1 = TREE_VEC_ELT (fd->loop.n2, 3);
867 fd->loop.n2 = TREE_VEC_ELT (fd->loop.n2, 0);
869 fd->loop.step = build_int_cst (TREE_TYPE (fd->loop.v), 1);
870 fd->loop.m1 = NULL_TREE;
871 fd->loop.m2 = NULL_TREE;
872 fd->loop.outer = 0;
873 fd->loop.cond_code = LT_EXPR;
875 else if (loops)
876 loops[0] = fd->loop;
879 /* Build a call to GOMP_barrier. */
881 gimple *
882 omp_build_barrier (tree lhs)
884 tree fndecl = builtin_decl_explicit (lhs ? BUILT_IN_GOMP_BARRIER_CANCEL
885 : BUILT_IN_GOMP_BARRIER);
886 gcall *g = gimple_build_call (fndecl, 0);
887 if (lhs)
888 gimple_call_set_lhs (g, lhs);
889 return g;
892 /* Find OMP_FOR resp. OMP_SIMD with non-NULL OMP_FOR_INIT. Also, fill in pdata
893 array, pdata[0] non-NULL if there is anything non-trivial in between,
894 pdata[1] is address of OMP_PARALLEL in between if any, pdata[2] is address
895 of OMP_FOR in between if any and pdata[3] is address of the inner
896 OMP_FOR/OMP_SIMD. */
898 tree
899 find_combined_omp_for (tree *tp, int *walk_subtrees, void *data)
901 tree **pdata = (tree **) data;
902 *walk_subtrees = 0;
903 switch (TREE_CODE (*tp))
905 case OMP_FOR:
906 if (OMP_FOR_INIT (*tp) != NULL_TREE)
908 pdata[3] = tp;
909 return *tp;
911 pdata[2] = tp;
912 *walk_subtrees = 1;
913 break;
914 case OMP_SIMD:
915 if (OMP_FOR_INIT (*tp) != NULL_TREE)
917 pdata[3] = tp;
918 return *tp;
920 break;
921 case BIND_EXPR:
922 if (BIND_EXPR_VARS (*tp)
923 || (BIND_EXPR_BLOCK (*tp)
924 && BLOCK_VARS (BIND_EXPR_BLOCK (*tp))))
925 pdata[0] = tp;
926 *walk_subtrees = 1;
927 break;
928 case STATEMENT_LIST:
929 if (!tsi_one_before_end_p (tsi_start (*tp)))
930 pdata[0] = tp;
931 *walk_subtrees = 1;
932 break;
933 case TRY_FINALLY_EXPR:
934 pdata[0] = tp;
935 *walk_subtrees = 1;
936 break;
937 case OMP_PARALLEL:
938 pdata[1] = tp;
939 *walk_subtrees = 1;
940 break;
941 default:
942 break;
944 return NULL_TREE;
947 /* Return maximum possible vectorization factor for the target. */
949 poly_uint64
950 omp_max_vf (void)
952 if (!optimize
953 || optimize_debug
954 || !flag_tree_loop_optimize
955 || (!flag_tree_loop_vectorize
956 && OPTION_SET_P (flag_tree_loop_vectorize)))
957 return 1;
959 auto_vector_modes modes;
960 targetm.vectorize.autovectorize_vector_modes (&modes, true);
961 if (!modes.is_empty ())
963 poly_uint64 vf = 0;
964 for (unsigned int i = 0; i < modes.length (); ++i)
965 /* The returned modes use the smallest element size (and thus
966 the largest nunits) for the vectorization approach that they
967 represent. */
968 vf = ordered_max (vf, GET_MODE_NUNITS (modes[i]));
969 return vf;
972 machine_mode vqimode = targetm.vectorize.preferred_simd_mode (QImode);
973 if (GET_MODE_CLASS (vqimode) == MODE_VECTOR_INT)
974 return GET_MODE_NUNITS (vqimode);
976 return 1;
979 /* Return maximum SIMT width if offloading may target SIMT hardware. */
982 omp_max_simt_vf (void)
984 if (!optimize)
985 return 0;
986 if (ENABLE_OFFLOADING)
987 for (const char *c = getenv ("OFFLOAD_TARGET_NAMES"); c;)
989 if (startswith (c, "nvptx"))
990 return 32;
991 else if ((c = strchr (c, ':')))
992 c++;
994 return 0;
997 /* Store the construct selectors as tree codes from last to first,
998 return their number. */
1001 omp_constructor_traits_to_codes (tree ctx, enum tree_code *constructs)
1003 int nconstructs = list_length (ctx);
1004 int i = nconstructs - 1;
1005 for (tree t2 = ctx; t2; t2 = TREE_CHAIN (t2), i--)
1007 const char *sel = IDENTIFIER_POINTER (TREE_PURPOSE (t2));
1008 if (!strcmp (sel, "target"))
1009 constructs[i] = OMP_TARGET;
1010 else if (!strcmp (sel, "teams"))
1011 constructs[i] = OMP_TEAMS;
1012 else if (!strcmp (sel, "parallel"))
1013 constructs[i] = OMP_PARALLEL;
1014 else if (!strcmp (sel, "for") || !strcmp (sel, "do"))
1015 constructs[i] = OMP_FOR;
1016 else if (!strcmp (sel, "simd"))
1017 constructs[i] = OMP_SIMD;
1018 else
1019 gcc_unreachable ();
1021 gcc_assert (i == -1);
1022 return nconstructs;
1025 /* Return true if PROP is possibly present in one of the offloading target's
1026 OpenMP contexts. The format of PROPS string is always offloading target's
1027 name terminated by '\0', followed by properties for that offloading
1028 target separated by '\0' and terminated by another '\0'. The strings
1029 are created from omp-device-properties installed files of all configured
1030 offloading targets. */
1032 static bool
1033 omp_offload_device_kind_arch_isa (const char *props, const char *prop)
1035 const char *names = getenv ("OFFLOAD_TARGET_NAMES");
1036 if (names == NULL || *names == '\0')
1037 return false;
1038 while (*props != '\0')
1040 size_t name_len = strlen (props);
1041 bool matches = false;
1042 for (const char *c = names; c; )
1044 if (strncmp (props, c, name_len) == 0
1045 && (c[name_len] == '\0'
1046 || c[name_len] == ':'
1047 || c[name_len] == '='))
1049 matches = true;
1050 break;
1052 else if ((c = strchr (c, ':')))
1053 c++;
1055 props = props + name_len + 1;
1056 while (*props != '\0')
1058 if (matches && strcmp (props, prop) == 0)
1059 return true;
1060 props = strchr (props, '\0') + 1;
1062 props++;
1064 return false;
1067 /* Return true if the current code location is or might be offloaded.
1068 Return true in declare target functions, or when nested in a target
1069 region or when unsure, return false otherwise. */
1071 static bool
1072 omp_maybe_offloaded (void)
1074 if (!ENABLE_OFFLOADING)
1075 return false;
1076 const char *names = getenv ("OFFLOAD_TARGET_NAMES");
1077 if (names == NULL || *names == '\0')
1078 return false;
1080 if (symtab->state == PARSING)
1081 /* Maybe. */
1082 return true;
1083 if (cfun && cfun->after_inlining)
1084 return false;
1085 if (current_function_decl
1086 && lookup_attribute ("omp declare target",
1087 DECL_ATTRIBUTES (current_function_decl)))
1088 return true;
1089 if (cfun && (cfun->curr_properties & PROP_gimple_any) == 0)
1091 enum tree_code construct = OMP_TARGET;
1092 if (omp_construct_selector_matches (&construct, 1, NULL))
1093 return true;
1095 return false;
1099 /* Diagnose errors in an OpenMP context selector, return CTX if
1100 it is correct or error_mark_node otherwise. */
1102 tree
1103 omp_check_context_selector (location_t loc, tree ctx)
1105 /* Each trait-set-selector-name can only be specified once.
1106 There are just 4 set names. */
1107 for (tree t1 = ctx; t1; t1 = TREE_CHAIN (t1))
1108 for (tree t2 = TREE_CHAIN (t1); t2; t2 = TREE_CHAIN (t2))
1109 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1111 error_at (loc, "selector set %qs specified more than once",
1112 IDENTIFIER_POINTER (TREE_PURPOSE (t1)));
1113 return error_mark_node;
1115 for (tree t = ctx; t; t = TREE_CHAIN (t))
1117 /* Each trait-selector-name can only be specified once. */
1118 if (list_length (TREE_VALUE (t)) < 5)
1120 for (tree t1 = TREE_VALUE (t); t1; t1 = TREE_CHAIN (t1))
1121 for (tree t2 = TREE_CHAIN (t1); t2; t2 = TREE_CHAIN (t2))
1122 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1124 error_at (loc,
1125 "selector %qs specified more than once in set %qs",
1126 IDENTIFIER_POINTER (TREE_PURPOSE (t1)),
1127 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1128 return error_mark_node;
1131 else
1133 hash_set<tree> pset;
1134 for (tree t1 = TREE_VALUE (t); t1; t1 = TREE_CHAIN (t1))
1135 if (pset.add (TREE_PURPOSE (t1)))
1137 error_at (loc,
1138 "selector %qs specified more than once in set %qs",
1139 IDENTIFIER_POINTER (TREE_PURPOSE (t1)),
1140 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
1141 return error_mark_node;
1145 static const char *const kind[] = {
1146 "host", "nohost", "cpu", "gpu", "fpga", "any", NULL };
1147 static const char *const vendor[] = {
1148 "amd", "arm", "bsc", "cray", "fujitsu", "gnu", "ibm", "intel",
1149 "llvm", "nvidia", "pgi", "ti", "unknown", NULL };
1150 static const char *const extension[] = { NULL };
1151 static const char *const atomic_default_mem_order[] = {
1152 "seq_cst", "relaxed", "acq_rel", NULL };
1153 struct known_properties { const char *set; const char *selector;
1154 const char *const *props; };
1155 known_properties props[] = {
1156 { "device", "kind", kind },
1157 { "implementation", "vendor", vendor },
1158 { "implementation", "extension", extension },
1159 { "implementation", "atomic_default_mem_order",
1160 atomic_default_mem_order } };
1161 for (tree t1 = TREE_VALUE (t); t1; t1 = TREE_CHAIN (t1))
1162 for (unsigned i = 0; i < ARRAY_SIZE (props); i++)
1163 if (!strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t1)),
1164 props[i].selector)
1165 && !strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t)),
1166 props[i].set))
1167 for (tree t2 = TREE_VALUE (t1); t2; t2 = TREE_CHAIN (t2))
1168 for (unsigned j = 0; ; j++)
1170 if (props[i].props[j] == NULL)
1172 if (TREE_PURPOSE (t2)
1173 && !strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
1174 " score"))
1175 break;
1176 if (props[i].props == atomic_default_mem_order)
1178 error_at (loc,
1179 "incorrect property %qs of %qs selector",
1180 IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
1181 "atomic_default_mem_order");
1182 return error_mark_node;
1184 else if (TREE_PURPOSE (t2))
1185 warning_at (loc, 0,
1186 "unknown property %qs of %qs selector",
1187 IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
1188 props[i].selector);
1189 else
1190 warning_at (loc, 0,
1191 "unknown property %qE of %qs selector",
1192 TREE_VALUE (t2), props[i].selector);
1193 break;
1195 else if (TREE_PURPOSE (t2) == NULL_TREE)
1197 const char *str = TREE_STRING_POINTER (TREE_VALUE (t2));
1198 if (!strcmp (str, props[i].props[j])
1199 && ((size_t) TREE_STRING_LENGTH (TREE_VALUE (t2))
1200 == strlen (str) + (lang_GNU_Fortran () ? 0 : 1)))
1201 break;
1203 else if (!strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
1204 props[i].props[j]))
1205 break;
1208 return ctx;
1212 /* Register VARIANT as variant of some base function marked with
1213 #pragma omp declare variant. CONSTRUCT is corresponding construct
1214 selector set. */
1216 void
1217 omp_mark_declare_variant (location_t loc, tree variant, tree construct)
1219 tree attr = lookup_attribute ("omp declare variant variant",
1220 DECL_ATTRIBUTES (variant));
1221 if (attr == NULL_TREE)
1223 attr = tree_cons (get_identifier ("omp declare variant variant"),
1224 unshare_expr (construct),
1225 DECL_ATTRIBUTES (variant));
1226 DECL_ATTRIBUTES (variant) = attr;
1227 return;
1229 if ((TREE_VALUE (attr) != NULL_TREE) != (construct != NULL_TREE)
1230 || (construct != NULL_TREE
1231 && omp_context_selector_set_compare ("construct", TREE_VALUE (attr),
1232 construct)))
1233 error_at (loc, "%qD used as a variant with incompatible %<construct%> "
1234 "selector sets", variant);
1238 /* Return a name from PROP, a property in selectors accepting
1239 name lists. */
1241 static const char *
1242 omp_context_name_list_prop (tree prop)
1244 if (TREE_PURPOSE (prop))
1245 return IDENTIFIER_POINTER (TREE_PURPOSE (prop));
1246 else
1248 const char *ret = TREE_STRING_POINTER (TREE_VALUE (prop));
1249 if ((size_t) TREE_STRING_LENGTH (TREE_VALUE (prop))
1250 == strlen (ret) + (lang_GNU_Fortran () ? 0 : 1))
1251 return ret;
1252 return NULL;
1256 /* Return 1 if context selector matches the current OpenMP context, 0
1257 if it does not and -1 if it is unknown and need to be determined later.
1258 Some properties can be checked right away during parsing (this routine),
1259 others need to wait until the whole TU is parsed, others need to wait until
1260 IPA, others until vectorization. */
1263 omp_context_selector_matches (tree ctx)
1265 int ret = 1;
1266 for (tree t1 = ctx; t1; t1 = TREE_CHAIN (t1))
1268 char set = IDENTIFIER_POINTER (TREE_PURPOSE (t1))[0];
1269 if (set == 'c')
1271 /* For now, ignore the construct set. While something can be
1272 determined already during parsing, we don't know until end of TU
1273 whether additional constructs aren't added through declare variant
1274 unless "omp declare variant variant" attribute exists already
1275 (so in most of the cases), and we'd need to maintain set of
1276 surrounding OpenMP constructs, which is better handled during
1277 gimplification. */
1278 if (symtab->state == PARSING)
1280 ret = -1;
1281 continue;
1284 enum tree_code constructs[5];
1285 int nconstructs
1286 = omp_constructor_traits_to_codes (TREE_VALUE (t1), constructs);
1288 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1290 if (!cfun->after_inlining)
1292 ret = -1;
1293 continue;
1295 int i;
1296 for (i = 0; i < nconstructs; ++i)
1297 if (constructs[i] == OMP_SIMD)
1298 break;
1299 if (i < nconstructs)
1301 ret = -1;
1302 continue;
1304 /* If there is no simd, assume it is ok after IPA,
1305 constructs should have been checked before. */
1306 continue;
1309 int r = omp_construct_selector_matches (constructs, nconstructs,
1310 NULL);
1311 if (r == 0)
1312 return 0;
1313 if (r == -1)
1314 ret = -1;
1315 continue;
1317 for (tree t2 = TREE_VALUE (t1); t2; t2 = TREE_CHAIN (t2))
1319 const char *sel = IDENTIFIER_POINTER (TREE_PURPOSE (t2));
1320 switch (*sel)
1322 case 'v':
1323 if (set == 'i' && !strcmp (sel, "vendor"))
1324 for (tree t3 = TREE_VALUE (t2); t3; t3 = TREE_CHAIN (t3))
1326 const char *prop = omp_context_name_list_prop (t3);
1327 if (prop == NULL)
1328 return 0;
1329 if ((!strcmp (prop, " score") && TREE_PURPOSE (t3))
1330 || !strcmp (prop, "gnu"))
1331 continue;
1332 return 0;
1334 break;
1335 case 'e':
1336 if (set == 'i' && !strcmp (sel, "extension"))
1337 /* We don't support any extensions right now. */
1338 return 0;
1339 break;
1340 case 'a':
1341 if (set == 'i' && !strcmp (sel, "atomic_default_mem_order"))
1343 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1344 break;
1346 enum omp_memory_order omo
1347 = ((enum omp_memory_order)
1348 (omp_requires_mask
1349 & OMP_REQUIRES_ATOMIC_DEFAULT_MEM_ORDER));
1350 if (omo == OMP_MEMORY_ORDER_UNSPECIFIED)
1352 /* We don't know yet, until end of TU. */
1353 if (symtab->state == PARSING)
1355 ret = -1;
1356 break;
1358 else
1359 omo = OMP_MEMORY_ORDER_RELAXED;
1361 tree t3 = TREE_VALUE (t2);
1362 const char *prop = IDENTIFIER_POINTER (TREE_PURPOSE (t3));
1363 if (!strcmp (prop, " score"))
1365 t3 = TREE_CHAIN (t3);
1366 prop = IDENTIFIER_POINTER (TREE_PURPOSE (t3));
1368 if (!strcmp (prop, "relaxed")
1369 && omo != OMP_MEMORY_ORDER_RELAXED)
1370 return 0;
1371 else if (!strcmp (prop, "seq_cst")
1372 && omo != OMP_MEMORY_ORDER_SEQ_CST)
1373 return 0;
1374 else if (!strcmp (prop, "acq_rel")
1375 && omo != OMP_MEMORY_ORDER_ACQ_REL)
1376 return 0;
1378 if (set == 'd' && !strcmp (sel, "arch"))
1379 for (tree t3 = TREE_VALUE (t2); t3; t3 = TREE_CHAIN (t3))
1381 const char *arch = omp_context_name_list_prop (t3);
1382 if (arch == NULL)
1383 return 0;
1384 int r = 0;
1385 if (targetm.omp.device_kind_arch_isa != NULL)
1386 r = targetm.omp.device_kind_arch_isa (omp_device_arch,
1387 arch);
1388 if (r == 0 || (r == -1 && symtab->state != PARSING))
1390 /* If we are or might be in a target region or
1391 declare target function, need to take into account
1392 also offloading values. */
1393 if (!omp_maybe_offloaded ())
1394 return 0;
1395 if (ENABLE_OFFLOADING)
1397 const char *arches = omp_offload_device_arch;
1398 if (omp_offload_device_kind_arch_isa (arches,
1399 arch))
1401 ret = -1;
1402 continue;
1405 return 0;
1407 else if (r == -1)
1408 ret = -1;
1409 /* If arch matches on the host, it still might not match
1410 in the offloading region. */
1411 else if (omp_maybe_offloaded ())
1412 ret = -1;
1414 break;
1415 case 'u':
1416 if (set == 'i' && !strcmp (sel, "unified_address"))
1418 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1419 break;
1421 if ((omp_requires_mask & OMP_REQUIRES_UNIFIED_ADDRESS) == 0)
1423 if (symtab->state == PARSING)
1424 ret = -1;
1425 else
1426 return 0;
1428 break;
1430 if (set == 'i' && !strcmp (sel, "unified_shared_memory"))
1432 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1433 break;
1435 if ((omp_requires_mask
1436 & OMP_REQUIRES_UNIFIED_SHARED_MEMORY) == 0)
1438 if (symtab->state == PARSING)
1439 ret = -1;
1440 else
1441 return 0;
1443 break;
1445 break;
1446 case 'd':
1447 if (set == 'i' && !strcmp (sel, "dynamic_allocators"))
1449 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1450 break;
1452 if ((omp_requires_mask
1453 & OMP_REQUIRES_DYNAMIC_ALLOCATORS) == 0)
1455 if (symtab->state == PARSING)
1456 ret = -1;
1457 else
1458 return 0;
1460 break;
1462 break;
1463 case 'r':
1464 if (set == 'i' && !strcmp (sel, "reverse_offload"))
1466 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
1467 break;
1469 if ((omp_requires_mask & OMP_REQUIRES_REVERSE_OFFLOAD) == 0)
1471 if (symtab->state == PARSING)
1472 ret = -1;
1473 else
1474 return 0;
1476 break;
1478 break;
1479 case 'k':
1480 if (set == 'd' && !strcmp (sel, "kind"))
1481 for (tree t3 = TREE_VALUE (t2); t3; t3 = TREE_CHAIN (t3))
1483 const char *prop = omp_context_name_list_prop (t3);
1484 if (prop == NULL)
1485 return 0;
1486 if (!strcmp (prop, "any"))
1487 continue;
1488 if (!strcmp (prop, "host"))
1490 if (omp_maybe_offloaded ())
1491 ret = -1;
1492 continue;
1494 if (!strcmp (prop, "nohost"))
1496 if (omp_maybe_offloaded ())
1497 ret = -1;
1498 else
1499 return 0;
1500 continue;
1502 int r = 0;
1503 if (targetm.omp.device_kind_arch_isa != NULL)
1504 r = targetm.omp.device_kind_arch_isa (omp_device_kind,
1505 prop);
1506 else
1507 r = strcmp (prop, "cpu") == 0;
1508 if (r == 0 || (r == -1 && symtab->state != PARSING))
1510 /* If we are or might be in a target region or
1511 declare target function, need to take into account
1512 also offloading values. */
1513 if (!omp_maybe_offloaded ())
1514 return 0;
1515 if (ENABLE_OFFLOADING)
1517 const char *kinds = omp_offload_device_kind;
1518 if (omp_offload_device_kind_arch_isa (kinds, prop))
1520 ret = -1;
1521 continue;
1524 return 0;
1526 else if (r == -1)
1527 ret = -1;
1528 /* If kind matches on the host, it still might not match
1529 in the offloading region. */
1530 else if (omp_maybe_offloaded ())
1531 ret = -1;
1533 break;
1534 case 'i':
1535 if (set == 'd' && !strcmp (sel, "isa"))
1536 for (tree t3 = TREE_VALUE (t2); t3; t3 = TREE_CHAIN (t3))
1538 const char *isa = omp_context_name_list_prop (t3);
1539 if (isa == NULL)
1540 return 0;
1541 int r = 0;
1542 if (targetm.omp.device_kind_arch_isa != NULL)
1543 r = targetm.omp.device_kind_arch_isa (omp_device_isa,
1544 isa);
1545 if (r == 0 || (r == -1 && symtab->state != PARSING))
1547 /* If isa is valid on the target, but not in the
1548 current function and current function has
1549 #pragma omp declare simd on it, some simd clones
1550 might have the isa added later on. */
1551 if (r == -1
1552 && targetm.simd_clone.compute_vecsize_and_simdlen
1553 && (cfun == NULL || !cfun->after_inlining))
1555 tree attrs
1556 = DECL_ATTRIBUTES (current_function_decl);
1557 if (lookup_attribute ("omp declare simd", attrs))
1559 ret = -1;
1560 continue;
1563 /* If we are or might be in a target region or
1564 declare target function, need to take into account
1565 also offloading values. */
1566 if (!omp_maybe_offloaded ())
1567 return 0;
1568 if (ENABLE_OFFLOADING)
1570 const char *isas = omp_offload_device_isa;
1571 if (omp_offload_device_kind_arch_isa (isas, isa))
1573 ret = -1;
1574 continue;
1577 return 0;
1579 else if (r == -1)
1580 ret = -1;
1581 /* If isa matches on the host, it still might not match
1582 in the offloading region. */
1583 else if (omp_maybe_offloaded ())
1584 ret = -1;
1586 break;
1587 case 'c':
1588 if (set == 'u' && !strcmp (sel, "condition"))
1589 for (tree t3 = TREE_VALUE (t2); t3; t3 = TREE_CHAIN (t3))
1590 if (TREE_PURPOSE (t3) == NULL_TREE)
1592 if (integer_zerop (TREE_VALUE (t3)))
1593 return 0;
1594 if (integer_nonzerop (TREE_VALUE (t3)))
1595 break;
1596 ret = -1;
1598 break;
1599 default:
1600 break;
1604 return ret;
1607 /* Compare construct={simd} CLAUSES1 with CLAUSES2, return 0/-1/1/2 as
1608 in omp_context_selector_set_compare. */
1610 static int
1611 omp_construct_simd_compare (tree clauses1, tree clauses2)
1613 if (clauses1 == NULL_TREE)
1614 return clauses2 == NULL_TREE ? 0 : -1;
1615 if (clauses2 == NULL_TREE)
1616 return 1;
1618 int r = 0;
1619 struct declare_variant_simd_data {
1620 bool inbranch, notinbranch;
1621 tree simdlen;
1622 auto_vec<tree,16> data_sharing;
1623 auto_vec<tree,16> aligned;
1624 declare_variant_simd_data ()
1625 : inbranch(false), notinbranch(false), simdlen(NULL_TREE) {}
1626 } data[2];
1627 unsigned int i;
1628 for (i = 0; i < 2; i++)
1629 for (tree c = i ? clauses2 : clauses1; c; c = OMP_CLAUSE_CHAIN (c))
1631 vec<tree> *v;
1632 switch (OMP_CLAUSE_CODE (c))
1634 case OMP_CLAUSE_INBRANCH:
1635 data[i].inbranch = true;
1636 continue;
1637 case OMP_CLAUSE_NOTINBRANCH:
1638 data[i].notinbranch = true;
1639 continue;
1640 case OMP_CLAUSE_SIMDLEN:
1641 data[i].simdlen = OMP_CLAUSE_SIMDLEN_EXPR (c);
1642 continue;
1643 case OMP_CLAUSE_UNIFORM:
1644 case OMP_CLAUSE_LINEAR:
1645 v = &data[i].data_sharing;
1646 break;
1647 case OMP_CLAUSE_ALIGNED:
1648 v = &data[i].aligned;
1649 break;
1650 default:
1651 gcc_unreachable ();
1653 unsigned HOST_WIDE_INT argno = tree_to_uhwi (OMP_CLAUSE_DECL (c));
1654 if (argno >= v->length ())
1655 v->safe_grow_cleared (argno + 1, true);
1656 (*v)[argno] = c;
1658 /* Here, r is used as a bitmask, 2 is set if CLAUSES1 has something
1659 CLAUSES2 doesn't, 1 is set if CLAUSES2 has something CLAUSES1
1660 doesn't. Thus, r == 3 implies return value 2, r == 1 implies
1661 -1, r == 2 implies 1 and r == 0 implies 0. */
1662 if (data[0].inbranch != data[1].inbranch)
1663 r |= data[0].inbranch ? 2 : 1;
1664 if (data[0].notinbranch != data[1].notinbranch)
1665 r |= data[0].notinbranch ? 2 : 1;
1666 if (!simple_cst_equal (data[0].simdlen, data[1].simdlen))
1668 if (data[0].simdlen && data[1].simdlen)
1669 return 2;
1670 r |= data[0].simdlen ? 2 : 1;
1672 if (data[0].data_sharing.length () < data[1].data_sharing.length ()
1673 || data[0].aligned.length () < data[1].aligned.length ())
1674 r |= 1;
1675 tree c1, c2;
1676 FOR_EACH_VEC_ELT (data[0].data_sharing, i, c1)
1678 c2 = (i < data[1].data_sharing.length ()
1679 ? data[1].data_sharing[i] : NULL_TREE);
1680 if ((c1 == NULL_TREE) != (c2 == NULL_TREE))
1682 r |= c1 != NULL_TREE ? 2 : 1;
1683 continue;
1685 if (c1 == NULL_TREE)
1686 continue;
1687 if (OMP_CLAUSE_CODE (c1) != OMP_CLAUSE_CODE (c2))
1688 return 2;
1689 if (OMP_CLAUSE_CODE (c1) != OMP_CLAUSE_LINEAR)
1690 continue;
1691 if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c1)
1692 != OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (c2))
1693 return 2;
1694 if (OMP_CLAUSE_LINEAR_KIND (c1) != OMP_CLAUSE_LINEAR_KIND (c2))
1695 return 2;
1696 if (!simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (c1),
1697 OMP_CLAUSE_LINEAR_STEP (c2)))
1698 return 2;
1700 FOR_EACH_VEC_ELT (data[0].aligned, i, c1)
1702 c2 = i < data[1].aligned.length () ? data[1].aligned[i] : NULL_TREE;
1703 if ((c1 == NULL_TREE) != (c2 == NULL_TREE))
1705 r |= c1 != NULL_TREE ? 2 : 1;
1706 continue;
1708 if (c1 == NULL_TREE)
1709 continue;
1710 if (!simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (c1),
1711 OMP_CLAUSE_ALIGNED_ALIGNMENT (c2)))
1712 return 2;
1714 switch (r)
1716 case 0: return 0;
1717 case 1: return -1;
1718 case 2: return 1;
1719 case 3: return 2;
1720 default: gcc_unreachable ();
1724 /* Compare properties of selectors SEL from SET other than construct.
1725 Return 0/-1/1/2 as in omp_context_selector_set_compare.
1726 Unlike set names or selector names, properties can have duplicates. */
1728 static int
1729 omp_context_selector_props_compare (const char *set, const char *sel,
1730 tree ctx1, tree ctx2)
1732 int ret = 0;
1733 for (int pass = 0; pass < 2; pass++)
1734 for (tree t1 = pass ? ctx2 : ctx1; t1; t1 = TREE_CHAIN (t1))
1736 tree t2;
1737 for (t2 = pass ? ctx1 : ctx2; t2; t2 = TREE_CHAIN (t2))
1738 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1740 if (TREE_PURPOSE (t1) == NULL_TREE)
1742 if (set[0] == 'u' && strcmp (sel, "condition") == 0)
1744 if (integer_zerop (TREE_VALUE (t1))
1745 != integer_zerop (TREE_VALUE (t2)))
1746 return 2;
1747 break;
1749 if (simple_cst_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
1750 break;
1752 else if (strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t1)),
1753 " score") == 0)
1755 if (!simple_cst_equal (TREE_VALUE (t1), TREE_VALUE (t2)))
1756 return 2;
1757 break;
1759 else
1760 break;
1762 else if (TREE_PURPOSE (t1)
1763 && TREE_PURPOSE (t2) == NULL_TREE
1764 && TREE_CODE (TREE_VALUE (t2)) == STRING_CST)
1766 const char *p1 = omp_context_name_list_prop (t1);
1767 const char *p2 = omp_context_name_list_prop (t2);
1768 if (p2
1769 && strcmp (p1, p2) == 0
1770 && strcmp (p1, " score"))
1771 break;
1773 else if (TREE_PURPOSE (t1) == NULL_TREE
1774 && TREE_PURPOSE (t2)
1775 && TREE_CODE (TREE_VALUE (t1)) == STRING_CST)
1777 const char *p1 = omp_context_name_list_prop (t1);
1778 const char *p2 = omp_context_name_list_prop (t2);
1779 if (p1
1780 && strcmp (p1, p2) == 0
1781 && strcmp (p1, " score"))
1782 break;
1784 if (t2 == NULL_TREE)
1786 int r = pass ? -1 : 1;
1787 if (ret && ret != r)
1788 return 2;
1789 else if (pass)
1790 return r;
1791 else
1793 ret = r;
1794 break;
1798 return ret;
1801 /* Compare single context selector sets CTX1 and CTX2 with SET name.
1802 Return 0 if CTX1 is equal to CTX2,
1803 -1 if CTX1 is a strict subset of CTX2,
1804 1 if CTX2 is a strict subset of CTX1, or
1805 2 if neither context is a subset of another one. */
1808 omp_context_selector_set_compare (const char *set, tree ctx1, tree ctx2)
1810 bool swapped = false;
1811 int ret = 0;
1812 int len1 = list_length (ctx1);
1813 int len2 = list_length (ctx2);
1814 int cnt = 0;
1815 if (len1 < len2)
1817 swapped = true;
1818 std::swap (ctx1, ctx2);
1819 std::swap (len1, len2);
1821 if (set[0] == 'c')
1823 tree t1;
1824 tree t2 = ctx2;
1825 tree simd = get_identifier ("simd");
1826 /* Handle construct set specially. In this case the order
1827 of the selector matters too. */
1828 for (t1 = ctx1; t1; t1 = TREE_CHAIN (t1))
1829 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1831 int r = 0;
1832 if (TREE_PURPOSE (t1) == simd)
1833 r = omp_construct_simd_compare (TREE_VALUE (t1),
1834 TREE_VALUE (t2));
1835 if (r == 2 || (ret && r && (ret < 0) != (r < 0)))
1836 return 2;
1837 if (ret == 0)
1838 ret = r;
1839 t2 = TREE_CHAIN (t2);
1840 if (t2 == NULL_TREE)
1842 t1 = TREE_CHAIN (t1);
1843 break;
1846 else if (ret < 0)
1847 return 2;
1848 else
1849 ret = 1;
1850 if (t2 != NULL_TREE)
1851 return 2;
1852 if (t1 != NULL_TREE)
1854 if (ret < 0)
1855 return 2;
1856 ret = 1;
1858 if (ret == 0)
1859 return 0;
1860 return swapped ? -ret : ret;
1862 for (tree t1 = ctx1; t1; t1 = TREE_CHAIN (t1))
1864 tree t2;
1865 for (t2 = ctx2; t2; t2 = TREE_CHAIN (t2))
1866 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1868 const char *sel = IDENTIFIER_POINTER (TREE_PURPOSE (t1));
1869 int r = omp_context_selector_props_compare (set, sel,
1870 TREE_VALUE (t1),
1871 TREE_VALUE (t2));
1872 if (r == 2 || (ret && r && (ret < 0) != (r < 0)))
1873 return 2;
1874 if (ret == 0)
1875 ret = r;
1876 cnt++;
1877 break;
1879 if (t2 == NULL_TREE)
1881 if (ret == -1)
1882 return 2;
1883 ret = 1;
1886 if (cnt < len2)
1887 return 2;
1888 if (ret == 0)
1889 return 0;
1890 return swapped ? -ret : ret;
1893 /* Compare whole context selector specification CTX1 and CTX2.
1894 Return 0 if CTX1 is equal to CTX2,
1895 -1 if CTX1 is a strict subset of CTX2,
1896 1 if CTX2 is a strict subset of CTX1, or
1897 2 if neither context is a subset of another one. */
1899 static int
1900 omp_context_selector_compare (tree ctx1, tree ctx2)
1902 bool swapped = false;
1903 int ret = 0;
1904 int len1 = list_length (ctx1);
1905 int len2 = list_length (ctx2);
1906 int cnt = 0;
1907 if (len1 < len2)
1909 swapped = true;
1910 std::swap (ctx1, ctx2);
1911 std::swap (len1, len2);
1913 for (tree t1 = ctx1; t1; t1 = TREE_CHAIN (t1))
1915 tree t2;
1916 for (t2 = ctx2; t2; t2 = TREE_CHAIN (t2))
1917 if (TREE_PURPOSE (t1) == TREE_PURPOSE (t2))
1919 const char *set = IDENTIFIER_POINTER (TREE_PURPOSE (t1));
1920 int r = omp_context_selector_set_compare (set, TREE_VALUE (t1),
1921 TREE_VALUE (t2));
1922 if (r == 2 || (ret && r && (ret < 0) != (r < 0)))
1923 return 2;
1924 if (ret == 0)
1925 ret = r;
1926 cnt++;
1927 break;
1929 if (t2 == NULL_TREE)
1931 if (ret == -1)
1932 return 2;
1933 ret = 1;
1936 if (cnt < len2)
1937 return 2;
1938 if (ret == 0)
1939 return 0;
1940 return swapped ? -ret : ret;
1943 /* From context selector CTX, return trait-selector with name SEL in
1944 trait-selector-set with name SET if any, or NULL_TREE if not found.
1945 If SEL is NULL, return the list of trait-selectors in SET. */
1947 tree
1948 omp_get_context_selector (tree ctx, const char *set, const char *sel)
1950 tree setid = get_identifier (set);
1951 tree selid = sel ? get_identifier (sel) : NULL_TREE;
1952 for (tree t1 = ctx; t1; t1 = TREE_CHAIN (t1))
1953 if (TREE_PURPOSE (t1) == setid)
1955 if (sel == NULL)
1956 return TREE_VALUE (t1);
1957 for (tree t2 = TREE_VALUE (t1); t2; t2 = TREE_CHAIN (t2))
1958 if (TREE_PURPOSE (t2) == selid)
1959 return t2;
1961 return NULL_TREE;
1964 /* Compute *SCORE for context selector CTX. Return true if the score
1965 would be different depending on whether it is a declare simd clone or
1966 not. DECLARE_SIMD should be true for the case when it would be
1967 a declare simd clone. */
1969 static bool
1970 omp_context_compute_score (tree ctx, widest_int *score, bool declare_simd)
1972 tree construct = omp_get_context_selector (ctx, "construct", NULL);
1973 bool has_kind = omp_get_context_selector (ctx, "device", "kind");
1974 bool has_arch = omp_get_context_selector (ctx, "device", "arch");
1975 bool has_isa = omp_get_context_selector (ctx, "device", "isa");
1976 bool ret = false;
1977 *score = 1;
1978 for (tree t1 = ctx; t1; t1 = TREE_CHAIN (t1))
1979 if (TREE_VALUE (t1) != construct)
1980 for (tree t2 = TREE_VALUE (t1); t2; t2 = TREE_CHAIN (t2))
1981 if (tree t3 = TREE_VALUE (t2))
1982 if (TREE_PURPOSE (t3)
1983 && strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t3)), " score") == 0
1984 && TREE_CODE (TREE_VALUE (t3)) == INTEGER_CST)
1985 *score += wi::to_widest (TREE_VALUE (t3));
1986 if (construct || has_kind || has_arch || has_isa)
1988 int scores[12];
1989 enum tree_code constructs[5];
1990 int nconstructs = 0;
1991 if (construct)
1992 nconstructs = omp_constructor_traits_to_codes (construct, constructs);
1993 if (omp_construct_selector_matches (constructs, nconstructs, scores)
1994 == 2)
1995 ret = true;
1996 int b = declare_simd ? nconstructs + 1 : 0;
1997 if (scores[b + nconstructs] + 4U < score->get_precision ())
1999 for (int n = 0; n < nconstructs; ++n)
2001 if (scores[b + n] < 0)
2003 *score = -1;
2004 return ret;
2006 *score += wi::shifted_mask <widest_int> (scores[b + n], 1, false);
2008 if (has_kind)
2009 *score += wi::shifted_mask <widest_int> (scores[b + nconstructs],
2010 1, false);
2011 if (has_arch)
2012 *score += wi::shifted_mask <widest_int> (scores[b + nconstructs] + 1,
2013 1, false);
2014 if (has_isa)
2015 *score += wi::shifted_mask <widest_int> (scores[b + nconstructs] + 2,
2016 1, false);
2018 else /* FIXME: Implement this. */
2019 gcc_unreachable ();
2021 return ret;
2024 /* Class describing a single variant. */
2025 struct GTY(()) omp_declare_variant_entry {
2026 /* NODE of the variant. */
2027 cgraph_node *variant;
2028 /* Score if not in declare simd clone. */
2029 widest_int score;
2030 /* Score if in declare simd clone. */
2031 widest_int score_in_declare_simd_clone;
2032 /* Context selector for the variant. */
2033 tree ctx;
2034 /* True if the context selector is known to match already. */
2035 bool matches;
2038 /* Class describing a function with variants. */
2039 struct GTY((for_user)) omp_declare_variant_base_entry {
2040 /* NODE of the base function. */
2041 cgraph_node *base;
2042 /* NODE of the artificial function created for the deferred variant
2043 resolution. */
2044 cgraph_node *node;
2045 /* Vector of the variants. */
2046 vec<omp_declare_variant_entry, va_gc> *variants;
2049 struct omp_declare_variant_hasher
2050 : ggc_ptr_hash<omp_declare_variant_base_entry> {
2051 static hashval_t hash (omp_declare_variant_base_entry *);
2052 static bool equal (omp_declare_variant_base_entry *,
2053 omp_declare_variant_base_entry *);
2056 hashval_t
2057 omp_declare_variant_hasher::hash (omp_declare_variant_base_entry *x)
2059 inchash::hash hstate;
2060 hstate.add_int (DECL_UID (x->base->decl));
2061 hstate.add_int (x->variants->length ());
2062 omp_declare_variant_entry *variant;
2063 unsigned int i;
2064 FOR_EACH_VEC_SAFE_ELT (x->variants, i, variant)
2066 hstate.add_int (DECL_UID (variant->variant->decl));
2067 hstate.add_wide_int (variant->score);
2068 hstate.add_wide_int (variant->score_in_declare_simd_clone);
2069 hstate.add_ptr (variant->ctx);
2070 hstate.add_int (variant->matches);
2072 return hstate.end ();
2075 bool
2076 omp_declare_variant_hasher::equal (omp_declare_variant_base_entry *x,
2077 omp_declare_variant_base_entry *y)
2079 if (x->base != y->base
2080 || x->variants->length () != y->variants->length ())
2081 return false;
2082 omp_declare_variant_entry *variant;
2083 unsigned int i;
2084 FOR_EACH_VEC_SAFE_ELT (x->variants, i, variant)
2085 if (variant->variant != (*y->variants)[i].variant
2086 || variant->score != (*y->variants)[i].score
2087 || (variant->score_in_declare_simd_clone
2088 != (*y->variants)[i].score_in_declare_simd_clone)
2089 || variant->ctx != (*y->variants)[i].ctx
2090 || variant->matches != (*y->variants)[i].matches)
2091 return false;
2092 return true;
2095 static GTY(()) hash_table<omp_declare_variant_hasher> *omp_declare_variants;
2097 struct omp_declare_variant_alt_hasher
2098 : ggc_ptr_hash<omp_declare_variant_base_entry> {
2099 static hashval_t hash (omp_declare_variant_base_entry *);
2100 static bool equal (omp_declare_variant_base_entry *,
2101 omp_declare_variant_base_entry *);
2104 hashval_t
2105 omp_declare_variant_alt_hasher::hash (omp_declare_variant_base_entry *x)
2107 return DECL_UID (x->node->decl);
2110 bool
2111 omp_declare_variant_alt_hasher::equal (omp_declare_variant_base_entry *x,
2112 omp_declare_variant_base_entry *y)
2114 return x->node == y->node;
2117 static GTY(()) hash_table<omp_declare_variant_alt_hasher>
2118 *omp_declare_variant_alt;
2120 /* Try to resolve declare variant after gimplification. */
2122 static tree
2123 omp_resolve_late_declare_variant (tree alt)
2125 cgraph_node *node = cgraph_node::get (alt);
2126 cgraph_node *cur_node = cgraph_node::get (cfun->decl);
2127 if (node == NULL
2128 || !node->declare_variant_alt
2129 || !cfun->after_inlining)
2130 return alt;
2132 omp_declare_variant_base_entry entry;
2133 entry.base = NULL;
2134 entry.node = node;
2135 entry.variants = NULL;
2136 omp_declare_variant_base_entry *entryp
2137 = omp_declare_variant_alt->find_with_hash (&entry, DECL_UID (alt));
2139 unsigned int i, j;
2140 omp_declare_variant_entry *varentry1, *varentry2;
2141 auto_vec <bool, 16> matches;
2142 unsigned int nmatches = 0;
2143 FOR_EACH_VEC_SAFE_ELT (entryp->variants, i, varentry1)
2145 if (varentry1->matches)
2147 /* This has been checked to be ok already. */
2148 matches.safe_push (true);
2149 nmatches++;
2150 continue;
2152 switch (omp_context_selector_matches (varentry1->ctx))
2154 case 0:
2155 matches.safe_push (false);
2156 break;
2157 case -1:
2158 return alt;
2159 default:
2160 matches.safe_push (true);
2161 nmatches++;
2162 break;
2166 if (nmatches == 0)
2167 return entryp->base->decl;
2169 /* A context selector that is a strict subset of another context selector
2170 has a score of zero. */
2171 FOR_EACH_VEC_SAFE_ELT (entryp->variants, i, varentry1)
2172 if (matches[i])
2174 for (j = i + 1;
2175 vec_safe_iterate (entryp->variants, j, &varentry2); ++j)
2176 if (matches[j])
2178 int r = omp_context_selector_compare (varentry1->ctx,
2179 varentry2->ctx);
2180 if (r == -1)
2182 /* ctx1 is a strict subset of ctx2, ignore ctx1. */
2183 matches[i] = false;
2184 break;
2186 else if (r == 1)
2187 /* ctx2 is a strict subset of ctx1, remove ctx2. */
2188 matches[j] = false;
2192 widest_int max_score = -1;
2193 varentry2 = NULL;
2194 FOR_EACH_VEC_SAFE_ELT (entryp->variants, i, varentry1)
2195 if (matches[i])
2197 widest_int score
2198 = (cur_node->simdclone ? varentry1->score_in_declare_simd_clone
2199 : varentry1->score);
2200 if (score > max_score)
2202 max_score = score;
2203 varentry2 = varentry1;
2206 return varentry2->variant->decl;
2209 /* Hook to adjust hash tables on cgraph_node removal. */
2211 static void
2212 omp_declare_variant_remove_hook (struct cgraph_node *node, void *)
2214 if (!node->declare_variant_alt)
2215 return;
2217 /* Drop this hash table completely. */
2218 omp_declare_variants = NULL;
2219 /* And remove node from the other hash table. */
2220 if (omp_declare_variant_alt)
2222 omp_declare_variant_base_entry entry;
2223 entry.base = NULL;
2224 entry.node = node;
2225 entry.variants = NULL;
2226 omp_declare_variant_alt->remove_elt_with_hash (&entry,
2227 DECL_UID (node->decl));
2231 /* Try to resolve declare variant, return the variant decl if it should
2232 be used instead of base, or base otherwise. */
2234 tree
2235 omp_resolve_declare_variant (tree base)
2237 tree variant1 = NULL_TREE, variant2 = NULL_TREE;
2238 if (cfun && (cfun->curr_properties & PROP_gimple_any) != 0)
2239 return omp_resolve_late_declare_variant (base);
2241 auto_vec <tree, 16> variants;
2242 auto_vec <bool, 16> defer;
2243 bool any_deferred = false;
2244 for (tree attr = DECL_ATTRIBUTES (base); attr; attr = TREE_CHAIN (attr))
2246 attr = lookup_attribute ("omp declare variant base", attr);
2247 if (attr == NULL_TREE)
2248 break;
2249 if (TREE_CODE (TREE_PURPOSE (TREE_VALUE (attr))) != FUNCTION_DECL)
2250 continue;
2251 cgraph_node *node = cgraph_node::get (base);
2252 /* If this is already a magic decl created by this function,
2253 don't process it again. */
2254 if (node && node->declare_variant_alt)
2255 return base;
2256 switch (omp_context_selector_matches (TREE_VALUE (TREE_VALUE (attr))))
2258 case 0:
2259 /* No match, ignore. */
2260 break;
2261 case -1:
2262 /* Needs to be deferred. */
2263 any_deferred = true;
2264 variants.safe_push (attr);
2265 defer.safe_push (true);
2266 break;
2267 default:
2268 variants.safe_push (attr);
2269 defer.safe_push (false);
2270 break;
2273 if (variants.length () == 0)
2274 return base;
2276 if (any_deferred)
2278 widest_int max_score1 = 0;
2279 widest_int max_score2 = 0;
2280 bool first = true;
2281 unsigned int i;
2282 tree attr1, attr2;
2283 omp_declare_variant_base_entry entry;
2284 entry.base = cgraph_node::get_create (base);
2285 entry.node = NULL;
2286 vec_alloc (entry.variants, variants.length ());
2287 FOR_EACH_VEC_ELT (variants, i, attr1)
2289 widest_int score1;
2290 widest_int score2;
2291 bool need_two;
2292 tree ctx = TREE_VALUE (TREE_VALUE (attr1));
2293 need_two = omp_context_compute_score (ctx, &score1, false);
2294 if (need_two)
2295 omp_context_compute_score (ctx, &score2, true);
2296 else
2297 score2 = score1;
2298 if (first)
2300 first = false;
2301 max_score1 = score1;
2302 max_score2 = score2;
2303 if (!defer[i])
2305 variant1 = attr1;
2306 variant2 = attr1;
2309 else
2311 if (max_score1 == score1)
2312 variant1 = NULL_TREE;
2313 else if (score1 > max_score1)
2315 max_score1 = score1;
2316 variant1 = defer[i] ? NULL_TREE : attr1;
2318 if (max_score2 == score2)
2319 variant2 = NULL_TREE;
2320 else if (score2 > max_score2)
2322 max_score2 = score2;
2323 variant2 = defer[i] ? NULL_TREE : attr1;
2326 omp_declare_variant_entry varentry;
2327 varentry.variant
2328 = cgraph_node::get_create (TREE_PURPOSE (TREE_VALUE (attr1)));
2329 varentry.score = score1;
2330 varentry.score_in_declare_simd_clone = score2;
2331 varentry.ctx = ctx;
2332 varentry.matches = !defer[i];
2333 entry.variants->quick_push (varentry);
2336 /* If there is a clear winner variant with the score which is not
2337 deferred, verify it is not a strict subset of any other context
2338 selector and if it is not, it is the best alternative no matter
2339 whether the others do or don't match. */
2340 if (variant1 && variant1 == variant2)
2342 tree ctx1 = TREE_VALUE (TREE_VALUE (variant1));
2343 FOR_EACH_VEC_ELT (variants, i, attr2)
2345 if (attr2 == variant1)
2346 continue;
2347 tree ctx2 = TREE_VALUE (TREE_VALUE (attr2));
2348 int r = omp_context_selector_compare (ctx1, ctx2);
2349 if (r == -1)
2351 /* The winner is a strict subset of ctx2, can't
2352 decide now. */
2353 variant1 = NULL_TREE;
2354 break;
2357 if (variant1)
2359 vec_free (entry.variants);
2360 return TREE_PURPOSE (TREE_VALUE (variant1));
2364 static struct cgraph_node_hook_list *node_removal_hook_holder;
2365 if (!node_removal_hook_holder)
2366 node_removal_hook_holder
2367 = symtab->add_cgraph_removal_hook (omp_declare_variant_remove_hook,
2368 NULL);
2370 if (omp_declare_variants == NULL)
2371 omp_declare_variants
2372 = hash_table<omp_declare_variant_hasher>::create_ggc (64);
2373 omp_declare_variant_base_entry **slot
2374 = omp_declare_variants->find_slot (&entry, INSERT);
2375 if (*slot != NULL)
2377 vec_free (entry.variants);
2378 return (*slot)->node->decl;
2381 *slot = ggc_cleared_alloc<omp_declare_variant_base_entry> ();
2382 (*slot)->base = entry.base;
2383 (*slot)->node = entry.base;
2384 (*slot)->variants = entry.variants;
2385 tree alt = build_decl (DECL_SOURCE_LOCATION (base), FUNCTION_DECL,
2386 DECL_NAME (base), TREE_TYPE (base));
2387 DECL_ARTIFICIAL (alt) = 1;
2388 DECL_IGNORED_P (alt) = 1;
2389 TREE_STATIC (alt) = 1;
2390 tree attributes = DECL_ATTRIBUTES (base);
2391 if (lookup_attribute ("noipa", attributes) == NULL)
2393 attributes = tree_cons (get_identifier ("noipa"), NULL, attributes);
2394 if (lookup_attribute ("noinline", attributes) == NULL)
2395 attributes = tree_cons (get_identifier ("noinline"), NULL,
2396 attributes);
2397 if (lookup_attribute ("noclone", attributes) == NULL)
2398 attributes = tree_cons (get_identifier ("noclone"), NULL,
2399 attributes);
2400 if (lookup_attribute ("no_icf", attributes) == NULL)
2401 attributes = tree_cons (get_identifier ("no_icf"), NULL,
2402 attributes);
2404 DECL_ATTRIBUTES (alt) = attributes;
2405 DECL_INITIAL (alt) = error_mark_node;
2406 (*slot)->node = cgraph_node::create (alt);
2407 (*slot)->node->declare_variant_alt = 1;
2408 (*slot)->node->create_reference (entry.base, IPA_REF_ADDR);
2409 omp_declare_variant_entry *varentry;
2410 FOR_EACH_VEC_SAFE_ELT (entry.variants, i, varentry)
2411 (*slot)->node->create_reference (varentry->variant, IPA_REF_ADDR);
2412 if (omp_declare_variant_alt == NULL)
2413 omp_declare_variant_alt
2414 = hash_table<omp_declare_variant_alt_hasher>::create_ggc (64);
2415 *omp_declare_variant_alt->find_slot_with_hash (*slot, DECL_UID (alt),
2416 INSERT) = *slot;
2417 return alt;
2420 if (variants.length () == 1)
2421 return TREE_PURPOSE (TREE_VALUE (variants[0]));
2423 /* A context selector that is a strict subset of another context selector
2424 has a score of zero. */
2425 tree attr1, attr2;
2426 unsigned int i, j;
2427 FOR_EACH_VEC_ELT (variants, i, attr1)
2428 if (attr1)
2430 tree ctx1 = TREE_VALUE (TREE_VALUE (attr1));
2431 FOR_EACH_VEC_ELT_FROM (variants, j, attr2, i + 1)
2432 if (attr2)
2434 tree ctx2 = TREE_VALUE (TREE_VALUE (attr2));
2435 int r = omp_context_selector_compare (ctx1, ctx2);
2436 if (r == -1)
2438 /* ctx1 is a strict subset of ctx2, remove
2439 attr1 from the vector. */
2440 variants[i] = NULL_TREE;
2441 break;
2443 else if (r == 1)
2444 /* ctx2 is a strict subset of ctx1, remove attr2
2445 from the vector. */
2446 variants[j] = NULL_TREE;
2449 widest_int max_score1 = 0;
2450 widest_int max_score2 = 0;
2451 bool first = true;
2452 FOR_EACH_VEC_ELT (variants, i, attr1)
2453 if (attr1)
2455 if (variant1)
2457 widest_int score1;
2458 widest_int score2;
2459 bool need_two;
2460 tree ctx;
2461 if (first)
2463 first = false;
2464 ctx = TREE_VALUE (TREE_VALUE (variant1));
2465 need_two = omp_context_compute_score (ctx, &max_score1, false);
2466 if (need_two)
2467 omp_context_compute_score (ctx, &max_score2, true);
2468 else
2469 max_score2 = max_score1;
2471 ctx = TREE_VALUE (TREE_VALUE (attr1));
2472 need_two = omp_context_compute_score (ctx, &score1, false);
2473 if (need_two)
2474 omp_context_compute_score (ctx, &score2, true);
2475 else
2476 score2 = score1;
2477 if (score1 > max_score1)
2479 max_score1 = score1;
2480 variant1 = attr1;
2482 if (score2 > max_score2)
2484 max_score2 = score2;
2485 variant2 = attr1;
2488 else
2490 variant1 = attr1;
2491 variant2 = attr1;
2494 /* If there is a disagreement on which variant has the highest score
2495 depending on whether it will be in a declare simd clone or not,
2496 punt for now and defer until after IPA where we will know that. */
2497 return ((variant1 && variant1 == variant2)
2498 ? TREE_PURPOSE (TREE_VALUE (variant1)) : base);
2501 void
2502 omp_lto_output_declare_variant_alt (lto_simple_output_block *ob,
2503 cgraph_node *node,
2504 lto_symtab_encoder_t encoder)
2506 gcc_assert (node->declare_variant_alt);
2508 omp_declare_variant_base_entry entry;
2509 entry.base = NULL;
2510 entry.node = node;
2511 entry.variants = NULL;
2512 omp_declare_variant_base_entry *entryp
2513 = omp_declare_variant_alt->find_with_hash (&entry, DECL_UID (node->decl));
2514 gcc_assert (entryp);
2516 int nbase = lto_symtab_encoder_lookup (encoder, entryp->base);
2517 gcc_assert (nbase != LCC_NOT_FOUND);
2518 streamer_write_hwi_stream (ob->main_stream, nbase);
2520 streamer_write_hwi_stream (ob->main_stream, entryp->variants->length ());
2522 unsigned int i;
2523 omp_declare_variant_entry *varentry;
2524 FOR_EACH_VEC_SAFE_ELT (entryp->variants, i, varentry)
2526 int nvar = lto_symtab_encoder_lookup (encoder, varentry->variant);
2527 gcc_assert (nvar != LCC_NOT_FOUND);
2528 streamer_write_hwi_stream (ob->main_stream, nvar);
2530 for (widest_int *w = &varentry->score; ;
2531 w = &varentry->score_in_declare_simd_clone)
2533 unsigned len = w->get_len ();
2534 streamer_write_hwi_stream (ob->main_stream, len);
2535 const HOST_WIDE_INT *val = w->get_val ();
2536 for (unsigned j = 0; j < len; j++)
2537 streamer_write_hwi_stream (ob->main_stream, val[j]);
2538 if (w == &varentry->score_in_declare_simd_clone)
2539 break;
2542 HOST_WIDE_INT cnt = -1;
2543 HOST_WIDE_INT i = varentry->matches ? 1 : 0;
2544 for (tree attr = DECL_ATTRIBUTES (entryp->base->decl);
2545 attr; attr = TREE_CHAIN (attr), i += 2)
2547 attr = lookup_attribute ("omp declare variant base", attr);
2548 if (attr == NULL_TREE)
2549 break;
2551 if (varentry->ctx == TREE_VALUE (TREE_VALUE (attr)))
2553 cnt = i;
2554 break;
2558 gcc_assert (cnt != -1);
2559 streamer_write_hwi_stream (ob->main_stream, cnt);
2563 void
2564 omp_lto_input_declare_variant_alt (lto_input_block *ib, cgraph_node *node,
2565 vec<symtab_node *> nodes)
2567 gcc_assert (node->declare_variant_alt);
2568 omp_declare_variant_base_entry *entryp
2569 = ggc_cleared_alloc<omp_declare_variant_base_entry> ();
2570 entryp->base = dyn_cast<cgraph_node *> (nodes[streamer_read_hwi (ib)]);
2571 entryp->node = node;
2572 unsigned int len = streamer_read_hwi (ib);
2573 vec_alloc (entryp->variants, len);
2575 for (unsigned int i = 0; i < len; i++)
2577 omp_declare_variant_entry varentry;
2578 varentry.variant
2579 = dyn_cast<cgraph_node *> (nodes[streamer_read_hwi (ib)]);
2580 for (widest_int *w = &varentry.score; ;
2581 w = &varentry.score_in_declare_simd_clone)
2583 unsigned len2 = streamer_read_hwi (ib);
2584 HOST_WIDE_INT arr[WIDE_INT_MAX_ELTS];
2585 gcc_assert (len2 <= WIDE_INT_MAX_ELTS);
2586 for (unsigned int j = 0; j < len2; j++)
2587 arr[j] = streamer_read_hwi (ib);
2588 *w = widest_int::from_array (arr, len2, true);
2589 if (w == &varentry.score_in_declare_simd_clone)
2590 break;
2593 HOST_WIDE_INT cnt = streamer_read_hwi (ib);
2594 HOST_WIDE_INT j = 0;
2595 varentry.ctx = NULL_TREE;
2596 varentry.matches = (cnt & 1) ? true : false;
2597 cnt &= ~HOST_WIDE_INT_1;
2598 for (tree attr = DECL_ATTRIBUTES (entryp->base->decl);
2599 attr; attr = TREE_CHAIN (attr), j += 2)
2601 attr = lookup_attribute ("omp declare variant base", attr);
2602 if (attr == NULL_TREE)
2603 break;
2605 if (cnt == j)
2607 varentry.ctx = TREE_VALUE (TREE_VALUE (attr));
2608 break;
2611 gcc_assert (varentry.ctx != NULL_TREE);
2612 entryp->variants->quick_push (varentry);
2614 if (omp_declare_variant_alt == NULL)
2615 omp_declare_variant_alt
2616 = hash_table<omp_declare_variant_alt_hasher>::create_ggc (64);
2617 *omp_declare_variant_alt->find_slot_with_hash (entryp, DECL_UID (node->decl),
2618 INSERT) = entryp;
2621 /* Encode an oacc launch argument. This matches the GOMP_LAUNCH_PACK
2622 macro on gomp-constants.h. We do not check for overflow. */
2624 tree
2625 oacc_launch_pack (unsigned code, tree device, unsigned op)
2627 tree res;
2629 res = build_int_cst (unsigned_type_node, GOMP_LAUNCH_PACK (code, 0, op));
2630 if (device)
2632 device = fold_build2 (LSHIFT_EXPR, unsigned_type_node,
2633 device, build_int_cst (unsigned_type_node,
2634 GOMP_LAUNCH_DEVICE_SHIFT));
2635 res = fold_build2 (BIT_IOR_EXPR, unsigned_type_node, res, device);
2637 return res;
2640 /* FIXME: What is the following comment for? */
2641 /* Look for compute grid dimension clauses and convert to an attribute
2642 attached to FN. This permits the target-side code to (a) massage
2643 the dimensions, (b) emit that data and (c) optimize. Non-constant
2644 dimensions are pushed onto ARGS.
2646 The attribute value is a TREE_LIST. A set of dimensions is
2647 represented as a list of INTEGER_CST. Those that are runtime
2648 exprs are represented as an INTEGER_CST of zero.
2650 TODO: Normally the attribute will just contain a single such list. If
2651 however it contains a list of lists, this will represent the use of
2652 device_type. Each member of the outer list is an assoc list of
2653 dimensions, keyed by the device type. The first entry will be the
2654 default. Well, that's the plan. */
2656 /* Replace any existing oacc fn attribute with updated dimensions. */
2658 /* Variant working on a list of attributes. */
2660 tree
2661 oacc_replace_fn_attrib_attr (tree attribs, tree dims)
2663 tree ident = get_identifier (OACC_FN_ATTRIB);
2665 /* If we happen to be present as the first attrib, drop it. */
2666 if (attribs && TREE_PURPOSE (attribs) == ident)
2667 attribs = TREE_CHAIN (attribs);
2668 return tree_cons (ident, dims, attribs);
2671 /* Variant working on a function decl. */
2673 void
2674 oacc_replace_fn_attrib (tree fn, tree dims)
2676 DECL_ATTRIBUTES (fn)
2677 = oacc_replace_fn_attrib_attr (DECL_ATTRIBUTES (fn), dims);
2680 /* Scan CLAUSES for launch dimensions and attach them to the oacc
2681 function attribute. Push any that are non-constant onto the ARGS
2682 list, along with an appropriate GOMP_LAUNCH_DIM tag. */
2684 void
2685 oacc_set_fn_attrib (tree fn, tree clauses, vec<tree> *args)
2687 /* Must match GOMP_DIM ordering. */
2688 static const omp_clause_code ids[]
2689 = { OMP_CLAUSE_NUM_GANGS, OMP_CLAUSE_NUM_WORKERS,
2690 OMP_CLAUSE_VECTOR_LENGTH };
2691 unsigned ix;
2692 tree dims[GOMP_DIM_MAX];
2694 tree attr = NULL_TREE;
2695 unsigned non_const = 0;
2697 for (ix = GOMP_DIM_MAX; ix--;)
2699 tree clause = omp_find_clause (clauses, ids[ix]);
2700 tree dim = NULL_TREE;
2702 if (clause)
2703 dim = OMP_CLAUSE_EXPR (clause, ids[ix]);
2704 dims[ix] = dim;
2705 if (dim && TREE_CODE (dim) != INTEGER_CST)
2707 dim = integer_zero_node;
2708 non_const |= GOMP_DIM_MASK (ix);
2710 attr = tree_cons (NULL_TREE, dim, attr);
2713 oacc_replace_fn_attrib (fn, attr);
2715 if (non_const)
2717 /* Push a dynamic argument set. */
2718 args->safe_push (oacc_launch_pack (GOMP_LAUNCH_DIM,
2719 NULL_TREE, non_const));
2720 for (unsigned ix = 0; ix != GOMP_DIM_MAX; ix++)
2721 if (non_const & GOMP_DIM_MASK (ix))
2722 args->safe_push (dims[ix]);
2726 /* Verify OpenACC routine clauses.
2728 Returns 0 if FNDECL should be marked with an OpenACC 'routine' directive, 1
2729 if it has already been marked in compatible way, and -1 if incompatible.
2730 Upon returning, the chain of clauses will contain exactly one clause
2731 specifying the level of parallelism. */
2734 oacc_verify_routine_clauses (tree fndecl, tree *clauses, location_t loc,
2735 const char *routine_str)
2737 tree c_level = NULL_TREE;
2738 tree c_nohost = NULL_TREE;
2739 tree c_p = NULL_TREE;
2740 for (tree c = *clauses; c; c_p = c, c = OMP_CLAUSE_CHAIN (c))
2741 switch (OMP_CLAUSE_CODE (c))
2743 case OMP_CLAUSE_GANG:
2744 case OMP_CLAUSE_WORKER:
2745 case OMP_CLAUSE_VECTOR:
2746 case OMP_CLAUSE_SEQ:
2747 if (c_level == NULL_TREE)
2748 c_level = c;
2749 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_CODE (c_level))
2751 /* This has already been diagnosed in the front ends. */
2752 /* Drop the duplicate clause. */
2753 gcc_checking_assert (c_p != NULL_TREE);
2754 OMP_CLAUSE_CHAIN (c_p) = OMP_CLAUSE_CHAIN (c);
2755 c = c_p;
2757 else
2759 error_at (OMP_CLAUSE_LOCATION (c),
2760 "%qs specifies a conflicting level of parallelism",
2761 omp_clause_code_name[OMP_CLAUSE_CODE (c)]);
2762 inform (OMP_CLAUSE_LOCATION (c_level),
2763 "... to the previous %qs clause here",
2764 omp_clause_code_name[OMP_CLAUSE_CODE (c_level)]);
2765 /* Drop the conflicting clause. */
2766 gcc_checking_assert (c_p != NULL_TREE);
2767 OMP_CLAUSE_CHAIN (c_p) = OMP_CLAUSE_CHAIN (c);
2768 c = c_p;
2770 break;
2771 case OMP_CLAUSE_NOHOST:
2772 /* Don't worry about duplicate clauses here. */
2773 c_nohost = c;
2774 break;
2775 default:
2776 gcc_unreachable ();
2778 if (c_level == NULL_TREE)
2780 /* Default to an implicit 'seq' clause. */
2781 c_level = build_omp_clause (loc, OMP_CLAUSE_SEQ);
2782 OMP_CLAUSE_CHAIN (c_level) = *clauses;
2783 *clauses = c_level;
2785 /* In *clauses, we now have exactly one clause specifying the level of
2786 parallelism. */
2788 tree attr
2789 = lookup_attribute ("omp declare target", DECL_ATTRIBUTES (fndecl));
2790 if (attr != NULL_TREE)
2792 /* Diagnose if "#pragma omp declare target" has also been applied. */
2793 if (TREE_VALUE (attr) == NULL_TREE)
2795 /* See <https://gcc.gnu.org/PR93465>; the semantics of combining
2796 OpenACC and OpenMP 'target' are not clear. */
2797 error_at (loc,
2798 "cannot apply %<%s%> to %qD, which has also been"
2799 " marked with an OpenMP 'declare target' directive",
2800 routine_str, fndecl);
2801 /* Incompatible. */
2802 return -1;
2805 /* If a "#pragma acc routine" has already been applied, just verify
2806 this one for compatibility. */
2807 /* Collect previous directive's clauses. */
2808 tree c_level_p = NULL_TREE;
2809 tree c_nohost_p = NULL_TREE;
2810 for (tree c = TREE_VALUE (attr); c; c = OMP_CLAUSE_CHAIN (c))
2811 switch (OMP_CLAUSE_CODE (c))
2813 case OMP_CLAUSE_GANG:
2814 case OMP_CLAUSE_WORKER:
2815 case OMP_CLAUSE_VECTOR:
2816 case OMP_CLAUSE_SEQ:
2817 gcc_checking_assert (c_level_p == NULL_TREE);
2818 c_level_p = c;
2819 break;
2820 case OMP_CLAUSE_NOHOST:
2821 gcc_checking_assert (c_nohost_p == NULL_TREE);
2822 c_nohost_p = c;
2823 break;
2824 default:
2825 gcc_unreachable ();
2827 gcc_checking_assert (c_level_p != NULL_TREE);
2828 /* ..., and compare to current directive's, which we've already collected
2829 above. */
2830 tree c_diag;
2831 tree c_diag_p;
2832 /* Matching level of parallelism? */
2833 if (OMP_CLAUSE_CODE (c_level) != OMP_CLAUSE_CODE (c_level_p))
2835 c_diag = c_level;
2836 c_diag_p = c_level_p;
2837 goto incompatible;
2839 /* Matching 'nohost' clauses? */
2840 if ((c_nohost == NULL_TREE) != (c_nohost_p == NULL_TREE))
2842 c_diag = c_nohost;
2843 c_diag_p = c_nohost_p;
2844 goto incompatible;
2846 /* Compatible. */
2847 return 1;
2849 incompatible:
2850 if (c_diag != NULL_TREE)
2851 error_at (OMP_CLAUSE_LOCATION (c_diag),
2852 "incompatible %qs clause when applying"
2853 " %<%s%> to %qD, which has already been"
2854 " marked with an OpenACC 'routine' directive",
2855 omp_clause_code_name[OMP_CLAUSE_CODE (c_diag)],
2856 routine_str, fndecl);
2857 else if (c_diag_p != NULL_TREE)
2858 error_at (loc,
2859 "missing %qs clause when applying"
2860 " %<%s%> to %qD, which has already been"
2861 " marked with an OpenACC 'routine' directive",
2862 omp_clause_code_name[OMP_CLAUSE_CODE (c_diag_p)],
2863 routine_str, fndecl);
2864 else
2865 gcc_unreachable ();
2866 if (c_diag_p != NULL_TREE)
2867 inform (OMP_CLAUSE_LOCATION (c_diag_p),
2868 "... with %qs clause here",
2869 omp_clause_code_name[OMP_CLAUSE_CODE (c_diag_p)]);
2870 else
2872 /* In the front ends, we don't preserve location information for the
2873 OpenACC routine directive itself. However, that of c_level_p
2874 should be close. */
2875 location_t loc_routine = OMP_CLAUSE_LOCATION (c_level_p);
2876 inform (loc_routine, "... without %qs clause near to here",
2877 omp_clause_code_name[OMP_CLAUSE_CODE (c_diag)]);
2879 /* Incompatible. */
2880 return -1;
2883 return 0;
2886 /* Process the OpenACC 'routine' directive clauses to generate an attribute
2887 for the level of parallelism. All dimensions have a size of zero
2888 (dynamic). TREE_PURPOSE is set to indicate whether that dimension
2889 can have a loop partitioned on it. non-zero indicates
2890 yes, zero indicates no. By construction once a non-zero has been
2891 reached, further inner dimensions must also be non-zero. We set
2892 TREE_VALUE to zero for the dimensions that may be partitioned and
2893 1 for the other ones -- if a loop is (erroneously) spawned at
2894 an outer level, we don't want to try and partition it. */
2896 tree
2897 oacc_build_routine_dims (tree clauses)
2899 /* Must match GOMP_DIM ordering. */
2900 static const omp_clause_code ids[]
2901 = {OMP_CLAUSE_GANG, OMP_CLAUSE_WORKER, OMP_CLAUSE_VECTOR, OMP_CLAUSE_SEQ};
2902 int ix;
2903 int level = -1;
2905 for (; clauses; clauses = OMP_CLAUSE_CHAIN (clauses))
2906 for (ix = GOMP_DIM_MAX + 1; ix--;)
2907 if (OMP_CLAUSE_CODE (clauses) == ids[ix])
2909 level = ix;
2910 break;
2912 gcc_checking_assert (level >= 0);
2914 tree dims = NULL_TREE;
2916 for (ix = GOMP_DIM_MAX; ix--;)
2917 dims = tree_cons (build_int_cst (boolean_type_node, ix >= level),
2918 build_int_cst (integer_type_node, ix < level), dims);
2920 return dims;
2923 /* Retrieve the oacc function attrib and return it. Non-oacc
2924 functions will return NULL. */
2926 tree
2927 oacc_get_fn_attrib (tree fn)
2929 return lookup_attribute (OACC_FN_ATTRIB, DECL_ATTRIBUTES (fn));
2932 /* Return true if FN is an OpenMP or OpenACC offloading function. */
2934 bool
2935 offloading_function_p (tree fn)
2937 tree attrs = DECL_ATTRIBUTES (fn);
2938 return (lookup_attribute ("omp declare target", attrs)
2939 || lookup_attribute ("omp target entrypoint", attrs));
2942 /* Extract an oacc execution dimension from FN. FN must be an
2943 offloaded function or routine that has already had its execution
2944 dimensions lowered to the target-specific values. */
2947 oacc_get_fn_dim_size (tree fn, int axis)
2949 tree attrs = oacc_get_fn_attrib (fn);
2951 gcc_assert (axis < GOMP_DIM_MAX);
2953 tree dims = TREE_VALUE (attrs);
2954 while (axis--)
2955 dims = TREE_CHAIN (dims);
2957 int size = TREE_INT_CST_LOW (TREE_VALUE (dims));
2959 return size;
2962 /* Extract the dimension axis from an IFN_GOACC_DIM_POS or
2963 IFN_GOACC_DIM_SIZE call. */
2966 oacc_get_ifn_dim_arg (const gimple *stmt)
2968 gcc_checking_assert (gimple_call_internal_fn (stmt) == IFN_GOACC_DIM_SIZE
2969 || gimple_call_internal_fn (stmt) == IFN_GOACC_DIM_POS);
2970 tree arg = gimple_call_arg (stmt, 0);
2971 HOST_WIDE_INT axis = TREE_INT_CST_LOW (arg);
2973 gcc_checking_assert (axis >= 0 && axis < GOMP_DIM_MAX);
2974 return (int) axis;
2977 #include "gt-omp-general.h"