1 /* Analysis Utilities for Loop Vectorization.
2 Copyright (C) 2006-2013 Free Software Foundation, Inc.
3 Contributed by Dorit Nuzman <dorit@il.ibm.com>
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"
28 #include "basic-block.h"
29 #include "gimple-pretty-print.h"
30 #include "tree-flow.h"
35 #include "tree-data-ref.h"
36 #include "tree-vectorizer.h"
37 #include "recog.h" /* FIXME: for insn_data */
38 #include "diagnostic-core.h"
41 /* Pattern recognition functions */
42 static gimple
vect_recog_widen_sum_pattern (vec
<gimple
> *, tree
*,
44 static gimple
vect_recog_widen_mult_pattern (vec
<gimple
> *, tree
*,
46 static gimple
vect_recog_dot_prod_pattern (vec
<gimple
> *, tree
*,
48 static gimple
vect_recog_pow_pattern (vec
<gimple
> *, tree
*, tree
*);
49 static gimple
vect_recog_over_widening_pattern (vec
<gimple
> *, tree
*,
51 static gimple
vect_recog_widen_shift_pattern (vec
<gimple
> *,
53 static gimple
vect_recog_rotate_pattern (vec
<gimple
> *, tree
*, tree
*);
54 static gimple
vect_recog_vector_vector_shift_pattern (vec
<gimple
> *,
56 static gimple
vect_recog_divmod_pattern (vec
<gimple
> *,
58 static gimple
vect_recog_mixed_size_cond_pattern (vec
<gimple
> *,
60 static gimple
vect_recog_bool_pattern (vec
<gimple
> *, tree
*, tree
*);
61 static vect_recog_func_ptr vect_vect_recog_func_ptrs
[NUM_PATTERNS
] = {
62 vect_recog_widen_mult_pattern
,
63 vect_recog_widen_sum_pattern
,
64 vect_recog_dot_prod_pattern
,
65 vect_recog_pow_pattern
,
66 vect_recog_widen_shift_pattern
,
67 vect_recog_over_widening_pattern
,
68 vect_recog_rotate_pattern
,
69 vect_recog_vector_vector_shift_pattern
,
70 vect_recog_divmod_pattern
,
71 vect_recog_mixed_size_cond_pattern
,
72 vect_recog_bool_pattern
};
75 append_pattern_def_seq (stmt_vec_info stmt_info
, gimple stmt
)
77 gimple_seq_add_stmt_without_update (&STMT_VINFO_PATTERN_DEF_SEQ (stmt_info
),
82 new_pattern_def_seq (stmt_vec_info stmt_info
, gimple stmt
)
84 STMT_VINFO_PATTERN_DEF_SEQ (stmt_info
) = NULL
;
85 append_pattern_def_seq (stmt_info
, stmt
);
88 /* Check whether STMT2 is in the same loop or basic block as STMT1.
89 Which of the two applies depends on whether we're currently doing
90 loop-based or basic-block-based vectorization, as determined by
91 the vinfo_for_stmt for STMT1 (which must be defined).
93 If this returns true, vinfo_for_stmt for STMT2 is guaranteed
94 to be defined as well. */
97 vect_same_loop_or_bb_p (gimple stmt1
, gimple stmt2
)
99 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (stmt1
);
100 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
101 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
103 if (!gimple_bb (stmt2
))
108 struct loop
*loop
= LOOP_VINFO_LOOP (loop_vinfo
);
109 if (!flow_bb_inside_loop_p (loop
, gimple_bb (stmt2
)))
114 if (gimple_bb (stmt2
) != BB_VINFO_BB (bb_vinfo
)
115 || gimple_code (stmt2
) == GIMPLE_PHI
)
119 gcc_assert (vinfo_for_stmt (stmt2
));
123 /* If the LHS of DEF_STMT has a single use, and that statement is
124 in the same loop or basic block, return it. */
127 vect_single_imm_use (gimple def_stmt
)
129 tree lhs
= gimple_assign_lhs (def_stmt
);
133 if (!single_imm_use (lhs
, &use_p
, &use_stmt
))
136 if (!vect_same_loop_or_bb_p (def_stmt
, use_stmt
))
142 /* Check whether NAME, an ssa-name used in USE_STMT,
143 is a result of a type promotion or demotion, such that:
144 DEF_STMT: NAME = NOP (name0)
145 where the type of name0 (ORIG_TYPE) is smaller/bigger than the type of NAME.
146 If CHECK_SIGN is TRUE, check that either both types are signed or both are
150 type_conversion_p (tree name
, gimple use_stmt
, bool check_sign
,
151 tree
*orig_type
, gimple
*def_stmt
, bool *promotion
)
155 loop_vec_info loop_vinfo
;
156 stmt_vec_info stmt_vinfo
;
157 tree type
= TREE_TYPE (name
);
159 enum vect_def_type dt
;
161 bb_vec_info bb_vinfo
;
163 stmt_vinfo
= vinfo_for_stmt (use_stmt
);
164 loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
165 bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
166 if (!vect_is_simple_use (name
, use_stmt
, loop_vinfo
, bb_vinfo
, def_stmt
,
170 if (dt
!= vect_internal_def
171 && dt
!= vect_external_def
&& dt
!= vect_constant_def
)
177 if (!is_gimple_assign (*def_stmt
))
180 if (!CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (*def_stmt
)))
183 oprnd0
= gimple_assign_rhs1 (*def_stmt
);
185 *orig_type
= TREE_TYPE (oprnd0
);
186 if (!INTEGRAL_TYPE_P (type
) || !INTEGRAL_TYPE_P (*orig_type
)
187 || ((TYPE_UNSIGNED (type
) != TYPE_UNSIGNED (*orig_type
)) && check_sign
))
190 if (TYPE_PRECISION (type
) >= (TYPE_PRECISION (*orig_type
) * 2))
192 else if (TYPE_PRECISION (*orig_type
) >= (TYPE_PRECISION (type
) * 2))
197 if (!vect_is_simple_use (oprnd0
, *def_stmt
, loop_vinfo
,
198 bb_vinfo
, &dummy_gimple
, &dummy
, &dt
))
204 /* Helper to return a new temporary for pattern of TYPE for STMT. If STMT
205 is NULL, the caller must set SSA_NAME_DEF_STMT for the returned SSA var. */
208 vect_recog_temp_ssa_var (tree type
, gimple stmt
)
210 return make_temp_ssa_name (type
, stmt
, "patt");
213 /* Function vect_recog_dot_prod_pattern
215 Try to find the following pattern:
221 sum_0 = phi <init, sum_1>
224 S3 x_T = (TYPE1) x_t;
225 S4 y_T = (TYPE1) y_t;
227 [S6 prod = (TYPE2) prod; #optional]
228 S7 sum_1 = prod + sum_0;
230 where 'TYPE1' is exactly double the size of type 'type', and 'TYPE2' is the
231 same size of 'TYPE1' or bigger. This is a special case of a reduction
236 * STMTS: Contains a stmt from which the pattern search begins. In the
237 example, when this function is called with S7, the pattern {S3,S4,S5,S6,S7}
242 * TYPE_IN: The type of the input arguments to the pattern.
244 * TYPE_OUT: The type of the output of this pattern.
246 * Return value: A new stmt that will be used to replace the sequence of
247 stmts that constitute the pattern. In this case it will be:
248 WIDEN_DOT_PRODUCT <x_t, y_t, sum_0>
250 Note: The dot-prod idiom is a widening reduction pattern that is
251 vectorized without preserving all the intermediate results. It
252 produces only N/2 (widened) results (by summing up pairs of
253 intermediate results) rather than all N results. Therefore, we
254 cannot allow this pattern when we want to get all the results and in
255 the correct order (as is the case when this computation is in an
256 inner-loop nested in an outer-loop that us being vectorized). */
259 vect_recog_dot_prod_pattern (vec
<gimple
> *stmts
, tree
*type_in
,
262 gimple stmt
, last_stmt
= (*stmts
)[0];
264 tree oprnd00
, oprnd01
;
265 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
266 tree type
, half_type
;
269 loop_vec_info loop_info
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
277 loop
= LOOP_VINFO_LOOP (loop_info
);
279 if (!is_gimple_assign (last_stmt
))
282 type
= gimple_expr_type (last_stmt
);
284 /* Look for the following pattern
288 DDPROD = (TYPE2) DPROD;
289 sum_1 = DDPROD + sum_0;
291 - DX is double the size of X
292 - DY is double the size of Y
293 - DX, DY, DPROD all have the same type
294 - sum is the same size of DPROD or bigger
295 - sum has been recognized as a reduction variable.
297 This is equivalent to:
298 DPROD = X w* Y; #widen mult
299 sum_1 = DPROD w+ sum_0; #widen summation
301 DPROD = X w* Y; #widen mult
302 sum_1 = DPROD + sum_0; #summation
305 /* Starting from LAST_STMT, follow the defs of its uses in search
306 of the above pattern. */
308 if (gimple_assign_rhs_code (last_stmt
) != PLUS_EXPR
)
311 if (STMT_VINFO_IN_PATTERN_P (stmt_vinfo
))
313 /* Has been detected as widening-summation? */
315 stmt
= STMT_VINFO_RELATED_STMT (stmt_vinfo
);
316 type
= gimple_expr_type (stmt
);
317 if (gimple_assign_rhs_code (stmt
) != WIDEN_SUM_EXPR
)
319 oprnd0
= gimple_assign_rhs1 (stmt
);
320 oprnd1
= gimple_assign_rhs2 (stmt
);
321 half_type
= TREE_TYPE (oprnd0
);
327 if (STMT_VINFO_DEF_TYPE (stmt_vinfo
) != vect_reduction_def
)
329 oprnd0
= gimple_assign_rhs1 (last_stmt
);
330 oprnd1
= gimple_assign_rhs2 (last_stmt
);
331 if (!types_compatible_p (TREE_TYPE (oprnd0
), type
)
332 || !types_compatible_p (TREE_TYPE (oprnd1
), type
))
336 if (type_conversion_p (oprnd0
, stmt
, true, &half_type
, &def_stmt
,
341 oprnd0
= gimple_assign_rhs1 (stmt
);
347 /* So far so good. Since last_stmt was detected as a (summation) reduction,
348 we know that oprnd1 is the reduction variable (defined by a loop-header
349 phi), and oprnd0 is an ssa-name defined by a stmt in the loop body.
350 Left to check that oprnd0 is defined by a (widen_)mult_expr */
351 if (TREE_CODE (oprnd0
) != SSA_NAME
)
354 prod_type
= half_type
;
355 stmt
= SSA_NAME_DEF_STMT (oprnd0
);
357 /* It could not be the dot_prod pattern if the stmt is outside the loop. */
358 if (!gimple_bb (stmt
) || !flow_bb_inside_loop_p (loop
, gimple_bb (stmt
)))
361 /* FORNOW. Can continue analyzing the def-use chain when this stmt in a phi
362 inside the loop (in case we are analyzing an outer-loop). */
363 if (!is_gimple_assign (stmt
))
365 stmt_vinfo
= vinfo_for_stmt (stmt
);
366 gcc_assert (stmt_vinfo
);
367 if (STMT_VINFO_DEF_TYPE (stmt_vinfo
) != vect_internal_def
)
369 if (gimple_assign_rhs_code (stmt
) != MULT_EXPR
)
371 if (STMT_VINFO_IN_PATTERN_P (stmt_vinfo
))
373 /* Has been detected as a widening multiplication? */
375 stmt
= STMT_VINFO_RELATED_STMT (stmt_vinfo
);
376 if (gimple_assign_rhs_code (stmt
) != WIDEN_MULT_EXPR
)
378 stmt_vinfo
= vinfo_for_stmt (stmt
);
379 gcc_assert (stmt_vinfo
);
380 gcc_assert (STMT_VINFO_DEF_TYPE (stmt_vinfo
) == vect_internal_def
);
381 oprnd00
= gimple_assign_rhs1 (stmt
);
382 oprnd01
= gimple_assign_rhs2 (stmt
);
386 tree half_type0
, half_type1
;
390 oprnd0
= gimple_assign_rhs1 (stmt
);
391 oprnd1
= gimple_assign_rhs2 (stmt
);
392 if (!types_compatible_p (TREE_TYPE (oprnd0
), prod_type
)
393 || !types_compatible_p (TREE_TYPE (oprnd1
), prod_type
))
395 if (!type_conversion_p (oprnd0
, stmt
, true, &half_type0
, &def_stmt
,
399 oprnd00
= gimple_assign_rhs1 (def_stmt
);
400 if (!type_conversion_p (oprnd0
, stmt
, true, &half_type1
, &def_stmt
,
404 oprnd01
= gimple_assign_rhs1 (def_stmt
);
405 if (!types_compatible_p (half_type0
, half_type1
))
407 if (TYPE_PRECISION (prod_type
) != TYPE_PRECISION (half_type0
) * 2)
411 half_type
= TREE_TYPE (oprnd00
);
412 *type_in
= half_type
;
415 /* Pattern detected. Create a stmt to be used to replace the pattern: */
416 var
= vect_recog_temp_ssa_var (type
, NULL
);
417 pattern_stmt
= gimple_build_assign_with_ops (DOT_PROD_EXPR
, var
,
418 oprnd00
, oprnd01
, oprnd1
);
420 if (dump_enabled_p ())
422 dump_printf_loc (MSG_NOTE
, vect_location
,
423 "vect_recog_dot_prod_pattern: detected: ");
424 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
427 /* We don't allow changing the order of the computation in the inner-loop
428 when doing outer-loop vectorization. */
429 gcc_assert (!nested_in_vect_loop_p (loop
, last_stmt
));
435 /* Handle widening operation by a constant. At the moment we support MULT_EXPR
438 For MULT_EXPR we check that CONST_OPRND fits HALF_TYPE, and for LSHIFT_EXPR
439 we check that CONST_OPRND is less or equal to the size of HALF_TYPE.
441 Otherwise, if the type of the result (TYPE) is at least 4 times bigger than
442 HALF_TYPE, and there is an intermediate type (2 times smaller than TYPE)
443 that satisfies the above restrictions, we can perform a widening opeartion
444 from the intermediate type to TYPE and replace a_T = (TYPE) a_t;
445 with a_it = (interm_type) a_t; */
448 vect_handle_widen_op_by_const (gimple stmt
, enum tree_code code
,
449 tree const_oprnd
, tree
*oprnd
,
450 vec
<gimple
> *stmts
, tree type
,
451 tree
*half_type
, gimple def_stmt
)
453 tree new_type
, new_oprnd
;
456 if (code
!= MULT_EXPR
&& code
!= LSHIFT_EXPR
)
459 if (((code
== MULT_EXPR
&& int_fits_type_p (const_oprnd
, *half_type
))
460 || (code
== LSHIFT_EXPR
461 && compare_tree_int (const_oprnd
, TYPE_PRECISION (*half_type
))
463 && TYPE_PRECISION (type
) == (TYPE_PRECISION (*half_type
) * 2))
465 /* CONST_OPRND is a constant of HALF_TYPE. */
466 *oprnd
= gimple_assign_rhs1 (def_stmt
);
470 if (TYPE_PRECISION (type
) < (TYPE_PRECISION (*half_type
) * 4))
473 if (!vect_same_loop_or_bb_p (stmt
, def_stmt
))
476 /* TYPE is 4 times bigger than HALF_TYPE, try widening operation for
477 a type 2 times bigger than HALF_TYPE. */
478 new_type
= build_nonstandard_integer_type (TYPE_PRECISION (type
) / 2,
479 TYPE_UNSIGNED (type
));
480 if ((code
== MULT_EXPR
&& !int_fits_type_p (const_oprnd
, new_type
))
481 || (code
== LSHIFT_EXPR
482 && compare_tree_int (const_oprnd
, TYPE_PRECISION (new_type
)) == 1))
485 /* Use NEW_TYPE for widening operation. */
486 if (STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
)))
488 new_stmt
= STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
));
489 /* Check if the already created pattern stmt is what we need. */
490 if (!is_gimple_assign (new_stmt
)
491 || gimple_assign_rhs_code (new_stmt
) != NOP_EXPR
492 || TREE_TYPE (gimple_assign_lhs (new_stmt
)) != new_type
)
495 stmts
->safe_push (def_stmt
);
496 *oprnd
= gimple_assign_lhs (new_stmt
);
500 /* Create a_T = (NEW_TYPE) a_t; */
501 *oprnd
= gimple_assign_rhs1 (def_stmt
);
502 new_oprnd
= make_ssa_name (new_type
, NULL
);
503 new_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, new_oprnd
, *oprnd
,
505 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
)) = new_stmt
;
506 stmts
->safe_push (def_stmt
);
510 *half_type
= new_type
;
515 /* Function vect_recog_widen_mult_pattern
517 Try to find the following pattern:
520 TYPE a_T, b_T, prod_T;
526 S5 prod_T = a_T * b_T;
528 where type 'TYPE' is at least double the size of type 'type'.
530 Also detect unsigned cases:
532 unsigned type a_t, b_t;
533 unsigned TYPE u_prod_T;
534 TYPE a_T, b_T, prod_T;
540 S5 prod_T = a_T * b_T;
541 S6 u_prod_T = (unsigned TYPE) prod_T;
543 and multiplication by constants:
550 S5 prod_T = a_T * CONST;
552 A special case of multiplication by constants is when 'TYPE' is 4 times
553 bigger than 'type', but CONST fits an intermediate type 2 times smaller
554 than 'TYPE'. In that case we create an additional pattern stmt for S3
555 to create a variable of the intermediate type, and perform widen-mult
556 on the intermediate type as well:
560 TYPE a_T, prod_T, prod_T';
564 '--> a_it = (interm_type) a_t;
565 S5 prod_T = a_T * CONST;
566 '--> prod_T' = a_it w* CONST;
570 * STMTS: Contains a stmt from which the pattern search begins. In the
571 example, when this function is called with S5, the pattern {S3,S4,S5,(S6)}
572 is detected. In case of unsigned widen-mult, the original stmt (S5) is
573 replaced with S6 in STMTS. In case of multiplication by a constant
574 of an intermediate type (the last case above), STMTS also contains S3
575 (inserted before S5).
579 * TYPE_IN: The type of the input arguments to the pattern.
581 * TYPE_OUT: The type of the output of this pattern.
583 * Return value: A new stmt that will be used to replace the sequence of
584 stmts that constitute the pattern. In this case it will be:
585 WIDEN_MULT <a_t, b_t>
589 vect_recog_widen_mult_pattern (vec
<gimple
> *stmts
,
590 tree
*type_in
, tree
*type_out
)
592 gimple last_stmt
= stmts
->pop ();
593 gimple def_stmt0
, def_stmt1
;
595 tree type
, half_type0
, half_type1
;
597 tree vectype
, vectype_out
= NULL_TREE
;
599 enum tree_code dummy_code
;
605 if (!is_gimple_assign (last_stmt
))
608 type
= gimple_expr_type (last_stmt
);
610 /* Starting from LAST_STMT, follow the defs of its uses in search
611 of the above pattern. */
613 if (gimple_assign_rhs_code (last_stmt
) != MULT_EXPR
)
616 oprnd0
= gimple_assign_rhs1 (last_stmt
);
617 oprnd1
= gimple_assign_rhs2 (last_stmt
);
618 if (!types_compatible_p (TREE_TYPE (oprnd0
), type
)
619 || !types_compatible_p (TREE_TYPE (oprnd1
), type
))
622 /* Check argument 0. */
623 if (!type_conversion_p (oprnd0
, last_stmt
, false, &half_type0
, &def_stmt0
,
627 /* Check argument 1. */
628 op1_ok
= type_conversion_p (oprnd1
, last_stmt
, false, &half_type1
,
629 &def_stmt1
, &promotion
);
631 if (op1_ok
&& promotion
)
633 oprnd0
= gimple_assign_rhs1 (def_stmt0
);
634 oprnd1
= gimple_assign_rhs1 (def_stmt1
);
638 if (TREE_CODE (oprnd1
) == INTEGER_CST
639 && TREE_CODE (half_type0
) == INTEGER_TYPE
640 && vect_handle_widen_op_by_const (last_stmt
, MULT_EXPR
, oprnd1
,
641 &oprnd0
, stmts
, type
,
642 &half_type0
, def_stmt0
))
644 half_type1
= half_type0
;
645 oprnd1
= fold_convert (half_type1
, oprnd1
);
651 /* Handle unsigned case. Look for
652 S6 u_prod_T = (unsigned TYPE) prod_T;
653 Use unsigned TYPE as the type for WIDEN_MULT_EXPR. */
654 if (TYPE_UNSIGNED (type
) != TYPE_UNSIGNED (half_type0
))
660 if (TYPE_UNSIGNED (type
) == TYPE_UNSIGNED (half_type1
))
663 use_stmt
= vect_single_imm_use (last_stmt
);
664 if (!use_stmt
|| !is_gimple_assign (use_stmt
)
665 || gimple_assign_rhs_code (use_stmt
) != NOP_EXPR
)
668 use_lhs
= gimple_assign_lhs (use_stmt
);
669 use_type
= TREE_TYPE (use_lhs
);
670 if (!INTEGRAL_TYPE_P (use_type
)
671 || (TYPE_UNSIGNED (type
) == TYPE_UNSIGNED (use_type
))
672 || (TYPE_PRECISION (type
) != TYPE_PRECISION (use_type
)))
676 last_stmt
= use_stmt
;
679 if (!types_compatible_p (half_type0
, half_type1
))
682 /* Pattern detected. */
683 if (dump_enabled_p ())
684 dump_printf_loc (MSG_NOTE
, vect_location
,
685 "vect_recog_widen_mult_pattern: detected: ");
687 /* Check target support */
688 vectype
= get_vectype_for_scalar_type (half_type0
);
689 vectype_out
= get_vectype_for_scalar_type (type
);
692 || !supportable_widening_operation (WIDEN_MULT_EXPR
, last_stmt
,
693 vectype_out
, vectype
,
694 &dummy_code
, &dummy_code
,
695 &dummy_int
, &dummy_vec
))
699 *type_out
= vectype_out
;
701 /* Pattern supported. Create a stmt to be used to replace the pattern: */
702 var
= vect_recog_temp_ssa_var (type
, NULL
);
703 pattern_stmt
= gimple_build_assign_with_ops (WIDEN_MULT_EXPR
, var
, oprnd0
,
706 if (dump_enabled_p ())
707 dump_gimple_stmt_loc (MSG_NOTE
, vect_location
, TDF_SLIM
, pattern_stmt
, 0);
709 stmts
->safe_push (last_stmt
);
714 /* Function vect_recog_pow_pattern
716 Try to find the following pattern:
720 with POW being one of pow, powf, powi, powif and N being
725 * LAST_STMT: A stmt from which the pattern search begins.
729 * TYPE_IN: The type of the input arguments to the pattern.
731 * TYPE_OUT: The type of the output of this pattern.
733 * Return value: A new stmt that will be used to replace the sequence of
734 stmts that constitute the pattern. In this case it will be:
741 vect_recog_pow_pattern (vec
<gimple
> *stmts
, tree
*type_in
,
744 gimple last_stmt
= (*stmts
)[0];
745 tree fn
, base
, exp
= NULL
;
749 if (!is_gimple_call (last_stmt
) || gimple_call_lhs (last_stmt
) == NULL
)
752 fn
= gimple_call_fndecl (last_stmt
);
753 if (fn
== NULL_TREE
|| DECL_BUILT_IN_CLASS (fn
) != BUILT_IN_NORMAL
)
756 switch (DECL_FUNCTION_CODE (fn
))
762 base
= gimple_call_arg (last_stmt
, 0);
763 exp
= gimple_call_arg (last_stmt
, 1);
764 if (TREE_CODE (exp
) != REAL_CST
765 && TREE_CODE (exp
) != INTEGER_CST
)
773 /* We now have a pow or powi builtin function call with a constant
776 *type_out
= NULL_TREE
;
778 /* Catch squaring. */
779 if ((host_integerp (exp
, 0)
780 && tree_low_cst (exp
, 0) == 2)
781 || (TREE_CODE (exp
) == REAL_CST
782 && REAL_VALUES_EQUAL (TREE_REAL_CST (exp
), dconst2
)))
784 *type_in
= TREE_TYPE (base
);
786 var
= vect_recog_temp_ssa_var (TREE_TYPE (base
), NULL
);
787 stmt
= gimple_build_assign_with_ops (MULT_EXPR
, var
, base
, base
);
791 /* Catch square root. */
792 if (TREE_CODE (exp
) == REAL_CST
793 && REAL_VALUES_EQUAL (TREE_REAL_CST (exp
), dconsthalf
))
795 tree newfn
= mathfn_built_in (TREE_TYPE (base
), BUILT_IN_SQRT
);
796 *type_in
= get_vectype_for_scalar_type (TREE_TYPE (base
));
799 gimple stmt
= gimple_build_call (newfn
, 1, base
);
800 if (vectorizable_function (stmt
, *type_in
, *type_in
)
803 var
= vect_recog_temp_ssa_var (TREE_TYPE (base
), stmt
);
804 gimple_call_set_lhs (stmt
, var
);
814 /* Function vect_recog_widen_sum_pattern
816 Try to find the following pattern:
819 TYPE x_T, sum = init;
821 sum_0 = phi <init, sum_1>
824 S3 sum_1 = x_T + sum_0;
826 where type 'TYPE' is at least double the size of type 'type', i.e - we're
827 summing elements of type 'type' into an accumulator of type 'TYPE'. This is
828 a special case of a reduction computation.
832 * LAST_STMT: A stmt from which the pattern search begins. In the example,
833 when this function is called with S3, the pattern {S2,S3} will be detected.
837 * TYPE_IN: The type of the input arguments to the pattern.
839 * TYPE_OUT: The type of the output of this pattern.
841 * Return value: A new stmt that will be used to replace the sequence of
842 stmts that constitute the pattern. In this case it will be:
843 WIDEN_SUM <x_t, sum_0>
845 Note: The widening-sum idiom is a widening reduction pattern that is
846 vectorized without preserving all the intermediate results. It
847 produces only N/2 (widened) results (by summing up pairs of
848 intermediate results) rather than all N results. Therefore, we
849 cannot allow this pattern when we want to get all the results and in
850 the correct order (as is the case when this computation is in an
851 inner-loop nested in an outer-loop that us being vectorized). */
854 vect_recog_widen_sum_pattern (vec
<gimple
> *stmts
, tree
*type_in
,
857 gimple stmt
, last_stmt
= (*stmts
)[0];
859 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
860 tree type
, half_type
;
862 loop_vec_info loop_info
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
870 loop
= LOOP_VINFO_LOOP (loop_info
);
872 if (!is_gimple_assign (last_stmt
))
875 type
= gimple_expr_type (last_stmt
);
877 /* Look for the following pattern
880 In which DX is at least double the size of X, and sum_1 has been
881 recognized as a reduction variable.
884 /* Starting from LAST_STMT, follow the defs of its uses in search
885 of the above pattern. */
887 if (gimple_assign_rhs_code (last_stmt
) != PLUS_EXPR
)
890 if (STMT_VINFO_DEF_TYPE (stmt_vinfo
) != vect_reduction_def
)
893 oprnd0
= gimple_assign_rhs1 (last_stmt
);
894 oprnd1
= gimple_assign_rhs2 (last_stmt
);
895 if (!types_compatible_p (TREE_TYPE (oprnd0
), type
)
896 || !types_compatible_p (TREE_TYPE (oprnd1
), type
))
899 /* So far so good. Since last_stmt was detected as a (summation) reduction,
900 we know that oprnd1 is the reduction variable (defined by a loop-header
901 phi), and oprnd0 is an ssa-name defined by a stmt in the loop body.
902 Left to check that oprnd0 is defined by a cast from type 'type' to type
905 if (!type_conversion_p (oprnd0
, last_stmt
, true, &half_type
, &stmt
,
910 oprnd0
= gimple_assign_rhs1 (stmt
);
911 *type_in
= half_type
;
914 /* Pattern detected. Create a stmt to be used to replace the pattern: */
915 var
= vect_recog_temp_ssa_var (type
, NULL
);
916 pattern_stmt
= gimple_build_assign_with_ops (WIDEN_SUM_EXPR
, var
,
919 if (dump_enabled_p ())
921 dump_printf_loc (MSG_NOTE
, vect_location
,
922 "vect_recog_widen_sum_pattern: detected: ");
923 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
926 /* We don't allow changing the order of the computation in the inner-loop
927 when doing outer-loop vectorization. */
928 gcc_assert (!nested_in_vect_loop_p (loop
, last_stmt
));
934 /* Return TRUE if the operation in STMT can be performed on a smaller type.
937 STMT - a statement to check.
938 DEF - we support operations with two operands, one of which is constant.
939 The other operand can be defined by a demotion operation, or by a
940 previous statement in a sequence of over-promoted operations. In the
941 later case DEF is used to replace that operand. (It is defined by a
942 pattern statement we created for the previous statement in the
946 NEW_TYPE - Output: a smaller type that we are trying to use. Input: if not
947 NULL, it's the type of DEF.
948 STMTS - additional pattern statements. If a pattern statement (type
949 conversion) is created in this function, its original statement is
953 OP0, OP1 - if the operation fits a smaller type, OP0 and OP1 are the new
954 operands to use in the new pattern statement for STMT (will be created
955 in vect_recog_over_widening_pattern ()).
956 NEW_DEF_STMT - in case DEF has to be promoted, we create two pattern
957 statements for STMT: the first one is a type promotion and the second
958 one is the operation itself. We return the type promotion statement
959 in NEW_DEF_STMT and further store it in STMT_VINFO_PATTERN_DEF_SEQ of
960 the second pattern statement. */
963 vect_operation_fits_smaller_type (gimple stmt
, tree def
, tree
*new_type
,
964 tree
*op0
, tree
*op1
, gimple
*new_def_stmt
,
968 tree const_oprnd
, oprnd
;
969 tree interm_type
= NULL_TREE
, half_type
, new_oprnd
, type
;
970 gimple def_stmt
, new_stmt
;
976 *new_def_stmt
= NULL
;
978 if (!is_gimple_assign (stmt
))
981 code
= gimple_assign_rhs_code (stmt
);
982 if (code
!= LSHIFT_EXPR
&& code
!= RSHIFT_EXPR
983 && code
!= BIT_IOR_EXPR
&& code
!= BIT_XOR_EXPR
&& code
!= BIT_AND_EXPR
)
986 oprnd
= gimple_assign_rhs1 (stmt
);
987 const_oprnd
= gimple_assign_rhs2 (stmt
);
988 type
= gimple_expr_type (stmt
);
990 if (TREE_CODE (oprnd
) != SSA_NAME
991 || TREE_CODE (const_oprnd
) != INTEGER_CST
)
994 /* If oprnd has other uses besides that in stmt we cannot mark it
995 as being part of a pattern only. */
996 if (!has_single_use (oprnd
))
999 /* If we are in the middle of a sequence, we use DEF from a previous
1000 statement. Otherwise, OPRND has to be a result of type promotion. */
1003 half_type
= *new_type
;
1009 if (!type_conversion_p (oprnd
, stmt
, false, &half_type
, &def_stmt
,
1012 || !vect_same_loop_or_bb_p (stmt
, def_stmt
))
1016 /* Can we perform the operation on a smaller type? */
1022 if (!int_fits_type_p (const_oprnd
, half_type
))
1024 /* HALF_TYPE is not enough. Try a bigger type if possible. */
1025 if (TYPE_PRECISION (type
) < (TYPE_PRECISION (half_type
) * 4))
1028 interm_type
= build_nonstandard_integer_type (
1029 TYPE_PRECISION (half_type
) * 2, TYPE_UNSIGNED (type
));
1030 if (!int_fits_type_p (const_oprnd
, interm_type
))
1037 /* Try intermediate type - HALF_TYPE is not enough for sure. */
1038 if (TYPE_PRECISION (type
) < (TYPE_PRECISION (half_type
) * 4))
1041 /* Check that HALF_TYPE size + shift amount <= INTERM_TYPE size.
1042 (e.g., if the original value was char, the shift amount is at most 8
1043 if we want to use short). */
1044 if (compare_tree_int (const_oprnd
, TYPE_PRECISION (half_type
)) == 1)
1047 interm_type
= build_nonstandard_integer_type (
1048 TYPE_PRECISION (half_type
) * 2, TYPE_UNSIGNED (type
));
1050 if (!vect_supportable_shift (code
, interm_type
))
1056 if (vect_supportable_shift (code
, half_type
))
1059 /* Try intermediate type - HALF_TYPE is not supported. */
1060 if (TYPE_PRECISION (type
) < (TYPE_PRECISION (half_type
) * 4))
1063 interm_type
= build_nonstandard_integer_type (
1064 TYPE_PRECISION (half_type
) * 2, TYPE_UNSIGNED (type
));
1066 if (!vect_supportable_shift (code
, interm_type
))
1075 /* There are four possible cases:
1076 1. OPRND is defined by a type promotion (in that case FIRST is TRUE, it's
1077 the first statement in the sequence)
1078 a. The original, HALF_TYPE, is not enough - we replace the promotion
1079 from HALF_TYPE to TYPE with a promotion to INTERM_TYPE.
1080 b. HALF_TYPE is sufficient, OPRND is set as the RHS of the original
1082 2. OPRND is defined by a pattern statement we created.
1083 a. Its type is not sufficient for the operation, we create a new stmt:
1084 a type conversion for OPRND from HALF_TYPE to INTERM_TYPE. We store
1085 this statement in NEW_DEF_STMT, and it is later put in
1086 STMT_VINFO_PATTERN_DEF_SEQ of the pattern statement for STMT.
1087 b. OPRND is good to use in the new statement. */
1092 /* Replace the original type conversion HALF_TYPE->TYPE with
1093 HALF_TYPE->INTERM_TYPE. */
1094 if (STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
)))
1096 new_stmt
= STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
));
1097 /* Check if the already created pattern stmt is what we need. */
1098 if (!is_gimple_assign (new_stmt
)
1099 || gimple_assign_rhs_code (new_stmt
) != NOP_EXPR
1100 || TREE_TYPE (gimple_assign_lhs (new_stmt
)) != interm_type
)
1103 stmts
->safe_push (def_stmt
);
1104 oprnd
= gimple_assign_lhs (new_stmt
);
1108 /* Create NEW_OPRND = (INTERM_TYPE) OPRND. */
1109 oprnd
= gimple_assign_rhs1 (def_stmt
);
1110 new_oprnd
= make_ssa_name (interm_type
, NULL
);
1111 new_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, new_oprnd
,
1113 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt
)) = new_stmt
;
1114 stmts
->safe_push (def_stmt
);
1120 /* Retrieve the operand before the type promotion. */
1121 oprnd
= gimple_assign_rhs1 (def_stmt
);
1128 /* Create a type conversion HALF_TYPE->INTERM_TYPE. */
1129 new_oprnd
= make_ssa_name (interm_type
, NULL
);
1130 new_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, new_oprnd
,
1133 *new_def_stmt
= new_stmt
;
1136 /* Otherwise, OPRND is already set. */
1140 *new_type
= interm_type
;
1142 *new_type
= half_type
;
1145 *op1
= fold_convert (*new_type
, const_oprnd
);
1151 /* Try to find a statement or a sequence of statements that can be performed
1155 TYPE x_T, res0_T, res1_T;
1158 S2 x_T = (TYPE) x_t;
1159 S3 res0_T = op (x_T, C0);
1160 S4 res1_T = op (res0_T, C1);
1161 S5 ... = () res1_T; - type demotion
1163 where type 'TYPE' is at least double the size of type 'type', C0 and C1 are
1165 Check if S3 and S4 can be done on a smaller type than 'TYPE', it can either
1166 be 'type' or some intermediate type. For now, we expect S5 to be a type
1167 demotion operation. We also check that S3 and S4 have only one use. */
1170 vect_recog_over_widening_pattern (vec
<gimple
> *stmts
,
1171 tree
*type_in
, tree
*type_out
)
1173 gimple stmt
= stmts
->pop ();
1174 gimple pattern_stmt
= NULL
, new_def_stmt
, prev_stmt
= NULL
, use_stmt
= NULL
;
1175 tree op0
, op1
, vectype
= NULL_TREE
, use_lhs
, use_type
;
1176 tree var
= NULL_TREE
, new_type
= NULL_TREE
, new_oprnd
;
1183 if (!vinfo_for_stmt (stmt
)
1184 || STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (stmt
)))
1187 new_def_stmt
= NULL
;
1188 if (!vect_operation_fits_smaller_type (stmt
, var
, &new_type
,
1189 &op0
, &op1
, &new_def_stmt
,
1198 /* STMT can be performed on a smaller type. Check its uses. */
1199 use_stmt
= vect_single_imm_use (stmt
);
1200 if (!use_stmt
|| !is_gimple_assign (use_stmt
))
1203 /* Create pattern statement for STMT. */
1204 vectype
= get_vectype_for_scalar_type (new_type
);
1208 /* We want to collect all the statements for which we create pattern
1209 statetments, except for the case when the last statement in the
1210 sequence doesn't have a corresponding pattern statement. In such
1211 case we associate the last pattern statement with the last statement
1212 in the sequence. Therefore, we only add the original statement to
1213 the list if we know that it is not the last. */
1215 stmts
->safe_push (prev_stmt
);
1217 var
= vect_recog_temp_ssa_var (new_type
, NULL
);
1219 = gimple_build_assign_with_ops (gimple_assign_rhs_code (stmt
), var
,
1221 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (stmt
)) = pattern_stmt
;
1222 new_pattern_def_seq (vinfo_for_stmt (stmt
), new_def_stmt
);
1224 if (dump_enabled_p ())
1226 dump_printf_loc (MSG_NOTE
, vect_location
,
1227 "created pattern stmt: ");
1228 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
1231 type
= gimple_expr_type (stmt
);
1238 /* We got a sequence. We expect it to end with a type demotion operation.
1239 Otherwise, we quit (for now). There are three possible cases: the
1240 conversion is to NEW_TYPE (we don't do anything), the conversion is to
1241 a type bigger than NEW_TYPE and/or the signedness of USE_TYPE and
1242 NEW_TYPE differs (we create a new conversion statement). */
1243 if (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (use_stmt
)))
1245 use_lhs
= gimple_assign_lhs (use_stmt
);
1246 use_type
= TREE_TYPE (use_lhs
);
1247 /* Support only type demotion or signedess change. */
1248 if (!INTEGRAL_TYPE_P (use_type
)
1249 || TYPE_PRECISION (type
) <= TYPE_PRECISION (use_type
))
1252 /* Check that NEW_TYPE is not bigger than the conversion result. */
1253 if (TYPE_PRECISION (new_type
) > TYPE_PRECISION (use_type
))
1256 if (TYPE_UNSIGNED (new_type
) != TYPE_UNSIGNED (use_type
)
1257 || TYPE_PRECISION (new_type
) != TYPE_PRECISION (use_type
))
1259 /* Create NEW_TYPE->USE_TYPE conversion. */
1260 new_oprnd
= make_ssa_name (use_type
, NULL
);
1261 pattern_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, new_oprnd
,
1263 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (use_stmt
)) = pattern_stmt
;
1265 *type_in
= get_vectype_for_scalar_type (new_type
);
1266 *type_out
= get_vectype_for_scalar_type (use_type
);
1268 /* We created a pattern statement for the last statement in the
1269 sequence, so we don't need to associate it with the pattern
1270 statement created for PREV_STMT. Therefore, we add PREV_STMT
1271 to the list in order to mark it later in vect_pattern_recog_1. */
1273 stmts
->safe_push (prev_stmt
);
1278 STMT_VINFO_PATTERN_DEF_SEQ (vinfo_for_stmt (use_stmt
))
1279 = STMT_VINFO_PATTERN_DEF_SEQ (vinfo_for_stmt (prev_stmt
));
1282 *type_out
= NULL_TREE
;
1285 stmts
->safe_push (use_stmt
);
1288 /* TODO: support general case, create a conversion to the correct type. */
1291 /* Pattern detected. */
1292 if (dump_enabled_p ())
1294 dump_printf_loc (MSG_NOTE
, vect_location
,
1295 "vect_recog_over_widening_pattern: detected: ");
1296 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
1299 return pattern_stmt
;
1302 /* Detect widening shift pattern:
1308 S2 a_T = (TYPE) a_t;
1309 S3 res_T = a_T << CONST;
1311 where type 'TYPE' is at least double the size of type 'type'.
1313 Also detect cases where the shift result is immediately converted
1314 to another type 'result_type' that is no larger in size than 'TYPE'.
1315 In those cases we perform a widen-shift that directly results in
1316 'result_type', to avoid a possible over-widening situation:
1320 result_type res_result;
1323 S2 a_T = (TYPE) a_t;
1324 S3 res_T = a_T << CONST;
1325 S4 res_result = (result_type) res_T;
1326 '--> res_result' = a_t w<< CONST;
1328 And a case when 'TYPE' is 4 times bigger than 'type'. In that case we
1329 create an additional pattern stmt for S2 to create a variable of an
1330 intermediate type, and perform widen-shift on the intermediate type:
1334 TYPE a_T, res_T, res_T';
1337 S2 a_T = (TYPE) a_t;
1338 '--> a_it = (interm_type) a_t;
1339 S3 res_T = a_T << CONST;
1340 '--> res_T' = a_it <<* CONST;
1344 * STMTS: Contains a stmt from which the pattern search begins.
1345 In case of unsigned widen-shift, the original stmt (S3) is replaced with S4
1346 in STMTS. When an intermediate type is used and a pattern statement is
1347 created for S2, we also put S2 here (before S3).
1351 * TYPE_IN: The type of the input arguments to the pattern.
1353 * TYPE_OUT: The type of the output of this pattern.
1355 * Return value: A new stmt that will be used to replace the sequence of
1356 stmts that constitute the pattern. In this case it will be:
1357 WIDEN_LSHIFT_EXPR <a_t, CONST>. */
1360 vect_recog_widen_shift_pattern (vec
<gimple
> *stmts
,
1361 tree
*type_in
, tree
*type_out
)
1363 gimple last_stmt
= stmts
->pop ();
1365 tree oprnd0
, oprnd1
;
1366 tree type
, half_type0
;
1367 gimple pattern_stmt
;
1368 tree vectype
, vectype_out
= NULL_TREE
;
1370 enum tree_code dummy_code
;
1372 vec
<tree
> dummy_vec
;
1376 if (!is_gimple_assign (last_stmt
) || !vinfo_for_stmt (last_stmt
))
1379 if (STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (last_stmt
)))
1382 if (gimple_assign_rhs_code (last_stmt
) != LSHIFT_EXPR
)
1385 oprnd0
= gimple_assign_rhs1 (last_stmt
);
1386 oprnd1
= gimple_assign_rhs2 (last_stmt
);
1387 if (TREE_CODE (oprnd0
) != SSA_NAME
|| TREE_CODE (oprnd1
) != INTEGER_CST
)
1390 /* Check operand 0: it has to be defined by a type promotion. */
1391 if (!type_conversion_p (oprnd0
, last_stmt
, false, &half_type0
, &def_stmt0
,
1396 /* Check operand 1: has to be positive. We check that it fits the type
1397 in vect_handle_widen_op_by_const (). */
1398 if (tree_int_cst_compare (oprnd1
, size_zero_node
) <= 0)
1401 oprnd0
= gimple_assign_rhs1 (def_stmt0
);
1402 type
= gimple_expr_type (last_stmt
);
1404 /* Check for subsequent conversion to another type. */
1405 use_stmt
= vect_single_imm_use (last_stmt
);
1406 if (use_stmt
&& is_gimple_assign (use_stmt
)
1407 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (use_stmt
))
1408 && !STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (use_stmt
)))
1410 tree use_lhs
= gimple_assign_lhs (use_stmt
);
1411 tree use_type
= TREE_TYPE (use_lhs
);
1413 if (INTEGRAL_TYPE_P (use_type
)
1414 && TYPE_PRECISION (use_type
) <= TYPE_PRECISION (type
))
1416 last_stmt
= use_stmt
;
1421 /* Check if this a widening operation. */
1422 if (!vect_handle_widen_op_by_const (last_stmt
, LSHIFT_EXPR
, oprnd1
,
1424 type
, &half_type0
, def_stmt0
))
1427 /* Pattern detected. */
1428 if (dump_enabled_p ())
1429 dump_printf_loc (MSG_NOTE
, vect_location
,
1430 "vect_recog_widen_shift_pattern: detected: ");
1432 /* Check target support. */
1433 vectype
= get_vectype_for_scalar_type (half_type0
);
1434 vectype_out
= get_vectype_for_scalar_type (type
);
1438 || !supportable_widening_operation (WIDEN_LSHIFT_EXPR
, last_stmt
,
1439 vectype_out
, vectype
,
1440 &dummy_code
, &dummy_code
,
1441 &dummy_int
, &dummy_vec
))
1445 *type_out
= vectype_out
;
1447 /* Pattern supported. Create a stmt to be used to replace the pattern. */
1448 var
= vect_recog_temp_ssa_var (type
, NULL
);
1450 gimple_build_assign_with_ops (WIDEN_LSHIFT_EXPR
, var
, oprnd0
, oprnd1
);
1452 if (dump_enabled_p ())
1453 dump_gimple_stmt_loc (MSG_NOTE
, vect_location
, TDF_SLIM
, pattern_stmt
, 0);
1455 stmts
->safe_push (last_stmt
);
1456 return pattern_stmt
;
1459 /* Detect a rotate pattern wouldn't be otherwise vectorized:
1463 S0 a_t = b_t r<< c_t;
1467 * STMTS: Contains a stmt from which the pattern search begins,
1468 i.e. the shift/rotate stmt. The original stmt (S0) is replaced
1472 S2 e_t = d_t & (B - 1);
1473 S3 f_t = b_t << c_t;
1474 S4 g_t = b_t >> e_t;
1477 where B is element bitsize of type.
1481 * TYPE_IN: The type of the input arguments to the pattern.
1483 * TYPE_OUT: The type of the output of this pattern.
1485 * Return value: A new stmt that will be used to replace the rotate
1489 vect_recog_rotate_pattern (vec
<gimple
> *stmts
, tree
*type_in
, tree
*type_out
)
1491 gimple last_stmt
= stmts
->pop ();
1492 tree oprnd0
, oprnd1
, lhs
, var
, var1
, var2
, vectype
, type
, stype
, def
, def2
;
1493 gimple pattern_stmt
, def_stmt
;
1494 enum tree_code rhs_code
;
1495 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
1496 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
1497 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
1498 enum vect_def_type dt
;
1499 optab optab1
, optab2
;
1500 edge ext_def
= NULL
;
1502 if (!is_gimple_assign (last_stmt
))
1505 rhs_code
= gimple_assign_rhs_code (last_stmt
);
1515 if (STMT_VINFO_IN_PATTERN_P (stmt_vinfo
))
1518 lhs
= gimple_assign_lhs (last_stmt
);
1519 oprnd0
= gimple_assign_rhs1 (last_stmt
);
1520 type
= TREE_TYPE (oprnd0
);
1521 oprnd1
= gimple_assign_rhs2 (last_stmt
);
1522 if (TREE_CODE (oprnd0
) != SSA_NAME
1523 || TYPE_PRECISION (TREE_TYPE (lhs
)) != TYPE_PRECISION (type
)
1524 || !INTEGRAL_TYPE_P (type
)
1525 || !TYPE_UNSIGNED (type
))
1528 if (!vect_is_simple_use (oprnd1
, last_stmt
, loop_vinfo
, bb_vinfo
, &def_stmt
,
1532 if (dt
!= vect_internal_def
1533 && dt
!= vect_constant_def
1534 && dt
!= vect_external_def
)
1537 vectype
= get_vectype_for_scalar_type (type
);
1538 if (vectype
== NULL_TREE
)
1541 /* If vector/vector or vector/scalar rotate is supported by the target,
1542 don't do anything here. */
1543 optab1
= optab_for_tree_code (rhs_code
, vectype
, optab_vector
);
1545 && optab_handler (optab1
, TYPE_MODE (vectype
)) != CODE_FOR_nothing
)
1548 if (bb_vinfo
!= NULL
|| dt
!= vect_internal_def
)
1550 optab2
= optab_for_tree_code (rhs_code
, vectype
, optab_scalar
);
1552 && optab_handler (optab2
, TYPE_MODE (vectype
)) != CODE_FOR_nothing
)
1556 /* If vector/vector or vector/scalar shifts aren't supported by the target,
1557 don't do anything here either. */
1558 optab1
= optab_for_tree_code (LSHIFT_EXPR
, vectype
, optab_vector
);
1559 optab2
= optab_for_tree_code (RSHIFT_EXPR
, vectype
, optab_vector
);
1561 || optab_handler (optab1
, TYPE_MODE (vectype
)) == CODE_FOR_nothing
1563 || optab_handler (optab2
, TYPE_MODE (vectype
)) == CODE_FOR_nothing
)
1565 if (bb_vinfo
== NULL
&& dt
== vect_internal_def
)
1567 optab1
= optab_for_tree_code (LSHIFT_EXPR
, vectype
, optab_scalar
);
1568 optab2
= optab_for_tree_code (RSHIFT_EXPR
, vectype
, optab_scalar
);
1570 || optab_handler (optab1
, TYPE_MODE (vectype
)) == CODE_FOR_nothing
1572 || optab_handler (optab2
, TYPE_MODE (vectype
)) == CODE_FOR_nothing
)
1577 *type_out
= vectype
;
1578 if (*type_in
== NULL_TREE
)
1581 if (dt
== vect_external_def
1582 && TREE_CODE (oprnd1
) == SSA_NAME
1585 struct loop
*loop
= LOOP_VINFO_LOOP (loop_vinfo
);
1586 ext_def
= loop_preheader_edge (loop
);
1587 if (!SSA_NAME_IS_DEFAULT_DEF (oprnd1
))
1589 basic_block bb
= gimple_bb (SSA_NAME_DEF_STMT (oprnd1
));
1591 || !dominated_by_p (CDI_DOMINATORS
, ext_def
->dest
, bb
))
1597 if (TREE_CODE (oprnd1
) == INTEGER_CST
1598 || TYPE_MODE (TREE_TYPE (oprnd1
)) == TYPE_MODE (type
))
1600 else if (def_stmt
&& gimple_assign_cast_p (def_stmt
))
1602 tree rhs1
= gimple_assign_rhs1 (def_stmt
);
1603 if (TYPE_MODE (TREE_TYPE (rhs1
)) == TYPE_MODE (type
)
1604 && TYPE_PRECISION (TREE_TYPE (rhs1
))
1605 == TYPE_PRECISION (type
))
1609 STMT_VINFO_PATTERN_DEF_SEQ (stmt_vinfo
) = NULL
;
1610 if (def
== NULL_TREE
)
1612 def
= vect_recog_temp_ssa_var (type
, NULL
);
1613 def_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, def
, oprnd1
,
1618 = gsi_insert_on_edge_immediate (ext_def
, def_stmt
);
1619 gcc_assert (!new_bb
);
1622 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1624 stype
= TREE_TYPE (def
);
1626 if (TREE_CODE (def
) == INTEGER_CST
)
1628 if (!host_integerp (def
, 1)
1629 || (unsigned HOST_WIDE_INT
) tree_low_cst (def
, 1)
1630 >= GET_MODE_PRECISION (TYPE_MODE (type
))
1631 || integer_zerop (def
))
1633 def2
= build_int_cst (stype
,
1634 GET_MODE_PRECISION (TYPE_MODE (type
))
1635 - tree_low_cst (def
, 1));
1639 tree vecstype
= get_vectype_for_scalar_type (stype
);
1640 stmt_vec_info def_stmt_vinfo
;
1642 if (vecstype
== NULL_TREE
)
1644 def2
= vect_recog_temp_ssa_var (stype
, NULL
);
1645 def_stmt
= gimple_build_assign_with_ops (NEGATE_EXPR
, def2
, def
,
1650 = gsi_insert_on_edge_immediate (ext_def
, def_stmt
);
1651 gcc_assert (!new_bb
);
1655 def_stmt_vinfo
= new_stmt_vec_info (def_stmt
, loop_vinfo
, bb_vinfo
);
1656 set_vinfo_for_stmt (def_stmt
, def_stmt_vinfo
);
1657 STMT_VINFO_VECTYPE (def_stmt_vinfo
) = vecstype
;
1658 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1661 def2
= vect_recog_temp_ssa_var (stype
, NULL
);
1663 = build_int_cst (stype
, GET_MODE_PRECISION (TYPE_MODE (stype
)) - 1);
1664 def_stmt
= gimple_build_assign_with_ops (BIT_AND_EXPR
, def2
,
1665 gimple_assign_lhs (def_stmt
),
1670 = gsi_insert_on_edge_immediate (ext_def
, def_stmt
);
1671 gcc_assert (!new_bb
);
1675 def_stmt_vinfo
= new_stmt_vec_info (def_stmt
, loop_vinfo
, bb_vinfo
);
1676 set_vinfo_for_stmt (def_stmt
, def_stmt_vinfo
);
1677 STMT_VINFO_VECTYPE (def_stmt_vinfo
) = vecstype
;
1678 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1682 var1
= vect_recog_temp_ssa_var (type
, NULL
);
1683 def_stmt
= gimple_build_assign_with_ops (rhs_code
== LROTATE_EXPR
1684 ? LSHIFT_EXPR
: RSHIFT_EXPR
,
1686 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1688 var2
= vect_recog_temp_ssa_var (type
, NULL
);
1689 def_stmt
= gimple_build_assign_with_ops (rhs_code
== LROTATE_EXPR
1690 ? RSHIFT_EXPR
: LSHIFT_EXPR
,
1691 var2
, oprnd0
, def2
);
1692 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1694 /* Pattern detected. */
1695 if (dump_enabled_p ())
1696 dump_printf_loc (MSG_NOTE
, vect_location
,
1697 "vect_recog_rotate_pattern: detected: ");
1699 /* Pattern supported. Create a stmt to be used to replace the pattern. */
1700 var
= vect_recog_temp_ssa_var (type
, NULL
);
1701 pattern_stmt
= gimple_build_assign_with_ops (BIT_IOR_EXPR
, var
, var1
, var2
);
1703 if (dump_enabled_p ())
1704 dump_gimple_stmt_loc (MSG_NOTE
, vect_location
, TDF_SLIM
, pattern_stmt
, 0);
1706 stmts
->safe_push (last_stmt
);
1707 return pattern_stmt
;
1710 /* Detect a vector by vector shift pattern that wouldn't be otherwise
1718 S3 res_T = b_T op a_t;
1720 where type 'TYPE' is a type with different size than 'type',
1721 and op is <<, >> or rotate.
1726 TYPE b_T, c_T, res_T;
1729 S1 a_t = (type) c_T;
1731 S3 res_T = b_T op a_t;
1735 * STMTS: Contains a stmt from which the pattern search begins,
1736 i.e. the shift/rotate stmt. The original stmt (S3) is replaced
1737 with a shift/rotate which has same type on both operands, in the
1738 second case just b_T op c_T, in the first case with added cast
1739 from a_t to c_T in STMT_VINFO_PATTERN_DEF_SEQ.
1743 * TYPE_IN: The type of the input arguments to the pattern.
1745 * TYPE_OUT: The type of the output of this pattern.
1747 * Return value: A new stmt that will be used to replace the shift/rotate
1751 vect_recog_vector_vector_shift_pattern (vec
<gimple
> *stmts
,
1752 tree
*type_in
, tree
*type_out
)
1754 gimple last_stmt
= stmts
->pop ();
1755 tree oprnd0
, oprnd1
, lhs
, var
;
1756 gimple pattern_stmt
, def_stmt
;
1757 enum tree_code rhs_code
;
1758 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
1759 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
1760 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
1761 enum vect_def_type dt
;
1764 if (!is_gimple_assign (last_stmt
))
1767 rhs_code
= gimple_assign_rhs_code (last_stmt
);
1779 if (STMT_VINFO_IN_PATTERN_P (stmt_vinfo
))
1782 lhs
= gimple_assign_lhs (last_stmt
);
1783 oprnd0
= gimple_assign_rhs1 (last_stmt
);
1784 oprnd1
= gimple_assign_rhs2 (last_stmt
);
1785 if (TREE_CODE (oprnd0
) != SSA_NAME
1786 || TREE_CODE (oprnd1
) != SSA_NAME
1787 || TYPE_MODE (TREE_TYPE (oprnd0
)) == TYPE_MODE (TREE_TYPE (oprnd1
))
1788 || TYPE_PRECISION (TREE_TYPE (oprnd1
))
1789 != GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (oprnd1
)))
1790 || TYPE_PRECISION (TREE_TYPE (lhs
))
1791 != TYPE_PRECISION (TREE_TYPE (oprnd0
)))
1794 if (!vect_is_simple_use (oprnd1
, last_stmt
, loop_vinfo
, bb_vinfo
, &def_stmt
,
1798 if (dt
!= vect_internal_def
)
1801 *type_in
= get_vectype_for_scalar_type (TREE_TYPE (oprnd0
));
1802 *type_out
= *type_in
;
1803 if (*type_in
== NULL_TREE
)
1807 if (gimple_assign_cast_p (def_stmt
))
1809 tree rhs1
= gimple_assign_rhs1 (def_stmt
);
1810 if (TYPE_MODE (TREE_TYPE (rhs1
)) == TYPE_MODE (TREE_TYPE (oprnd0
))
1811 && TYPE_PRECISION (TREE_TYPE (rhs1
))
1812 == TYPE_PRECISION (TREE_TYPE (oprnd0
)))
1816 if (def
== NULL_TREE
)
1818 def
= vect_recog_temp_ssa_var (TREE_TYPE (oprnd0
), NULL
);
1819 def_stmt
= gimple_build_assign_with_ops (NOP_EXPR
, def
, oprnd1
,
1821 new_pattern_def_seq (stmt_vinfo
, def_stmt
);
1824 /* Pattern detected. */
1825 if (dump_enabled_p ())
1826 dump_printf_loc (MSG_NOTE
, vect_location
,
1827 "vect_recog_vector_vector_shift_pattern: detected: ");
1829 /* Pattern supported. Create a stmt to be used to replace the pattern. */
1830 var
= vect_recog_temp_ssa_var (TREE_TYPE (oprnd0
), NULL
);
1831 pattern_stmt
= gimple_build_assign_with_ops (rhs_code
, var
, oprnd0
, def
);
1833 if (dump_enabled_p ())
1834 dump_gimple_stmt_loc (MSG_NOTE
, vect_location
, TDF_SLIM
, pattern_stmt
, 0);
1836 stmts
->safe_push (last_stmt
);
1837 return pattern_stmt
;
1840 /* Detect a signed division by a constant that wouldn't be
1841 otherwise vectorized:
1847 where type 'type' is an integral type and N is a constant.
1849 Similarly handle modulo by a constant:
1855 * STMTS: Contains a stmt from which the pattern search begins,
1856 i.e. the division stmt. S1 is replaced by if N is a power
1857 of two constant and type is signed:
1858 S3 y_t = b_t < 0 ? N - 1 : 0;
1860 S1' a_t = x_t >> log2 (N);
1862 S4 is replaced if N is a power of two constant and
1863 type is signed by (where *_T temporaries have unsigned type):
1864 S9 y_T = b_t < 0 ? -1U : 0U;
1865 S8 z_T = y_T >> (sizeof (type_t) * CHAR_BIT - log2 (N));
1866 S7 z_t = (type) z_T;
1868 S5 x_t = w_t & (N - 1);
1869 S4' a_t = x_t - z_t;
1873 * TYPE_IN: The type of the input arguments to the pattern.
1875 * TYPE_OUT: The type of the output of this pattern.
1877 * Return value: A new stmt that will be used to replace the division
1878 S1 or modulo S4 stmt. */
1881 vect_recog_divmod_pattern (vec
<gimple
> *stmts
,
1882 tree
*type_in
, tree
*type_out
)
1884 gimple last_stmt
= stmts
->pop ();
1885 tree oprnd0
, oprnd1
, vectype
, itype
, cond
;
1886 gimple pattern_stmt
, def_stmt
;
1887 enum tree_code rhs_code
;
1888 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
1889 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
1890 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
1893 int dummy_int
, prec
;
1894 stmt_vec_info def_stmt_vinfo
;
1896 if (!is_gimple_assign (last_stmt
))
1899 rhs_code
= gimple_assign_rhs_code (last_stmt
);
1902 case TRUNC_DIV_EXPR
:
1903 case TRUNC_MOD_EXPR
:
1909 if (STMT_VINFO_IN_PATTERN_P (stmt_vinfo
))
1912 oprnd0
= gimple_assign_rhs1 (last_stmt
);
1913 oprnd1
= gimple_assign_rhs2 (last_stmt
);
1914 itype
= TREE_TYPE (oprnd0
);
1915 if (TREE_CODE (oprnd0
) != SSA_NAME
1916 || TREE_CODE (oprnd1
) != INTEGER_CST
1917 || TREE_CODE (itype
) != INTEGER_TYPE
1918 || TYPE_PRECISION (itype
) != GET_MODE_PRECISION (TYPE_MODE (itype
)))
1921 vectype
= get_vectype_for_scalar_type (itype
);
1922 if (vectype
== NULL_TREE
)
1925 /* If the target can handle vectorized division or modulo natively,
1926 don't attempt to optimize this. */
1927 optab
= optab_for_tree_code (rhs_code
, vectype
, optab_default
);
1928 if (optab
!= unknown_optab
)
1930 enum machine_mode vec_mode
= TYPE_MODE (vectype
);
1931 int icode
= (int) optab_handler (optab
, vec_mode
);
1932 if (icode
!= CODE_FOR_nothing
)
1936 prec
= TYPE_PRECISION (itype
);
1937 if (integer_pow2p (oprnd1
))
1939 if (TYPE_UNSIGNED (itype
) || tree_int_cst_sgn (oprnd1
) != 1)
1942 /* Pattern detected. */
1943 if (dump_enabled_p ())
1944 dump_printf_loc (MSG_NOTE
, vect_location
,
1945 "vect_recog_divmod_pattern: detected: ");
1947 cond
= build2 (LT_EXPR
, boolean_type_node
, oprnd0
,
1948 build_int_cst (itype
, 0));
1949 if (rhs_code
== TRUNC_DIV_EXPR
)
1951 tree var
= vect_recog_temp_ssa_var (itype
, NULL
);
1954 = gimple_build_assign_with_ops (COND_EXPR
, var
, cond
,
1955 fold_build2 (MINUS_EXPR
, itype
,
1957 build_int_cst (itype
,
1959 build_int_cst (itype
, 0));
1960 new_pattern_def_seq (stmt_vinfo
, def_stmt
);
1961 var
= vect_recog_temp_ssa_var (itype
, NULL
);
1963 = gimple_build_assign_with_ops (PLUS_EXPR
, var
, oprnd0
,
1964 gimple_assign_lhs (def_stmt
));
1965 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1967 shift
= build_int_cst (itype
, tree_log2 (oprnd1
));
1969 = gimple_build_assign_with_ops (RSHIFT_EXPR
,
1970 vect_recog_temp_ssa_var (itype
,
1977 STMT_VINFO_PATTERN_DEF_SEQ (stmt_vinfo
) = NULL
;
1978 if (compare_tree_int (oprnd1
, 2) == 0)
1980 signmask
= vect_recog_temp_ssa_var (itype
, NULL
);
1982 = gimple_build_assign_with_ops (COND_EXPR
, signmask
, cond
,
1983 build_int_cst (itype
, 1),
1984 build_int_cst (itype
, 0));
1985 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
1990 = build_nonstandard_integer_type (prec
, 1);
1991 tree vecutype
= get_vectype_for_scalar_type (utype
);
1993 = build_int_cst (utype
, GET_MODE_BITSIZE (TYPE_MODE (itype
))
1994 - tree_log2 (oprnd1
));
1995 tree var
= vect_recog_temp_ssa_var (utype
, NULL
);
1998 = gimple_build_assign_with_ops (COND_EXPR
, var
, cond
,
1999 build_int_cst (utype
, -1),
2000 build_int_cst (utype
, 0));
2002 = new_stmt_vec_info (def_stmt
, loop_vinfo
, bb_vinfo
);
2003 set_vinfo_for_stmt (def_stmt
, def_stmt_vinfo
);
2004 STMT_VINFO_VECTYPE (def_stmt_vinfo
) = vecutype
;
2005 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2006 var
= vect_recog_temp_ssa_var (utype
, NULL
);
2008 = gimple_build_assign_with_ops (RSHIFT_EXPR
, var
,
2009 gimple_assign_lhs (def_stmt
),
2012 = new_stmt_vec_info (def_stmt
, loop_vinfo
, bb_vinfo
);
2013 set_vinfo_for_stmt (def_stmt
, def_stmt_vinfo
);
2014 STMT_VINFO_VECTYPE (def_stmt_vinfo
) = vecutype
;
2015 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2016 signmask
= vect_recog_temp_ssa_var (itype
, NULL
);
2018 = gimple_build_assign_with_ops (NOP_EXPR
, signmask
, var
,
2020 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2023 = gimple_build_assign_with_ops (PLUS_EXPR
,
2024 vect_recog_temp_ssa_var (itype
,
2027 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2029 = gimple_build_assign_with_ops (BIT_AND_EXPR
,
2030 vect_recog_temp_ssa_var (itype
,
2032 gimple_assign_lhs (def_stmt
),
2033 fold_build2 (MINUS_EXPR
, itype
,
2035 build_int_cst (itype
,
2037 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2040 = gimple_build_assign_with_ops (MINUS_EXPR
,
2041 vect_recog_temp_ssa_var (itype
,
2043 gimple_assign_lhs (def_stmt
),
2047 if (dump_enabled_p ())
2048 dump_gimple_stmt_loc (MSG_NOTE
, vect_location
, TDF_SLIM
, pattern_stmt
,
2051 stmts
->safe_push (last_stmt
);
2054 *type_out
= vectype
;
2055 return pattern_stmt
;
2058 if (!host_integerp (oprnd1
, TYPE_UNSIGNED (itype
))
2059 || integer_zerop (oprnd1
)
2060 || prec
> HOST_BITS_PER_WIDE_INT
)
2063 if (!can_mult_highpart_p (TYPE_MODE (vectype
), TYPE_UNSIGNED (itype
)))
2066 STMT_VINFO_PATTERN_DEF_SEQ (stmt_vinfo
) = NULL
;
2068 if (TYPE_UNSIGNED (itype
))
2070 unsigned HOST_WIDE_INT mh
, ml
;
2071 int pre_shift
, post_shift
;
2072 unsigned HOST_WIDE_INT d
= tree_low_cst (oprnd1
, 1)
2073 & GET_MODE_MASK (TYPE_MODE (itype
));
2074 tree t1
, t2
, t3
, t4
;
2076 if (d
>= ((unsigned HOST_WIDE_INT
) 1 << (prec
- 1)))
2077 /* FIXME: Can transform this into oprnd0 >= oprnd1 ? 1 : 0. */
2080 /* Find a suitable multiplier and right shift count
2081 instead of multiplying with D. */
2082 mh
= choose_multiplier (d
, prec
, prec
, &ml
, &post_shift
, &dummy_int
);
2084 /* If the suggested multiplier is more than SIZE bits, we can do better
2085 for even divisors, using an initial right shift. */
2086 if (mh
!= 0 && (d
& 1) == 0)
2088 pre_shift
= floor_log2 (d
& -d
);
2089 mh
= choose_multiplier (d
>> pre_shift
, prec
, prec
- pre_shift
,
2090 &ml
, &post_shift
, &dummy_int
);
2098 if (post_shift
- 1 >= prec
)
2101 /* t1 = oprnd0 h* ml;
2105 q = t4 >> (post_shift - 1); */
2106 t1
= vect_recog_temp_ssa_var (itype
, NULL
);
2108 = gimple_build_assign_with_ops (MULT_HIGHPART_EXPR
, t1
, oprnd0
,
2109 build_int_cst (itype
, ml
));
2110 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2112 t2
= vect_recog_temp_ssa_var (itype
, NULL
);
2114 = gimple_build_assign_with_ops (MINUS_EXPR
, t2
, oprnd0
, t1
);
2115 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2117 t3
= vect_recog_temp_ssa_var (itype
, NULL
);
2119 = gimple_build_assign_with_ops (RSHIFT_EXPR
, t3
, t2
,
2121 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2123 t4
= vect_recog_temp_ssa_var (itype
, NULL
);
2125 = gimple_build_assign_with_ops (PLUS_EXPR
, t4
, t1
, t3
);
2127 if (post_shift
!= 1)
2129 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2131 q
= vect_recog_temp_ssa_var (itype
, NULL
);
2133 = gimple_build_assign_with_ops (RSHIFT_EXPR
, q
, t4
,
2134 build_int_cst (itype
,
2141 pattern_stmt
= def_stmt
;
2146 if (pre_shift
>= prec
|| post_shift
>= prec
)
2149 /* t1 = oprnd0 >> pre_shift;
2151 q = t2 >> post_shift; */
2154 t1
= vect_recog_temp_ssa_var (itype
, NULL
);
2156 = gimple_build_assign_with_ops (RSHIFT_EXPR
, t1
, oprnd0
,
2157 build_int_cst (NULL
,
2159 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2164 t2
= vect_recog_temp_ssa_var (itype
, NULL
);
2166 = gimple_build_assign_with_ops (MULT_HIGHPART_EXPR
, t2
, t1
,
2167 build_int_cst (itype
, ml
));
2171 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2173 q
= vect_recog_temp_ssa_var (itype
, NULL
);
2175 = gimple_build_assign_with_ops (RSHIFT_EXPR
, q
, t2
,
2176 build_int_cst (itype
,
2182 pattern_stmt
= def_stmt
;
2187 unsigned HOST_WIDE_INT ml
;
2189 HOST_WIDE_INT d
= tree_low_cst (oprnd1
, 0);
2190 unsigned HOST_WIDE_INT abs_d
;
2192 tree t1
, t2
, t3
, t4
;
2194 /* Give up for -1. */
2198 /* Since d might be INT_MIN, we have to cast to
2199 unsigned HOST_WIDE_INT before negating to avoid
2200 undefined signed overflow. */
2202 ? (unsigned HOST_WIDE_INT
) d
2203 : - (unsigned HOST_WIDE_INT
) d
);
2205 /* n rem d = n rem -d */
2206 if (rhs_code
== TRUNC_MOD_EXPR
&& d
< 0)
2209 oprnd1
= build_int_cst (itype
, abs_d
);
2211 else if (HOST_BITS_PER_WIDE_INT
>= prec
2212 && abs_d
== (unsigned HOST_WIDE_INT
) 1 << (prec
- 1))
2213 /* This case is not handled correctly below. */
2216 choose_multiplier (abs_d
, prec
, prec
- 1, &ml
, &post_shift
, &dummy_int
);
2217 if (ml
>= (unsigned HOST_WIDE_INT
) 1 << (prec
- 1))
2220 ml
|= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
2222 if (post_shift
>= prec
)
2225 /* t1 = oprnd1 h* ml; */
2226 t1
= vect_recog_temp_ssa_var (itype
, NULL
);
2228 = gimple_build_assign_with_ops (MULT_HIGHPART_EXPR
, t1
, oprnd0
,
2229 build_int_cst (itype
, ml
));
2230 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2234 /* t2 = t1 + oprnd0; */
2235 t2
= vect_recog_temp_ssa_var (itype
, NULL
);
2237 = gimple_build_assign_with_ops (PLUS_EXPR
, t2
, t1
, oprnd0
);
2238 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2245 /* t3 = t2 >> post_shift; */
2246 t3
= vect_recog_temp_ssa_var (itype
, NULL
);
2248 = gimple_build_assign_with_ops (RSHIFT_EXPR
, t3
, t2
,
2249 build_int_cst (itype
, post_shift
));
2250 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2255 /* t4 = oprnd0 >> (prec - 1); */
2256 t4
= vect_recog_temp_ssa_var (itype
, NULL
);
2258 = gimple_build_assign_with_ops (RSHIFT_EXPR
, t4
, oprnd0
,
2259 build_int_cst (itype
, prec
- 1));
2260 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2262 /* q = t3 - t4; or q = t4 - t3; */
2263 q
= vect_recog_temp_ssa_var (itype
, NULL
);
2265 = gimple_build_assign_with_ops (MINUS_EXPR
, q
, d
< 0 ? t4
: t3
,
2269 if (rhs_code
== TRUNC_MOD_EXPR
)
2273 /* We divided. Now finish by:
2276 append_pattern_def_seq (stmt_vinfo
, pattern_stmt
);
2278 t1
= vect_recog_temp_ssa_var (itype
, NULL
);
2280 = gimple_build_assign_with_ops (MULT_EXPR
, t1
, q
, oprnd1
);
2281 append_pattern_def_seq (stmt_vinfo
, def_stmt
);
2283 r
= vect_recog_temp_ssa_var (itype
, NULL
);
2285 = gimple_build_assign_with_ops (MINUS_EXPR
, r
, oprnd0
, t1
);
2288 /* Pattern detected. */
2289 if (dump_enabled_p ())
2291 dump_printf_loc (MSG_NOTE
, vect_location
,
2292 "vect_recog_divmod_pattern: detected: ");
2293 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
2296 stmts
->safe_push (last_stmt
);
2299 *type_out
= vectype
;
2300 return pattern_stmt
;
2303 /* Function vect_recog_mixed_size_cond_pattern
2305 Try to find the following pattern:
2310 S1 a_T = x_t CMP y_t ? b_T : c_T;
2312 where type 'TYPE' is an integral type which has different size
2313 from 'type'. b_T and c_T are either constants (and if 'TYPE' is wider
2314 than 'type', the constants need to fit into an integer type
2315 with the same width as 'type') or results of conversion from 'type'.
2319 * LAST_STMT: A stmt from which the pattern search begins.
2323 * TYPE_IN: The type of the input arguments to the pattern.
2325 * TYPE_OUT: The type of the output of this pattern.
2327 * Return value: A new stmt that will be used to replace the pattern.
2328 Additionally a def_stmt is added.
2330 a_it = x_t CMP y_t ? b_it : c_it;
2331 a_T = (TYPE) a_it; */
2334 vect_recog_mixed_size_cond_pattern (vec
<gimple
> *stmts
, tree
*type_in
,
2337 gimple last_stmt
= (*stmts
)[0];
2338 tree cond_expr
, then_clause
, else_clause
;
2339 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
), def_stmt_info
;
2340 tree type
, vectype
, comp_vectype
, itype
= NULL_TREE
, vecitype
;
2341 enum machine_mode cmpmode
;
2342 gimple pattern_stmt
, def_stmt
;
2343 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
2344 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
2345 tree orig_type0
= NULL_TREE
, orig_type1
= NULL_TREE
;
2346 gimple def_stmt0
= NULL
, def_stmt1
= NULL
;
2348 tree comp_scalar_type
;
2350 if (!is_gimple_assign (last_stmt
)
2351 || gimple_assign_rhs_code (last_stmt
) != COND_EXPR
2352 || STMT_VINFO_DEF_TYPE (stmt_vinfo
) != vect_internal_def
)
2355 cond_expr
= gimple_assign_rhs1 (last_stmt
);
2356 then_clause
= gimple_assign_rhs2 (last_stmt
);
2357 else_clause
= gimple_assign_rhs3 (last_stmt
);
2359 if (!COMPARISON_CLASS_P (cond_expr
))
2362 comp_scalar_type
= TREE_TYPE (TREE_OPERAND (cond_expr
, 0));
2363 comp_vectype
= get_vectype_for_scalar_type (comp_scalar_type
);
2364 if (comp_vectype
== NULL_TREE
)
2367 type
= gimple_expr_type (last_stmt
);
2368 if (types_compatible_p (type
, comp_scalar_type
)
2369 || ((TREE_CODE (then_clause
) != INTEGER_CST
2370 || TREE_CODE (else_clause
) != INTEGER_CST
)
2371 && !INTEGRAL_TYPE_P (comp_scalar_type
))
2372 || !INTEGRAL_TYPE_P (type
))
2375 if ((TREE_CODE (then_clause
) != INTEGER_CST
2376 && !type_conversion_p (then_clause
, last_stmt
, false, &orig_type0
,
2377 &def_stmt0
, &promotion
))
2378 || (TREE_CODE (else_clause
) != INTEGER_CST
2379 && !type_conversion_p (else_clause
, last_stmt
, false, &orig_type1
,
2380 &def_stmt1
, &promotion
)))
2383 if (orig_type0
&& orig_type1
2384 && !types_compatible_p (orig_type0
, orig_type1
))
2389 if (!types_compatible_p (orig_type0
, comp_scalar_type
))
2391 then_clause
= gimple_assign_rhs1 (def_stmt0
);
2397 if (!types_compatible_p (orig_type1
, comp_scalar_type
))
2399 else_clause
= gimple_assign_rhs1 (def_stmt1
);
2403 cmpmode
= GET_MODE_INNER (TYPE_MODE (comp_vectype
));
2405 if (GET_MODE_BITSIZE (TYPE_MODE (type
)) == GET_MODE_BITSIZE (cmpmode
))
2408 vectype
= get_vectype_for_scalar_type (type
);
2409 if (vectype
== NULL_TREE
)
2412 if (expand_vec_cond_expr_p (vectype
, comp_vectype
))
2415 if (itype
== NULL_TREE
)
2416 itype
= build_nonstandard_integer_type (GET_MODE_BITSIZE (cmpmode
),
2417 TYPE_UNSIGNED (type
));
2419 if (itype
== NULL_TREE
2420 || GET_MODE_BITSIZE (TYPE_MODE (itype
)) != GET_MODE_BITSIZE (cmpmode
))
2423 vecitype
= get_vectype_for_scalar_type (itype
);
2424 if (vecitype
== NULL_TREE
)
2427 if (!expand_vec_cond_expr_p (vecitype
, comp_vectype
))
2430 if (GET_MODE_BITSIZE (TYPE_MODE (type
)) > GET_MODE_BITSIZE (cmpmode
))
2432 if ((TREE_CODE (then_clause
) == INTEGER_CST
2433 && !int_fits_type_p (then_clause
, itype
))
2434 || (TREE_CODE (else_clause
) == INTEGER_CST
2435 && !int_fits_type_p (else_clause
, itype
)))
2440 = gimple_build_assign_with_ops (COND_EXPR
,
2441 vect_recog_temp_ssa_var (itype
, NULL
),
2442 unshare_expr (cond_expr
),
2443 fold_convert (itype
, then_clause
),
2444 fold_convert (itype
, else_clause
));
2446 = gimple_build_assign_with_ops (NOP_EXPR
,
2447 vect_recog_temp_ssa_var (type
, NULL
),
2448 gimple_assign_lhs (def_stmt
), NULL_TREE
);
2450 new_pattern_def_seq (stmt_vinfo
, def_stmt
);
2451 def_stmt_info
= new_stmt_vec_info (def_stmt
, loop_vinfo
, bb_vinfo
);
2452 set_vinfo_for_stmt (def_stmt
, def_stmt_info
);
2453 STMT_VINFO_VECTYPE (def_stmt_info
) = vecitype
;
2454 *type_in
= vecitype
;
2455 *type_out
= vectype
;
2457 if (dump_enabled_p ())
2458 dump_printf_loc (MSG_NOTE
, vect_location
,
2459 "vect_recog_mixed_size_cond_pattern: detected: ");
2461 return pattern_stmt
;
2465 /* Helper function of vect_recog_bool_pattern. Called recursively, return
2466 true if bool VAR can be optimized that way. */
2469 check_bool_pattern (tree var
, loop_vec_info loop_vinfo
, bb_vec_info bb_vinfo
)
2472 enum vect_def_type dt
;
2474 enum tree_code rhs_code
;
2476 if (!vect_is_simple_use (var
, NULL
, loop_vinfo
, bb_vinfo
, &def_stmt
, &def
,
2480 if (dt
!= vect_internal_def
)
2483 if (!is_gimple_assign (def_stmt
))
2486 if (!has_single_use (def
))
2489 rhs1
= gimple_assign_rhs1 (def_stmt
);
2490 rhs_code
= gimple_assign_rhs_code (def_stmt
);
2494 return check_bool_pattern (rhs1
, loop_vinfo
, bb_vinfo
);
2497 if ((TYPE_PRECISION (TREE_TYPE (rhs1
)) != 1
2498 || !TYPE_UNSIGNED (TREE_TYPE (rhs1
)))
2499 && TREE_CODE (TREE_TYPE (rhs1
)) != BOOLEAN_TYPE
)
2501 return check_bool_pattern (rhs1
, loop_vinfo
, bb_vinfo
);
2504 return check_bool_pattern (rhs1
, loop_vinfo
, bb_vinfo
);
2509 if (!check_bool_pattern (rhs1
, loop_vinfo
, bb_vinfo
))
2511 return check_bool_pattern (gimple_assign_rhs2 (def_stmt
), loop_vinfo
,
2515 if (TREE_CODE_CLASS (rhs_code
) == tcc_comparison
)
2517 tree vecitype
, comp_vectype
;
2519 /* If the comparison can throw, then is_gimple_condexpr will be
2520 false and we can't make a COND_EXPR/VEC_COND_EXPR out of it. */
2521 if (stmt_could_throw_p (def_stmt
))
2524 comp_vectype
= get_vectype_for_scalar_type (TREE_TYPE (rhs1
));
2525 if (comp_vectype
== NULL_TREE
)
2528 if (TREE_CODE (TREE_TYPE (rhs1
)) != INTEGER_TYPE
)
2530 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (rhs1
));
2532 = build_nonstandard_integer_type (GET_MODE_BITSIZE (mode
), 1);
2533 vecitype
= get_vectype_for_scalar_type (itype
);
2534 if (vecitype
== NULL_TREE
)
2538 vecitype
= comp_vectype
;
2539 return expand_vec_cond_expr_p (vecitype
, comp_vectype
);
2546 /* Helper function of adjust_bool_pattern. Add a cast to TYPE to a previous
2547 stmt (SSA_NAME_DEF_STMT of VAR) by moving the COND_EXPR from RELATED_STMT
2548 to PATTERN_DEF_SEQ and adding a cast as RELATED_STMT. */
2551 adjust_bool_pattern_cast (tree type
, tree var
)
2553 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (SSA_NAME_DEF_STMT (var
));
2554 gimple cast_stmt
, pattern_stmt
;
2556 gcc_assert (!STMT_VINFO_PATTERN_DEF_SEQ (stmt_vinfo
));
2557 pattern_stmt
= STMT_VINFO_RELATED_STMT (stmt_vinfo
);
2558 new_pattern_def_seq (stmt_vinfo
, pattern_stmt
);
2560 = gimple_build_assign_with_ops (NOP_EXPR
,
2561 vect_recog_temp_ssa_var (type
, NULL
),
2562 gimple_assign_lhs (pattern_stmt
),
2564 STMT_VINFO_RELATED_STMT (stmt_vinfo
) = cast_stmt
;
2565 return gimple_assign_lhs (cast_stmt
);
2569 /* Helper function of vect_recog_bool_pattern. Do the actual transformations,
2570 recursively. VAR is an SSA_NAME that should be transformed from bool
2571 to a wider integer type, OUT_TYPE is the desired final integer type of
2572 the whole pattern, TRUEVAL should be NULL unless optimizing
2573 BIT_AND_EXPR into a COND_EXPR with one integer from one of the operands
2574 in the then_clause, STMTS is where statements with added pattern stmts
2575 should be pushed to. */
2578 adjust_bool_pattern (tree var
, tree out_type
, tree trueval
,
2581 gimple stmt
= SSA_NAME_DEF_STMT (var
);
2582 enum tree_code rhs_code
, def_rhs_code
;
2583 tree itype
, cond_expr
, rhs1
, rhs2
, irhs1
, irhs2
;
2585 gimple pattern_stmt
, def_stmt
;
2587 rhs1
= gimple_assign_rhs1 (stmt
);
2588 rhs2
= gimple_assign_rhs2 (stmt
);
2589 rhs_code
= gimple_assign_rhs_code (stmt
);
2590 loc
= gimple_location (stmt
);
2595 irhs1
= adjust_bool_pattern (rhs1
, out_type
, NULL_TREE
, stmts
);
2596 itype
= TREE_TYPE (irhs1
);
2598 = gimple_build_assign_with_ops (SSA_NAME
,
2599 vect_recog_temp_ssa_var (itype
, NULL
),
2604 irhs1
= adjust_bool_pattern (rhs1
, out_type
, NULL_TREE
, stmts
);
2605 itype
= TREE_TYPE (irhs1
);
2607 = gimple_build_assign_with_ops (BIT_XOR_EXPR
,
2608 vect_recog_temp_ssa_var (itype
, NULL
),
2609 irhs1
, build_int_cst (itype
, 1));
2613 /* Try to optimize x = y & (a < b ? 1 : 0); into
2614 x = (a < b ? y : 0);
2620 S1 a_b = x1 CMP1 y1;
2621 S2 b_b = x2 CMP2 y2;
2623 S4 d_T = (TYPE) c_b;
2625 we would normally emit:
2627 S1' a_T = x1 CMP1 y1 ? 1 : 0;
2628 S2' b_T = x2 CMP2 y2 ? 1 : 0;
2629 S3' c_T = a_T & b_T;
2632 but we can save one stmt by using the
2633 result of one of the COND_EXPRs in the other COND_EXPR and leave
2634 BIT_AND_EXPR stmt out:
2636 S1' a_T = x1 CMP1 y1 ? 1 : 0;
2637 S3' c_T = x2 CMP2 y2 ? a_T : 0;
2640 At least when VEC_COND_EXPR is implemented using masks
2641 cond ? 1 : 0 is as expensive as cond ? var : 0, in both cases it
2642 computes the comparison masks and ands it, in one case with
2643 all ones vector, in the other case with a vector register.
2644 Don't do this for BIT_IOR_EXPR, because cond ? 1 : var; is
2645 often more expensive. */
2646 def_stmt
= SSA_NAME_DEF_STMT (rhs2
);
2647 def_rhs_code
= gimple_assign_rhs_code (def_stmt
);
2648 if (TREE_CODE_CLASS (def_rhs_code
) == tcc_comparison
)
2650 tree def_rhs1
= gimple_assign_rhs1 (def_stmt
);
2651 irhs1
= adjust_bool_pattern (rhs1
, out_type
, NULL_TREE
, stmts
);
2652 if (TYPE_PRECISION (TREE_TYPE (irhs1
))
2653 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (def_rhs1
))))
2656 stmt_vec_info stmt_def_vinfo
= vinfo_for_stmt (def_stmt
);
2657 irhs2
= adjust_bool_pattern (rhs2
, out_type
, irhs1
, stmts
);
2658 tstmt
= stmts
->pop ();
2659 gcc_assert (tstmt
== def_stmt
);
2660 stmts
->quick_push (stmt
);
2661 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (stmt
))
2662 = STMT_VINFO_RELATED_STMT (stmt_def_vinfo
);
2663 gcc_assert (!STMT_VINFO_PATTERN_DEF_SEQ (stmt_def_vinfo
));
2664 STMT_VINFO_RELATED_STMT (stmt_def_vinfo
) = NULL
;
2668 irhs2
= adjust_bool_pattern (rhs2
, out_type
, NULL_TREE
, stmts
);
2671 def_stmt
= SSA_NAME_DEF_STMT (rhs1
);
2672 def_rhs_code
= gimple_assign_rhs_code (def_stmt
);
2673 if (TREE_CODE_CLASS (def_rhs_code
) == tcc_comparison
)
2675 tree def_rhs1
= gimple_assign_rhs1 (def_stmt
);
2676 irhs2
= adjust_bool_pattern (rhs2
, out_type
, NULL_TREE
, stmts
);
2677 if (TYPE_PRECISION (TREE_TYPE (irhs2
))
2678 == GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (def_rhs1
))))
2681 stmt_vec_info stmt_def_vinfo
= vinfo_for_stmt (def_stmt
);
2682 irhs1
= adjust_bool_pattern (rhs1
, out_type
, irhs2
, stmts
);
2683 tstmt
= stmts
->pop ();
2684 gcc_assert (tstmt
== def_stmt
);
2685 stmts
->quick_push (stmt
);
2686 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (stmt
))
2687 = STMT_VINFO_RELATED_STMT (stmt_def_vinfo
);
2688 gcc_assert (!STMT_VINFO_PATTERN_DEF_SEQ (stmt_def_vinfo
));
2689 STMT_VINFO_RELATED_STMT (stmt_def_vinfo
) = NULL
;
2693 irhs1
= adjust_bool_pattern (rhs1
, out_type
, NULL_TREE
, stmts
);
2699 irhs1
= adjust_bool_pattern (rhs1
, out_type
, NULL_TREE
, stmts
);
2700 irhs2
= adjust_bool_pattern (rhs2
, out_type
, NULL_TREE
, stmts
);
2702 if (TYPE_PRECISION (TREE_TYPE (irhs1
))
2703 != TYPE_PRECISION (TREE_TYPE (irhs2
)))
2705 int prec1
= TYPE_PRECISION (TREE_TYPE (irhs1
));
2706 int prec2
= TYPE_PRECISION (TREE_TYPE (irhs2
));
2707 int out_prec
= TYPE_PRECISION (out_type
);
2708 if (absu_hwi (out_prec
- prec1
) < absu_hwi (out_prec
- prec2
))
2709 irhs2
= adjust_bool_pattern_cast (TREE_TYPE (irhs1
), rhs2
);
2710 else if (absu_hwi (out_prec
- prec1
) > absu_hwi (out_prec
- prec2
))
2711 irhs1
= adjust_bool_pattern_cast (TREE_TYPE (irhs2
), rhs1
);
2714 irhs1
= adjust_bool_pattern_cast (out_type
, rhs1
);
2715 irhs2
= adjust_bool_pattern_cast (out_type
, rhs2
);
2718 itype
= TREE_TYPE (irhs1
);
2720 = gimple_build_assign_with_ops (rhs_code
,
2721 vect_recog_temp_ssa_var (itype
, NULL
),
2726 gcc_assert (TREE_CODE_CLASS (rhs_code
) == tcc_comparison
);
2727 if (TREE_CODE (TREE_TYPE (rhs1
)) != INTEGER_TYPE
2728 || !TYPE_UNSIGNED (TREE_TYPE (rhs1
))
2729 || (TYPE_PRECISION (TREE_TYPE (rhs1
))
2730 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (rhs1
)))))
2732 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (rhs1
));
2734 = build_nonstandard_integer_type (GET_MODE_BITSIZE (mode
), 1);
2737 itype
= TREE_TYPE (rhs1
);
2738 cond_expr
= build2_loc (loc
, rhs_code
, itype
, rhs1
, rhs2
);
2739 if (trueval
== NULL_TREE
)
2740 trueval
= build_int_cst (itype
, 1);
2742 gcc_checking_assert (useless_type_conversion_p (itype
,
2743 TREE_TYPE (trueval
)));
2745 = gimple_build_assign_with_ops (COND_EXPR
,
2746 vect_recog_temp_ssa_var (itype
, NULL
),
2748 build_int_cst (itype
, 0));
2752 stmts
->safe_push (stmt
);
2753 gimple_set_location (pattern_stmt
, loc
);
2754 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (stmt
)) = pattern_stmt
;
2755 return gimple_assign_lhs (pattern_stmt
);
2759 /* Function vect_recog_bool_pattern
2761 Try to find pattern like following:
2763 bool a_b, b_b, c_b, d_b, e_b;
2766 S1 a_b = x1 CMP1 y1;
2767 S2 b_b = x2 CMP2 y2;
2769 S4 d_b = x3 CMP3 y3;
2771 S6 f_T = (TYPE) e_b;
2773 where type 'TYPE' is an integral type.
2777 * LAST_STMT: A stmt at the end from which the pattern
2778 search begins, i.e. cast of a bool to
2783 * TYPE_IN: The type of the input arguments to the pattern.
2785 * TYPE_OUT: The type of the output of this pattern.
2787 * Return value: A new stmt that will be used to replace the pattern.
2789 Assuming size of TYPE is the same as size of all comparisons
2790 (otherwise some casts would be added where needed), the above
2791 sequence we create related pattern stmts:
2792 S1' a_T = x1 CMP1 y1 ? 1 : 0;
2793 S3' c_T = x2 CMP2 y2 ? a_T : 0;
2794 S4' d_T = x3 CMP3 y3 ? 1 : 0;
2795 S5' e_T = c_T | d_T;
2798 Instead of the above S3' we could emit:
2799 S2' b_T = x2 CMP2 y2 ? 1 : 0;
2800 S3' c_T = a_T | b_T;
2801 but the above is more efficient. */
2804 vect_recog_bool_pattern (vec
<gimple
> *stmts
, tree
*type_in
,
2807 gimple last_stmt
= stmts
->pop ();
2808 enum tree_code rhs_code
;
2809 tree var
, lhs
, rhs
, vectype
;
2810 stmt_vec_info stmt_vinfo
= vinfo_for_stmt (last_stmt
);
2811 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
2812 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_vinfo
);
2813 gimple pattern_stmt
;
2815 if (!is_gimple_assign (last_stmt
))
2818 var
= gimple_assign_rhs1 (last_stmt
);
2819 lhs
= gimple_assign_lhs (last_stmt
);
2821 if ((TYPE_PRECISION (TREE_TYPE (var
)) != 1
2822 || !TYPE_UNSIGNED (TREE_TYPE (var
)))
2823 && TREE_CODE (TREE_TYPE (var
)) != BOOLEAN_TYPE
)
2826 rhs_code
= gimple_assign_rhs_code (last_stmt
);
2827 if (CONVERT_EXPR_CODE_P (rhs_code
))
2829 if (TREE_CODE (TREE_TYPE (lhs
)) != INTEGER_TYPE
2830 || TYPE_PRECISION (TREE_TYPE (lhs
)) == 1)
2832 vectype
= get_vectype_for_scalar_type (TREE_TYPE (lhs
));
2833 if (vectype
== NULL_TREE
)
2836 if (!check_bool_pattern (var
, loop_vinfo
, bb_vinfo
))
2839 rhs
= adjust_bool_pattern (var
, TREE_TYPE (lhs
), NULL_TREE
, stmts
);
2840 lhs
= vect_recog_temp_ssa_var (TREE_TYPE (lhs
), NULL
);
2841 if (useless_type_conversion_p (TREE_TYPE (lhs
), TREE_TYPE (rhs
)))
2843 = gimple_build_assign_with_ops (SSA_NAME
, lhs
, rhs
, NULL_TREE
);
2846 = gimple_build_assign_with_ops (NOP_EXPR
, lhs
, rhs
, NULL_TREE
);
2847 *type_out
= vectype
;
2849 stmts
->safe_push (last_stmt
);
2850 if (dump_enabled_p ())
2851 dump_printf_loc (MSG_NOTE
, vect_location
,
2852 "vect_recog_bool_pattern: detected: ");
2854 return pattern_stmt
;
2856 else if (rhs_code
== SSA_NAME
2857 && STMT_VINFO_DATA_REF (stmt_vinfo
))
2859 stmt_vec_info pattern_stmt_info
;
2860 vectype
= STMT_VINFO_VECTYPE (stmt_vinfo
);
2861 gcc_assert (vectype
!= NULL_TREE
);
2862 if (!VECTOR_MODE_P (TYPE_MODE (vectype
)))
2864 if (!check_bool_pattern (var
, loop_vinfo
, bb_vinfo
))
2867 rhs
= adjust_bool_pattern (var
, TREE_TYPE (vectype
), NULL_TREE
, stmts
);
2868 lhs
= build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (vectype
), lhs
);
2869 if (!useless_type_conversion_p (TREE_TYPE (lhs
), TREE_TYPE (rhs
)))
2871 tree rhs2
= vect_recog_temp_ssa_var (TREE_TYPE (lhs
), NULL
);
2873 = gimple_build_assign_with_ops (NOP_EXPR
, rhs2
, rhs
, NULL_TREE
);
2874 new_pattern_def_seq (stmt_vinfo
, cast_stmt
);
2878 = gimple_build_assign_with_ops (SSA_NAME
, lhs
, rhs
, NULL_TREE
);
2879 pattern_stmt_info
= new_stmt_vec_info (pattern_stmt
, loop_vinfo
,
2881 set_vinfo_for_stmt (pattern_stmt
, pattern_stmt_info
);
2882 STMT_VINFO_DATA_REF (pattern_stmt_info
)
2883 = STMT_VINFO_DATA_REF (stmt_vinfo
);
2884 STMT_VINFO_DR_BASE_ADDRESS (pattern_stmt_info
)
2885 = STMT_VINFO_DR_BASE_ADDRESS (stmt_vinfo
);
2886 STMT_VINFO_DR_INIT (pattern_stmt_info
) = STMT_VINFO_DR_INIT (stmt_vinfo
);
2887 STMT_VINFO_DR_OFFSET (pattern_stmt_info
)
2888 = STMT_VINFO_DR_OFFSET (stmt_vinfo
);
2889 STMT_VINFO_DR_STEP (pattern_stmt_info
) = STMT_VINFO_DR_STEP (stmt_vinfo
);
2890 STMT_VINFO_DR_ALIGNED_TO (pattern_stmt_info
)
2891 = STMT_VINFO_DR_ALIGNED_TO (stmt_vinfo
);
2892 DR_STMT (STMT_VINFO_DATA_REF (stmt_vinfo
)) = pattern_stmt
;
2893 *type_out
= vectype
;
2895 stmts
->safe_push (last_stmt
);
2896 if (dump_enabled_p ())
2897 dump_printf_loc (MSG_NOTE
, vect_location
,
2898 "vect_recog_bool_pattern: detected: ");
2899 return pattern_stmt
;
2906 /* Mark statements that are involved in a pattern. */
2909 vect_mark_pattern_stmts (gimple orig_stmt
, gimple pattern_stmt
,
2910 tree pattern_vectype
)
2912 stmt_vec_info pattern_stmt_info
, def_stmt_info
;
2913 stmt_vec_info orig_stmt_info
= vinfo_for_stmt (orig_stmt
);
2914 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (orig_stmt_info
);
2915 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (orig_stmt_info
);
2918 pattern_stmt_info
= vinfo_for_stmt (pattern_stmt
);
2919 if (pattern_stmt_info
== NULL
)
2921 pattern_stmt_info
= new_stmt_vec_info (pattern_stmt
, loop_vinfo
,
2923 set_vinfo_for_stmt (pattern_stmt
, pattern_stmt_info
);
2925 gimple_set_bb (pattern_stmt
, gimple_bb (orig_stmt
));
2927 STMT_VINFO_RELATED_STMT (pattern_stmt_info
) = orig_stmt
;
2928 STMT_VINFO_DEF_TYPE (pattern_stmt_info
)
2929 = STMT_VINFO_DEF_TYPE (orig_stmt_info
);
2930 STMT_VINFO_VECTYPE (pattern_stmt_info
) = pattern_vectype
;
2931 STMT_VINFO_IN_PATTERN_P (orig_stmt_info
) = true;
2932 STMT_VINFO_RELATED_STMT (orig_stmt_info
) = pattern_stmt
;
2933 STMT_VINFO_PATTERN_DEF_SEQ (pattern_stmt_info
)
2934 = STMT_VINFO_PATTERN_DEF_SEQ (orig_stmt_info
);
2935 if (STMT_VINFO_PATTERN_DEF_SEQ (pattern_stmt_info
))
2937 gimple_stmt_iterator si
;
2938 for (si
= gsi_start (STMT_VINFO_PATTERN_DEF_SEQ (pattern_stmt_info
));
2939 !gsi_end_p (si
); gsi_next (&si
))
2941 def_stmt
= gsi_stmt (si
);
2942 def_stmt_info
= vinfo_for_stmt (def_stmt
);
2943 if (def_stmt_info
== NULL
)
2945 def_stmt_info
= new_stmt_vec_info (def_stmt
, loop_vinfo
,
2947 set_vinfo_for_stmt (def_stmt
, def_stmt_info
);
2949 gimple_set_bb (def_stmt
, gimple_bb (orig_stmt
));
2950 STMT_VINFO_RELATED_STMT (def_stmt_info
) = orig_stmt
;
2951 STMT_VINFO_DEF_TYPE (def_stmt_info
)
2952 = STMT_VINFO_DEF_TYPE (orig_stmt_info
);
2953 if (STMT_VINFO_VECTYPE (def_stmt_info
) == NULL_TREE
)
2954 STMT_VINFO_VECTYPE (def_stmt_info
) = pattern_vectype
;
2959 /* Function vect_pattern_recog_1
2962 PATTERN_RECOG_FUNC: A pointer to a function that detects a certain
2963 computation pattern.
2964 STMT: A stmt from which the pattern search should start.
2966 If PATTERN_RECOG_FUNC successfully detected the pattern, it creates an
2967 expression that computes the same functionality and can be used to
2968 replace the sequence of stmts that are involved in the pattern.
2971 This function checks if the expression returned by PATTERN_RECOG_FUNC is
2972 supported in vector form by the target. We use 'TYPE_IN' to obtain the
2973 relevant vector type. If 'TYPE_IN' is already a vector type, then this
2974 indicates that target support had already been checked by PATTERN_RECOG_FUNC.
2975 If 'TYPE_OUT' is also returned by PATTERN_RECOG_FUNC, we check that it fits
2976 to the available target pattern.
2978 This function also does some bookkeeping, as explained in the documentation
2979 for vect_recog_pattern. */
2982 vect_pattern_recog_1 (vect_recog_func_ptr vect_recog_func
,
2983 gimple_stmt_iterator si
,
2984 vec
<gimple
> *stmts_to_replace
)
2986 gimple stmt
= gsi_stmt (si
), pattern_stmt
;
2987 stmt_vec_info stmt_info
;
2988 loop_vec_info loop_vinfo
;
2989 tree pattern_vectype
;
2990 tree type_in
, type_out
;
2991 enum tree_code code
;
2995 stmts_to_replace
->truncate (0);
2996 stmts_to_replace
->quick_push (stmt
);
2997 pattern_stmt
= (* vect_recog_func
) (stmts_to_replace
, &type_in
, &type_out
);
3001 stmt
= stmts_to_replace
->last ();
3002 stmt_info
= vinfo_for_stmt (stmt
);
3003 loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_info
);
3005 if (VECTOR_MODE_P (TYPE_MODE (type_in
)))
3007 /* No need to check target support (already checked by the pattern
3008 recognition function). */
3009 pattern_vectype
= type_out
? type_out
: type_in
;
3013 enum machine_mode vec_mode
;
3014 enum insn_code icode
;
3017 /* Check target support */
3018 type_in
= get_vectype_for_scalar_type (type_in
);
3022 type_out
= get_vectype_for_scalar_type (type_out
);
3027 pattern_vectype
= type_out
;
3029 if (is_gimple_assign (pattern_stmt
))
3030 code
= gimple_assign_rhs_code (pattern_stmt
);
3033 gcc_assert (is_gimple_call (pattern_stmt
));
3037 optab
= optab_for_tree_code (code
, type_in
, optab_default
);
3038 vec_mode
= TYPE_MODE (type_in
);
3040 || (icode
= optab_handler (optab
, vec_mode
)) == CODE_FOR_nothing
3041 || (insn_data
[icode
].operand
[0].mode
!= TYPE_MODE (type_out
)))
3045 /* Found a vectorizable pattern. */
3046 if (dump_enabled_p ())
3048 dump_printf_loc (MSG_NOTE
, vect_location
,
3049 "pattern recognized: ");
3050 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
3053 /* Mark the stmts that are involved in the pattern. */
3054 vect_mark_pattern_stmts (stmt
, pattern_stmt
, pattern_vectype
);
3056 /* Patterns cannot be vectorized using SLP, because they change the order of
3059 FOR_EACH_VEC_ELT (LOOP_VINFO_REDUCTIONS (loop_vinfo
), i
, next
)
3061 LOOP_VINFO_REDUCTIONS (loop_vinfo
).ordered_remove (i
);
3063 /* It is possible that additional pattern stmts are created and inserted in
3064 STMTS_TO_REPLACE. We create a stmt_info for each of them, and mark the
3065 relevant statements. */
3066 for (i
= 0; stmts_to_replace
->iterate (i
, &stmt
)
3067 && (unsigned) i
< (stmts_to_replace
->length () - 1);
3070 stmt_info
= vinfo_for_stmt (stmt
);
3071 pattern_stmt
= STMT_VINFO_RELATED_STMT (stmt_info
);
3072 if (dump_enabled_p ())
3074 dump_printf_loc (MSG_NOTE
, vect_location
,
3075 "additional pattern stmt: ");
3076 dump_gimple_stmt (MSG_NOTE
, TDF_SLIM
, pattern_stmt
, 0);
3079 vect_mark_pattern_stmts (stmt
, pattern_stmt
, NULL_TREE
);
3084 /* Function vect_pattern_recog
3087 LOOP_VINFO - a struct_loop_info of a loop in which we want to look for
3090 Output - for each computation idiom that is detected we create a new stmt
3091 that provides the same functionality and that can be vectorized. We
3092 also record some information in the struct_stmt_info of the relevant
3093 stmts, as explained below:
3095 At the entry to this function we have the following stmts, with the
3096 following initial value in the STMT_VINFO fields:
3098 stmt in_pattern_p related_stmt vec_stmt
3099 S1: a_i = .... - - -
3100 S2: a_2 = ..use(a_i).. - - -
3101 S3: a_1 = ..use(a_2).. - - -
3102 S4: a_0 = ..use(a_1).. - - -
3103 S5: ... = ..use(a_0).. - - -
3105 Say the sequence {S1,S2,S3,S4} was detected as a pattern that can be
3106 represented by a single stmt. We then:
3107 - create a new stmt S6 equivalent to the pattern (the stmt is not
3108 inserted into the code)
3109 - fill in the STMT_VINFO fields as follows:
3111 in_pattern_p related_stmt vec_stmt
3112 S1: a_i = .... - - -
3113 S2: a_2 = ..use(a_i).. - - -
3114 S3: a_1 = ..use(a_2).. - - -
3115 S4: a_0 = ..use(a_1).. true S6 -
3116 '---> S6: a_new = .... - S4 -
3117 S5: ... = ..use(a_0).. - - -
3119 (the last stmt in the pattern (S4) and the new pattern stmt (S6) point
3120 to each other through the RELATED_STMT field).
3122 S6 will be marked as relevant in vect_mark_stmts_to_be_vectorized instead
3123 of S4 because it will replace all its uses. Stmts {S1,S2,S3} will
3124 remain irrelevant unless used by stmts other than S4.
3126 If vectorization succeeds, vect_transform_stmt will skip over {S1,S2,S3}
3127 (because they are marked as irrelevant). It will vectorize S6, and record
3128 a pointer to the new vector stmt VS6 from S6 (as usual).
3129 S4 will be skipped, and S5 will be vectorized as usual:
3131 in_pattern_p related_stmt vec_stmt
3132 S1: a_i = .... - - -
3133 S2: a_2 = ..use(a_i).. - - -
3134 S3: a_1 = ..use(a_2).. - - -
3135 > VS6: va_new = .... - - -
3136 S4: a_0 = ..use(a_1).. true S6 VS6
3137 '---> S6: a_new = .... - S4 VS6
3138 > VS5: ... = ..vuse(va_new).. - - -
3139 S5: ... = ..use(a_0).. - - -
3141 DCE could then get rid of {S1,S2,S3,S4,S5} (if their defs are not used
3142 elsewhere), and we'll end up with:
3145 VS5: ... = ..vuse(va_new)..
3147 In case of more than one pattern statements, e.g., widen-mult with
3151 S2 a_T = (TYPE) a_t;
3152 '--> S3: a_it = (interm_type) a_t;
3153 S4 prod_T = a_T * CONST;
3154 '--> S5: prod_T' = a_it w* CONST;
3156 there may be other users of a_T outside the pattern. In that case S2 will
3157 be marked as relevant (as well as S3), and both S2 and S3 will be analyzed
3158 and vectorized. The vector stmt VS2 will be recorded in S2, and VS3 will
3159 be recorded in S3. */
3162 vect_pattern_recog (loop_vec_info loop_vinfo
, bb_vec_info bb_vinfo
)
3167 gimple_stmt_iterator si
;
3169 vect_recog_func_ptr vect_recog_func
;
3170 vec
<gimple
> stmts_to_replace
;
3171 stmts_to_replace
.create (1);
3174 if (dump_enabled_p ())
3175 dump_printf_loc (MSG_NOTE
, vect_location
,
3176 "=== vect_pattern_recog ===");
3180 loop
= LOOP_VINFO_LOOP (loop_vinfo
);
3181 bbs
= LOOP_VINFO_BBS (loop_vinfo
);
3182 nbbs
= loop
->num_nodes
;
3186 bbs
= &BB_VINFO_BB (bb_vinfo
);
3190 /* Scan through the loop stmts, applying the pattern recognition
3191 functions starting at each stmt visited: */
3192 for (i
= 0; i
< nbbs
; i
++)
3194 basic_block bb
= bbs
[i
];
3195 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
3197 if (bb_vinfo
&& (stmt
= gsi_stmt (si
))
3198 && vinfo_for_stmt (stmt
)
3199 && !STMT_VINFO_VECTORIZABLE (vinfo_for_stmt (stmt
)))
3202 /* Scan over all generic vect_recog_xxx_pattern functions. */
3203 for (j
= 0; j
< NUM_PATTERNS
; j
++)
3205 vect_recog_func
= vect_vect_recog_func_ptrs
[j
];
3206 vect_pattern_recog_1 (vect_recog_func
, si
,
3212 stmts_to_replace
.release ();