1 /* OMP constructs' SIMD clone supporting code.
3 Copyright (C) 2005-2025 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
29 #include "alloc-pool.h"
30 #include "tree-pass.h"
33 #include "pretty-print.h"
34 #include "diagnostic-core.h"
35 #include "fold-const.h"
36 #include "stor-layout.h"
39 #include "gimple-iterator.h"
40 #include "gimplify-me.h"
41 #include "gimple-walk.h"
42 #include "langhooks.h"
44 #include "tree-into-ssa.h"
47 #include "symbol-summary.h"
48 #include "ipa-param-manipulation.h"
51 #include "stringpool.h"
53 #include "omp-simd-clone.h"
55 #include "omp-general.h"
57 /* Print debug info for ok_for_auto_simd_clone to the dump file, logging
58 failure reason EXCUSE for function DECL. Always returns false. */
60 auto_simd_fail (tree decl
, const char *excuse
)
62 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
63 fprintf (dump_file
, "\nNot auto-cloning %s because %s\n",
64 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
69 /* Helper function for ok_for_auto_simd_clone; return false if the statement
70 violates restrictions for an "omp declare simd" function. Specifically,
72 - throw or call setjmp/longjmp
73 - write memory that could alias parallel calls
74 - read volatile memory
75 - include openmp directives or calls
76 - call functions that might do those things */
79 auto_simd_check_stmt (gimple
*stmt
, tree outer
)
83 switch (gimple_code (stmt
))
87 /* Calls to functions that are CONST or PURE are ok, even if they
88 are internal functions without a decl. Reject other internal
90 if (gimple_call_flags (stmt
) & (ECF_CONST
| ECF_PURE
))
92 if (gimple_call_internal_p (stmt
))
93 return auto_simd_fail (outer
,
94 "body contains internal function call");
96 decl
= gimple_call_fndecl (stmt
);
98 /* We can't know whether indirect calls are safe. */
99 if (decl
== NULL_TREE
)
100 return auto_simd_fail (outer
, "body contains indirect call");
102 /* Calls to functions that are already marked "omp declare simd" are
104 if (lookup_attribute ("omp declare simd", DECL_ATTRIBUTES (decl
)))
107 /* Let recursive calls to the current function through. */
111 /* Other function calls are not permitted. This covers all calls to
112 the libgomp API and setjmp/longjmp, too, as well as things like
113 __cxa_throw_ related to exception handling. */
114 return auto_simd_fail (outer
, "body contains unsafe function call");
116 /* Reject EH-related constructs. Most of the EH gimple codes are
117 already lowered by the time this pass runs during IPA.
118 GIMPLE_EH_DISPATCH and GIMPLE_RESX remain and are lowered by
119 pass_lower_eh_dispatch and pass_lower_resx, respectively; those
121 case GIMPLE_EH_DISPATCH
:
123 return auto_simd_fail (outer
, "body contains EH constructs");
125 /* Asms are not permitted since we don't know what they do. */
127 return auto_simd_fail (outer
, "body contains inline asm");
133 /* Memory writes are not permitted.
134 FIXME: this could be relaxed a little to permit writes to
135 function-local variables that could not alias other instances
136 of the function running in parallel. */
137 if (gimple_store_p (stmt
))
138 return auto_simd_fail (outer
, "body includes memory write");
140 /* Volatile reads are not permitted. */
141 if (gimple_has_volatile_ops (stmt
))
142 return auto_simd_fail (outer
, "body includes volatile op");
148 /* Helper function for ok_for_auto_simd_clone: return true if type T is
149 plausible for a cloneable function argument or return type. */
151 plausible_type_for_simd_clone (tree t
)
155 else if (RECORD_OR_UNION_TYPE_P (t
) || !is_a
<scalar_mode
> (TYPE_MODE (t
)))
156 /* Small record/union types may fit into a scalar mode, but are
157 still not suitable. */
159 else if (TYPE_ATOMIC (t
))
160 /* Atomic types trigger warnings in simd_clone_clauses_extract. */
166 /* Check if the function NODE appears suitable for auto-annotation
167 with "declare simd". */
170 ok_for_auto_simd_clone (struct cgraph_node
*node
)
172 tree decl
= node
->decl
;
176 /* Nothing to do if the function isn't a definition or doesn't
178 if (!node
->definition
|| !node
->has_gimple_body_p ())
179 return auto_simd_fail (decl
, "no definition or body");
181 /* No point in trying to generate implicit clones if the function
182 isn't used in the compilation unit. */
184 return auto_simd_fail (decl
, "function is not used");
186 /* Nothing to do if the function already has the "omp declare simd"
187 attribute, is marked noclone, or is not "omp declare target". */
188 if (lookup_attribute ("omp declare simd", DECL_ATTRIBUTES (decl
))
189 || lookup_attribute ("noclone", DECL_ATTRIBUTES (decl
))
190 || !lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl
)))
191 return auto_simd_fail (decl
, "incompatible attributes");
193 /* Check whether the function is restricted host/nohost via the
194 "omp declare target device_type" clause, and that doesn't match
195 what we're compiling for. Internally, these translate into
196 "omp declare target [no]host" attributes on the decl; "any"
197 translates into both attributes, but the default (which is supposed
198 to be equivalent to "any") is neither. */
199 tree host
= lookup_attribute ("omp declare target host",
200 DECL_ATTRIBUTES (decl
));
201 tree nohost
= lookup_attribute ("omp declare target nohost",
202 DECL_ATTRIBUTES (decl
));
203 #ifdef ACCEL_COMPILER
205 return auto_simd_fail (decl
, "device doesn't match for accel compiler");
208 return auto_simd_fail (decl
, "device doesn't match for host compiler");
211 /* Backends will check for vectorizable arguments/return types in a
212 target-specific way, but we can immediately filter out functions
213 that have implausible argument/return types. */
214 t
= TREE_TYPE (TREE_TYPE (decl
));
215 if (!plausible_type_for_simd_clone (t
))
216 return auto_simd_fail (decl
, "return type fails sniff test");
218 if (TYPE_ARG_TYPES (TREE_TYPE (decl
)))
220 for (tree temp
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
221 temp
; temp
= TREE_CHAIN (temp
))
223 t
= TREE_VALUE (temp
);
224 if (!plausible_type_for_simd_clone (t
))
225 return auto_simd_fail (decl
, "argument type fails sniff test");
228 else if (DECL_ARGUMENTS (decl
))
230 for (tree temp
= DECL_ARGUMENTS (decl
); temp
; temp
= DECL_CHAIN (temp
))
232 t
= TREE_TYPE (temp
);
233 if (!plausible_type_for_simd_clone (t
))
234 return auto_simd_fail (decl
, "argument type fails sniff test");
238 return auto_simd_fail (decl
, "function has no arguments");
240 /* Scan the function body to see if it is suitable for SIMD-ization. */
243 FOR_EACH_BB_FN (bb
, DECL_STRUCT_FUNCTION (decl
))
245 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
247 if (!auto_simd_check_stmt (gsi_stmt (gsi
), decl
))
253 fprintf (dump_file
, "\nMarking %s for auto-cloning\n",
254 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
258 /* Allocate a fresh `simd_clone' and return it. NARGS is the number
259 of arguments to reserve space for. */
261 static struct cgraph_simd_clone
*
262 simd_clone_struct_alloc (int nargs
)
264 struct cgraph_simd_clone
*clone_info
;
265 size_t len
= (sizeof (struct cgraph_simd_clone
)
266 + nargs
* sizeof (struct cgraph_simd_clone_arg
));
267 clone_info
= (struct cgraph_simd_clone
*)
268 ggc_internal_cleared_alloc (len
);
272 /* Make a copy of the `struct cgraph_simd_clone' in FROM to TO. */
275 simd_clone_struct_copy (struct cgraph_simd_clone
*to
,
276 struct cgraph_simd_clone
*from
)
278 memcpy (to
, from
, (sizeof (struct cgraph_simd_clone
)
279 + ((from
->nargs
- from
->inbranch
)
280 * sizeof (struct cgraph_simd_clone_arg
))));
283 /* Fill an empty vector ARGS with parameter types of function FNDECL. This
284 uses TYPE_ARG_TYPES if available, otherwise falls back to types of
285 DECL_ARGUMENTS types. */
288 simd_clone_vector_of_formal_parm_types (vec
<tree
> *args
, tree fndecl
)
290 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl
)))
292 push_function_arg_types (args
, TREE_TYPE (fndecl
));
295 push_function_arg_decls (args
, fndecl
);
298 FOR_EACH_VEC_ELT (*args
, i
, arg
)
299 (*args
)[i
] = TREE_TYPE ((*args
)[i
]);
302 /* Given a simd function in NODE, extract the simd specific
303 information from the OMP clauses passed in CLAUSES, and return
304 the struct cgraph_simd_clone * if it should be cloned. *INBRANCH_SPECIFIED
305 is set to TRUE if the `inbranch' or `notinbranch' clause specified,
306 otherwise set to FALSE. */
308 static struct cgraph_simd_clone
*
309 simd_clone_clauses_extract (struct cgraph_node
*node
, tree clauses
,
310 bool *inbranch_specified
)
313 simd_clone_vector_of_formal_parm_types (&args
, node
->decl
);
316 *inbranch_specified
= false;
319 if (n
> 0 && args
.last () == void_type_node
)
322 /* Allocate one more than needed just in case this is an in-branch
323 clone which will require a mask argument. */
324 struct cgraph_simd_clone
*clone_info
= simd_clone_struct_alloc (n
+ 1);
325 clone_info
->nargs
= n
;
330 clauses
= TREE_VALUE (clauses
);
331 if (!clauses
|| TREE_CODE (clauses
) != OMP_CLAUSE
)
334 for (t
= clauses
; t
; t
= OMP_CLAUSE_CHAIN (t
))
336 switch (OMP_CLAUSE_CODE (t
))
338 case OMP_CLAUSE_INBRANCH
:
339 clone_info
->inbranch
= 1;
340 *inbranch_specified
= true;
342 case OMP_CLAUSE_NOTINBRANCH
:
343 clone_info
->inbranch
= 0;
344 *inbranch_specified
= true;
346 case OMP_CLAUSE_SIMDLEN
:
348 = TREE_INT_CST_LOW (OMP_CLAUSE_SIMDLEN_EXPR (t
));
350 case OMP_CLAUSE_LINEAR
:
352 tree decl
= OMP_CLAUSE_DECL (t
);
353 tree step
= OMP_CLAUSE_LINEAR_STEP (t
);
354 int argno
= TREE_INT_CST_LOW (decl
);
355 if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (t
))
357 enum cgraph_simd_clone_arg_type arg_type
;
358 if (TREE_CODE (args
[argno
]) == REFERENCE_TYPE
)
359 switch (OMP_CLAUSE_LINEAR_KIND (t
))
361 case OMP_CLAUSE_LINEAR_REF
:
363 = SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
;
365 case OMP_CLAUSE_LINEAR_UVAL
:
367 = SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
;
369 case OMP_CLAUSE_LINEAR_VAL
:
370 case OMP_CLAUSE_LINEAR_DEFAULT
:
372 = SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
;
378 arg_type
= SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
;
379 clone_info
->args
[argno
].arg_type
= arg_type
;
380 clone_info
->args
[argno
].linear_step
= tree_to_shwi (step
);
381 gcc_assert (clone_info
->args
[argno
].linear_step
>= 0
382 && clone_info
->args
[argno
].linear_step
< n
);
386 if (POINTER_TYPE_P (args
[argno
]))
387 step
= fold_convert (ssizetype
, step
);
388 if (!tree_fits_shwi_p (step
))
390 warning_at (OMP_CLAUSE_LOCATION (t
), OPT_Wopenmp
,
391 "ignoring large linear step");
394 else if (integer_zerop (step
))
396 warning_at (OMP_CLAUSE_LOCATION (t
), OPT_Wopenmp
,
397 "ignoring zero linear step");
402 enum cgraph_simd_clone_arg_type arg_type
;
403 if (TREE_CODE (args
[argno
]) == REFERENCE_TYPE
)
404 switch (OMP_CLAUSE_LINEAR_KIND (t
))
406 case OMP_CLAUSE_LINEAR_REF
:
408 = SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
;
410 case OMP_CLAUSE_LINEAR_UVAL
:
412 = SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
;
414 case OMP_CLAUSE_LINEAR_VAL
:
415 case OMP_CLAUSE_LINEAR_DEFAULT
:
417 = SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
;
423 arg_type
= SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
;
424 clone_info
->args
[argno
].arg_type
= arg_type
;
425 clone_info
->args
[argno
].linear_step
= tree_to_shwi (step
);
430 case OMP_CLAUSE_UNIFORM
:
432 tree decl
= OMP_CLAUSE_DECL (t
);
433 int argno
= tree_to_uhwi (decl
);
434 clone_info
->args
[argno
].arg_type
435 = SIMD_CLONE_ARG_TYPE_UNIFORM
;
438 case OMP_CLAUSE_ALIGNED
:
440 /* Ignore aligned (x) for declare simd, for the ABI we really
441 need an alignment specified. */
442 if (OMP_CLAUSE_ALIGNED_ALIGNMENT (t
) == NULL_TREE
)
444 tree decl
= OMP_CLAUSE_DECL (t
);
445 int argno
= tree_to_uhwi (decl
);
446 clone_info
->args
[argno
].alignment
447 = TREE_INT_CST_LOW (OMP_CLAUSE_ALIGNED_ALIGNMENT (t
));
456 if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (node
->decl
))))
458 warning_at (DECL_SOURCE_LOCATION (node
->decl
), OPT_Wopenmp
,
459 "ignoring %<#pragma omp declare simd%> on function "
460 "with %<_Atomic%> qualified return type");
464 for (unsigned int argno
= 0; argno
< clone_info
->nargs
; argno
++)
465 if (TYPE_ATOMIC (args
[argno
])
466 && clone_info
->args
[argno
].arg_type
!= SIMD_CLONE_ARG_TYPE_UNIFORM
)
468 warning_at (DECL_SOURCE_LOCATION (node
->decl
), OPT_Wopenmp
,
469 "ignoring %<#pragma omp declare simd%> on function "
470 "with %<_Atomic%> qualified non-%<uniform%> argument");
478 /* Given a SIMD clone in NODE, calculate the characteristic data
479 type and return the coresponding type. The characteristic data
480 type is computed as described in the Intel Vector ABI. */
483 simd_clone_compute_base_data_type (struct cgraph_node
*node
,
484 struct cgraph_simd_clone
*clone_info
)
486 tree type
= integer_type_node
;
487 tree fndecl
= node
->decl
;
489 /* a) For non-void function, the characteristic data type is the
491 if (TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
)
492 type
= TREE_TYPE (TREE_TYPE (fndecl
));
494 /* b) If the function has any non-uniform, non-linear parameters,
495 then the characteristic data type is the type of the first
500 simd_clone_vector_of_formal_parm_types (&map
, fndecl
);
501 for (unsigned int i
= 0; i
< clone_info
->nargs
; ++i
)
502 if (clone_info
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_VECTOR
)
509 /* c) If the characteristic data type determined by a) or b) above
510 is struct, union, or class type which is pass-by-value (except
511 for the type that maps to the built-in complex data type), the
512 characteristic data type is int. */
513 if (RECORD_OR_UNION_TYPE_P (type
)
514 && !aggregate_value_p (type
, NULL
)
515 && TREE_CODE (type
) != COMPLEX_TYPE
)
516 return integer_type_node
;
518 /* d) If none of the above three classes is applicable, the
519 characteristic data type is int. */
523 /* e) For Intel Xeon Phi native and offload compilation, if the
524 resulting characteristic data type is 8-bit or 16-bit integer
525 data type, the characteristic data type is int. */
526 /* Well, we don't handle Xeon Phi yet. */
530 simd_clone_mangle (struct cgraph_node
*node
,
531 struct cgraph_simd_clone
*clone_info
)
533 char vecsize_mangle
= clone_info
->vecsize_mangle
;
534 char mask
= clone_info
->inbranch
? 'M' : 'N';
535 poly_uint64 simdlen
= clone_info
->simdlen
;
539 gcc_assert (vecsize_mangle
&& maybe_ne (simdlen
, 0U));
541 pp_string (&pp
, "_ZGV");
542 pp_character (&pp
, vecsize_mangle
);
543 pp_character (&pp
, mask
);
545 unsigned HOST_WIDE_INT len
;
546 if (simdlen
.is_constant (&len
))
547 pp_decimal_int (&pp
, (int) (len
));
549 pp_character (&pp
, 'x');
551 for (n
= 0; n
< clone_info
->nargs
; ++n
)
553 struct cgraph_simd_clone_arg arg
= clone_info
->args
[n
];
555 switch (arg
.arg_type
)
557 case SIMD_CLONE_ARG_TYPE_UNIFORM
:
558 pp_character (&pp
, 'u');
560 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
:
561 pp_character (&pp
, 'l');
563 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
:
564 pp_character (&pp
, 'R');
566 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
:
567 pp_character (&pp
, 'L');
569 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
:
570 pp_character (&pp
, 'U');
573 gcc_assert (arg
.linear_step
!= 0);
574 if (arg
.linear_step
> 1)
575 pp_unsigned_wide_integer (&pp
, arg
.linear_step
);
576 else if (arg
.linear_step
< 0)
578 pp_character (&pp
, 'n');
579 pp_unsigned_wide_integer (&pp
, (-(unsigned HOST_WIDE_INT
)
583 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
:
584 pp_string (&pp
, "ls");
585 pp_unsigned_wide_integer (&pp
, arg
.linear_step
);
587 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
:
588 pp_string (&pp
, "Rs");
589 pp_unsigned_wide_integer (&pp
, arg
.linear_step
);
591 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
:
592 pp_string (&pp
, "Ls");
593 pp_unsigned_wide_integer (&pp
, arg
.linear_step
);
595 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
:
596 pp_string (&pp
, "Us");
597 pp_unsigned_wide_integer (&pp
, arg
.linear_step
);
600 pp_character (&pp
, 'v');
604 pp_character (&pp
, 'a');
605 pp_decimal_int (&pp
, arg
.alignment
);
610 const char *str
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node
->decl
));
613 pp_string (&pp
, str
);
614 str
= pp_formatted_text (&pp
);
616 /* If there already is a SIMD clone with the same mangled name, don't
617 add another one. This can happen e.g. for
618 #pragma omp declare simd
619 #pragma omp declare simd simdlen(8)
621 if the simdlen is assumed to be 8 for the first one, etc. */
622 for (struct cgraph_node
*clone
= node
->simd_clones
; clone
;
623 clone
= clone
->simdclone
->next_clone
)
624 if (id_equal (DECL_ASSEMBLER_NAME (clone
->decl
), str
))
627 return get_identifier (str
);
630 /* Create a simd clone of OLD_NODE and return it. If FORCE_LOCAL is true,
631 create it as a local symbol, otherwise copy the symbol linkage and
632 visibility attributes from OLD_NODE. */
634 static struct cgraph_node
*
635 simd_clone_create (struct cgraph_node
*old_node
, bool force_local
)
637 struct cgraph_node
*new_node
;
638 if (old_node
->definition
)
640 if (!old_node
->has_gimple_body_p ())
642 old_node
->get_body ();
643 new_node
= old_node
->create_version_clone_with_body (vNULL
, NULL
, NULL
,
649 tree old_decl
= old_node
->decl
;
650 tree new_decl
= copy_node (old_node
->decl
);
651 DECL_NAME (new_decl
) = clone_function_name_numbered (old_decl
,
653 SET_DECL_ASSEMBLER_NAME (new_decl
, DECL_NAME (new_decl
));
654 SET_DECL_RTL (new_decl
, NULL
);
655 DECL_STATIC_CONSTRUCTOR (new_decl
) = 0;
656 DECL_STATIC_DESTRUCTOR (new_decl
) = 0;
657 new_node
= old_node
->create_version_clone (new_decl
, vNULL
, NULL
);
658 if (old_node
->in_other_partition
)
659 new_node
->in_other_partition
= 1;
661 if (new_node
== NULL
)
664 set_decl_built_in_function (new_node
->decl
, NOT_BUILT_IN
, 0);
667 TREE_PUBLIC (new_node
->decl
) = 0;
668 DECL_COMDAT (new_node
->decl
) = 0;
669 DECL_WEAK (new_node
->decl
) = 0;
670 DECL_EXTERNAL (new_node
->decl
) = 0;
671 DECL_VISIBILITY_SPECIFIED (new_node
->decl
) = 0;
672 DECL_VISIBILITY (new_node
->decl
) = VISIBILITY_DEFAULT
;
673 DECL_DLLIMPORT_P (new_node
->decl
) = 0;
677 TREE_PUBLIC (new_node
->decl
) = TREE_PUBLIC (old_node
->decl
);
678 DECL_COMDAT (new_node
->decl
) = DECL_COMDAT (old_node
->decl
);
679 DECL_WEAK (new_node
->decl
) = DECL_WEAK (old_node
->decl
);
680 DECL_EXTERNAL (new_node
->decl
) = DECL_EXTERNAL (old_node
->decl
);
681 DECL_VISIBILITY_SPECIFIED (new_node
->decl
)
682 = DECL_VISIBILITY_SPECIFIED (old_node
->decl
);
683 DECL_VISIBILITY (new_node
->decl
) = DECL_VISIBILITY (old_node
->decl
);
684 DECL_DLLIMPORT_P (new_node
->decl
) = DECL_DLLIMPORT_P (old_node
->decl
);
685 if (DECL_ONE_ONLY (old_node
->decl
))
686 make_decl_one_only (new_node
->decl
,
687 DECL_ASSEMBLER_NAME (new_node
->decl
));
689 /* The method cgraph_version_clone_with_body () will force the new
690 symbol local. Undo this, and inherit external visibility from
692 new_node
->local
= old_node
->local
;
693 new_node
->externally_visible
= old_node
->externally_visible
;
694 new_node
->has_omp_variant_constructs
695 = old_node
->has_omp_variant_constructs
;
698 /* Mark clones with internal linkage as gc'able, so they will not be
699 emitted unless the vectorizer can actually use them. */
700 if (!TREE_PUBLIC (new_node
->decl
))
701 new_node
->gc_candidate
= true;
706 /* Adjust the return type of the given function to its appropriate
707 vector counterpart. */
710 simd_clone_adjust_return_type (struct cgraph_node
*node
)
712 tree fndecl
= node
->decl
;
713 tree orig_rettype
= TREE_TYPE (TREE_TYPE (fndecl
));
717 /* Adjust the function return type. */
718 if (orig_rettype
== void_type_node
)
720 t
= TREE_TYPE (TREE_TYPE (fndecl
));
721 if (INTEGRAL_TYPE_P (t
) || POINTER_TYPE_P (t
))
722 veclen
= node
->simdclone
->vecsize_int
;
724 veclen
= node
->simdclone
->vecsize_float
;
725 if (known_eq (veclen
, 0U))
726 veclen
= node
->simdclone
->simdlen
;
728 veclen
= exact_div (veclen
, GET_MODE_BITSIZE (SCALAR_TYPE_MODE (t
)));
729 if (multiple_p (veclen
, node
->simdclone
->simdlen
))
730 veclen
= node
->simdclone
->simdlen
;
731 if (POINTER_TYPE_P (t
))
732 t
= pointer_sized_int_node
;
733 if (known_eq (veclen
, node
->simdclone
->simdlen
))
734 t
= build_vector_type (t
, node
->simdclone
->simdlen
);
737 t
= build_vector_type (t
, veclen
);
738 t
= build_array_type_nelts (t
, exact_div (node
->simdclone
->simdlen
,
741 TREE_TYPE (TREE_TYPE (fndecl
)) = t
;
744 /* Each vector argument has a corresponding array to be used locally
745 as part of the eventual loop. Create such temporary array and
748 PREFIX is the prefix to be used for the temporary.
750 TYPE is the inner element type.
752 SIMDLEN is the number of elements. */
755 create_tmp_simd_array (const char *prefix
, tree type
, poly_uint64 simdlen
)
757 tree atype
= build_array_type_nelts (type
, simdlen
);
758 tree avar
= create_tmp_var_raw (atype
, prefix
);
759 gimple_add_tmp_var (avar
);
763 /* Modify the function argument types to their corresponding vector
764 counterparts if appropriate. Also, create one array for each simd
765 argument to be used locally when using the function arguments as
768 NODE is the function whose arguments are to be adjusted.
770 If NODE does not represent function definition, returns NULL. Otherwise
771 returns an adjustment class that will be filled describing how the argument
772 declarations will be remapped. New arguments which are not to be remapped
773 are marked with USER_FLAG. */
776 simd_clone_adjust_argument_types (struct cgraph_node
*node
)
780 if (node
->definition
)
781 push_function_arg_decls (&args
, node
->decl
);
783 simd_clone_vector_of_formal_parm_types (&args
, node
->decl
);
784 struct cgraph_simd_clone
*sc
= node
->simdclone
;
787 auto_vec
<tree
> new_params
;
789 for (i
= 0; i
< sc
->nargs
; ++i
)
791 tree parm
= NULL_TREE
;
792 tree parm_type
= NULL_TREE
;
793 if (i
< args
.length())
796 parm_type
= node
->definition
? TREE_TYPE (parm
) : parm
;
799 sc
->args
[i
].orig_arg
= node
->definition
? parm
: NULL_TREE
;
800 sc
->args
[i
].orig_type
= parm_type
;
802 switch (sc
->args
[i
].arg_type
)
805 new_params
.safe_push (parm_type
);
807 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
:
808 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
:
809 new_params
.safe_push (parm_type
);
810 if (node
->definition
)
811 sc
->args
[i
].simd_array
812 = create_tmp_simd_array (IDENTIFIER_POINTER (DECL_NAME (parm
)),
813 TREE_TYPE (parm_type
),
816 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
:
817 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
:
818 case SIMD_CLONE_ARG_TYPE_VECTOR
:
819 if (INTEGRAL_TYPE_P (parm_type
) || POINTER_TYPE_P (parm_type
))
820 veclen
= sc
->vecsize_int
;
822 veclen
= sc
->vecsize_float
;
823 if (known_eq (veclen
, 0U))
824 veclen
= sc
->simdlen
;
828 GET_MODE_BITSIZE (SCALAR_TYPE_MODE (parm_type
)));
829 if (multiple_p (veclen
, sc
->simdlen
))
830 veclen
= sc
->simdlen
;
832 if (POINTER_TYPE_P (parm_type
))
833 vtype
= build_vector_type (pointer_sized_int_node
, veclen
);
835 vtype
= build_vector_type (parm_type
, veclen
);
836 sc
->args
[i
].vector_type
= vtype
;
837 k
= vector_unroll_factor (sc
->simdlen
, veclen
);
838 for (unsigned j
= 0; j
< k
; j
++)
839 new_params
.safe_push (vtype
);
841 if (node
->definition
)
842 sc
->args
[i
].simd_array
843 = create_tmp_simd_array (DECL_NAME (parm
)
844 ? IDENTIFIER_POINTER (DECL_NAME (parm
))
845 : NULL
, parm_type
, sc
->simdlen
);
851 tree base_type
= simd_clone_compute_base_data_type (sc
->origin
, sc
);
853 if (INTEGRAL_TYPE_P (base_type
) || POINTER_TYPE_P (base_type
))
854 veclen
= sc
->vecsize_int
;
856 veclen
= sc
->vecsize_float
;
857 if (known_eq (veclen
, 0U))
858 veclen
= sc
->simdlen
;
860 veclen
= exact_div (veclen
,
861 GET_MODE_BITSIZE (SCALAR_TYPE_MODE (base_type
)));
862 if (multiple_p (veclen
, sc
->simdlen
))
863 veclen
= sc
->simdlen
;
864 if (sc
->mask_mode
!= VOIDmode
)
866 = lang_hooks
.types
.type_for_mode (sc
->mask_mode
, 1);
867 else if (POINTER_TYPE_P (base_type
))
868 mask_type
= build_vector_type (pointer_sized_int_node
, veclen
);
870 mask_type
= build_vector_type (base_type
, veclen
);
872 k
= vector_unroll_factor (sc
->simdlen
, veclen
);
874 /* We have previously allocated one extra entry for the mask. Use
877 if (sc
->mask_mode
!= VOIDmode
)
878 base_type
= boolean_type_node
;
879 if (node
->definition
)
882 = build_decl (UNKNOWN_LOCATION
, PARM_DECL
, NULL
, base_type
);
883 if (sc
->mask_mode
== VOIDmode
)
884 sc
->args
[i
].simd_array
885 = create_tmp_simd_array ("mask", base_type
, sc
->simdlen
);
887 sc
->args
[i
].simd_array
888 = create_tmp_simd_array ("mask", mask_type
, k
);
890 sc
->args
[i
].simd_array
= NULL_TREE
;
892 sc
->args
[i
].orig_type
= base_type
;
893 sc
->args
[i
].arg_type
= SIMD_CLONE_ARG_TYPE_MASK
;
894 sc
->args
[i
].vector_type
= mask_type
;
897 if (!node
->definition
)
899 tree new_arg_types
= NULL_TREE
, new_reversed
;
900 bool last_parm_void
= false;
901 if (args
.length () > 0 && args
.last () == void_type_node
)
902 last_parm_void
= true;
904 gcc_assert (TYPE_ARG_TYPES (TREE_TYPE (node
->decl
)));
905 for (i
= 0; i
< new_params
.length (); i
++)
906 new_arg_types
= tree_cons (NULL_TREE
, new_params
[i
], new_arg_types
);
907 new_reversed
= nreverse (new_arg_types
);
911 TREE_CHAIN (new_arg_types
) = void_list_node
;
913 new_reversed
= void_list_node
;
915 TYPE_ARG_TYPES (TREE_TYPE (node
->decl
)) = new_reversed
;
919 /* Initialize and copy the function arguments in NODE to their
920 corresponding local simd arrays. Returns a fresh gimple_seq with
921 the instruction sequence generated. */
924 simd_clone_init_simd_arrays (struct cgraph_node
*node
,
925 ipa_param_body_adjustments
*adjustments
)
927 gimple_seq seq
= NULL
;
928 unsigned i
= 0, j
= 0, k
;
930 for (tree arg
= DECL_ARGUMENTS (node
->decl
);
932 arg
= DECL_CHAIN (arg
), i
++, j
++)
934 ipa_adjusted_param adj
= (*adjustments
->m_adj_params
)[j
];
935 if (adj
.op
== IPA_PARAM_OP_COPY
936 || POINTER_TYPE_P (TREE_TYPE (arg
)))
939 node
->simdclone
->args
[i
].vector_arg
= arg
;
941 tree array
= node
->simdclone
->args
[i
].simd_array
;
942 if (node
->simdclone
->mask_mode
!= VOIDmode
943 && adj
.param_prefix_index
== IPA_PARAM_PREFIX_MASK
)
945 if (array
== NULL_TREE
)
948 = tree_to_uhwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (array
))));
949 for (k
= 0; k
<= l
; k
++)
953 arg
= DECL_CHAIN (arg
);
956 tree t
= build4 (ARRAY_REF
, TREE_TYPE (TREE_TYPE (array
)),
957 array
, size_int (k
), NULL
, NULL
);
958 t
= build2 (MODIFY_EXPR
, TREE_TYPE (t
), t
, arg
);
959 gimplify_and_add (t
, &seq
);
963 if (!VECTOR_TYPE_P (TREE_TYPE (arg
))
964 || known_eq (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg
)),
965 node
->simdclone
->simdlen
))
967 tree ptype
= build_pointer_type (TREE_TYPE (TREE_TYPE (array
)));
968 tree ptr
= build_fold_addr_expr (array
);
969 tree t
= build2 (MEM_REF
, TREE_TYPE (arg
), ptr
,
970 build_int_cst (ptype
, 0));
971 t
= build2 (MODIFY_EXPR
, TREE_TYPE (t
), t
, arg
);
972 gimplify_and_add (t
, &seq
);
976 poly_uint64 simdlen
= TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg
));
977 unsigned int times
= vector_unroll_factor (node
->simdclone
->simdlen
,
979 tree ptype
= build_pointer_type (TREE_TYPE (TREE_TYPE (array
)));
980 for (k
= 0; k
< times
; k
++)
982 tree ptr
= build_fold_addr_expr (array
);
986 arg
= DECL_CHAIN (arg
);
989 tree elemtype
= TREE_TYPE (TREE_TYPE (arg
));
990 elemsize
= GET_MODE_SIZE (SCALAR_TYPE_MODE (elemtype
));
991 tree t
= build2 (MEM_REF
, TREE_TYPE (arg
), ptr
,
992 build_int_cst (ptype
, k
* elemsize
* simdlen
));
993 t
= build2 (MODIFY_EXPR
, TREE_TYPE (t
), t
, arg
);
994 gimplify_and_add (t
, &seq
);
1001 /* Callback info for ipa_simd_modify_stmt_ops below. */
1003 struct modify_stmt_info
{
1004 ipa_param_body_adjustments
*adjustments
;
1007 /* True if the parent statement was modified by
1008 ipa_simd_modify_stmt_ops. */
1012 /* Callback for walk_gimple_op.
1014 Adjust operands from a given statement as specified in the
1015 adjustments vector in the callback data. */
1018 ipa_simd_modify_stmt_ops (tree
*tp
, int *walk_subtrees
, void *data
)
1020 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data
;
1021 struct modify_stmt_info
*info
= (struct modify_stmt_info
*) wi
->info
;
1023 if (TREE_CODE (*tp
) == ADDR_EXPR
)
1024 tp
= &TREE_OPERAND (*tp
, 0);
1026 if (TREE_CODE (*tp
) == BIT_FIELD_REF
1027 || TREE_CODE (*tp
) == IMAGPART_EXPR
1028 || TREE_CODE (*tp
) == REALPART_EXPR
)
1029 tp
= &TREE_OPERAND (*tp
, 0);
1031 tree repl
= NULL_TREE
;
1032 ipa_param_body_replacement
*pbr
= NULL
;
1034 if (TREE_CODE (*tp
) == PARM_DECL
)
1036 pbr
= info
->adjustments
->get_expr_replacement (*tp
, true);
1040 else if (TYPE_P (*tp
))
1044 repl
= unshare_expr (repl
);
1050 bool modified
= info
->modified
;
1051 info
->modified
= false;
1052 walk_tree (tp
, ipa_simd_modify_stmt_ops
, wi
, wi
->pset
);
1053 if (!info
->modified
)
1055 info
->modified
= modified
;
1058 info
->modified
= modified
;
1067 if (gimple_code (info
->stmt
) == GIMPLE_PHI
1069 && TREE_CODE (*orig_tp
) == ADDR_EXPR
1070 && TREE_CODE (TREE_OPERAND (*orig_tp
, 0)) == PARM_DECL
1073 gcc_assert (TREE_CODE (pbr
->dummy
) == SSA_NAME
);
1074 *orig_tp
= pbr
->dummy
;
1075 info
->modified
= true;
1079 repl
= build_fold_addr_expr (repl
);
1081 if (is_gimple_debug (info
->stmt
))
1083 tree vexpr
= build_debug_expr_decl (TREE_TYPE (repl
));
1084 stmt
= gimple_build_debug_source_bind (vexpr
, repl
, NULL
);
1089 stmt
= gimple_build_assign (make_ssa_name (TREE_TYPE (repl
)), repl
);
1090 repl
= gimple_assign_lhs (stmt
);
1092 gimple_stmt_iterator gsi
;
1093 if (gimple_code (info
->stmt
) == GIMPLE_PHI
)
1095 if (info
->after_stmt
)
1096 gsi
= gsi_for_stmt (info
->after_stmt
);
1098 gsi
= gsi_after_labels (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
)));
1099 /* Cache SSA_NAME for next time. */
1101 && TREE_CODE (*orig_tp
) == ADDR_EXPR
1102 && TREE_CODE (TREE_OPERAND (*orig_tp
, 0)) == PARM_DECL
)
1104 gcc_assert (!pbr
->dummy
);
1109 gsi
= gsi_for_stmt (info
->stmt
);
1110 if (info
->after_stmt
)
1111 gsi_insert_after (&gsi
, stmt
, GSI_SAME_STMT
);
1113 gsi_insert_before (&gsi
, stmt
, GSI_SAME_STMT
);
1114 if (gimple_code (info
->stmt
) == GIMPLE_PHI
)
1115 info
->after_stmt
= stmt
;
1118 else if (!useless_type_conversion_p (TREE_TYPE (*tp
), TREE_TYPE (repl
)))
1120 tree vce
= build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (*tp
), repl
);
1126 info
->modified
= true;
1130 /* Traverse the function body and perform all modifications as
1131 described in ADJUSTMENTS. At function return, ADJUSTMENTS will be
1132 modified such that the replacement/reduction value will now be an
1133 offset into the corresponding simd_array.
1135 This function will replace all function argument uses with their
1136 corresponding simd array elements, and ajust the return values
1140 ipa_simd_modify_function_body (struct cgraph_node
*node
,
1141 ipa_param_body_adjustments
*adjustments
,
1142 tree retval_array
, tree iter
)
1148 /* Register replacements for every function argument use to an offset into
1149 the corresponding simd_array. */
1150 for (i
= 0, j
= 0; i
< node
->simdclone
->nargs
; ++i
, ++j
)
1152 if (!node
->simdclone
->args
[i
].vector_arg
1153 || (*adjustments
->m_adj_params
)[j
].user_flag
)
1156 tree basetype
= TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
);
1157 tree vectype
= TREE_TYPE (node
->simdclone
->args
[i
].vector_arg
);
1158 tree r
= build4 (ARRAY_REF
, basetype
, node
->simdclone
->args
[i
].simd_array
,
1159 iter
, NULL_TREE
, NULL_TREE
);
1160 adjustments
->register_replacement (&(*adjustments
->m_adj_params
)[j
], r
);
1162 if (multiple_p (node
->simdclone
->simdlen
, TYPE_VECTOR_SUBPARTS (vectype
)))
1163 j
+= vector_unroll_factor (node
->simdclone
->simdlen
,
1164 TYPE_VECTOR_SUBPARTS (vectype
)) - 1;
1166 adjustments
->sort_replacements ();
1169 FOR_EACH_SSA_NAME (i
, name
, cfun
)
1172 if (SSA_NAME_VAR (name
)
1173 && TREE_CODE (SSA_NAME_VAR (name
)) == PARM_DECL
1175 = adjustments
->get_replacement_ssa_base (SSA_NAME_VAR (name
))))
1177 if (SSA_NAME_IS_DEFAULT_DEF (name
))
1179 tree old_decl
= SSA_NAME_VAR (name
);
1180 bb
= single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
1181 gimple_stmt_iterator gsi
= gsi_after_labels (bb
);
1182 tree repl
= adjustments
->lookup_replacement (old_decl
, 0);
1183 gcc_checking_assert (repl
);
1184 repl
= unshare_expr (repl
);
1185 set_ssa_default_def (cfun
, old_decl
, NULL_TREE
);
1186 SET_SSA_NAME_VAR_OR_IDENTIFIER (name
, base_var
);
1187 SSA_NAME_IS_DEFAULT_DEF (name
) = 0;
1188 gimple
*stmt
= gimple_build_assign (name
, repl
);
1189 gsi_insert_before (&gsi
, stmt
, GSI_SAME_STMT
);
1192 SET_SSA_NAME_VAR_OR_IDENTIFIER (name
, base_var
);
1196 struct modify_stmt_info info
;
1197 info
.adjustments
= adjustments
;
1199 FOR_EACH_BB_FN (bb
, DECL_STRUCT_FUNCTION (node
->decl
))
1201 gimple_stmt_iterator gsi
;
1203 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1205 gphi
*phi
= as_a
<gphi
*> (gsi_stmt (gsi
));
1206 int i
, n
= gimple_phi_num_args (phi
);
1208 info
.after_stmt
= NULL
;
1209 struct walk_stmt_info wi
;
1210 memset (&wi
, 0, sizeof (wi
));
1211 info
.modified
= false;
1213 for (i
= 0; i
< n
; ++i
)
1215 int walk_subtrees
= 1;
1216 tree arg
= gimple_phi_arg_def (phi
, i
);
1218 ipa_simd_modify_stmt_ops (&op
, &walk_subtrees
, &wi
);
1221 SET_PHI_ARG_DEF (phi
, i
, op
);
1222 gcc_assert (TREE_CODE (op
) == SSA_NAME
);
1223 if (gimple_phi_arg_edge (phi
, i
)->flags
& EDGE_ABNORMAL
)
1224 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op
) = 1;
1229 gsi
= gsi_start_bb (bb
);
1230 while (!gsi_end_p (gsi
))
1232 gimple
*stmt
= gsi_stmt (gsi
);
1234 info
.after_stmt
= NULL
;
1235 struct walk_stmt_info wi
;
1237 memset (&wi
, 0, sizeof (wi
));
1238 info
.modified
= false;
1240 walk_gimple_op (stmt
, ipa_simd_modify_stmt_ops
, &wi
);
1242 if (greturn
*return_stmt
= dyn_cast
<greturn
*> (stmt
))
1244 tree retval
= gimple_return_retval (return_stmt
);
1245 edge e
= find_edge (bb
, EXIT_BLOCK_PTR_FOR_FN (cfun
));
1246 e
->flags
|= EDGE_FALLTHRU
;
1249 gsi_remove (&gsi
, true);
1253 /* Replace `return foo' with `retval_array[iter] = foo'. */
1254 tree ref
= build4 (ARRAY_REF
, TREE_TYPE (retval
),
1255 retval_array
, iter
, NULL
, NULL
);
1256 stmt
= gimple_build_assign (ref
, retval
);
1257 gsi_replace (&gsi
, stmt
, true);
1258 info
.modified
= true;
1264 /* If the above changed the var of a debug bind into something
1265 different, remove the debug stmt. We could also for all the
1266 replaced parameters add VAR_DECLs for debug info purposes,
1267 add debug stmts for those to be the simd array accesses and
1268 replace debug stmt var operand with that var. Debugging of
1269 vectorized loops doesn't work too well, so don't bother for
1271 if ((gimple_debug_bind_p (stmt
)
1272 && !DECL_P (gimple_debug_bind_get_var (stmt
)))
1273 || (gimple_debug_source_bind_p (stmt
)
1274 && !DECL_P (gimple_debug_source_bind_get_var (stmt
))))
1276 gsi_remove (&gsi
, true);
1279 if (maybe_clean_eh_stmt (stmt
))
1280 gimple_purge_dead_eh_edges (gimple_bb (stmt
));
1287 /* Helper function of simd_clone_adjust, return linear step addend
1291 simd_clone_linear_addend (struct cgraph_node
*node
, unsigned int i
,
1292 tree addtype
, basic_block entry_bb
)
1294 tree ptype
= NULL_TREE
;
1295 switch (node
->simdclone
->args
[i
].arg_type
)
1297 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
:
1298 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
:
1299 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
:
1300 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
:
1301 return build_int_cst (addtype
, node
->simdclone
->args
[i
].linear_step
);
1302 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
:
1303 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
:
1304 ptype
= TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
);
1306 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
:
1307 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
:
1308 ptype
= TREE_TYPE (TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
));
1314 unsigned int idx
= node
->simdclone
->args
[i
].linear_step
;
1315 tree arg
= node
->simdclone
->args
[idx
].orig_arg
;
1316 gcc_assert (is_gimple_reg_type (TREE_TYPE (arg
)));
1317 gimple_stmt_iterator gsi
= gsi_after_labels (entry_bb
);
1320 if (is_gimple_reg (arg
))
1321 ret
= get_or_create_ssa_default_def (cfun
, arg
);
1324 g
= gimple_build_assign (make_ssa_name (TREE_TYPE (arg
)), arg
);
1325 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1326 ret
= gimple_assign_lhs (g
);
1328 if (TREE_CODE (TREE_TYPE (arg
)) == REFERENCE_TYPE
)
1330 g
= gimple_build_assign (make_ssa_name (TREE_TYPE (TREE_TYPE (arg
))),
1331 build_simple_mem_ref (ret
));
1332 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1333 ret
= gimple_assign_lhs (g
);
1335 if (!useless_type_conversion_p (addtype
, TREE_TYPE (ret
)))
1337 g
= gimple_build_assign (make_ssa_name (addtype
), NOP_EXPR
, ret
);
1338 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1339 ret
= gimple_assign_lhs (g
);
1341 if (POINTER_TYPE_P (ptype
))
1343 tree size
= TYPE_SIZE_UNIT (TREE_TYPE (ptype
));
1344 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
1346 g
= gimple_build_assign (make_ssa_name (addtype
), MULT_EXPR
,
1347 ret
, fold_convert (addtype
, size
));
1348 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1349 ret
= gimple_assign_lhs (g
);
1355 /* Adjust the argument types in NODE to their appropriate vector
1359 simd_clone_adjust (struct cgraph_node
*node
)
1361 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
1363 tree orig_rettype
= TREE_TYPE (TREE_TYPE (node
->decl
));
1364 TREE_TYPE (node
->decl
) = build_distinct_type_copy (TREE_TYPE (node
->decl
));
1365 simd_clone_adjust_return_type (node
);
1366 simd_clone_adjust_argument_types (node
);
1367 targetm
.simd_clone
.adjust (node
);
1368 tree retval
= NULL_TREE
;
1369 if (orig_rettype
!= void_type_node
)
1372 if (INTEGRAL_TYPE_P (orig_rettype
) || POINTER_TYPE_P (orig_rettype
))
1373 veclen
= node
->simdclone
->vecsize_int
;
1375 veclen
= node
->simdclone
->vecsize_float
;
1376 if (known_eq (veclen
, 0U))
1377 veclen
= node
->simdclone
->simdlen
;
1379 veclen
= exact_div (veclen
,
1380 GET_MODE_BITSIZE (SCALAR_TYPE_MODE (orig_rettype
)));
1381 if (multiple_p (veclen
, node
->simdclone
->simdlen
))
1382 veclen
= node
->simdclone
->simdlen
;
1384 retval
= DECL_RESULT (node
->decl
);
1385 /* Adjust the DECL_RESULT. */
1386 TREE_TYPE (retval
) = TREE_TYPE (TREE_TYPE (node
->decl
));
1387 relayout_decl (retval
);
1389 tree atype
= build_array_type_nelts (orig_rettype
,
1390 node
->simdclone
->simdlen
);
1391 if (maybe_ne (veclen
, node
->simdclone
->simdlen
))
1392 retval
= build1 (VIEW_CONVERT_EXPR
, atype
, retval
);
1395 /* Set up a SIMD array to use as the return value. */
1396 retval
= create_tmp_var_raw (atype
, "retval");
1397 gimple_add_tmp_var (retval
);
1401 struct cgraph_simd_clone
*sc
= node
->simdclone
;
1402 vec
<ipa_adjusted_param
, va_gc
> *new_params
= NULL
;
1403 vec_safe_reserve (new_params
, sc
->nargs
);
1405 for (i
= 0; i
< sc
->nargs
; ++i
)
1407 ipa_adjusted_param adj
;
1408 memset (&adj
, 0, sizeof (adj
));
1413 adj
.prev_clone_index
= i
;
1414 switch (sc
->args
[i
].arg_type
)
1417 /* No adjustment necessary for scalar arguments. */
1418 adj
.op
= IPA_PARAM_OP_COPY
;
1420 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
:
1421 adj
.op
= IPA_PARAM_OP_COPY
;
1423 case SIMD_CLONE_ARG_TYPE_MASK
:
1424 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
:
1425 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
:
1426 case SIMD_CLONE_ARG_TYPE_VECTOR
:
1427 if (sc
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_MASK
1428 && sc
->mask_mode
!= VOIDmode
)
1429 elem_type
= boolean_type_node
;
1431 elem_type
= TREE_TYPE (sc
->args
[i
].vector_type
);
1432 if (INTEGRAL_TYPE_P (elem_type
) || POINTER_TYPE_P (elem_type
))
1433 veclen
= sc
->vecsize_int
;
1435 veclen
= sc
->vecsize_float
;
1436 if (known_eq (veclen
, 0U))
1437 veclen
= sc
->simdlen
;
1440 = exact_div (veclen
,
1441 GET_MODE_BITSIZE (SCALAR_TYPE_MODE (elem_type
)));
1442 if (multiple_p (veclen
, sc
->simdlen
))
1443 veclen
= sc
->simdlen
;
1444 if (sc
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_MASK
)
1447 adj
.param_prefix_index
= IPA_PARAM_PREFIX_MASK
;
1450 adj
.param_prefix_index
= IPA_PARAM_PREFIX_SIMD
;
1451 adj
.op
= IPA_PARAM_OP_NEW
;
1452 adj
.type
= sc
->args
[i
].vector_type
;
1453 k
= vector_unroll_factor (sc
->simdlen
, veclen
);
1454 for (j
= 1; j
< k
; j
++)
1456 vec_safe_push (new_params
, adj
);
1459 memset (&adj
, 0, sizeof (adj
));
1460 adj
.op
= IPA_PARAM_OP_NEW
;
1462 if (sc
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_MASK
)
1463 adj
.param_prefix_index
= IPA_PARAM_PREFIX_MASK
;
1465 adj
.param_prefix_index
= IPA_PARAM_PREFIX_SIMD
;
1467 adj
.prev_clone_index
= i
;
1468 adj
.type
= sc
->args
[i
].vector_type
;
1472 vec_safe_push (new_params
, adj
);
1474 ipa_param_body_adjustments
*adjustments
1475 = new ipa_param_body_adjustments (new_params
, node
->decl
);
1476 adjustments
->modify_formal_parameters ();
1478 push_gimplify_context ();
1480 gimple_seq seq
= simd_clone_init_simd_arrays (node
, adjustments
);
1482 /* Adjust all uses of vector arguments accordingly. Adjust all
1483 return values accordingly. */
1484 tree iter
= create_tmp_var (unsigned_type_node
, "iter");
1485 tree iter1
= make_ssa_name (iter
);
1486 tree iter2
= NULL_TREE
;
1487 ipa_simd_modify_function_body (node
, adjustments
, retval
, iter1
);
1490 /* Initialize the iteration variable. */
1491 basic_block entry_bb
= single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
1492 basic_block body_bb
= split_block_after_labels (entry_bb
)->dest
;
1493 gimple_stmt_iterator gsi
= gsi_after_labels (entry_bb
);
1494 /* Insert the SIMD array and iv initialization at function
1496 gsi_insert_seq_before (&gsi
, seq
, GSI_NEW_STMT
);
1498 pop_gimplify_context (NULL
);
1501 basic_block incr_bb
= NULL
;
1502 class loop
*loop
= NULL
;
1504 /* Create a new BB right before the original exit BB, to hold the
1505 iteration increment and the condition/branch. */
1506 if (EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun
)->preds
))
1508 basic_block orig_exit
= EDGE_PRED (EXIT_BLOCK_PTR_FOR_FN (cfun
), 0)->src
;
1509 incr_bb
= create_empty_bb (orig_exit
);
1510 incr_bb
->count
= profile_count::zero ();
1511 add_bb_to_loop (incr_bb
, body_bb
->loop_father
);
1512 while (EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun
)->preds
))
1514 edge e
= EDGE_PRED (EXIT_BLOCK_PTR_FOR_FN (cfun
), 0);
1515 redirect_edge_succ (e
, incr_bb
);
1516 incr_bb
->count
+= e
->count ();
1519 else if (node
->simdclone
->inbranch
)
1521 incr_bb
= create_empty_bb (entry_bb
);
1522 incr_bb
->count
= profile_count::zero ();
1523 add_bb_to_loop (incr_bb
, body_bb
->loop_father
);
1528 make_single_succ_edge (incr_bb
, EXIT_BLOCK_PTR_FOR_FN (cfun
), 0);
1529 gsi
= gsi_last_bb (incr_bb
);
1530 iter2
= make_ssa_name (iter
);
1531 g
= gimple_build_assign (iter2
, PLUS_EXPR
, iter1
,
1532 build_int_cst (unsigned_type_node
, 1));
1533 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1535 /* Mostly annotate the loop for the vectorizer (the rest is done
1537 loop
= alloc_loop ();
1538 cfun
->has_force_vectorize_loops
= true;
1539 /* We can assert that safelen is the 'minimum' simdlen. */
1540 loop
->safelen
= constant_lower_bound (node
->simdclone
->simdlen
);
1541 loop
->force_vectorize
= true;
1542 loop
->header
= body_bb
;
1545 /* Branch around the body if the mask applies. */
1546 if (node
->simdclone
->inbranch
)
1548 gsi
= gsi_last_bb (loop
->header
);
1550 = node
->simdclone
->args
[node
->simdclone
->nargs
- 1].simd_array
;
1552 if (node
->simdclone
->mask_mode
!= VOIDmode
)
1555 if (mask_array
== NULL_TREE
)
1557 tree arg
= node
->simdclone
->args
[node
->simdclone
->nargs
1559 mask
= get_or_create_ssa_default_def (cfun
, arg
);
1564 tree maskt
= TREE_TYPE (mask_array
);
1565 int c
= tree_to_uhwi (TYPE_MAX_VALUE (TYPE_DOMAIN (maskt
)));
1566 /* For now, c must be constant here. */
1567 c
= exact_div (node
->simdclone
->simdlen
, c
+ 1).to_constant ();
1568 int s
= exact_log2 (c
);
1571 tree idx
= make_ssa_name (TREE_TYPE (iter1
));
1572 g
= gimple_build_assign (idx
, RSHIFT_EXPR
, iter1
,
1573 build_int_cst (NULL_TREE
, s
));
1574 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1575 mask
= make_ssa_name (TREE_TYPE (TREE_TYPE (mask_array
)));
1576 tree aref
= build4 (ARRAY_REF
,
1577 TREE_TYPE (TREE_TYPE (mask_array
)),
1578 mask_array
, idx
, NULL
, NULL
);
1579 g
= gimple_build_assign (mask
, aref
);
1580 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1581 shift_cnt
= make_ssa_name (TREE_TYPE (iter1
));
1582 g
= gimple_build_assign (shift_cnt
, BIT_AND_EXPR
, iter1
,
1583 build_int_cst (TREE_TYPE (iter1
), c
));
1584 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1586 tree shift_cnt_conv
= shift_cnt
;
1587 if (!useless_type_conversion_p (TREE_TYPE (mask
),
1588 TREE_TYPE (shift_cnt
)))
1590 shift_cnt_conv
= make_ssa_name (TREE_TYPE (mask
));
1591 g
= gimple_build_assign (shift_cnt_conv
, NOP_EXPR
, shift_cnt
);
1592 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1594 g
= gimple_build_assign (make_ssa_name (TREE_TYPE (mask
)),
1595 RSHIFT_EXPR
, mask
, shift_cnt_conv
);
1596 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1597 mask
= gimple_assign_lhs (g
);
1598 g
= gimple_build_assign (make_ssa_name (TREE_TYPE (mask
)),
1600 build_one_cst (TREE_TYPE (mask
)));
1601 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1602 mask
= gimple_assign_lhs (g
);
1606 mask
= make_ssa_name (TREE_TYPE (TREE_TYPE (mask_array
)));
1607 tree aref
= build4 (ARRAY_REF
,
1608 TREE_TYPE (TREE_TYPE (mask_array
)),
1609 mask_array
, iter1
, NULL
, NULL
);
1610 g
= gimple_build_assign (mask
, aref
);
1611 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1612 int bitsize
= GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (aref
)));
1613 if (!INTEGRAL_TYPE_P (TREE_TYPE (aref
)))
1615 aref
= build1 (VIEW_CONVERT_EXPR
,
1616 build_nonstandard_integer_type (bitsize
, 0),
1618 mask
= make_ssa_name (TREE_TYPE (aref
));
1619 g
= gimple_build_assign (mask
, aref
);
1620 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1624 g
= gimple_build_cond (EQ_EXPR
, mask
, build_zero_cst (TREE_TYPE (mask
)),
1626 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1627 edge e
= make_edge (loop
->header
, incr_bb
, EDGE_TRUE_VALUE
);
1628 e
->probability
= profile_probability::unlikely ().guessed ();
1629 incr_bb
->count
+= e
->count ();
1630 edge fallthru
= FALLTHRU_EDGE (loop
->header
);
1631 fallthru
->flags
= EDGE_FALSE_VALUE
;
1632 fallthru
->probability
= profile_probability::likely ().guessed ();
1635 basic_block latch_bb
= NULL
;
1636 basic_block new_exit_bb
= NULL
;
1638 /* Generate the condition. */
1641 gsi
= gsi_last_bb (incr_bb
);
1642 g
= gimple_build_cond (LT_EXPR
, iter2
,
1643 build_int_cst (unsigned_type_node
,
1644 node
->simdclone
->simdlen
),
1646 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1647 edge e
= split_block (incr_bb
, gsi_stmt (gsi
));
1649 new_exit_bb
= split_block_after_labels (latch_bb
)->dest
;
1650 loop
->latch
= latch_bb
;
1652 redirect_edge_succ (FALLTHRU_EDGE (latch_bb
), body_bb
);
1654 edge new_e
= make_edge (incr_bb
, new_exit_bb
, EDGE_FALSE_VALUE
);
1656 /* FIXME: Do we need to distribute probabilities for the conditional? */
1657 new_e
->probability
= profile_probability::guessed_never ();
1658 /* The successor of incr_bb is already pointing to latch_bb; just
1660 make_edge (incr_bb, latch_bb, EDGE_TRUE_VALUE); */
1661 FALLTHRU_EDGE (incr_bb
)->flags
= EDGE_TRUE_VALUE
;
1664 gphi
*phi
= create_phi_node (iter1
, body_bb
);
1665 edge preheader_edge
= find_edge (entry_bb
, body_bb
);
1666 edge latch_edge
= NULL
;
1667 add_phi_arg (phi
, build_zero_cst (unsigned_type_node
), preheader_edge
,
1671 latch_edge
= single_succ_edge (latch_bb
);
1672 add_phi_arg (phi
, iter2
, latch_edge
, UNKNOWN_LOCATION
);
1674 /* Generate the new return. */
1675 gsi
= gsi_last_bb (new_exit_bb
);
1677 && TREE_CODE (retval
) == VIEW_CONVERT_EXPR
1678 && TREE_CODE (TREE_OPERAND (retval
, 0)) == RESULT_DECL
)
1679 retval
= TREE_OPERAND (retval
, 0);
1682 retval
= build1 (VIEW_CONVERT_EXPR
,
1683 TREE_TYPE (TREE_TYPE (node
->decl
)),
1685 retval
= force_gimple_operand_gsi (&gsi
, retval
, true, NULL
,
1686 false, GSI_CONTINUE_LINKING
);
1688 g
= gimple_build_return (retval
);
1689 gsi_insert_after (&gsi
, g
, GSI_CONTINUE_LINKING
);
1692 /* Handle aligned clauses by replacing default defs of the aligned
1693 uniform args with __builtin_assume_aligned (arg_N(D), alignment)
1694 lhs. Handle linear by adding PHIs. */
1695 for (unsigned i
= 0; i
< node
->simdclone
->nargs
; i
++)
1696 if (node
->simdclone
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_UNIFORM
1697 && (TREE_ADDRESSABLE (node
->simdclone
->args
[i
].orig_arg
)
1698 || !is_gimple_reg_type
1699 (TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
))))
1701 tree orig_arg
= node
->simdclone
->args
[i
].orig_arg
;
1702 if (is_gimple_reg_type (TREE_TYPE (orig_arg
)))
1703 iter1
= make_ssa_name (TREE_TYPE (orig_arg
));
1706 iter1
= create_tmp_var_raw (TREE_TYPE (orig_arg
));
1707 gimple_add_tmp_var (iter1
);
1709 gsi
= gsi_after_labels (entry_bb
);
1710 g
= gimple_build_assign (iter1
, orig_arg
);
1711 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1712 gsi
= gsi_after_labels (body_bb
);
1713 g
= gimple_build_assign (orig_arg
, iter1
);
1714 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1716 else if (node
->simdclone
->args
[i
].arg_type
== SIMD_CLONE_ARG_TYPE_UNIFORM
1717 && DECL_BY_REFERENCE (node
->simdclone
->args
[i
].orig_arg
)
1718 && TREE_CODE (TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
))
1721 (TREE_TYPE (TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
))))
1723 tree orig_arg
= node
->simdclone
->args
[i
].orig_arg
;
1724 tree def
= ssa_default_def (cfun
, orig_arg
);
1725 if (def
&& !has_zero_uses (def
))
1727 iter1
= create_tmp_var_raw (TREE_TYPE (TREE_TYPE (orig_arg
)));
1728 gimple_add_tmp_var (iter1
);
1729 gsi
= gsi_after_labels (entry_bb
);
1730 g
= gimple_build_assign (iter1
, build_simple_mem_ref (def
));
1731 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1732 gsi
= gsi_after_labels (body_bb
);
1733 g
= gimple_build_assign (build_simple_mem_ref (def
), iter1
);
1734 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1737 else if (node
->simdclone
->args
[i
].alignment
1738 && node
->simdclone
->args
[i
].arg_type
1739 == SIMD_CLONE_ARG_TYPE_UNIFORM
1740 && (node
->simdclone
->args
[i
].alignment
1741 & (node
->simdclone
->args
[i
].alignment
- 1)) == 0
1742 && TREE_CODE (TREE_TYPE (node
->simdclone
->args
[i
].orig_arg
))
1745 unsigned int alignment
= node
->simdclone
->args
[i
].alignment
;
1746 tree orig_arg
= node
->simdclone
->args
[i
].orig_arg
;
1747 tree def
= ssa_default_def (cfun
, orig_arg
);
1748 if (def
&& !has_zero_uses (def
))
1750 tree fn
= builtin_decl_explicit (BUILT_IN_ASSUME_ALIGNED
);
1751 gimple_seq seq
= NULL
;
1752 bool need_cvt
= false;
1754 = gimple_build_call (fn
, 2, def
, size_int (alignment
));
1756 if (!useless_type_conversion_p (TREE_TYPE (orig_arg
),
1759 tree t
= make_ssa_name (need_cvt
? ptr_type_node
: orig_arg
);
1760 gimple_call_set_lhs (g
, t
);
1761 gimple_seq_add_stmt_without_update (&seq
, g
);
1764 t
= make_ssa_name (orig_arg
);
1765 g
= gimple_build_assign (t
, NOP_EXPR
, gimple_call_lhs (g
));
1766 gimple_seq_add_stmt_without_update (&seq
, g
);
1768 gsi_insert_seq_on_edge_immediate
1769 (single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun
)), seq
);
1771 entry_bb
= single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
1772 node
->create_edge (cgraph_node::get_create (fn
),
1773 call
, entry_bb
->count
);
1775 imm_use_iterator iter
;
1776 use_operand_p use_p
;
1778 tree repl
= gimple_get_lhs (g
);
1779 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, def
)
1780 if (is_gimple_debug (use_stmt
) || use_stmt
== call
)
1783 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
1784 SET_USE (use_p
, repl
);
1787 else if ((node
->simdclone
->args
[i
].arg_type
1788 == SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
)
1789 || (node
->simdclone
->args
[i
].arg_type
1790 == SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
)
1791 || (node
->simdclone
->args
[i
].arg_type
1792 == SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
)
1793 || (node
->simdclone
->args
[i
].arg_type
1794 == SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
))
1796 tree orig_arg
= node
->simdclone
->args
[i
].orig_arg
;
1797 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (orig_arg
))
1798 || POINTER_TYPE_P (TREE_TYPE (orig_arg
)));
1799 tree def
= NULL_TREE
;
1800 if (TREE_ADDRESSABLE (orig_arg
))
1802 def
= make_ssa_name (TREE_TYPE (orig_arg
));
1803 iter1
= make_ssa_name (TREE_TYPE (orig_arg
));
1805 iter2
= make_ssa_name (TREE_TYPE (orig_arg
));
1806 gsi
= gsi_after_labels (entry_bb
);
1807 g
= gimple_build_assign (def
, orig_arg
);
1808 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1812 def
= ssa_default_def (cfun
, orig_arg
);
1813 if (!def
|| has_zero_uses (def
))
1817 iter1
= make_ssa_name (orig_arg
);
1819 iter2
= make_ssa_name (orig_arg
);
1824 phi
= create_phi_node (iter1
, body_bb
);
1825 add_phi_arg (phi
, def
, preheader_edge
, UNKNOWN_LOCATION
);
1828 add_phi_arg (phi
, iter2
, latch_edge
, UNKNOWN_LOCATION
);
1829 enum tree_code code
= INTEGRAL_TYPE_P (TREE_TYPE (orig_arg
))
1830 ? PLUS_EXPR
: POINTER_PLUS_EXPR
;
1831 tree addtype
= INTEGRAL_TYPE_P (TREE_TYPE (orig_arg
))
1832 ? TREE_TYPE (orig_arg
) : sizetype
;
1833 tree addcst
= simd_clone_linear_addend (node
, i
, addtype
,
1835 gsi
= gsi_last_bb (incr_bb
);
1836 g
= gimple_build_assign (iter2
, code
, iter1
, addcst
);
1837 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1840 imm_use_iterator iter
;
1841 use_operand_p use_p
;
1843 if (TREE_ADDRESSABLE (orig_arg
))
1845 gsi
= gsi_after_labels (body_bb
);
1846 g
= gimple_build_assign (orig_arg
, iter1
);
1847 gsi_insert_before (&gsi
, g
, GSI_NEW_STMT
);
1850 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, def
)
1851 if (use_stmt
== phi
)
1854 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
1855 SET_USE (use_p
, iter1
);
1858 else if (node
->simdclone
->args
[i
].arg_type
1859 == SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
1860 || (node
->simdclone
->args
[i
].arg_type
1861 == SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
))
1863 tree orig_arg
= node
->simdclone
->args
[i
].orig_arg
;
1864 tree def
= ssa_default_def (cfun
, orig_arg
);
1865 gcc_assert (!TREE_ADDRESSABLE (orig_arg
)
1866 && TREE_CODE (TREE_TYPE (orig_arg
)) == REFERENCE_TYPE
);
1867 if (def
&& !has_zero_uses (def
))
1869 tree rtype
= TREE_TYPE (TREE_TYPE (orig_arg
));
1870 iter1
= make_ssa_name (orig_arg
);
1872 iter2
= make_ssa_name (orig_arg
);
1873 tree iter3
= make_ssa_name (rtype
);
1874 tree iter4
= make_ssa_name (rtype
);
1875 tree iter5
= incr_bb
? make_ssa_name (rtype
) : NULL_TREE
;
1876 gsi
= gsi_after_labels (entry_bb
);
1878 = gimple_build_assign (iter3
, build_simple_mem_ref (def
));
1879 gsi_insert_before (&gsi
, load
, GSI_NEW_STMT
);
1881 tree array
= node
->simdclone
->args
[i
].simd_array
;
1882 TREE_ADDRESSABLE (array
) = 1;
1883 tree ptr
= build_fold_addr_expr (array
);
1884 phi
= create_phi_node (iter1
, body_bb
);
1885 add_phi_arg (phi
, ptr
, preheader_edge
, UNKNOWN_LOCATION
);
1888 add_phi_arg (phi
, iter2
, latch_edge
, UNKNOWN_LOCATION
);
1889 g
= gimple_build_assign (iter2
, POINTER_PLUS_EXPR
, iter1
,
1890 TYPE_SIZE_UNIT (TREE_TYPE (iter3
)));
1891 gsi
= gsi_last_bb (incr_bb
);
1892 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1895 phi
= create_phi_node (iter4
, body_bb
);
1896 add_phi_arg (phi
, iter3
, preheader_edge
, UNKNOWN_LOCATION
);
1899 add_phi_arg (phi
, iter5
, latch_edge
, UNKNOWN_LOCATION
);
1900 enum tree_code code
= INTEGRAL_TYPE_P (TREE_TYPE (iter3
))
1901 ? PLUS_EXPR
: POINTER_PLUS_EXPR
;
1902 tree addtype
= INTEGRAL_TYPE_P (TREE_TYPE (iter3
))
1903 ? TREE_TYPE (iter3
) : sizetype
;
1904 tree addcst
= simd_clone_linear_addend (node
, i
, addtype
,
1906 g
= gimple_build_assign (iter5
, code
, iter4
, addcst
);
1907 gsi
= gsi_last_bb (incr_bb
);
1908 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1911 g
= gimple_build_assign (build_simple_mem_ref (iter1
), iter4
);
1912 gsi
= gsi_after_labels (body_bb
);
1913 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1915 imm_use_iterator iter
;
1916 use_operand_p use_p
;
1918 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, def
)
1919 if (use_stmt
== load
)
1922 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
1923 SET_USE (use_p
, iter1
);
1925 if (!TYPE_READONLY (rtype
) && incr_bb
)
1927 tree v
= make_ssa_name (rtype
);
1928 tree aref
= build4 (ARRAY_REF
, rtype
, array
,
1929 size_zero_node
, NULL_TREE
,
1931 gsi
= gsi_after_labels (new_exit_bb
);
1932 g
= gimple_build_assign (v
, aref
);
1933 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1934 g
= gimple_build_assign (build_simple_mem_ref (def
), v
);
1935 gsi_insert_before (&gsi
, g
, GSI_SAME_STMT
);
1940 calculate_dominance_info (CDI_DOMINATORS
);
1942 add_loop (loop
, loop
->header
->loop_father
);
1943 update_ssa (TODO_update_ssa
);
1948 /* If the function in NODE is tagged as an elemental SIMD function,
1949 create the appropriate SIMD clones. */
1952 expand_simd_clones (struct cgraph_node
*node
)
1955 bool explicit_p
= true;
1957 if (node
->inlined_to
1958 || lookup_attribute ("noclone", DECL_ATTRIBUTES (node
->decl
)))
1961 attr
= lookup_attribute ("omp declare simd",
1962 DECL_ATTRIBUTES (node
->decl
));
1964 /* See if we can add an "omp declare simd" directive implicitly
1965 before giving up. */
1966 /* FIXME: OpenACC "#pragma acc routine" translates into
1967 "omp declare target", but appears also to have some other effects
1968 that conflict with generating SIMD clones, causing ICEs. So don't
1969 do this if we've got OpenACC instead of OpenMP. */
1970 if (attr
== NULL_TREE
1971 #ifdef ACCEL_COMPILER
1972 && (flag_openmp_target_simd_clone
== OMP_TARGET_SIMD_CLONE_ANY
1973 || flag_openmp_target_simd_clone
== OMP_TARGET_SIMD_CLONE_NOHOST
)
1975 && (flag_openmp_target_simd_clone
== OMP_TARGET_SIMD_CLONE_ANY
1976 || flag_openmp_target_simd_clone
== OMP_TARGET_SIMD_CLONE_HOST
)
1978 && !oacc_get_fn_attrib (node
->decl
)
1979 && ok_for_auto_simd_clone (node
))
1981 attr
= tree_cons (get_identifier ("omp declare simd"), NULL
,
1982 DECL_ATTRIBUTES (node
->decl
));
1983 DECL_ATTRIBUTES (node
->decl
) = attr
;
1987 if (attr
== NULL_TREE
)
1991 #pragma omp declare simd
1993 in C, there we don't know the argument types at all. */
1994 if (!node
->definition
1995 && TYPE_ARG_TYPES (TREE_TYPE (node
->decl
)) == NULL_TREE
)
1998 /* Call this before creating clone_info, as it might ggc_collect. */
1999 if (node
->definition
&& node
->has_gimple_body_p ())
2004 /* Start with parsing the "omp declare simd" attribute(s). */
2005 bool inbranch_clause_specified
;
2006 struct cgraph_simd_clone
*clone_info
2007 = simd_clone_clauses_extract (node
, TREE_VALUE (attr
),
2008 &inbranch_clause_specified
);
2009 if (clone_info
== NULL
)
2012 poly_uint64 orig_simdlen
= clone_info
->simdlen
;
2013 tree base_type
= simd_clone_compute_base_data_type (node
, clone_info
);
2015 /* The target can return 0 (no simd clones should be created),
2016 1 (just one ISA of simd clones should be created) or higher
2017 count of ISA variants. In that case, clone_info is initialized
2018 for the first ISA variant. */
2020 = targetm
.simd_clone
.compute_vecsize_and_simdlen (node
, clone_info
,
2026 /* Loop over all COUNT ISA variants, and if !INBRANCH_CLAUSE_SPECIFIED,
2027 also create one inbranch and one !inbranch clone of it. */
2028 for (int i
= 0; i
< count
* 2; i
++)
2030 struct cgraph_simd_clone
*clone
= clone_info
;
2031 if (inbranch_clause_specified
&& (i
& 1) != 0)
2036 clone
= simd_clone_struct_alloc (clone_info
->nargs
2038 simd_clone_struct_copy (clone
, clone_info
);
2039 /* Undo changes targetm.simd_clone.compute_vecsize_and_simdlen
2040 and simd_clone_adjust_argument_types did to the first
2042 clone
->nargs
-= clone_info
->inbranch
;
2043 clone
->simdlen
= orig_simdlen
;
2044 /* And call the target hook again to get the right ISA. */
2045 targetm
.simd_clone
.compute_vecsize_and_simdlen (node
, clone
,
2050 clone
->inbranch
= 1;
2053 /* simd_clone_mangle might fail if such a clone has been created
2055 tree id
= simd_clone_mangle (node
, clone
);
2056 if (id
== NULL_TREE
)
2059 clone
->nargs
+= clone
->inbranch
;
2063 /* Only when we are sure we want to create the clone actually
2064 clone the function (or definitions) or create another
2065 extern FUNCTION_DECL (for prototypes without definitions). */
2066 struct cgraph_node
*n
= simd_clone_create (node
, !explicit_p
);
2070 clone
->nargs
+= clone
->inbranch
;
2074 n
->simdclone
= clone
;
2075 clone
->origin
= node
;
2076 clone
->next_clone
= NULL
;
2077 if (node
->simd_clones
== NULL
)
2079 clone
->prev_clone
= n
;
2080 node
->simd_clones
= n
;
2084 clone
->prev_clone
= node
->simd_clones
->simdclone
->prev_clone
;
2085 clone
->prev_clone
->simdclone
->next_clone
= n
;
2086 node
->simd_clones
->simdclone
->prev_clone
= n
;
2088 symtab
->change_decl_assembler_name (n
->decl
, id
);
2089 /* And finally adjust the return type, parameters and for
2090 definitions also function body. */
2091 if (node
->definition
)
2092 simd_clone_adjust (n
);
2096 = build_distinct_type_copy (TREE_TYPE (n
->decl
));
2097 simd_clone_adjust_return_type (n
);
2098 simd_clone_adjust_argument_types (n
);
2099 targetm
.simd_clone
.adjust (n
);
2102 fprintf (dump_file
, "\nGenerated %s clone %s\n",
2103 (TREE_PUBLIC (n
->decl
) ? "global" : "local"),
2104 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
2107 while ((attr
= lookup_attribute ("omp declare simd", TREE_CHAIN (attr
))));
2110 /* Entry point for IPA simd clone creation pass. */
2113 ipa_omp_simd_clone (void)
2115 struct cgraph_node
*node
;
2116 FOR_EACH_FUNCTION (node
)
2117 expand_simd_clones (node
);
2123 const pass_data pass_data_omp_simd_clone
=
2125 SIMPLE_IPA_PASS
, /* type */
2126 "simdclone", /* name */
2127 OPTGROUP_OMP
, /* optinfo_flags */
2128 TV_NONE
, /* tv_id */
2129 ( PROP_ssa
| PROP_cfg
), /* properties_required */
2130 0, /* properties_provided */
2131 0, /* properties_destroyed */
2132 0, /* todo_flags_start */
2133 0, /* todo_flags_finish */
2136 class pass_omp_simd_clone
: public simple_ipa_opt_pass
2139 pass_omp_simd_clone(gcc::context
*ctxt
)
2140 : simple_ipa_opt_pass(pass_data_omp_simd_clone
, ctxt
)
2143 /* opt_pass methods: */
2144 bool gate (function
*) final override
;
2145 unsigned int execute (function
*) final override
2147 return ipa_omp_simd_clone ();
2152 pass_omp_simd_clone::gate (function
*)
2154 return targetm
.simd_clone
.compute_vecsize_and_simdlen
!= NULL
;
2159 simple_ipa_opt_pass
*
2160 make_pass_omp_simd_clone (gcc::context
*ctxt
)
2162 return new pass_omp_simd_clone (ctxt
);