1 /* Combining of if-expressions on trees.
2 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
3 Contributed by Richard Guenther <rguenther@suse.de>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
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"
26 #include "basic-block.h"
28 #include "diagnostic.h"
29 #include "tree-flow.h"
30 #include "tree-pass.h"
31 #include "tree-dump.h"
33 /* This pass combines COND_EXPRs to simplify control flow. It
34 currently recognizes bit tests and comparisons in chains that
35 represent logical and or logical or of two COND_EXPRs.
37 It does so by walking basic blocks in a approximate reverse
38 post-dominator order and trying to match CFG patterns that
39 represent logical and or logical or of two COND_EXPRs.
40 Transformations are done if the COND_EXPR conditions match
43 1. two single bit tests X & (1 << Yn) (for logical and)
45 2. two bit tests X & Yn (for logical or)
47 3. two comparisons X OPn Y (for logical or)
49 To simplify this pass, removing basic blocks and dead code
50 is left to CFG cleanup and DCE. */
53 /* Recognize a if-then-else CFG pattern starting to match with the
54 COND_BB basic-block containing the COND_EXPR. The recognized
55 then end else blocks are stored to *THEN_BB and *ELSE_BB. If
56 *THEN_BB and/or *ELSE_BB are already set, they are required to
57 match the then and else basic-blocks to make the pattern match.
58 Returns true if the pattern matched, false otherwise. */
61 recognize_if_then_else (basic_block cond_bb
,
62 basic_block
*then_bb
, basic_block
*else_bb
)
66 if (EDGE_COUNT (cond_bb
->succs
) != 2)
69 /* Find the then/else edges. */
70 t
= EDGE_SUCC (cond_bb
, 0);
71 e
= EDGE_SUCC (cond_bb
, 1);
72 if (!(t
->flags
& EDGE_TRUE_VALUE
))
78 if (!(t
->flags
& EDGE_TRUE_VALUE
)
79 || !(e
->flags
& EDGE_FALSE_VALUE
))
82 /* Check if the edge destinations point to the required block. */
84 && t
->dest
!= *then_bb
)
87 && e
->dest
!= *else_bb
)
98 /* Verify if the basic block BB does not have side-effects. Return
99 true in this case, else false. */
102 bb_no_side_effects_p (basic_block bb
)
104 gimple_stmt_iterator gsi
;
106 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
108 gimple stmt
= gsi_stmt (gsi
);
110 if (gimple_has_volatile_ops (stmt
)
111 || gimple_vuse (stmt
))
118 /* Verify if all PHI node arguments in DEST for edges from BB1 or
119 BB2 to DEST are the same. This makes the CFG merge point
120 free from side-effects. Return true in this case, else false. */
123 same_phi_args_p (basic_block bb1
, basic_block bb2
, basic_block dest
)
125 edge e1
= find_edge (bb1
, dest
);
126 edge e2
= find_edge (bb2
, dest
);
127 gimple_stmt_iterator gsi
;
130 for (gsi
= gsi_start_phis (dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
132 phi
= gsi_stmt (gsi
);
133 if (!operand_equal_p (PHI_ARG_DEF_FROM_EDGE (phi
, e1
),
134 PHI_ARG_DEF_FROM_EDGE (phi
, e2
), 0))
141 /* Return the best representative SSA name for CANDIDATE which is used
145 get_name_for_bit_test (tree candidate
)
147 /* Skip single-use names in favor of using the name from a
148 non-widening conversion definition. */
149 if (TREE_CODE (candidate
) == SSA_NAME
150 && has_single_use (candidate
))
152 gimple def_stmt
= SSA_NAME_DEF_STMT (candidate
);
153 if (is_gimple_assign (def_stmt
)
154 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt
)))
156 if (TYPE_PRECISION (TREE_TYPE (candidate
))
157 <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (def_stmt
))))
158 return gimple_assign_rhs1 (def_stmt
);
165 /* Recognize a single bit test pattern in GIMPLE_COND and its defining
166 statements. Store the name being tested in *NAME and the bit
167 in *BIT. The GIMPLE_COND computes *NAME & (1 << *BIT).
168 Returns true if the pattern matched, false otherwise. */
171 recognize_single_bit_test (gimple cond
, tree
*name
, tree
*bit
)
175 /* Get at the definition of the result of the bit test. */
176 if (gimple_cond_code (cond
) != NE_EXPR
177 || TREE_CODE (gimple_cond_lhs (cond
)) != SSA_NAME
178 || !integer_zerop (gimple_cond_rhs (cond
)))
180 stmt
= SSA_NAME_DEF_STMT (gimple_cond_lhs (cond
));
181 if (!is_gimple_assign (stmt
))
184 /* Look at which bit is tested. One form to recognize is
185 D.1985_5 = state_3(D) >> control1_4(D);
186 D.1986_6 = (int) D.1985_5;
188 if (D.1987_7 != 0) */
189 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
190 && integer_onep (gimple_assign_rhs2 (stmt
))
191 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
)
193 tree orig_name
= gimple_assign_rhs1 (stmt
);
195 /* Look through copies and conversions to eventually
196 find the stmt that computes the shift. */
197 stmt
= SSA_NAME_DEF_STMT (orig_name
);
199 while (is_gimple_assign (stmt
)
200 && ((CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt
))
201 && (TYPE_PRECISION (TREE_TYPE (gimple_assign_lhs (stmt
)))
202 <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (stmt
)))))
203 || gimple_assign_ssa_name_copy_p (stmt
)))
204 stmt
= SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt
));
206 /* If we found such, decompose it. */
207 if (is_gimple_assign (stmt
)
208 && gimple_assign_rhs_code (stmt
) == RSHIFT_EXPR
)
210 /* op0 & (1 << op1) */
211 *bit
= gimple_assign_rhs2 (stmt
);
212 *name
= gimple_assign_rhs1 (stmt
);
217 *bit
= integer_zero_node
;
218 *name
= get_name_for_bit_test (orig_name
);
225 D.1987_7 = op0 & (1 << CST)
226 if (D.1987_7 != 0) */
227 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
228 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
229 && integer_pow2p (gimple_assign_rhs2 (stmt
)))
231 *name
= gimple_assign_rhs1 (stmt
);
232 *bit
= build_int_cst (integer_type_node
,
233 tree_log2 (gimple_assign_rhs2 (stmt
)));
238 D.1986_6 = 1 << control1_4(D)
239 D.1987_7 = op0 & D.1986_6
240 if (D.1987_7 != 0) */
241 if (gimple_assign_rhs_code (stmt
) == BIT_AND_EXPR
242 && TREE_CODE (gimple_assign_rhs1 (stmt
)) == SSA_NAME
243 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == SSA_NAME
)
247 /* Both arguments of the BIT_AND_EXPR can be the single-bit
248 specifying expression. */
249 tmp
= SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt
));
250 if (is_gimple_assign (tmp
)
251 && gimple_assign_rhs_code (tmp
) == LSHIFT_EXPR
252 && integer_onep (gimple_assign_rhs1 (tmp
)))
254 *name
= gimple_assign_rhs2 (stmt
);
255 *bit
= gimple_assign_rhs2 (tmp
);
259 tmp
= SSA_NAME_DEF_STMT (gimple_assign_rhs2 (stmt
));
260 if (is_gimple_assign (tmp
)
261 && gimple_assign_rhs_code (tmp
) == LSHIFT_EXPR
262 && integer_onep (gimple_assign_rhs1 (tmp
)))
264 *name
= gimple_assign_rhs1 (stmt
);
265 *bit
= gimple_assign_rhs2 (tmp
);
273 /* Recognize a bit test pattern in a GIMPLE_COND and its defining
274 statements. Store the name being tested in *NAME and the bits
275 in *BITS. The COND_EXPR computes *NAME & *BITS.
276 Returns true if the pattern matched, false otherwise. */
279 recognize_bits_test (gimple cond
, tree
*name
, tree
*bits
)
283 /* Get at the definition of the result of the bit test. */
284 if (gimple_cond_code (cond
) != NE_EXPR
285 || TREE_CODE (gimple_cond_lhs (cond
)) != SSA_NAME
286 || !integer_zerop (gimple_cond_rhs (cond
)))
288 stmt
= SSA_NAME_DEF_STMT (gimple_cond_lhs (cond
));
289 if (!is_gimple_assign (stmt
)
290 || gimple_assign_rhs_code (stmt
) != BIT_AND_EXPR
)
293 *name
= get_name_for_bit_test (gimple_assign_rhs1 (stmt
));
294 *bits
= gimple_assign_rhs2 (stmt
);
299 /* If-convert on a and pattern with a common else block. The inner
300 if is specified by its INNER_COND_BB, the outer by OUTER_COND_BB.
301 Returns true if the edges to the common else basic-block were merged. */
304 ifcombine_ifandif (basic_block inner_cond_bb
, basic_block outer_cond_bb
)
306 gimple_stmt_iterator gsi
;
307 gimple inner_cond
, outer_cond
;
308 tree name1
, name2
, bit1
, bit2
;
310 inner_cond
= last_stmt (inner_cond_bb
);
312 || gimple_code (inner_cond
) != GIMPLE_COND
)
315 outer_cond
= last_stmt (outer_cond_bb
);
317 || gimple_code (outer_cond
) != GIMPLE_COND
)
320 /* See if we test a single bit of the same name in both tests. In
321 that case remove the outer test, merging both else edges,
322 and change the inner one to test for
323 name & (bit1 | bit2) == (bit1 | bit2). */
324 if (recognize_single_bit_test (inner_cond
, &name1
, &bit1
)
325 && recognize_single_bit_test (outer_cond
, &name2
, &bit2
)
331 gsi
= gsi_for_stmt (inner_cond
);
332 t
= fold_build2 (LSHIFT_EXPR
, TREE_TYPE (name1
),
333 build_int_cst (TREE_TYPE (name1
), 1), bit1
);
334 t2
= fold_build2 (LSHIFT_EXPR
, TREE_TYPE (name1
),
335 build_int_cst (TREE_TYPE (name1
), 1), bit2
);
336 t
= fold_build2 (BIT_IOR_EXPR
, TREE_TYPE (name1
), t
, t2
);
337 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
338 true, GSI_SAME_STMT
);
339 t2
= fold_build2 (BIT_AND_EXPR
, TREE_TYPE (name1
), name1
, t
);
340 t2
= force_gimple_operand_gsi (&gsi
, t2
, true, NULL_TREE
,
341 true, GSI_SAME_STMT
);
342 t
= fold_build2 (EQ_EXPR
, boolean_type_node
, t2
, t
);
343 gimple_cond_set_condition_from_tree (inner_cond
, t
);
344 update_stmt (inner_cond
);
346 /* Leave CFG optimization to cfg_cleanup. */
347 gimple_cond_set_condition_from_tree (outer_cond
, boolean_true_node
);
348 update_stmt (outer_cond
);
352 fprintf (dump_file
, "optimizing double bit test to ");
353 print_generic_expr (dump_file
, name1
, 0);
354 fprintf (dump_file
, " & T == T\nwith temporary T = (1 << ");
355 print_generic_expr (dump_file
, bit1
, 0);
356 fprintf (dump_file
, ") | (1 << ");
357 print_generic_expr (dump_file
, bit2
, 0);
358 fprintf (dump_file
, ")\n");
364 /* See if we have two comparisons that we can merge into one. */
365 else if (TREE_CODE_CLASS (gimple_cond_code (inner_cond
)) == tcc_comparison
366 && TREE_CODE_CLASS (gimple_cond_code (outer_cond
)) == tcc_comparison
367 && operand_equal_p (gimple_cond_lhs (inner_cond
),
368 gimple_cond_lhs (outer_cond
), 0)
369 && operand_equal_p (gimple_cond_rhs (inner_cond
),
370 gimple_cond_rhs (outer_cond
), 0))
372 enum tree_code code1
= gimple_cond_code (inner_cond
);
373 enum tree_code code2
= gimple_cond_code (outer_cond
);
376 if (!(t
= combine_comparisons (UNKNOWN_LOCATION
,
377 TRUTH_ANDIF_EXPR
, code1
, code2
,
379 gimple_cond_lhs (outer_cond
),
380 gimple_cond_rhs (outer_cond
))))
382 t
= canonicalize_cond_expr_cond (t
);
385 gimple_cond_set_condition_from_tree (inner_cond
, t
);
386 update_stmt (inner_cond
);
388 /* Leave CFG optimization to cfg_cleanup. */
389 gimple_cond_set_condition_from_tree (outer_cond
, boolean_true_node
);
390 update_stmt (outer_cond
);
394 fprintf (dump_file
, "optimizing two comparisons to ");
395 print_generic_expr (dump_file
, t
, 0);
396 fprintf (dump_file
, "\n");
405 /* If-convert on a or pattern with a common then block. The inner
406 if is specified by its INNER_COND_BB, the outer by OUTER_COND_BB.
407 Returns true, if the edges leading to the common then basic-block
411 ifcombine_iforif (basic_block inner_cond_bb
, basic_block outer_cond_bb
)
413 gimple inner_cond
, outer_cond
;
414 tree name1
, name2
, bits1
, bits2
;
416 inner_cond
= last_stmt (inner_cond_bb
);
418 || gimple_code (inner_cond
) != GIMPLE_COND
)
421 outer_cond
= last_stmt (outer_cond_bb
);
423 || gimple_code (outer_cond
) != GIMPLE_COND
)
426 /* See if we have two bit tests of the same name in both tests.
427 In that case remove the outer test and change the inner one to
428 test for name & (bits1 | bits2) != 0. */
429 if (recognize_bits_test (inner_cond
, &name1
, &bits1
)
430 && recognize_bits_test (outer_cond
, &name2
, &bits2
))
432 gimple_stmt_iterator gsi
;
435 /* Find the common name which is bit-tested. */
438 else if (bits1
== bits2
)
447 else if (name1
== bits2
)
453 else if (bits1
== name2
)
462 /* As we strip non-widening conversions in finding a common
463 name that is tested make sure to end up with an integral
464 type for building the bit operations. */
465 if (TYPE_PRECISION (TREE_TYPE (bits1
))
466 >= TYPE_PRECISION (TREE_TYPE (bits2
)))
468 bits1
= fold_convert (unsigned_type_for (TREE_TYPE (bits1
)), bits1
);
469 name1
= fold_convert (TREE_TYPE (bits1
), name1
);
470 bits2
= fold_convert (unsigned_type_for (TREE_TYPE (bits2
)), bits2
);
471 bits2
= fold_convert (TREE_TYPE (bits1
), bits2
);
475 bits2
= fold_convert (unsigned_type_for (TREE_TYPE (bits2
)), bits2
);
476 name1
= fold_convert (TREE_TYPE (bits2
), name1
);
477 bits1
= fold_convert (unsigned_type_for (TREE_TYPE (bits1
)), bits1
);
478 bits1
= fold_convert (TREE_TYPE (bits2
), bits1
);
482 gsi
= gsi_for_stmt (inner_cond
);
483 t
= fold_build2 (BIT_IOR_EXPR
, TREE_TYPE (name1
), bits1
, bits2
);
484 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
485 true, GSI_SAME_STMT
);
486 t
= fold_build2 (BIT_AND_EXPR
, TREE_TYPE (name1
), name1
, t
);
487 t
= force_gimple_operand_gsi (&gsi
, t
, true, NULL_TREE
,
488 true, GSI_SAME_STMT
);
489 t
= fold_build2 (NE_EXPR
, boolean_type_node
, t
,
490 build_int_cst (TREE_TYPE (t
), 0));
491 gimple_cond_set_condition_from_tree (inner_cond
, t
);
492 update_stmt (inner_cond
);
494 /* Leave CFG optimization to cfg_cleanup. */
495 gimple_cond_set_condition_from_tree (outer_cond
, boolean_false_node
);
496 update_stmt (outer_cond
);
500 fprintf (dump_file
, "optimizing bits or bits test to ");
501 print_generic_expr (dump_file
, name1
, 0);
502 fprintf (dump_file
, " & T != 0\nwith temporary T = ");
503 print_generic_expr (dump_file
, bits1
, 0);
504 fprintf (dump_file
, " | ");
505 print_generic_expr (dump_file
, bits2
, 0);
506 fprintf (dump_file
, "\n");
512 /* See if we have two comparisons that we can merge into one.
513 This happens for C++ operator overloading where for example
514 GE_EXPR is implemented as GT_EXPR || EQ_EXPR. */
515 else if (TREE_CODE_CLASS (gimple_cond_code (inner_cond
)) == tcc_comparison
516 && TREE_CODE_CLASS (gimple_cond_code (outer_cond
)) == tcc_comparison
517 && operand_equal_p (gimple_cond_lhs (inner_cond
),
518 gimple_cond_lhs (outer_cond
), 0)
519 && operand_equal_p (gimple_cond_rhs (inner_cond
),
520 gimple_cond_rhs (outer_cond
), 0))
522 enum tree_code code1
= gimple_cond_code (inner_cond
);
523 enum tree_code code2
= gimple_cond_code (outer_cond
);
526 if (!(t
= combine_comparisons (UNKNOWN_LOCATION
,
527 TRUTH_ORIF_EXPR
, code1
, code2
,
529 gimple_cond_lhs (outer_cond
),
530 gimple_cond_rhs (outer_cond
))))
532 t
= canonicalize_cond_expr_cond (t
);
535 gimple_cond_set_condition_from_tree (inner_cond
, t
);
536 update_stmt (inner_cond
);
538 /* Leave CFG optimization to cfg_cleanup. */
539 gimple_cond_set_condition_from_tree (outer_cond
, boolean_false_node
);
540 update_stmt (outer_cond
);
544 fprintf (dump_file
, "optimizing two comparisons to ");
545 print_generic_expr (dump_file
, t
, 0);
546 fprintf (dump_file
, "\n");
555 /* Recognize a CFG pattern and dispatch to the appropriate
556 if-conversion helper. We start with BB as the innermost
557 worker basic-block. Returns true if a transformation was done. */
560 tree_ssa_ifcombine_bb (basic_block inner_cond_bb
)
562 basic_block then_bb
= NULL
, else_bb
= NULL
;
564 if (!recognize_if_then_else (inner_cond_bb
, &then_bb
, &else_bb
))
567 /* Recognize && and || of two conditions with a common
568 then/else block which entry edges we can merge. That is:
574 This requires a single predecessor of the inner cond_bb. */
575 if (single_pred_p (inner_cond_bb
))
577 basic_block outer_cond_bb
= single_pred (inner_cond_bb
);
579 /* The && form is characterized by a common else_bb with
580 the two edges leading to it mergable. The latter is
581 guaranteed by matching PHI arguments in the else_bb and
582 the inner cond_bb having no side-effects. */
583 if (recognize_if_then_else (outer_cond_bb
, &inner_cond_bb
, &else_bb
)
584 && same_phi_args_p (outer_cond_bb
, inner_cond_bb
, else_bb
)
585 && bb_no_side_effects_p (inner_cond_bb
))
589 if (q) goto inner_cond_bb; else goto else_bb;
591 if (p) goto ...; else goto else_bb;
596 return ifcombine_ifandif (inner_cond_bb
, outer_cond_bb
);
599 /* The || form is characterized by a common then_bb with the
600 two edges leading to it mergable. The latter is guaranteed
601 by matching PHI arguments in the then_bb and the inner cond_bb
602 having no side-effects. */
603 if (recognize_if_then_else (outer_cond_bb
, &then_bb
, &inner_cond_bb
)
604 && same_phi_args_p (outer_cond_bb
, inner_cond_bb
, then_bb
)
605 && bb_no_side_effects_p (inner_cond_bb
))
609 if (q) goto then_bb; else goto inner_cond_bb;
611 if (q) goto then_bb; else goto ...;
615 return ifcombine_iforif (inner_cond_bb
, outer_cond_bb
);
622 /* Main entry for the tree if-conversion pass. */
625 tree_ssa_ifcombine (void)
628 bool cfg_changed
= false;
631 bbs
= blocks_in_phiopt_order ();
633 for (i
= 0; i
< n_basic_blocks
- NUM_FIXED_BLOCKS
; ++i
)
635 basic_block bb
= bbs
[i
];
636 gimple stmt
= last_stmt (bb
);
639 && gimple_code (stmt
) == GIMPLE_COND
)
640 cfg_changed
|= tree_ssa_ifcombine_bb (bb
);
645 return cfg_changed
? TODO_cleanup_cfg
: 0;
649 gate_ifcombine (void)
654 struct gimple_opt_pass pass_tree_ifcombine
=
658 "ifcombine", /* name */
659 gate_ifcombine
, /* gate */
660 tree_ssa_ifcombine
, /* execute */
663 0, /* static_pass_number */
664 TV_TREE_IFCOMBINE
, /* tv_id */
665 PROP_cfg
| PROP_ssa
, /* properties_required */
666 0, /* properties_provided */
667 0, /* properties_destroyed */
668 0, /* todo_flags_start */
672 | TODO_verify_ssa
/* todo_flags_finish */