1 /* If-conversion support.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
39 #include "cfgcleanup.h"
43 #include "tree-pass.h"
45 #include "shrink-wrap.h"
50 #ifndef MAX_CONDITIONAL_EXECUTE
51 #define MAX_CONDITIONAL_EXECUTE \
52 (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
56 #define IFCVT_MULTIPLE_DUMPS 1
58 #define NULL_BLOCK ((basic_block) NULL)
60 /* True if after combine pass. */
61 static bool ifcvt_after_combine
;
63 /* True if the target has the cbranchcc4 optab. */
64 static bool have_cbranchcc4
;
66 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
67 static int num_possible_if_blocks
;
69 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
71 static int num_updated_if_blocks
;
73 /* # of changes made. */
74 static int num_true_changes
;
76 /* Whether conditional execution changes were made. */
77 static int cond_exec_changed_p
;
79 /* Forward references. */
80 static int count_bb_insns (const_basic_block
);
81 static bool cheap_bb_rtx_cost_p (const_basic_block
, int, int);
82 static rtx_insn
*first_active_insn (basic_block
);
83 static rtx_insn
*last_active_insn (basic_block
, int);
84 static rtx_insn
*find_active_insn_before (basic_block
, rtx_insn
*);
85 static rtx_insn
*find_active_insn_after (basic_block
, rtx_insn
*);
86 static basic_block
block_fallthru (basic_block
);
87 static int cond_exec_process_insns (ce_if_block
*, rtx_insn
*, rtx
, rtx
, int,
89 static rtx
cond_exec_get_condition (rtx_insn
*);
90 static rtx
noce_get_condition (rtx_insn
*, rtx_insn
**, bool);
91 static int noce_operand_ok (const_rtx
);
92 static void merge_if_block (ce_if_block
*);
93 static int find_cond_trap (basic_block
, edge
, edge
);
94 static basic_block
find_if_header (basic_block
, int);
95 static int block_jumps_and_fallthru_p (basic_block
, basic_block
);
96 static int noce_find_if_block (basic_block
, edge
, edge
, int);
97 static int cond_exec_find_if_block (ce_if_block
*);
98 static int find_if_case_1 (basic_block
, edge
, edge
);
99 static int find_if_case_2 (basic_block
, edge
, edge
);
100 static int dead_or_predicable (basic_block
, basic_block
, basic_block
,
102 static void noce_emit_move_insn (rtx
, rtx
);
103 static rtx_insn
*block_has_only_trap (basic_block
);
105 /* Count the number of non-jump active insns in BB. */
108 count_bb_insns (const_basic_block bb
)
111 rtx_insn
*insn
= BB_HEAD (bb
);
115 if (active_insn_p (insn
) && !JUMP_P (insn
))
118 if (insn
== BB_END (bb
))
120 insn
= NEXT_INSN (insn
);
126 /* Determine whether the total insn_rtx_cost on non-jump insns in
127 basic block BB is less than MAX_COST. This function returns
128 false if the cost of any instruction could not be estimated.
130 The cost of the non-jump insns in BB is scaled by REG_BR_PROB_BASE
131 as those insns are being speculated. MAX_COST is scaled with SCALE
132 plus a small fudge factor. */
135 cheap_bb_rtx_cost_p (const_basic_block bb
, int scale
, int max_cost
)
138 rtx_insn
*insn
= BB_HEAD (bb
);
139 bool speed
= optimize_bb_for_speed_p (bb
);
141 /* Set scale to REG_BR_PROB_BASE to void the identical scaling
142 applied to insn_rtx_cost when optimizing for size. Only do
143 this after combine because if-conversion might interfere with
144 passes before combine.
146 Use optimize_function_for_speed_p instead of the pre-defined
147 variable speed to make sure it is set to same value for all
148 basic blocks in one if-conversion transformation. */
149 if (!optimize_function_for_speed_p (cfun
) && ifcvt_after_combine
)
150 scale
= REG_BR_PROB_BASE
;
151 /* Our branch probability/scaling factors are just estimates and don't
152 account for cases where we can get speculation for free and other
153 secondary benefits. So we fudge the scale factor to make speculating
154 appear a little more profitable when optimizing for performance. */
156 scale
+= REG_BR_PROB_BASE
/ 8;
163 if (NONJUMP_INSN_P (insn
))
165 int cost
= insn_rtx_cost (PATTERN (insn
), speed
) * REG_BR_PROB_BASE
;
169 /* If this instruction is the load or set of a "stack" register,
170 such as a floating point register on x87, then the cost of
171 speculatively executing this insn may need to include
172 the additional cost of popping its result off of the
173 register stack. Unfortunately, correctly recognizing and
174 accounting for this additional overhead is tricky, so for
175 now we simply prohibit such speculative execution. */
178 rtx set
= single_set (insn
);
179 if (set
&& STACK_REG_P (SET_DEST (set
)))
185 if (count
>= max_cost
)
188 else if (CALL_P (insn
))
191 if (insn
== BB_END (bb
))
193 insn
= NEXT_INSN (insn
);
199 /* Return the first non-jump active insn in the basic block. */
202 first_active_insn (basic_block bb
)
204 rtx_insn
*insn
= BB_HEAD (bb
);
208 if (insn
== BB_END (bb
))
210 insn
= NEXT_INSN (insn
);
213 while (NOTE_P (insn
) || DEBUG_INSN_P (insn
))
215 if (insn
== BB_END (bb
))
217 insn
= NEXT_INSN (insn
);
226 /* Return the last non-jump active (non-jump) insn in the basic block. */
229 last_active_insn (basic_block bb
, int skip_use_p
)
231 rtx_insn
*insn
= BB_END (bb
);
232 rtx_insn
*head
= BB_HEAD (bb
);
236 || DEBUG_INSN_P (insn
)
238 && NONJUMP_INSN_P (insn
)
239 && GET_CODE (PATTERN (insn
)) == USE
))
243 insn
= PREV_INSN (insn
);
252 /* Return the active insn before INSN inside basic block CURR_BB. */
255 find_active_insn_before (basic_block curr_bb
, rtx_insn
*insn
)
257 if (!insn
|| insn
== BB_HEAD (curr_bb
))
260 while ((insn
= PREV_INSN (insn
)) != NULL_RTX
)
262 if (NONJUMP_INSN_P (insn
) || JUMP_P (insn
) || CALL_P (insn
))
265 /* No other active insn all the way to the start of the basic block. */
266 if (insn
== BB_HEAD (curr_bb
))
273 /* Return the active insn after INSN inside basic block CURR_BB. */
276 find_active_insn_after (basic_block curr_bb
, rtx_insn
*insn
)
278 if (!insn
|| insn
== BB_END (curr_bb
))
281 while ((insn
= NEXT_INSN (insn
)) != NULL_RTX
)
283 if (NONJUMP_INSN_P (insn
) || JUMP_P (insn
) || CALL_P (insn
))
286 /* No other active insn all the way to the end of the basic block. */
287 if (insn
== BB_END (curr_bb
))
294 /* Return the basic block reached by falling though the basic block BB. */
297 block_fallthru (basic_block bb
)
299 edge e
= find_fallthru_edge (bb
->succs
);
301 return (e
) ? e
->dest
: NULL_BLOCK
;
304 /* Return true if RTXs A and B can be safely interchanged. */
307 rtx_interchangeable_p (const_rtx a
, const_rtx b
)
309 if (!rtx_equal_p (a
, b
))
312 if (GET_CODE (a
) != MEM
)
315 /* A dead type-unsafe memory reference is legal, but a live type-unsafe memory
316 reference is not. Interchanging a dead type-unsafe memory reference with
317 a live type-safe one creates a live type-unsafe memory reference, in other
318 words, it makes the program illegal.
319 We check here conservatively whether the two memory references have equal
320 memory attributes. */
322 return mem_attrs_eq_p (get_mem_attrs (a
), get_mem_attrs (b
));
326 /* Go through a bunch of insns, converting them to conditional
327 execution format if possible. Return TRUE if all of the non-note
328 insns were processed. */
331 cond_exec_process_insns (ce_if_block
*ce_info ATTRIBUTE_UNUSED
,
332 /* if block information */rtx_insn
*start
,
333 /* first insn to look at */rtx end
,
334 /* last insn to look at */rtx test
,
335 /* conditional execution test */int prob_val
,
336 /* probability of branch taken. */int mod_ok
)
338 int must_be_last
= FALSE
;
346 for (insn
= start
; ; insn
= NEXT_INSN (insn
))
348 /* dwarf2out can't cope with conditional prologues. */
349 if (NOTE_P (insn
) && NOTE_KIND (insn
) == NOTE_INSN_PROLOGUE_END
)
352 if (NOTE_P (insn
) || DEBUG_INSN_P (insn
))
355 gcc_assert (NONJUMP_INSN_P (insn
) || CALL_P (insn
));
357 /* dwarf2out can't cope with conditional unwind info. */
358 if (RTX_FRAME_RELATED_P (insn
))
361 /* Remove USE insns that get in the way. */
362 if (reload_completed
&& GET_CODE (PATTERN (insn
)) == USE
)
364 /* ??? Ug. Actually unlinking the thing is problematic,
365 given what we'd have to coordinate with our callers. */
366 SET_INSN_DELETED (insn
);
370 /* Last insn wasn't last? */
374 if (modified_in_p (test
, insn
))
381 /* Now build the conditional form of the instruction. */
382 pattern
= PATTERN (insn
);
383 xtest
= copy_rtx (test
);
385 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
387 if (GET_CODE (pattern
) == COND_EXEC
)
389 if (GET_MODE (xtest
) != GET_MODE (COND_EXEC_TEST (pattern
)))
392 xtest
= gen_rtx_AND (GET_MODE (xtest
), xtest
,
393 COND_EXEC_TEST (pattern
));
394 pattern
= COND_EXEC_CODE (pattern
);
397 pattern
= gen_rtx_COND_EXEC (VOIDmode
, xtest
, pattern
);
399 /* If the machine needs to modify the insn being conditionally executed,
400 say for example to force a constant integer operand into a temp
401 register, do so here. */
402 #ifdef IFCVT_MODIFY_INSN
403 IFCVT_MODIFY_INSN (ce_info
, pattern
, insn
);
408 validate_change (insn
, &PATTERN (insn
), pattern
, 1);
410 if (CALL_P (insn
) && prob_val
>= 0)
411 validate_change (insn
, ®_NOTES (insn
),
412 gen_rtx_INT_LIST ((machine_mode
) REG_BR_PROB
,
413 prob_val
, REG_NOTES (insn
)), 1);
423 /* Return the condition for a jump. Do not do any special processing. */
426 cond_exec_get_condition (rtx_insn
*jump
)
430 if (any_condjump_p (jump
))
431 test_if
= SET_SRC (pc_set (jump
));
434 cond
= XEXP (test_if
, 0);
436 /* If this branches to JUMP_LABEL when the condition is false,
437 reverse the condition. */
438 if (GET_CODE (XEXP (test_if
, 2)) == LABEL_REF
439 && label_ref_label (XEXP (test_if
, 2)) == JUMP_LABEL (jump
))
441 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
445 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
452 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
453 to conditional execution. Return TRUE if we were successful at
454 converting the block. */
457 cond_exec_process_if_block (ce_if_block
* ce_info
,
458 /* if block information */int do_multiple_p
)
460 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
461 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
462 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
463 rtx test_expr
; /* expression in IF_THEN_ELSE that is tested */
464 rtx_insn
*then_start
; /* first insn in THEN block */
465 rtx_insn
*then_end
; /* last insn + 1 in THEN block */
466 rtx_insn
*else_start
= NULL
; /* first insn in ELSE block or NULL */
467 rtx_insn
*else_end
= NULL
; /* last insn + 1 in ELSE block */
468 int max
; /* max # of insns to convert. */
469 int then_mod_ok
; /* whether conditional mods are ok in THEN */
470 rtx true_expr
; /* test for else block insns */
471 rtx false_expr
; /* test for then block insns */
472 int true_prob_val
; /* probability of else block */
473 int false_prob_val
; /* probability of then block */
474 rtx_insn
*then_last_head
= NULL
; /* Last match at the head of THEN */
475 rtx_insn
*else_last_head
= NULL
; /* Last match at the head of ELSE */
476 rtx_insn
*then_first_tail
= NULL
; /* First match at the tail of THEN */
477 rtx_insn
*else_first_tail
= NULL
; /* First match at the tail of ELSE */
478 int then_n_insns
, else_n_insns
, n_insns
;
479 enum rtx_code false_code
;
482 /* If test is comprised of && or || elements, and we've failed at handling
483 all of them together, just use the last test if it is the special case of
484 && elements without an ELSE block. */
485 if (!do_multiple_p
&& ce_info
->num_multiple_test_blocks
)
487 if (else_bb
|| ! ce_info
->and_and_p
)
490 ce_info
->test_bb
= test_bb
= ce_info
->last_test_bb
;
491 ce_info
->num_multiple_test_blocks
= 0;
492 ce_info
->num_and_and_blocks
= 0;
493 ce_info
->num_or_or_blocks
= 0;
496 /* Find the conditional jump to the ELSE or JOIN part, and isolate
498 test_expr
= cond_exec_get_condition (BB_END (test_bb
));
502 /* If the conditional jump is more than just a conditional jump,
503 then we can not do conditional execution conversion on this block. */
504 if (! onlyjump_p (BB_END (test_bb
)))
507 /* Collect the bounds of where we're to search, skipping any labels, jumps
508 and notes at the beginning and end of the block. Then count the total
509 number of insns and see if it is small enough to convert. */
510 then_start
= first_active_insn (then_bb
);
511 then_end
= last_active_insn (then_bb
, TRUE
);
512 then_n_insns
= ce_info
->num_then_insns
= count_bb_insns (then_bb
);
513 n_insns
= then_n_insns
;
514 max
= MAX_CONDITIONAL_EXECUTE
;
521 else_start
= first_active_insn (else_bb
);
522 else_end
= last_active_insn (else_bb
, TRUE
);
523 else_n_insns
= ce_info
->num_else_insns
= count_bb_insns (else_bb
);
524 n_insns
+= else_n_insns
;
526 /* Look for matching sequences at the head and tail of the two blocks,
527 and limit the range of insns to be converted if possible. */
528 n_matching
= flow_find_cross_jump (then_bb
, else_bb
,
529 &then_first_tail
, &else_first_tail
,
531 if (then_first_tail
== BB_HEAD (then_bb
))
532 then_start
= then_end
= NULL
;
533 if (else_first_tail
== BB_HEAD (else_bb
))
534 else_start
= else_end
= NULL
;
539 then_end
= find_active_insn_before (then_bb
, then_first_tail
);
541 else_end
= find_active_insn_before (else_bb
, else_first_tail
);
542 n_insns
-= 2 * n_matching
;
547 && then_n_insns
> n_matching
548 && else_n_insns
> n_matching
)
550 int longest_match
= MIN (then_n_insns
- n_matching
,
551 else_n_insns
- n_matching
);
553 = flow_find_head_matching_sequence (then_bb
, else_bb
,
562 /* We won't pass the insns in the head sequence to
563 cond_exec_process_insns, so we need to test them here
564 to make sure that they don't clobber the condition. */
565 for (insn
= BB_HEAD (then_bb
);
566 insn
!= NEXT_INSN (then_last_head
);
567 insn
= NEXT_INSN (insn
))
568 if (!LABEL_P (insn
) && !NOTE_P (insn
)
569 && !DEBUG_INSN_P (insn
)
570 && modified_in_p (test_expr
, insn
))
574 if (then_last_head
== then_end
)
575 then_start
= then_end
= NULL
;
576 if (else_last_head
== else_end
)
577 else_start
= else_end
= NULL
;
582 then_start
= find_active_insn_after (then_bb
, then_last_head
);
584 else_start
= find_active_insn_after (else_bb
, else_last_head
);
585 n_insns
-= 2 * n_matching
;
593 /* Map test_expr/test_jump into the appropriate MD tests to use on
594 the conditionally executed code. */
596 true_expr
= test_expr
;
598 false_code
= reversed_comparison_code (true_expr
, BB_END (test_bb
));
599 if (false_code
!= UNKNOWN
)
600 false_expr
= gen_rtx_fmt_ee (false_code
, GET_MODE (true_expr
),
601 XEXP (true_expr
, 0), XEXP (true_expr
, 1));
603 false_expr
= NULL_RTX
;
605 #ifdef IFCVT_MODIFY_TESTS
606 /* If the machine description needs to modify the tests, such as setting a
607 conditional execution register from a comparison, it can do so here. */
608 IFCVT_MODIFY_TESTS (ce_info
, true_expr
, false_expr
);
610 /* See if the conversion failed. */
611 if (!true_expr
|| !false_expr
)
615 note
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
618 true_prob_val
= XINT (note
, 0);
619 false_prob_val
= REG_BR_PROB_BASE
- true_prob_val
;
627 /* If we have && or || tests, do them here. These tests are in the adjacent
628 blocks after the first block containing the test. */
629 if (ce_info
->num_multiple_test_blocks
> 0)
631 basic_block bb
= test_bb
;
632 basic_block last_test_bb
= ce_info
->last_test_bb
;
639 rtx_insn
*start
, *end
;
641 enum rtx_code f_code
;
643 bb
= block_fallthru (bb
);
644 start
= first_active_insn (bb
);
645 end
= last_active_insn (bb
, TRUE
);
647 && ! cond_exec_process_insns (ce_info
, start
, end
, false_expr
,
648 false_prob_val
, FALSE
))
651 /* If the conditional jump is more than just a conditional jump, then
652 we can not do conditional execution conversion on this block. */
653 if (! onlyjump_p (BB_END (bb
)))
656 /* Find the conditional jump and isolate the test. */
657 t
= cond_exec_get_condition (BB_END (bb
));
661 f_code
= reversed_comparison_code (t
, BB_END (bb
));
662 if (f_code
== UNKNOWN
)
665 f
= gen_rtx_fmt_ee (f_code
, GET_MODE (t
), XEXP (t
, 0), XEXP (t
, 1));
666 if (ce_info
->and_and_p
)
668 t
= gen_rtx_AND (GET_MODE (t
), true_expr
, t
);
669 f
= gen_rtx_IOR (GET_MODE (t
), false_expr
, f
);
673 t
= gen_rtx_IOR (GET_MODE (t
), true_expr
, t
);
674 f
= gen_rtx_AND (GET_MODE (t
), false_expr
, f
);
677 /* If the machine description needs to modify the tests, such as
678 setting a conditional execution register from a comparison, it can
680 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
681 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info
, bb
, t
, f
);
683 /* See if the conversion failed. */
691 while (bb
!= last_test_bb
);
694 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
695 on then THEN block. */
696 then_mod_ok
= (else_bb
== NULL_BLOCK
);
698 /* Go through the THEN and ELSE blocks converting the insns if possible
699 to conditional execution. */
703 || ! cond_exec_process_insns (ce_info
, then_start
, then_end
,
704 false_expr
, false_prob_val
,
708 if (else_bb
&& else_end
709 && ! cond_exec_process_insns (ce_info
, else_start
, else_end
,
710 true_expr
, true_prob_val
, TRUE
))
713 /* If we cannot apply the changes, fail. Do not go through the normal fail
714 processing, since apply_change_group will call cancel_changes. */
715 if (! apply_change_group ())
717 #ifdef IFCVT_MODIFY_CANCEL
718 /* Cancel any machine dependent changes. */
719 IFCVT_MODIFY_CANCEL (ce_info
);
724 #ifdef IFCVT_MODIFY_FINAL
725 /* Do any machine dependent final modifications. */
726 IFCVT_MODIFY_FINAL (ce_info
);
729 /* Conversion succeeded. */
731 fprintf (dump_file
, "%d insn%s converted to conditional execution.\n",
732 n_insns
, (n_insns
== 1) ? " was" : "s were");
734 /* Merge the blocks! If we had matching sequences, make sure to delete one
735 copy at the appropriate location first: delete the copy in the THEN branch
736 for a tail sequence so that the remaining one is executed last for both
737 branches, and delete the copy in the ELSE branch for a head sequence so
738 that the remaining one is executed first for both branches. */
741 rtx_insn
*from
= then_first_tail
;
743 from
= find_active_insn_after (then_bb
, from
);
744 delete_insn_chain (from
, get_last_bb_insn (then_bb
), false);
747 delete_insn_chain (first_active_insn (else_bb
), else_last_head
, false);
749 merge_if_block (ce_info
);
750 cond_exec_changed_p
= TRUE
;
754 #ifdef IFCVT_MODIFY_CANCEL
755 /* Cancel any machine dependent changes. */
756 IFCVT_MODIFY_CANCEL (ce_info
);
763 /* Used by noce_process_if_block to communicate with its subroutines.
765 The subroutines know that A and B may be evaluated freely. They
766 know that X is a register. They should insert new instructions
767 before cond_earliest. */
771 /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block. */
772 basic_block test_bb
, then_bb
, else_bb
, join_bb
;
774 /* The jump that ends TEST_BB. */
777 /* The jump condition. */
780 /* New insns should be inserted before this one. */
781 rtx_insn
*cond_earliest
;
783 /* Insns in the THEN and ELSE block. There is always just this
784 one insns in those blocks. The insns are single_set insns.
785 If there was no ELSE block, INSN_B is the last insn before
786 COND_EARLIEST, or NULL_RTX. In the former case, the insn
787 operands are still valid, as if INSN_B was moved down below
789 rtx_insn
*insn_a
, *insn_b
;
791 /* The SET_SRC of INSN_A and INSN_B. */
794 /* The SET_DEST of INSN_A. */
797 /* The original set destination that the THEN and ELSE basic blocks finally
798 write their result to. */
800 /* True if this if block is not canonical. In the canonical form of
801 if blocks, the THEN_BB is the block reached via the fallthru edge
802 from TEST_BB. For the noce transformations, we allow the symmetric
804 bool then_else_reversed
;
806 /* True if the contents of then_bb and else_bb are a
807 simple single set instruction. */
811 /* True if we're optimisizing the control block for speed, false if
812 we're optimizing for size. */
815 /* An estimate of the original costs. When optimizing for size, this is the
816 combined cost of COND, JUMP and the costs for THEN_BB and ELSE_BB.
817 When optimizing for speed, we use the costs of COND plus the minimum of
818 the costs for THEN_BB and ELSE_BB, as computed in the next field. */
819 unsigned int original_cost
;
821 /* Maximum permissible cost for the unconditional sequence we should
822 generate to replace this branch. */
823 unsigned int max_seq_cost
;
825 /* The name of the noce transform that succeeded in if-converting
826 this structure. Used for debugging. */
827 const char *transform_name
;
830 static rtx
noce_emit_store_flag (struct noce_if_info
*, rtx
, int, int);
831 static int noce_try_move (struct noce_if_info
*);
832 static int noce_try_ifelse_collapse (struct noce_if_info
*);
833 static int noce_try_store_flag (struct noce_if_info
*);
834 static int noce_try_addcc (struct noce_if_info
*);
835 static int noce_try_store_flag_constants (struct noce_if_info
*);
836 static int noce_try_store_flag_mask (struct noce_if_info
*);
837 static rtx
noce_emit_cmove (struct noce_if_info
*, rtx
, enum rtx_code
, rtx
,
839 static int noce_try_cmove (struct noce_if_info
*);
840 static int noce_try_cmove_arith (struct noce_if_info
*);
841 static rtx
noce_get_alt_condition (struct noce_if_info
*, rtx
, rtx_insn
**);
842 static int noce_try_minmax (struct noce_if_info
*);
843 static int noce_try_abs (struct noce_if_info
*);
844 static int noce_try_sign_mask (struct noce_if_info
*);
846 /* Return TRUE if SEQ is a good candidate as a replacement for the
847 if-convertible sequence described in IF_INFO. */
850 noce_conversion_profitable_p (rtx_insn
*seq
, struct noce_if_info
*if_info
)
852 bool speed_p
= if_info
->speed_p
;
854 /* Cost up the new sequence. */
855 unsigned int cost
= seq_cost (seq
, speed_p
);
857 if (cost
<= if_info
->original_cost
)
860 /* When compiling for size, we can make a reasonably accurately guess
861 at the size growth. When compiling for speed, use the maximum. */
862 return speed_p
&& cost
<= if_info
->max_seq_cost
;
865 /* Helper function for noce_try_store_flag*. */
868 noce_emit_store_flag (struct noce_if_info
*if_info
, rtx x
, int reversep
,
871 rtx cond
= if_info
->cond
;
875 cond_complex
= (! general_operand (XEXP (cond
, 0), VOIDmode
)
876 || ! general_operand (XEXP (cond
, 1), VOIDmode
));
878 /* If earliest == jump, or when the condition is complex, try to
879 build the store_flag insn directly. */
883 rtx set
= pc_set (if_info
->jump
);
884 cond
= XEXP (SET_SRC (set
), 0);
885 if (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
886 && label_ref_label (XEXP (SET_SRC (set
), 2)) == JUMP_LABEL (if_info
->jump
))
887 reversep
= !reversep
;
888 if (if_info
->then_else_reversed
)
889 reversep
= !reversep
;
893 code
= reversed_comparison_code (cond
, if_info
->jump
);
895 code
= GET_CODE (cond
);
897 if ((if_info
->cond_earliest
== if_info
->jump
|| cond_complex
)
898 && (normalize
== 0 || STORE_FLAG_VALUE
== normalize
))
900 rtx src
= gen_rtx_fmt_ee (code
, GET_MODE (x
), XEXP (cond
, 0),
902 rtx set
= gen_rtx_SET (x
, src
);
905 rtx_insn
*insn
= emit_insn (set
);
907 if (recog_memoized (insn
) >= 0)
909 rtx_insn
*seq
= get_insns ();
913 if_info
->cond_earliest
= if_info
->jump
;
921 /* Don't even try if the comparison operands or the mode of X are weird. */
922 if (cond_complex
|| !SCALAR_INT_MODE_P (GET_MODE (x
)))
925 return emit_store_flag (x
, code
, XEXP (cond
, 0),
926 XEXP (cond
, 1), VOIDmode
,
927 (code
== LTU
|| code
== LEU
928 || code
== GEU
|| code
== GTU
), normalize
);
931 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
932 X is the destination/target and Y is the value to copy. */
935 noce_emit_move_insn (rtx x
, rtx y
)
937 machine_mode outmode
;
941 if (GET_CODE (x
) != STRICT_LOW_PART
)
943 rtx_insn
*seq
, *insn
;
948 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
949 otherwise construct a suitable SET pattern ourselves. */
950 insn
= (OBJECT_P (y
) || CONSTANT_P (y
) || GET_CODE (y
) == SUBREG
)
951 ? emit_move_insn (x
, y
)
952 : emit_insn (gen_rtx_SET (x
, y
));
956 if (recog_memoized (insn
) <= 0)
958 if (GET_CODE (x
) == ZERO_EXTRACT
)
960 rtx op
= XEXP (x
, 0);
961 unsigned HOST_WIDE_INT size
= INTVAL (XEXP (x
, 1));
962 unsigned HOST_WIDE_INT start
= INTVAL (XEXP (x
, 2));
964 /* store_bit_field expects START to be relative to
965 BYTES_BIG_ENDIAN and adjusts this value for machines with
966 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
967 invoke store_bit_field again it is necessary to have the START
968 value from the first call. */
969 if (BITS_BIG_ENDIAN
!= BYTES_BIG_ENDIAN
)
972 start
= BITS_PER_UNIT
- start
- size
;
975 gcc_assert (REG_P (op
));
976 start
= BITS_PER_WORD
- start
- size
;
980 gcc_assert (start
< (MEM_P (op
) ? BITS_PER_UNIT
: BITS_PER_WORD
));
981 store_bit_field (op
, size
, start
, 0, 0, GET_MODE (x
), y
, false);
985 switch (GET_RTX_CLASS (GET_CODE (y
)))
988 ot
= code_to_optab (GET_CODE (y
));
992 target
= expand_unop (GET_MODE (y
), ot
, XEXP (y
, 0), x
, 0);
993 if (target
!= NULL_RTX
)
996 emit_move_insn (x
, target
);
1004 case RTX_COMM_ARITH
:
1005 ot
= code_to_optab (GET_CODE (y
));
1009 target
= expand_binop (GET_MODE (y
), ot
,
1010 XEXP (y
, 0), XEXP (y
, 1),
1011 x
, 0, OPTAB_DIRECT
);
1012 if (target
!= NULL_RTX
)
1015 emit_move_insn (x
, target
);
1031 outer
= XEXP (x
, 0);
1032 inner
= XEXP (outer
, 0);
1033 outmode
= GET_MODE (outer
);
1034 bitpos
= SUBREG_BYTE (outer
) * BITS_PER_UNIT
;
1035 store_bit_field (inner
, GET_MODE_BITSIZE (outmode
), bitpos
,
1036 0, 0, outmode
, y
, false);
1039 /* Return the CC reg if it is used in COND. */
1042 cc_in_cond (rtx cond
)
1044 if (have_cbranchcc4
&& cond
1045 && GET_MODE_CLASS (GET_MODE (XEXP (cond
, 0))) == MODE_CC
)
1046 return XEXP (cond
, 0);
1051 /* Return sequence of instructions generated by if conversion. This
1052 function calls end_sequence() to end the current stream, ensures
1053 that the instructions are unshared, recognizable non-jump insns.
1054 On failure, this function returns a NULL_RTX. */
1057 end_ifcvt_sequence (struct noce_if_info
*if_info
)
1060 rtx_insn
*seq
= get_insns ();
1061 rtx cc
= cc_in_cond (if_info
->cond
);
1063 set_used_flags (if_info
->x
);
1064 set_used_flags (if_info
->cond
);
1065 set_used_flags (if_info
->a
);
1066 set_used_flags (if_info
->b
);
1068 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
1069 set_used_flags (insn
);
1071 unshare_all_rtl_in_chain (seq
);
1074 /* Make sure that all of the instructions emitted are recognizable,
1075 and that we haven't introduced a new jump instruction.
1076 As an exercise for the reader, build a general mechanism that
1077 allows proper placement of required clobbers. */
1078 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
1080 || recog_memoized (insn
) == -1
1081 /* Make sure new generated code does not clobber CC. */
1082 || (cc
&& set_of (cc
, insn
)))
1088 /* Return true iff the then and else basic block (if it exists)
1089 consist of a single simple set instruction. */
1092 noce_simple_bbs (struct noce_if_info
*if_info
)
1094 if (!if_info
->then_simple
)
1097 if (if_info
->else_bb
)
1098 return if_info
->else_simple
;
1103 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
1104 "if (a == b) x = a; else x = b" into "x = b". */
1107 noce_try_move (struct noce_if_info
*if_info
)
1109 rtx cond
= if_info
->cond
;
1110 enum rtx_code code
= GET_CODE (cond
);
1114 if (code
!= NE
&& code
!= EQ
)
1117 if (!noce_simple_bbs (if_info
))
1120 /* This optimization isn't valid if either A or B could be a NaN
1121 or a signed zero. */
1122 if (HONOR_NANS (if_info
->x
)
1123 || HONOR_SIGNED_ZEROS (if_info
->x
))
1126 /* Check whether the operands of the comparison are A and in
1128 if ((rtx_equal_p (if_info
->a
, XEXP (cond
, 0))
1129 && rtx_equal_p (if_info
->b
, XEXP (cond
, 1)))
1130 || (rtx_equal_p (if_info
->a
, XEXP (cond
, 1))
1131 && rtx_equal_p (if_info
->b
, XEXP (cond
, 0))))
1133 if (!rtx_interchangeable_p (if_info
->a
, if_info
->b
))
1136 y
= (code
== EQ
) ? if_info
->a
: if_info
->b
;
1138 /* Avoid generating the move if the source is the destination. */
1139 if (! rtx_equal_p (if_info
->x
, y
))
1142 noce_emit_move_insn (if_info
->x
, y
);
1143 seq
= end_ifcvt_sequence (if_info
);
1147 emit_insn_before_setloc (seq
, if_info
->jump
,
1148 INSN_LOCATION (if_info
->insn_a
));
1150 if_info
->transform_name
= "noce_try_move";
1156 /* Try forming an IF_THEN_ELSE (cond, b, a) and collapsing that
1157 through simplify_rtx. Sometimes that can eliminate the IF_THEN_ELSE.
1158 If that is the case, emit the result into x. */
1161 noce_try_ifelse_collapse (struct noce_if_info
* if_info
)
1163 if (!noce_simple_bbs (if_info
))
1166 machine_mode mode
= GET_MODE (if_info
->x
);
1167 rtx if_then_else
= simplify_gen_ternary (IF_THEN_ELSE
, mode
, mode
,
1168 if_info
->cond
, if_info
->b
,
1171 if (GET_CODE (if_then_else
) == IF_THEN_ELSE
)
1176 noce_emit_move_insn (if_info
->x
, if_then_else
);
1177 seq
= end_ifcvt_sequence (if_info
);
1181 emit_insn_before_setloc (seq
, if_info
->jump
,
1182 INSN_LOCATION (if_info
->insn_a
));
1184 if_info
->transform_name
= "noce_try_ifelse_collapse";
1189 /* Convert "if (test) x = 1; else x = 0".
1191 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
1192 tried in noce_try_store_flag_constants after noce_try_cmove has had
1193 a go at the conversion. */
1196 noce_try_store_flag (struct noce_if_info
*if_info
)
1202 if (!noce_simple_bbs (if_info
))
1205 if (CONST_INT_P (if_info
->b
)
1206 && INTVAL (if_info
->b
) == STORE_FLAG_VALUE
1207 && if_info
->a
== const0_rtx
)
1209 else if (if_info
->b
== const0_rtx
1210 && CONST_INT_P (if_info
->a
)
1211 && INTVAL (if_info
->a
) == STORE_FLAG_VALUE
1212 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1220 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, 0);
1223 if (target
!= if_info
->x
)
1224 noce_emit_move_insn (if_info
->x
, target
);
1226 seq
= end_ifcvt_sequence (if_info
);
1230 emit_insn_before_setloc (seq
, if_info
->jump
,
1231 INSN_LOCATION (if_info
->insn_a
));
1232 if_info
->transform_name
= "noce_try_store_flag";
1243 /* Convert "if (test) x = -A; else x = A" into
1244 x = A; if (test) x = -x if the machine can do the
1245 conditional negate form of this cheaply.
1246 Try this before noce_try_cmove that will just load the
1247 immediates into two registers and do a conditional select
1248 between them. If the target has a conditional negate or
1249 conditional invert operation we can save a potentially
1250 expensive constant synthesis. */
1253 noce_try_inverse_constants (struct noce_if_info
*if_info
)
1255 if (!noce_simple_bbs (if_info
))
1258 if (!CONST_INT_P (if_info
->a
)
1259 || !CONST_INT_P (if_info
->b
)
1260 || !REG_P (if_info
->x
))
1263 machine_mode mode
= GET_MODE (if_info
->x
);
1265 HOST_WIDE_INT val_a
= INTVAL (if_info
->a
);
1266 HOST_WIDE_INT val_b
= INTVAL (if_info
->b
);
1268 rtx cond
= if_info
->cond
;
1276 if (val_b
!= HOST_WIDE_INT_MIN
&& val_a
== -val_b
)
1278 else if (val_a
== ~val_b
)
1286 rtx tmp
= gen_reg_rtx (mode
);
1287 noce_emit_move_insn (tmp
, if_info
->a
);
1289 target
= emit_conditional_neg_or_complement (x
, code
, mode
, cond
, tmp
, tmp
);
1293 rtx_insn
*seq
= get_insns ();
1301 if (target
!= if_info
->x
)
1302 noce_emit_move_insn (if_info
->x
, target
);
1304 seq
= end_ifcvt_sequence (if_info
);
1309 emit_insn_before_setloc (seq
, if_info
->jump
,
1310 INSN_LOCATION (if_info
->insn_a
));
1311 if_info
->transform_name
= "noce_try_inverse_constants";
1320 /* Convert "if (test) x = a; else x = b", for A and B constant.
1321 Also allow A = y + c1, B = y + c2, with a common y between A
1325 noce_try_store_flag_constants (struct noce_if_info
*if_info
)
1330 HOST_WIDE_INT itrue
, ifalse
, diff
, tmp
;
1333 machine_mode mode
= GET_MODE (if_info
->x
);;
1334 rtx common
= NULL_RTX
;
1339 /* Handle cases like x := test ? y + 3 : y + 4. */
1340 if (GET_CODE (a
) == PLUS
1341 && GET_CODE (b
) == PLUS
1342 && CONST_INT_P (XEXP (a
, 1))
1343 && CONST_INT_P (XEXP (b
, 1))
1344 && rtx_equal_p (XEXP (a
, 0), XEXP (b
, 0))
1345 /* Allow expressions that are not using the result or plain
1346 registers where we handle overlap below. */
1347 && (REG_P (XEXP (a
, 0))
1348 || (noce_operand_ok (XEXP (a
, 0))
1349 && ! reg_overlap_mentioned_p (if_info
->x
, XEXP (a
, 0)))))
1351 common
= XEXP (a
, 0);
1356 if (!noce_simple_bbs (if_info
))
1362 ifalse
= INTVAL (a
);
1364 bool subtract_flag_p
= false;
1366 diff
= (unsigned HOST_WIDE_INT
) itrue
- ifalse
;
1367 /* Make sure we can represent the difference between the two values. */
1369 != ((ifalse
< 0) != (itrue
< 0) ? ifalse
< 0 : ifalse
< itrue
))
1372 diff
= trunc_int_for_mode (diff
, mode
);
1374 can_reverse
= (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1378 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
1381 /* We could collapse these cases but it is easier to follow the
1382 diff/STORE_FLAG_VALUE combinations when they are listed
1386 => 4 + (test != 0). */
1387 if (diff
< 0 && STORE_FLAG_VALUE
< 0)
1390 => can_reverse | 4 + (test == 0)
1391 !can_reverse | 3 - (test != 0). */
1392 else if (diff
> 0 && STORE_FLAG_VALUE
< 0)
1394 reversep
= can_reverse
;
1395 subtract_flag_p
= !can_reverse
;
1396 /* If we need to subtract the flag and we have PLUS-immediate
1397 A and B then it is unlikely to be beneficial to play tricks
1399 if (subtract_flag_p
&& common
)
1403 => can_reverse | 3 + (test == 0)
1404 !can_reverse | 4 - (test != 0). */
1405 else if (diff
< 0 && STORE_FLAG_VALUE
> 0)
1407 reversep
= can_reverse
;
1408 subtract_flag_p
= !can_reverse
;
1409 /* If we need to subtract the flag and we have PLUS-immediate
1410 A and B then it is unlikely to be beneficial to play tricks
1412 if (subtract_flag_p
&& common
)
1416 => 4 + (test != 0). */
1417 else if (diff
> 0 && STORE_FLAG_VALUE
> 0)
1422 /* Is this (cond) ? 2^n : 0? */
1423 else if (ifalse
== 0 && pow2p_hwi (itrue
)
1424 && STORE_FLAG_VALUE
== 1)
1426 /* Is this (cond) ? 0 : 2^n? */
1427 else if (itrue
== 0 && pow2p_hwi (ifalse
) && can_reverse
1428 && STORE_FLAG_VALUE
== 1)
1433 /* Is this (cond) ? -1 : x? */
1434 else if (itrue
== -1
1435 && STORE_FLAG_VALUE
== -1)
1437 /* Is this (cond) ? x : -1? */
1438 else if (ifalse
== -1 && can_reverse
1439 && STORE_FLAG_VALUE
== -1)
1449 std::swap (itrue
, ifalse
);
1450 diff
= trunc_int_for_mode (-(unsigned HOST_WIDE_INT
) diff
, mode
);
1455 /* If we have x := test ? x + 3 : x + 4 then move the original
1456 x out of the way while we store flags. */
1457 if (common
&& rtx_equal_p (common
, if_info
->x
))
1459 common
= gen_reg_rtx (mode
);
1460 noce_emit_move_insn (common
, if_info
->x
);
1463 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, normalize
);
1470 /* if (test) x = 3; else x = 4;
1471 => x = 3 + (test == 0); */
1472 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
1474 /* Add the common part now. This may allow combine to merge this
1475 with the store flag operation earlier into some sort of conditional
1476 increment/decrement if the target allows it. */
1478 target
= expand_simple_binop (mode
, PLUS
,
1480 target
, 0, OPTAB_WIDEN
);
1482 /* Always use ifalse here. It should have been swapped with itrue
1483 when appropriate when reversep is true. */
1484 target
= expand_simple_binop (mode
, subtract_flag_p
? MINUS
: PLUS
,
1485 gen_int_mode (ifalse
, mode
), target
,
1486 if_info
->x
, 0, OPTAB_WIDEN
);
1488 /* Other cases are not beneficial when the original A and B are PLUS
1495 /* if (test) x = 8; else x = 0;
1496 => x = (test != 0) << 3; */
1497 else if (ifalse
== 0 && (tmp
= exact_log2 (itrue
)) >= 0)
1499 target
= expand_simple_binop (mode
, ASHIFT
,
1500 target
, GEN_INT (tmp
), if_info
->x
, 0,
1504 /* if (test) x = -1; else x = b;
1505 => x = -(test != 0) | b; */
1506 else if (itrue
== -1)
1508 target
= expand_simple_binop (mode
, IOR
,
1509 target
, gen_int_mode (ifalse
, mode
),
1510 if_info
->x
, 0, OPTAB_WIDEN
);
1524 if (target
!= if_info
->x
)
1525 noce_emit_move_insn (if_info
->x
, target
);
1527 seq
= end_ifcvt_sequence (if_info
);
1528 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1531 emit_insn_before_setloc (seq
, if_info
->jump
,
1532 INSN_LOCATION (if_info
->insn_a
));
1533 if_info
->transform_name
= "noce_try_store_flag_constants";
1541 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1542 similarly for "foo--". */
1545 noce_try_addcc (struct noce_if_info
*if_info
)
1549 int subtract
, normalize
;
1551 if (!noce_simple_bbs (if_info
))
1554 if (GET_CODE (if_info
->a
) == PLUS
1555 && rtx_equal_p (XEXP (if_info
->a
, 0), if_info
->b
)
1556 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1559 rtx cond
= if_info
->cond
;
1560 enum rtx_code code
= reversed_comparison_code (cond
, if_info
->jump
);
1562 /* First try to use addcc pattern. */
1563 if (general_operand (XEXP (cond
, 0), VOIDmode
)
1564 && general_operand (XEXP (cond
, 1), VOIDmode
))
1567 target
= emit_conditional_add (if_info
->x
, code
,
1572 XEXP (if_info
->a
, 1),
1573 GET_MODE (if_info
->x
),
1574 (code
== LTU
|| code
== GEU
1575 || code
== LEU
|| code
== GTU
));
1578 if (target
!= if_info
->x
)
1579 noce_emit_move_insn (if_info
->x
, target
);
1581 seq
= end_ifcvt_sequence (if_info
);
1582 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1585 emit_insn_before_setloc (seq
, if_info
->jump
,
1586 INSN_LOCATION (if_info
->insn_a
));
1587 if_info
->transform_name
= "noce_try_addcc";
1594 /* If that fails, construct conditional increment or decrement using
1595 setcc. We're changing a branch and an increment to a comparison and
1597 if (XEXP (if_info
->a
, 1) == const1_rtx
1598 || XEXP (if_info
->a
, 1) == constm1_rtx
)
1601 if (STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1602 subtract
= 0, normalize
= 0;
1603 else if (-STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1604 subtract
= 1, normalize
= 0;
1606 subtract
= 0, normalize
= INTVAL (XEXP (if_info
->a
, 1));
1609 target
= noce_emit_store_flag (if_info
,
1610 gen_reg_rtx (GET_MODE (if_info
->x
)),
1614 target
= expand_simple_binop (GET_MODE (if_info
->x
),
1615 subtract
? MINUS
: PLUS
,
1616 if_info
->b
, target
, if_info
->x
,
1620 if (target
!= if_info
->x
)
1621 noce_emit_move_insn (if_info
->x
, target
);
1623 seq
= end_ifcvt_sequence (if_info
);
1624 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1627 emit_insn_before_setloc (seq
, if_info
->jump
,
1628 INSN_LOCATION (if_info
->insn_a
));
1629 if_info
->transform_name
= "noce_try_addcc";
1639 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1642 noce_try_store_flag_mask (struct noce_if_info
*if_info
)
1648 if (!noce_simple_bbs (if_info
))
1653 if ((if_info
->a
== const0_rtx
1654 && rtx_equal_p (if_info
->b
, if_info
->x
))
1655 || ((reversep
= (reversed_comparison_code (if_info
->cond
,
1658 && if_info
->b
== const0_rtx
1659 && rtx_equal_p (if_info
->a
, if_info
->x
)))
1662 target
= noce_emit_store_flag (if_info
,
1663 gen_reg_rtx (GET_MODE (if_info
->x
)),
1666 target
= expand_simple_binop (GET_MODE (if_info
->x
), AND
,
1668 target
, if_info
->x
, 0,
1673 if (target
!= if_info
->x
)
1674 noce_emit_move_insn (if_info
->x
, target
);
1676 seq
= end_ifcvt_sequence (if_info
);
1677 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1680 emit_insn_before_setloc (seq
, if_info
->jump
,
1681 INSN_LOCATION (if_info
->insn_a
));
1682 if_info
->transform_name
= "noce_try_store_flag_mask";
1693 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1696 noce_emit_cmove (struct noce_if_info
*if_info
, rtx x
, enum rtx_code code
,
1697 rtx cmp_a
, rtx cmp_b
, rtx vfalse
, rtx vtrue
)
1699 rtx target ATTRIBUTE_UNUSED
;
1700 int unsignedp ATTRIBUTE_UNUSED
;
1702 /* If earliest == jump, try to build the cmove insn directly.
1703 This is helpful when combine has created some complex condition
1704 (like for alpha's cmovlbs) that we can't hope to regenerate
1705 through the normal interface. */
1707 if (if_info
->cond_earliest
== if_info
->jump
)
1709 rtx cond
= gen_rtx_fmt_ee (code
, GET_MODE (if_info
->cond
), cmp_a
, cmp_b
);
1710 rtx if_then_else
= gen_rtx_IF_THEN_ELSE (GET_MODE (x
),
1711 cond
, vtrue
, vfalse
);
1712 rtx set
= gen_rtx_SET (x
, if_then_else
);
1715 rtx_insn
*insn
= emit_insn (set
);
1717 if (recog_memoized (insn
) >= 0)
1719 rtx_insn
*seq
= get_insns ();
1729 /* Don't even try if the comparison operands are weird
1730 except that the target supports cbranchcc4. */
1731 if (! general_operand (cmp_a
, GET_MODE (cmp_a
))
1732 || ! general_operand (cmp_b
, GET_MODE (cmp_b
)))
1734 if (!have_cbranchcc4
1735 || GET_MODE_CLASS (GET_MODE (cmp_a
)) != MODE_CC
1736 || cmp_b
!= const0_rtx
)
1740 unsignedp
= (code
== LTU
|| code
== GEU
1741 || code
== LEU
|| code
== GTU
);
1743 target
= emit_conditional_move (x
, code
, cmp_a
, cmp_b
, VOIDmode
,
1744 vtrue
, vfalse
, GET_MODE (x
),
1749 /* We might be faced with a situation like:
1752 vtrue = (subreg:M (reg:N VTRUE) BYTE)
1753 vfalse = (subreg:M (reg:N VFALSE) BYTE)
1755 We can't do a conditional move in mode M, but it's possible that we
1756 could do a conditional move in mode N instead and take a subreg of
1759 If we can't create new pseudos, though, don't bother. */
1760 if (reload_completed
)
1763 if (GET_CODE (vtrue
) == SUBREG
&& GET_CODE (vfalse
) == SUBREG
)
1765 rtx reg_vtrue
= SUBREG_REG (vtrue
);
1766 rtx reg_vfalse
= SUBREG_REG (vfalse
);
1767 unsigned int byte_vtrue
= SUBREG_BYTE (vtrue
);
1768 unsigned int byte_vfalse
= SUBREG_BYTE (vfalse
);
1769 rtx promoted_target
;
1771 if (GET_MODE (reg_vtrue
) != GET_MODE (reg_vfalse
)
1772 || byte_vtrue
!= byte_vfalse
1773 || (SUBREG_PROMOTED_VAR_P (vtrue
)
1774 != SUBREG_PROMOTED_VAR_P (vfalse
))
1775 || (SUBREG_PROMOTED_GET (vtrue
)
1776 != SUBREG_PROMOTED_GET (vfalse
)))
1779 promoted_target
= gen_reg_rtx (GET_MODE (reg_vtrue
));
1781 target
= emit_conditional_move (promoted_target
, code
, cmp_a
, cmp_b
,
1782 VOIDmode
, reg_vtrue
, reg_vfalse
,
1783 GET_MODE (reg_vtrue
), unsignedp
);
1784 /* Nope, couldn't do it in that mode either. */
1788 target
= gen_rtx_SUBREG (GET_MODE (vtrue
), promoted_target
, byte_vtrue
);
1789 SUBREG_PROMOTED_VAR_P (target
) = SUBREG_PROMOTED_VAR_P (vtrue
);
1790 SUBREG_PROMOTED_SET (target
, SUBREG_PROMOTED_GET (vtrue
));
1791 emit_move_insn (x
, target
);
1798 /* Try only simple constants and registers here. More complex cases
1799 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1800 has had a go at it. */
1803 noce_try_cmove (struct noce_if_info
*if_info
)
1809 if (!noce_simple_bbs (if_info
))
1812 if ((CONSTANT_P (if_info
->a
) || register_operand (if_info
->a
, VOIDmode
))
1813 && (CONSTANT_P (if_info
->b
) || register_operand (if_info
->b
, VOIDmode
)))
1817 code
= GET_CODE (if_info
->cond
);
1818 target
= noce_emit_cmove (if_info
, if_info
->x
, code
,
1819 XEXP (if_info
->cond
, 0),
1820 XEXP (if_info
->cond
, 1),
1821 if_info
->a
, if_info
->b
);
1825 if (target
!= if_info
->x
)
1826 noce_emit_move_insn (if_info
->x
, target
);
1828 seq
= end_ifcvt_sequence (if_info
);
1829 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1832 emit_insn_before_setloc (seq
, if_info
->jump
,
1833 INSN_LOCATION (if_info
->insn_a
));
1834 if_info
->transform_name
= "noce_try_cmove";
1838 /* If both a and b are constants try a last-ditch transformation:
1839 if (test) x = a; else x = b;
1840 => x = (-(test != 0) & (b - a)) + a;
1841 Try this only if the target-specific expansion above has failed.
1842 The target-specific expander may want to generate sequences that
1843 we don't know about, so give them a chance before trying this
1845 else if (!targetm
.have_conditional_execution ()
1846 && CONST_INT_P (if_info
->a
) && CONST_INT_P (if_info
->b
))
1848 machine_mode mode
= GET_MODE (if_info
->x
);
1849 HOST_WIDE_INT ifalse
= INTVAL (if_info
->a
);
1850 HOST_WIDE_INT itrue
= INTVAL (if_info
->b
);
1851 rtx target
= noce_emit_store_flag (if_info
, if_info
->x
, false, -1);
1858 HOST_WIDE_INT diff
= (unsigned HOST_WIDE_INT
) itrue
- ifalse
;
1859 /* Make sure we can represent the difference
1860 between the two values. */
1862 != ((ifalse
< 0) != (itrue
< 0) ? ifalse
< 0 : ifalse
< itrue
))
1868 diff
= trunc_int_for_mode (diff
, mode
);
1869 target
= expand_simple_binop (mode
, AND
,
1870 target
, gen_int_mode (diff
, mode
),
1871 if_info
->x
, 0, OPTAB_WIDEN
);
1873 target
= expand_simple_binop (mode
, PLUS
,
1874 target
, gen_int_mode (ifalse
, mode
),
1875 if_info
->x
, 0, OPTAB_WIDEN
);
1878 if (target
!= if_info
->x
)
1879 noce_emit_move_insn (if_info
->x
, target
);
1881 seq
= end_ifcvt_sequence (if_info
);
1882 if (!seq
|| !noce_conversion_profitable_p (seq
, if_info
))
1885 emit_insn_before_setloc (seq
, if_info
->jump
,
1886 INSN_LOCATION (if_info
->insn_a
));
1887 if_info
->transform_name
= "noce_try_cmove";
1903 /* Return true if X contains a conditional code mode rtx. */
1906 contains_ccmode_rtx_p (rtx x
)
1908 subrtx_iterator::array_type array
;
1909 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
1910 if (GET_MODE_CLASS (GET_MODE (*iter
)) == MODE_CC
)
1916 /* Helper for bb_valid_for_noce_process_p. Validate that
1917 the rtx insn INSN is a single set that does not set
1918 the conditional register CC and is in general valid for
1922 insn_valid_noce_process_p (rtx_insn
*insn
, rtx cc
)
1925 || !NONJUMP_INSN_P (insn
)
1926 || (cc
&& set_of (cc
, insn
)))
1929 rtx sset
= single_set (insn
);
1931 /* Currently support only simple single sets in test_bb. */
1933 || !noce_operand_ok (SET_DEST (sset
))
1934 || contains_ccmode_rtx_p (SET_DEST (sset
))
1935 || !noce_operand_ok (SET_SRC (sset
)))
1942 /* Return true iff the registers that the insns in BB_A set do not get
1943 used in BB_B. If TO_RENAME is non-NULL then it is a location that will be
1944 renamed later by the caller and so conflicts on it should be ignored
1945 in this function. */
1948 bbs_ok_for_cmove_arith (basic_block bb_a
, basic_block bb_b
, rtx to_rename
)
1951 bitmap bba_sets
= BITMAP_ALLOC (®_obstack
);
1956 FOR_BB_INSNS (bb_a
, a_insn
)
1958 if (!active_insn_p (a_insn
))
1961 rtx sset_a
= single_set (a_insn
);
1965 BITMAP_FREE (bba_sets
);
1968 /* Record all registers that BB_A sets. */
1969 FOR_EACH_INSN_DEF (def
, a_insn
)
1970 if (!(to_rename
&& DF_REF_REG (def
) == to_rename
))
1971 bitmap_set_bit (bba_sets
, DF_REF_REGNO (def
));
1976 FOR_BB_INSNS (bb_b
, b_insn
)
1978 if (!active_insn_p (b_insn
))
1981 rtx sset_b
= single_set (b_insn
);
1985 BITMAP_FREE (bba_sets
);
1989 /* Make sure this is a REG and not some instance
1990 of ZERO_EXTRACT or SUBREG or other dangerous stuff.
1991 If we have a memory destination then we have a pair of simple
1992 basic blocks performing an operation of the form [addr] = c ? a : b.
1993 bb_valid_for_noce_process_p will have ensured that these are
1994 the only stores present. In that case [addr] should be the location
1995 to be renamed. Assert that the callers set this up properly. */
1996 if (MEM_P (SET_DEST (sset_b
)))
1997 gcc_assert (rtx_equal_p (SET_DEST (sset_b
), to_rename
));
1998 else if (!REG_P (SET_DEST (sset_b
)))
2000 BITMAP_FREE (bba_sets
);
2004 /* If the insn uses a reg set in BB_A return false. */
2005 FOR_EACH_INSN_USE (use
, b_insn
)
2007 if (bitmap_bit_p (bba_sets
, DF_REF_REGNO (use
)))
2009 BITMAP_FREE (bba_sets
);
2016 BITMAP_FREE (bba_sets
);
2020 /* Emit copies of all the active instructions in BB except the last.
2021 This is a helper for noce_try_cmove_arith. */
2024 noce_emit_all_but_last (basic_block bb
)
2026 rtx_insn
*last
= last_active_insn (bb
, FALSE
);
2028 FOR_BB_INSNS (bb
, insn
)
2030 if (insn
!= last
&& active_insn_p (insn
))
2032 rtx_insn
*to_emit
= as_a
<rtx_insn
*> (copy_rtx (insn
));
2034 emit_insn (PATTERN (to_emit
));
2039 /* Helper for noce_try_cmove_arith. Emit the pattern TO_EMIT and return
2040 the resulting insn or NULL if it's not a valid insn. */
2043 noce_emit_insn (rtx to_emit
)
2045 gcc_assert (to_emit
);
2046 rtx_insn
*insn
= emit_insn (to_emit
);
2048 if (recog_memoized (insn
) < 0)
2054 /* Helper for noce_try_cmove_arith. Emit a copy of the insns up to
2055 and including the penultimate one in BB if it is not simple
2056 (as indicated by SIMPLE). Then emit LAST_INSN as the last
2057 insn in the block. The reason for that is that LAST_INSN may
2058 have been modified by the preparation in noce_try_cmove_arith. */
2061 noce_emit_bb (rtx last_insn
, basic_block bb
, bool simple
)
2064 noce_emit_all_but_last (bb
);
2066 if (last_insn
&& !noce_emit_insn (last_insn
))
2072 /* Try more complex cases involving conditional_move. */
2075 noce_try_cmove_arith (struct noce_if_info
*if_info
)
2081 rtx_insn
*insn_a
, *insn_b
;
2082 bool a_simple
= if_info
->then_simple
;
2083 bool b_simple
= if_info
->else_simple
;
2084 basic_block then_bb
= if_info
->then_bb
;
2085 basic_block else_bb
= if_info
->else_bb
;
2089 rtx_insn
*ifcvt_seq
;
2091 /* A conditional move from two memory sources is equivalent to a
2092 conditional on their addresses followed by a load. Don't do this
2093 early because it'll screw alias analysis. Note that we've
2094 already checked for no side effects. */
2095 if (cse_not_expected
2096 && MEM_P (a
) && MEM_P (b
)
2097 && MEM_ADDR_SPACE (a
) == MEM_ADDR_SPACE (b
))
2099 machine_mode address_mode
= get_address_mode (a
);
2103 x
= gen_reg_rtx (address_mode
);
2107 /* ??? We could handle this if we knew that a load from A or B could
2108 not trap or fault. This is also true if we've already loaded
2109 from the address along the path from ENTRY. */
2110 else if (may_trap_or_fault_p (a
) || may_trap_or_fault_p (b
))
2113 /* if (test) x = a + b; else x = c - d;
2120 code
= GET_CODE (if_info
->cond
);
2121 insn_a
= if_info
->insn_a
;
2122 insn_b
= if_info
->insn_b
;
2124 machine_mode x_mode
= GET_MODE (x
);
2126 if (!can_conditionally_move_p (x_mode
))
2129 /* Possibly rearrange operands to make things come out more natural. */
2130 if (reversed_comparison_code (if_info
->cond
, if_info
->jump
) != UNKNOWN
)
2133 if (rtx_equal_p (b
, x
))
2135 else if (general_operand (b
, GET_MODE (b
)))
2140 code
= reversed_comparison_code (if_info
->cond
, if_info
->jump
);
2142 std::swap (insn_a
, insn_b
);
2143 std::swap (a_simple
, b_simple
);
2144 std::swap (then_bb
, else_bb
);
2148 if (then_bb
&& else_bb
2149 && (!bbs_ok_for_cmove_arith (then_bb
, else_bb
, if_info
->orig_x
)
2150 || !bbs_ok_for_cmove_arith (else_bb
, then_bb
, if_info
->orig_x
)))
2155 /* If one of the blocks is empty then the corresponding B or A value
2156 came from the test block. The non-empty complex block that we will
2157 emit might clobber the register used by B or A, so move it to a pseudo
2160 rtx tmp_a
= NULL_RTX
;
2161 rtx tmp_b
= NULL_RTX
;
2163 if (b_simple
|| !else_bb
)
2164 tmp_b
= gen_reg_rtx (x_mode
);
2166 if (a_simple
|| !then_bb
)
2167 tmp_a
= gen_reg_rtx (x_mode
);
2172 rtx emit_a
= NULL_RTX
;
2173 rtx emit_b
= NULL_RTX
;
2174 rtx_insn
*tmp_insn
= NULL
;
2175 bool modified_in_a
= false;
2176 bool modified_in_b
= false;
2177 /* If either operand is complex, load it into a register first.
2178 The best way to do this is to copy the original insn. In this
2179 way we preserve any clobbers etc that the insn may have had.
2180 This is of course not possible in the IS_MEM case. */
2182 if (! general_operand (a
, GET_MODE (a
)) || tmp_a
)
2187 rtx reg
= gen_reg_rtx (GET_MODE (a
));
2188 emit_a
= gen_rtx_SET (reg
, a
);
2194 a
= tmp_a
? tmp_a
: gen_reg_rtx (GET_MODE (a
));
2196 rtx_insn
*copy_of_a
= as_a
<rtx_insn
*> (copy_rtx (insn_a
));
2197 rtx set
= single_set (copy_of_a
);
2200 emit_a
= PATTERN (copy_of_a
);
2204 rtx tmp_reg
= tmp_a
? tmp_a
: gen_reg_rtx (GET_MODE (a
));
2205 emit_a
= gen_rtx_SET (tmp_reg
, a
);
2211 if (! general_operand (b
, GET_MODE (b
)) || tmp_b
)
2215 rtx reg
= gen_reg_rtx (GET_MODE (b
));
2216 emit_b
= gen_rtx_SET (reg
, b
);
2222 b
= tmp_b
? tmp_b
: gen_reg_rtx (GET_MODE (b
));
2223 rtx_insn
*copy_of_b
= as_a
<rtx_insn
*> (copy_rtx (insn_b
));
2224 rtx set
= single_set (copy_of_b
);
2227 emit_b
= PATTERN (copy_of_b
);
2231 rtx tmp_reg
= tmp_b
? tmp_b
: gen_reg_rtx (GET_MODE (b
));
2232 emit_b
= gen_rtx_SET (tmp_reg
, b
);
2238 modified_in_a
= emit_a
!= NULL_RTX
&& modified_in_p (orig_b
, emit_a
);
2239 if (tmp_b
&& then_bb
)
2241 FOR_BB_INSNS (then_bb
, tmp_insn
)
2242 /* Don't check inside insn_a. We will have changed it to emit_a
2243 with a destination that doesn't conflict. */
2244 if (!(insn_a
&& tmp_insn
== insn_a
)
2245 && modified_in_p (orig_b
, tmp_insn
))
2247 modified_in_a
= true;
2253 modified_in_b
= emit_b
!= NULL_RTX
&& modified_in_p (orig_a
, emit_b
);
2254 if (tmp_a
&& else_bb
)
2256 FOR_BB_INSNS (else_bb
, tmp_insn
)
2257 /* Don't check inside insn_b. We will have changed it to emit_b
2258 with a destination that doesn't conflict. */
2259 if (!(insn_b
&& tmp_insn
== insn_b
)
2260 && modified_in_p (orig_a
, tmp_insn
))
2262 modified_in_b
= true;
2267 /* If insn to set up A clobbers any registers B depends on, try to
2268 swap insn that sets up A with the one that sets up B. If even
2269 that doesn't help, punt. */
2270 if (modified_in_a
&& !modified_in_b
)
2272 if (!noce_emit_bb (emit_b
, else_bb
, b_simple
))
2273 goto end_seq_and_fail
;
2275 if (!noce_emit_bb (emit_a
, then_bb
, a_simple
))
2276 goto end_seq_and_fail
;
2278 else if (!modified_in_a
)
2280 if (!noce_emit_bb (emit_a
, then_bb
, a_simple
))
2281 goto end_seq_and_fail
;
2283 if (!noce_emit_bb (emit_b
, else_bb
, b_simple
))
2284 goto end_seq_and_fail
;
2287 goto end_seq_and_fail
;
2289 target
= noce_emit_cmove (if_info
, x
, code
, XEXP (if_info
->cond
, 0),
2290 XEXP (if_info
->cond
, 1), a
, b
);
2293 goto end_seq_and_fail
;
2295 /* If we're handling a memory for above, emit the load now. */
2298 rtx mem
= gen_rtx_MEM (GET_MODE (if_info
->x
), target
);
2300 /* Copy over flags as appropriate. */
2301 if (MEM_VOLATILE_P (if_info
->a
) || MEM_VOLATILE_P (if_info
->b
))
2302 MEM_VOLATILE_P (mem
) = 1;
2303 if (MEM_ALIAS_SET (if_info
->a
) == MEM_ALIAS_SET (if_info
->b
))
2304 set_mem_alias_set (mem
, MEM_ALIAS_SET (if_info
->a
));
2306 MIN (MEM_ALIGN (if_info
->a
), MEM_ALIGN (if_info
->b
)));
2308 gcc_assert (MEM_ADDR_SPACE (if_info
->a
) == MEM_ADDR_SPACE (if_info
->b
));
2309 set_mem_addr_space (mem
, MEM_ADDR_SPACE (if_info
->a
));
2311 noce_emit_move_insn (if_info
->x
, mem
);
2313 else if (target
!= x
)
2314 noce_emit_move_insn (x
, target
);
2316 ifcvt_seq
= end_ifcvt_sequence (if_info
);
2317 if (!ifcvt_seq
|| !noce_conversion_profitable_p (ifcvt_seq
, if_info
))
2320 emit_insn_before_setloc (ifcvt_seq
, if_info
->jump
,
2321 INSN_LOCATION (if_info
->insn_a
));
2322 if_info
->transform_name
= "noce_try_cmove_arith";
2330 /* For most cases, the simplified condition we found is the best
2331 choice, but this is not the case for the min/max/abs transforms.
2332 For these we wish to know that it is A or B in the condition. */
2335 noce_get_alt_condition (struct noce_if_info
*if_info
, rtx target
,
2336 rtx_insn
**earliest
)
2342 /* If target is already mentioned in the known condition, return it. */
2343 if (reg_mentioned_p (target
, if_info
->cond
))
2345 *earliest
= if_info
->cond_earliest
;
2346 return if_info
->cond
;
2349 set
= pc_set (if_info
->jump
);
2350 cond
= XEXP (SET_SRC (set
), 0);
2352 = GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
2353 && label_ref_label (XEXP (SET_SRC (set
), 2)) == JUMP_LABEL (if_info
->jump
);
2354 if (if_info
->then_else_reversed
)
2357 /* If we're looking for a constant, try to make the conditional
2358 have that constant in it. There are two reasons why it may
2359 not have the constant we want:
2361 1. GCC may have needed to put the constant in a register, because
2362 the target can't compare directly against that constant. For
2363 this case, we look for a SET immediately before the comparison
2364 that puts a constant in that register.
2366 2. GCC may have canonicalized the conditional, for example
2367 replacing "if x < 4" with "if x <= 3". We can undo that (or
2368 make equivalent types of changes) to get the constants we need
2369 if they're off by one in the right direction. */
2371 if (CONST_INT_P (target
))
2373 enum rtx_code code
= GET_CODE (if_info
->cond
);
2374 rtx op_a
= XEXP (if_info
->cond
, 0);
2375 rtx op_b
= XEXP (if_info
->cond
, 1);
2376 rtx_insn
*prev_insn
;
2378 /* First, look to see if we put a constant in a register. */
2379 prev_insn
= prev_nonnote_insn (if_info
->cond_earliest
);
2381 && BLOCK_FOR_INSN (prev_insn
)
2382 == BLOCK_FOR_INSN (if_info
->cond_earliest
)
2383 && INSN_P (prev_insn
)
2384 && GET_CODE (PATTERN (prev_insn
)) == SET
)
2386 rtx src
= find_reg_equal_equiv_note (prev_insn
);
2388 src
= SET_SRC (PATTERN (prev_insn
));
2389 if (CONST_INT_P (src
))
2391 if (rtx_equal_p (op_a
, SET_DEST (PATTERN (prev_insn
))))
2393 else if (rtx_equal_p (op_b
, SET_DEST (PATTERN (prev_insn
))))
2396 if (CONST_INT_P (op_a
))
2398 std::swap (op_a
, op_b
);
2399 code
= swap_condition (code
);
2404 /* Now, look to see if we can get the right constant by
2405 adjusting the conditional. */
2406 if (CONST_INT_P (op_b
))
2408 HOST_WIDE_INT desired_val
= INTVAL (target
);
2409 HOST_WIDE_INT actual_val
= INTVAL (op_b
);
2414 if (desired_val
!= HOST_WIDE_INT_MAX
2415 && actual_val
== desired_val
+ 1)
2418 op_b
= GEN_INT (desired_val
);
2422 if (desired_val
!= HOST_WIDE_INT_MIN
2423 && actual_val
== desired_val
- 1)
2426 op_b
= GEN_INT (desired_val
);
2430 if (desired_val
!= HOST_WIDE_INT_MIN
2431 && actual_val
== desired_val
- 1)
2434 op_b
= GEN_INT (desired_val
);
2438 if (desired_val
!= HOST_WIDE_INT_MAX
2439 && actual_val
== desired_val
+ 1)
2442 op_b
= GEN_INT (desired_val
);
2450 /* If we made any changes, generate a new conditional that is
2451 equivalent to what we started with, but has the right
2453 if (code
!= GET_CODE (if_info
->cond
)
2454 || op_a
!= XEXP (if_info
->cond
, 0)
2455 || op_b
!= XEXP (if_info
->cond
, 1))
2457 cond
= gen_rtx_fmt_ee (code
, GET_MODE (cond
), op_a
, op_b
);
2458 *earliest
= if_info
->cond_earliest
;
2463 cond
= canonicalize_condition (if_info
->jump
, cond
, reverse
,
2464 earliest
, target
, have_cbranchcc4
, true);
2465 if (! cond
|| ! reg_mentioned_p (target
, cond
))
2468 /* We almost certainly searched back to a different place.
2469 Need to re-verify correct lifetimes. */
2471 /* X may not be mentioned in the range (cond_earliest, jump]. */
2472 for (insn
= if_info
->jump
; insn
!= *earliest
; insn
= PREV_INSN (insn
))
2473 if (INSN_P (insn
) && reg_overlap_mentioned_p (if_info
->x
, PATTERN (insn
)))
2476 /* A and B may not be modified in the range [cond_earliest, jump). */
2477 for (insn
= *earliest
; insn
!= if_info
->jump
; insn
= NEXT_INSN (insn
))
2479 && (modified_in_p (if_info
->a
, insn
)
2480 || modified_in_p (if_info
->b
, insn
)))
2486 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
2489 noce_try_minmax (struct noce_if_info
*if_info
)
2492 rtx_insn
*earliest
, *seq
;
2493 enum rtx_code code
, op
;
2496 if (!noce_simple_bbs (if_info
))
2499 /* ??? Reject modes with NaNs or signed zeros since we don't know how
2500 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
2501 to get the target to tell us... */
2502 if (HONOR_SIGNED_ZEROS (if_info
->x
)
2503 || HONOR_NANS (if_info
->x
))
2506 cond
= noce_get_alt_condition (if_info
, if_info
->a
, &earliest
);
2510 /* Verify the condition is of the form we expect, and canonicalize
2511 the comparison code. */
2512 code
= GET_CODE (cond
);
2513 if (rtx_equal_p (XEXP (cond
, 0), if_info
->a
))
2515 if (! rtx_equal_p (XEXP (cond
, 1), if_info
->b
))
2518 else if (rtx_equal_p (XEXP (cond
, 1), if_info
->a
))
2520 if (! rtx_equal_p (XEXP (cond
, 0), if_info
->b
))
2522 code
= swap_condition (code
);
2527 /* Determine what sort of operation this is. Note that the code is for
2528 a taken branch, so the code->operation mapping appears backwards. */
2561 target
= expand_simple_binop (GET_MODE (if_info
->x
), op
,
2562 if_info
->a
, if_info
->b
,
2563 if_info
->x
, unsignedp
, OPTAB_WIDEN
);
2569 if (target
!= if_info
->x
)
2570 noce_emit_move_insn (if_info
->x
, target
);
2572 seq
= end_ifcvt_sequence (if_info
);
2576 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATION (if_info
->insn_a
));
2577 if_info
->cond
= cond
;
2578 if_info
->cond_earliest
= earliest
;
2579 if_info
->transform_name
= "noce_try_minmax";
2584 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
2585 "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
2589 noce_try_abs (struct noce_if_info
*if_info
)
2591 rtx cond
, target
, a
, b
, c
;
2592 rtx_insn
*earliest
, *seq
;
2594 bool one_cmpl
= false;
2596 if (!noce_simple_bbs (if_info
))
2599 /* Reject modes with signed zeros. */
2600 if (HONOR_SIGNED_ZEROS (if_info
->x
))
2603 /* Recognize A and B as constituting an ABS or NABS. The canonical
2604 form is a branch around the negation, taken when the object is the
2605 first operand of a comparison against 0 that evaluates to true. */
2608 if (GET_CODE (a
) == NEG
&& rtx_equal_p (XEXP (a
, 0), b
))
2610 else if (GET_CODE (b
) == NEG
&& rtx_equal_p (XEXP (b
, 0), a
))
2615 else if (GET_CODE (a
) == NOT
&& rtx_equal_p (XEXP (a
, 0), b
))
2620 else if (GET_CODE (b
) == NOT
&& rtx_equal_p (XEXP (b
, 0), a
))
2629 cond
= noce_get_alt_condition (if_info
, b
, &earliest
);
2633 /* Verify the condition is of the form we expect. */
2634 if (rtx_equal_p (XEXP (cond
, 0), b
))
2636 else if (rtx_equal_p (XEXP (cond
, 1), b
))
2644 /* Verify that C is zero. Search one step backward for a
2645 REG_EQUAL note or a simple source if necessary. */
2649 rtx_insn
*insn
= prev_nonnote_insn (earliest
);
2651 && BLOCK_FOR_INSN (insn
) == BLOCK_FOR_INSN (earliest
)
2652 && (set
= single_set (insn
))
2653 && rtx_equal_p (SET_DEST (set
), c
))
2655 rtx note
= find_reg_equal_equiv_note (insn
);
2665 && GET_CODE (XEXP (c
, 0)) == SYMBOL_REF
2666 && CONSTANT_POOL_ADDRESS_P (XEXP (c
, 0)))
2667 c
= get_pool_constant (XEXP (c
, 0));
2669 /* Work around funny ideas get_condition has wrt canonicalization.
2670 Note that these rtx constants are known to be CONST_INT, and
2671 therefore imply integer comparisons.
2672 The one_cmpl case is more complicated, as we want to handle
2673 only x < 0 ? ~x : x or x >= 0 ? x : ~x to one_cmpl_abs (x)
2674 and x < 0 ? x : ~x or x >= 0 ? ~x : x to ~one_cmpl_abs (x),
2675 but not other cases (x > -1 is equivalent of x >= 0). */
2676 if (c
== constm1_rtx
&& GET_CODE (cond
) == GT
)
2678 else if (c
== const1_rtx
&& GET_CODE (cond
) == LT
)
2683 else if (c
== CONST0_RTX (GET_MODE (b
)))
2686 && GET_CODE (cond
) != GE
2687 && GET_CODE (cond
) != LT
)
2693 /* Determine what sort of operation this is. */
2694 switch (GET_CODE (cond
))
2713 target
= expand_one_cmpl_abs_nojump (GET_MODE (if_info
->x
), b
,
2716 target
= expand_abs_nojump (GET_MODE (if_info
->x
), b
, if_info
->x
, 1);
2718 /* ??? It's a quandary whether cmove would be better here, especially
2719 for integers. Perhaps combine will clean things up. */
2720 if (target
&& negate
)
2723 target
= expand_simple_unop (GET_MODE (target
), NOT
, target
,
2726 target
= expand_simple_unop (GET_MODE (target
), NEG
, target
,
2736 if (target
!= if_info
->x
)
2737 noce_emit_move_insn (if_info
->x
, target
);
2739 seq
= end_ifcvt_sequence (if_info
);
2743 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATION (if_info
->insn_a
));
2744 if_info
->cond
= cond
;
2745 if_info
->cond_earliest
= earliest
;
2746 if_info
->transform_name
= "noce_try_abs";
2751 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
2754 noce_try_sign_mask (struct noce_if_info
*if_info
)
2760 bool t_unconditional
;
2762 if (!noce_simple_bbs (if_info
))
2765 cond
= if_info
->cond
;
2766 code
= GET_CODE (cond
);
2771 if (if_info
->a
== const0_rtx
)
2773 if ((code
== LT
&& c
== const0_rtx
)
2774 || (code
== LE
&& c
== constm1_rtx
))
2777 else if (if_info
->b
== const0_rtx
)
2779 if ((code
== GE
&& c
== const0_rtx
)
2780 || (code
== GT
&& c
== constm1_rtx
))
2784 if (! t
|| side_effects_p (t
))
2787 /* We currently don't handle different modes. */
2788 mode
= GET_MODE (t
);
2789 if (GET_MODE (m
) != mode
)
2792 /* This is only profitable if T is unconditionally executed/evaluated in the
2793 original insn sequence or T is cheap. The former happens if B is the
2794 non-zero (T) value and if INSN_B was taken from TEST_BB, or there was no
2795 INSN_B which can happen for e.g. conditional stores to memory. For the
2796 cost computation use the block TEST_BB where the evaluation will end up
2797 after the transformation. */
2800 && (if_info
->insn_b
== NULL_RTX
2801 || BLOCK_FOR_INSN (if_info
->insn_b
) == if_info
->test_bb
));
2802 if (!(t_unconditional
2803 || (set_src_cost (t
, mode
, if_info
->speed_p
)
2804 < COSTS_N_INSNS (2))))
2808 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
2809 "(signed) m >> 31" directly. This benefits targets with specialized
2810 insns to obtain the signmask, but still uses ashr_optab otherwise. */
2811 m
= emit_store_flag (gen_reg_rtx (mode
), LT
, m
, const0_rtx
, mode
, 0, -1);
2812 t
= m
? expand_binop (mode
, and_optab
, m
, t
, NULL_RTX
, 0, OPTAB_DIRECT
)
2821 noce_emit_move_insn (if_info
->x
, t
);
2823 seq
= end_ifcvt_sequence (if_info
);
2827 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATION (if_info
->insn_a
));
2828 if_info
->transform_name
= "noce_try_sign_mask";
2834 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
2838 noce_try_bitop (struct noce_if_info
*if_info
)
2840 rtx cond
, x
, a
, result
;
2847 cond
= if_info
->cond
;
2848 code
= GET_CODE (cond
);
2850 if (!noce_simple_bbs (if_info
))
2853 /* Check for no else condition. */
2854 if (! rtx_equal_p (x
, if_info
->b
))
2857 /* Check for a suitable condition. */
2858 if (code
!= NE
&& code
!= EQ
)
2860 if (XEXP (cond
, 1) != const0_rtx
)
2862 cond
= XEXP (cond
, 0);
2864 /* ??? We could also handle AND here. */
2865 if (GET_CODE (cond
) == ZERO_EXTRACT
)
2867 if (XEXP (cond
, 1) != const1_rtx
2868 || !CONST_INT_P (XEXP (cond
, 2))
2869 || ! rtx_equal_p (x
, XEXP (cond
, 0)))
2871 bitnum
= INTVAL (XEXP (cond
, 2));
2872 mode
= GET_MODE (x
);
2873 if (BITS_BIG_ENDIAN
)
2874 bitnum
= GET_MODE_BITSIZE (mode
) - 1 - bitnum
;
2875 if (bitnum
< 0 || bitnum
>= HOST_BITS_PER_WIDE_INT
)
2882 if (GET_CODE (a
) == IOR
|| GET_CODE (a
) == XOR
)
2884 /* Check for "if (X & C) x = x op C". */
2885 if (! rtx_equal_p (x
, XEXP (a
, 0))
2886 || !CONST_INT_P (XEXP (a
, 1))
2887 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
2888 != HOST_WIDE_INT_1U
<< bitnum
)
2891 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
2892 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
2893 if (GET_CODE (a
) == IOR
)
2894 result
= (code
== NE
) ? a
: NULL_RTX
;
2895 else if (code
== NE
)
2897 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
2898 result
= gen_int_mode (HOST_WIDE_INT_1
<< bitnum
, mode
);
2899 result
= simplify_gen_binary (IOR
, mode
, x
, result
);
2903 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
2904 result
= gen_int_mode (~(HOST_WIDE_INT_1
<< bitnum
), mode
);
2905 result
= simplify_gen_binary (AND
, mode
, x
, result
);
2908 else if (GET_CODE (a
) == AND
)
2910 /* Check for "if (X & C) x &= ~C". */
2911 if (! rtx_equal_p (x
, XEXP (a
, 0))
2912 || !CONST_INT_P (XEXP (a
, 1))
2913 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
2914 != (~(HOST_WIDE_INT_1
<< bitnum
) & GET_MODE_MASK (mode
)))
2917 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
2918 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
2919 result
= (code
== EQ
) ? a
: NULL_RTX
;
2927 noce_emit_move_insn (x
, result
);
2928 seq
= end_ifcvt_sequence (if_info
);
2932 emit_insn_before_setloc (seq
, if_info
->jump
,
2933 INSN_LOCATION (if_info
->insn_a
));
2935 if_info
->transform_name
= "noce_try_bitop";
2940 /* Similar to get_condition, only the resulting condition must be
2941 valid at JUMP, instead of at EARLIEST.
2943 If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2944 THEN block of the caller, and we have to reverse the condition. */
2947 noce_get_condition (rtx_insn
*jump
, rtx_insn
**earliest
, bool then_else_reversed
)
2952 if (! any_condjump_p (jump
))
2955 set
= pc_set (jump
);
2957 /* If this branches to JUMP_LABEL when the condition is false,
2958 reverse the condition. */
2959 reverse
= (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
2960 && label_ref_label (XEXP (SET_SRC (set
), 2)) == JUMP_LABEL (jump
));
2962 /* We may have to reverse because the caller's if block is not canonical,
2963 i.e. the THEN block isn't the fallthrough block for the TEST block
2964 (see find_if_header). */
2965 if (then_else_reversed
)
2968 /* If the condition variable is a register and is MODE_INT, accept it. */
2970 cond
= XEXP (SET_SRC (set
), 0);
2971 tmp
= XEXP (cond
, 0);
2972 if (REG_P (tmp
) && GET_MODE_CLASS (GET_MODE (tmp
)) == MODE_INT
2973 && (GET_MODE (tmp
) != BImode
2974 || !targetm
.small_register_classes_for_mode_p (BImode
)))
2979 cond
= gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond
)),
2980 GET_MODE (cond
), tmp
, XEXP (cond
, 1));
2984 /* Otherwise, fall back on canonicalize_condition to do the dirty
2985 work of manipulating MODE_CC values and COMPARE rtx codes. */
2986 tmp
= canonicalize_condition (jump
, cond
, reverse
, earliest
,
2987 NULL_RTX
, have_cbranchcc4
, true);
2989 /* We don't handle side-effects in the condition, like handling
2990 REG_INC notes and making sure no duplicate conditions are emitted. */
2991 if (tmp
!= NULL_RTX
&& side_effects_p (tmp
))
2997 /* Return true if OP is ok for if-then-else processing. */
3000 noce_operand_ok (const_rtx op
)
3002 if (side_effects_p (op
))
3005 /* We special-case memories, so handle any of them with
3006 no address side effects. */
3008 return ! side_effects_p (XEXP (op
, 0));
3010 return ! may_trap_p (op
);
3013 /* Return true iff basic block TEST_BB is valid for noce if-conversion.
3014 The condition used in this if-conversion is in COND.
3015 In practice, check that TEST_BB ends with a single set
3016 x := a and all previous computations
3017 in TEST_BB don't produce any values that are live after TEST_BB.
3018 In other words, all the insns in TEST_BB are there only
3019 to compute a value for x. Add the rtx cost of the insns
3020 in TEST_BB to COST. Record whether TEST_BB is a single simple
3021 set instruction in SIMPLE_P. */
3024 bb_valid_for_noce_process_p (basic_block test_bb
, rtx cond
,
3025 unsigned int *cost
, bool *simple_p
)
3030 rtx_insn
*last_insn
= last_active_insn (test_bb
, FALSE
);
3031 rtx last_set
= NULL_RTX
;
3033 rtx cc
= cc_in_cond (cond
);
3035 if (!insn_valid_noce_process_p (last_insn
, cc
))
3037 last_set
= single_set (last_insn
);
3039 rtx x
= SET_DEST (last_set
);
3040 rtx_insn
*first_insn
= first_active_insn (test_bb
);
3041 rtx first_set
= single_set (first_insn
);
3046 /* We have a single simple set, that's okay. */
3047 bool speed_p
= optimize_bb_for_speed_p (test_bb
);
3049 if (first_insn
== last_insn
)
3051 *simple_p
= noce_operand_ok (SET_DEST (first_set
));
3052 *cost
+= insn_rtx_cost (first_set
, speed_p
);
3056 rtx_insn
*prev_last_insn
= PREV_INSN (last_insn
);
3057 gcc_assert (prev_last_insn
);
3059 /* For now, disallow setting x multiple times in test_bb. */
3060 if (REG_P (x
) && reg_set_between_p (x
, first_insn
, prev_last_insn
))
3063 bitmap test_bb_temps
= BITMAP_ALLOC (®_obstack
);
3065 /* The regs that are live out of test_bb. */
3066 bitmap test_bb_live_out
= df_get_live_out (test_bb
);
3068 int potential_cost
= insn_rtx_cost (last_set
, speed_p
);
3070 FOR_BB_INSNS (test_bb
, insn
)
3072 if (insn
!= last_insn
)
3074 if (!active_insn_p (insn
))
3077 if (!insn_valid_noce_process_p (insn
, cc
))
3078 goto free_bitmap_and_fail
;
3080 rtx sset
= single_set (insn
);
3083 if (contains_mem_rtx_p (SET_SRC (sset
))
3084 || !REG_P (SET_DEST (sset
))
3085 || reg_overlap_mentioned_p (SET_DEST (sset
), cond
))
3086 goto free_bitmap_and_fail
;
3088 potential_cost
+= insn_rtx_cost (sset
, speed_p
);
3089 bitmap_set_bit (test_bb_temps
, REGNO (SET_DEST (sset
)));
3093 /* If any of the intermediate results in test_bb are live after test_bb
3095 if (bitmap_intersect_p (test_bb_live_out
, test_bb_temps
))
3096 goto free_bitmap_and_fail
;
3098 BITMAP_FREE (test_bb_temps
);
3099 *cost
+= potential_cost
;
3103 free_bitmap_and_fail
:
3104 BITMAP_FREE (test_bb_temps
);
3108 /* We have something like:
3111 { i = a; j = b; k = c; }
3115 tmp_i = (x > y) ? a : i;
3116 tmp_j = (x > y) ? b : j;
3117 tmp_k = (x > y) ? c : k;
3122 Subsequent passes are expected to clean up the extra moves.
3124 Look for special cases such as writes to one register which are
3125 read back in another SET, as might occur in a swap idiom or
3134 Which we want to rewrite to:
3136 tmp_i = (x > y) ? a : i;
3137 tmp_j = (x > y) ? tmp_i : j;
3141 We can catch these when looking at (SET x y) by keeping a list of the
3142 registers we would have targeted before if-conversion and looking back
3143 through it for an overlap with Y. If we find one, we rewire the
3144 conditional set to use the temporary we introduced earlier.
3146 IF_INFO contains the useful information about the block structure and
3147 jump instructions. */
3150 noce_convert_multiple_sets (struct noce_if_info
*if_info
)
3152 basic_block test_bb
= if_info
->test_bb
;
3153 basic_block then_bb
= if_info
->then_bb
;
3154 basic_block join_bb
= if_info
->join_bb
;
3155 rtx_insn
*jump
= if_info
->jump
;
3156 rtx_insn
*cond_earliest
;
3161 /* Decompose the condition attached to the jump. */
3162 rtx cond
= noce_get_condition (jump
, &cond_earliest
, false);
3163 rtx x
= XEXP (cond
, 0);
3164 rtx y
= XEXP (cond
, 1);
3165 rtx_code cond_code
= GET_CODE (cond
);
3167 /* The true targets for a conditional move. */
3168 auto_vec
<rtx
> targets
;
3169 /* The temporaries introduced to allow us to not consider register
3171 auto_vec
<rtx
> temporaries
;
3172 /* The insns we've emitted. */
3173 auto_vec
<rtx_insn
*> unmodified_insns
;
3176 FOR_BB_INSNS (then_bb
, insn
)
3178 /* Skip over non-insns. */
3179 if (!active_insn_p (insn
))
3182 rtx set
= single_set (insn
);
3183 gcc_checking_assert (set
);
3185 rtx target
= SET_DEST (set
);
3186 rtx temp
= gen_reg_rtx (GET_MODE (target
));
3187 rtx new_val
= SET_SRC (set
);
3188 rtx old_val
= target
;
3190 /* If we were supposed to read from an earlier write in this block,
3191 we've changed the register allocation. Rewire the read. While
3192 we are looking, also try to catch a swap idiom. */
3193 for (int i
= count
- 1; i
>= 0; --i
)
3194 if (reg_overlap_mentioned_p (new_val
, targets
[i
]))
3196 /* Catch a "swap" style idiom. */
3197 if (find_reg_note (insn
, REG_DEAD
, new_val
) != NULL_RTX
)
3198 /* The write to targets[i] is only live until the read
3199 here. As the condition codes match, we can propagate
3201 new_val
= SET_SRC (single_set (unmodified_insns
[i
]));
3203 new_val
= temporaries
[i
];
3207 /* If we had a non-canonical conditional jump (i.e. one where
3208 the fallthrough is to the "else" case) we need to reverse
3209 the conditional select. */
3210 if (if_info
->then_else_reversed
)
3211 std::swap (old_val
, new_val
);
3214 /* We allow simple lowpart register subreg SET sources in
3215 bb_ok_for_noce_convert_multiple_sets. Be careful when processing
3217 (set (reg:SI r1) (reg:SI r2))
3218 (set (reg:HI r3) (subreg:HI (r1)))
3219 For the second insn new_val or old_val (r1 in this example) will be
3220 taken from the temporaries and have the wider mode which will not
3221 match with the mode of the other source of the conditional move, so
3222 we'll end up trying to emit r4:HI = cond ? (r1:SI) : (r3:HI).
3223 Wrap the two cmove operands into subregs if appropriate to prevent
3225 if (GET_MODE (new_val
) != GET_MODE (temp
))
3227 machine_mode src_mode
= GET_MODE (new_val
);
3228 machine_mode dst_mode
= GET_MODE (temp
);
3229 if (GET_MODE_SIZE (src_mode
) <= GET_MODE_SIZE (dst_mode
))
3234 new_val
= lowpart_subreg (dst_mode
, new_val
, src_mode
);
3236 if (GET_MODE (old_val
) != GET_MODE (temp
))
3238 machine_mode src_mode
= GET_MODE (old_val
);
3239 machine_mode dst_mode
= GET_MODE (temp
);
3240 if (GET_MODE_SIZE (src_mode
) <= GET_MODE_SIZE (dst_mode
))
3245 old_val
= lowpart_subreg (dst_mode
, old_val
, src_mode
);
3248 /* Actually emit the conditional move. */
3249 rtx temp_dest
= noce_emit_cmove (if_info
, temp
, cond_code
,
3250 x
, y
, new_val
, old_val
);
3252 /* If we failed to expand the conditional move, drop out and don't
3254 if (temp_dest
== NULL_RTX
)
3262 targets
.safe_push (target
);
3263 temporaries
.safe_push (temp_dest
);
3264 unmodified_insns
.safe_push (insn
);
3267 /* We must have seen some sort of insn to insert, otherwise we were
3268 given an empty BB to convert, and we can't handle that. */
3269 gcc_assert (!unmodified_insns
.is_empty ());
3271 /* Now fixup the assignments. */
3272 for (int i
= 0; i
< count
; i
++)
3273 noce_emit_move_insn (targets
[i
], temporaries
[i
]);
3275 /* Actually emit the sequence if it isn't too expensive. */
3276 rtx_insn
*seq
= get_insns ();
3278 if (!noce_conversion_profitable_p (seq
, if_info
))
3284 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
3285 set_used_flags (insn
);
3287 /* Mark all our temporaries and targets as used. */
3288 for (int i
= 0; i
< count
; i
++)
3290 set_used_flags (temporaries
[i
]);
3291 set_used_flags (targets
[i
]);
3294 set_used_flags (cond
);
3298 unshare_all_rtl_in_chain (seq
);
3304 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
3306 || recog_memoized (insn
) == -1)
3309 emit_insn_before_setloc (seq
, if_info
->jump
,
3310 INSN_LOCATION (unmodified_insns
.last ()));
3312 /* Clean up THEN_BB and the edges in and out of it. */
3313 remove_edge (find_edge (test_bb
, join_bb
));
3314 remove_edge (find_edge (then_bb
, join_bb
));
3315 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
3316 delete_basic_block (then_bb
);
3319 /* Maybe merge blocks now the jump is simple enough. */
3320 if (can_merge_blocks_p (test_bb
, join_bb
))
3322 merge_blocks (test_bb
, join_bb
);
3326 num_updated_if_blocks
++;
3327 if_info
->transform_name
= "noce_convert_multiple_sets";
3331 /* Return true iff basic block TEST_BB is comprised of only
3332 (SET (REG) (REG)) insns suitable for conversion to a series
3333 of conditional moves. Also check that we have more than one set
3334 (other routines can handle a single set better than we would), and
3335 fewer than PARAM_MAX_RTL_IF_CONVERSION_INSNS sets. */
3338 bb_ok_for_noce_convert_multiple_sets (basic_block test_bb
)
3342 unsigned param
= PARAM_VALUE (PARAM_MAX_RTL_IF_CONVERSION_INSNS
);
3344 FOR_BB_INSNS (test_bb
, insn
)
3346 /* Skip over notes etc. */
3347 if (!active_insn_p (insn
))
3350 /* We only handle SET insns. */
3351 rtx set
= single_set (insn
);
3352 if (set
== NULL_RTX
)
3355 rtx dest
= SET_DEST (set
);
3356 rtx src
= SET_SRC (set
);
3358 /* We can possibly relax this, but for now only handle REG to REG
3359 (including subreg) moves. This avoids any issues that might come
3360 from introducing loads/stores that might violate data-race-freedom
3366 || (GET_CODE (src
) == SUBREG
&& REG_P (SUBREG_REG (src
))
3367 && subreg_lowpart_p (src
))))
3370 /* Destination must be appropriate for a conditional write. */
3371 if (!noce_operand_ok (dest
))
3374 /* We must be able to conditionally move in this mode. */
3375 if (!can_conditionally_move_p (GET_MODE (dest
)))
3381 /* If we would only put out one conditional move, the other strategies
3382 this pass tries are better optimized and will be more appropriate.
3383 Some targets want to strictly limit the number of conditional moves
3384 that are emitted, they set this through PARAM, we need to respect
3386 return count
> 1 && count
<= param
;
3389 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
3390 it without using conditional execution. Return TRUE if we were successful
3391 at converting the block. */
3394 noce_process_if_block (struct noce_if_info
*if_info
)
3396 basic_block test_bb
= if_info
->test_bb
; /* test block */
3397 basic_block then_bb
= if_info
->then_bb
; /* THEN */
3398 basic_block else_bb
= if_info
->else_bb
; /* ELSE or NULL */
3399 basic_block join_bb
= if_info
->join_bb
; /* JOIN */
3400 rtx_insn
*jump
= if_info
->jump
;
3401 rtx cond
= if_info
->cond
;
3402 rtx_insn
*insn_a
, *insn_b
;
3404 rtx orig_x
, x
, a
, b
;
3406 /* We're looking for patterns of the form
3408 (1) if (...) x = a; else x = b;
3409 (2) x = b; if (...) x = a;
3410 (3) if (...) x = a; // as if with an initial x = x.
3411 (4) if (...) { x = a; y = b; z = c; } // Like 3, for multiple SETS.
3412 The later patterns require jumps to be more expensive.
3413 For the if (...) x = a; else x = b; case we allow multiple insns
3414 inside the then and else blocks as long as their only effect is
3415 to calculate a value for x.
3416 ??? For future expansion, further expand the "multiple X" rules. */
3418 /* First look for multiple SETS. */
3420 && HAVE_conditional_move
3422 && bb_ok_for_noce_convert_multiple_sets (then_bb
))
3424 if (noce_convert_multiple_sets (if_info
))
3426 if (dump_file
&& if_info
->transform_name
)
3427 fprintf (dump_file
, "if-conversion succeeded through %s\n",
3428 if_info
->transform_name
);
3433 bool speed_p
= optimize_bb_for_speed_p (test_bb
);
3434 unsigned int then_cost
= 0, else_cost
= 0;
3435 if (!bb_valid_for_noce_process_p (then_bb
, cond
, &then_cost
,
3436 &if_info
->then_simple
))
3440 && !bb_valid_for_noce_process_p (else_bb
, cond
, &else_cost
,
3441 &if_info
->else_simple
))
3444 if (else_bb
== NULL
)
3445 if_info
->original_cost
+= then_cost
;
3447 if_info
->original_cost
+= MIN (then_cost
, else_cost
);
3449 if_info
->original_cost
+= then_cost
+ else_cost
;
3451 insn_a
= last_active_insn (then_bb
, FALSE
);
3452 set_a
= single_set (insn_a
);
3455 x
= SET_DEST (set_a
);
3456 a
= SET_SRC (set_a
);
3458 /* Look for the other potential set. Make sure we've got equivalent
3460 /* ??? This is overconservative. Storing to two different mems is
3461 as easy as conditionally computing the address. Storing to a
3462 single mem merely requires a scratch memory to use as one of the
3463 destination addresses; often the memory immediately below the
3464 stack pointer is available for this. */
3468 insn_b
= last_active_insn (else_bb
, FALSE
);
3469 set_b
= single_set (insn_b
);
3472 if (!rtx_interchangeable_p (x
, SET_DEST (set_b
)))
3477 insn_b
= prev_nonnote_nondebug_insn (if_info
->cond_earliest
);
3478 /* We're going to be moving the evaluation of B down from above
3479 COND_EARLIEST to JUMP. Make sure the relevant data is still
3482 || BLOCK_FOR_INSN (insn_b
) != BLOCK_FOR_INSN (if_info
->cond_earliest
)
3483 || !NONJUMP_INSN_P (insn_b
)
3484 || (set_b
= single_set (insn_b
)) == NULL_RTX
3485 || ! rtx_interchangeable_p (x
, SET_DEST (set_b
))
3486 || ! noce_operand_ok (SET_SRC (set_b
))
3487 || reg_overlap_mentioned_p (x
, SET_SRC (set_b
))
3488 || modified_between_p (SET_SRC (set_b
), insn_b
, jump
)
3489 /* Avoid extending the lifetime of hard registers on small
3490 register class machines. */
3491 || (REG_P (SET_SRC (set_b
))
3492 && HARD_REGISTER_P (SET_SRC (set_b
))
3493 && targetm
.small_register_classes_for_mode_p
3494 (GET_MODE (SET_SRC (set_b
))))
3495 /* Likewise with X. In particular this can happen when
3496 noce_get_condition looks farther back in the instruction
3497 stream than one might expect. */
3498 || reg_overlap_mentioned_p (x
, cond
)
3499 || reg_overlap_mentioned_p (x
, a
)
3500 || modified_between_p (x
, insn_b
, jump
))
3507 /* If x has side effects then only the if-then-else form is safe to
3508 convert. But even in that case we would need to restore any notes
3509 (such as REG_INC) at then end. That can be tricky if
3510 noce_emit_move_insn expands to more than one insn, so disable the
3511 optimization entirely for now if there are side effects. */
3512 if (side_effects_p (x
))
3515 b
= (set_b
? SET_SRC (set_b
) : x
);
3517 /* Only operate on register destinations, and even then avoid extending
3518 the lifetime of hard registers on small register class machines. */
3520 if_info
->orig_x
= orig_x
;
3522 || (HARD_REGISTER_P (x
)
3523 && targetm
.small_register_classes_for_mode_p (GET_MODE (x
))))
3525 if (GET_MODE (x
) == BLKmode
)
3528 if (GET_CODE (x
) == ZERO_EXTRACT
3529 && (!CONST_INT_P (XEXP (x
, 1))
3530 || !CONST_INT_P (XEXP (x
, 2))))
3533 x
= gen_reg_rtx (GET_MODE (GET_CODE (x
) == STRICT_LOW_PART
3534 ? XEXP (x
, 0) : x
));
3537 /* Don't operate on sources that may trap or are volatile. */
3538 if (! noce_operand_ok (a
) || ! noce_operand_ok (b
))
3542 /* Set up the info block for our subroutines. */
3543 if_info
->insn_a
= insn_a
;
3544 if_info
->insn_b
= insn_b
;
3549 /* Try optimizations in some approximation of a useful order. */
3550 /* ??? Should first look to see if X is live incoming at all. If it
3551 isn't, we don't need anything but an unconditional set. */
3553 /* Look and see if A and B are really the same. Avoid creating silly
3554 cmove constructs that no one will fix up later. */
3555 if (noce_simple_bbs (if_info
)
3556 && rtx_interchangeable_p (a
, b
))
3558 /* If we have an INSN_B, we don't have to create any new rtl. Just
3559 move the instruction that we already have. If we don't have an
3560 INSN_B, that means that A == X, and we've got a noop move. In
3561 that case don't do anything and let the code below delete INSN_A. */
3562 if (insn_b
&& else_bb
)
3566 if (else_bb
&& insn_b
== BB_END (else_bb
))
3567 BB_END (else_bb
) = PREV_INSN (insn_b
);
3568 reorder_insns (insn_b
, insn_b
, PREV_INSN (jump
));
3570 /* If there was a REG_EQUAL note, delete it since it may have been
3571 true due to this insn being after a jump. */
3572 if ((note
= find_reg_note (insn_b
, REG_EQUAL
, NULL_RTX
)) != 0)
3573 remove_note (insn_b
, note
);
3577 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
3578 x must be executed twice. */
3579 else if (insn_b
&& side_effects_p (orig_x
))
3586 if (!set_b
&& MEM_P (orig_x
))
3587 /* We want to avoid store speculation to avoid cases like
3588 if (pthread_mutex_trylock(mutex))
3590 Rather than go to much effort here, we rely on the SSA optimizers,
3591 which do a good enough job these days. */
3594 if (noce_try_move (if_info
))
3596 if (noce_try_ifelse_collapse (if_info
))
3598 if (noce_try_store_flag (if_info
))
3600 if (noce_try_bitop (if_info
))
3602 if (noce_try_minmax (if_info
))
3604 if (noce_try_abs (if_info
))
3606 if (noce_try_inverse_constants (if_info
))
3608 if (!targetm
.have_conditional_execution ()
3609 && noce_try_store_flag_constants (if_info
))
3611 if (HAVE_conditional_move
3612 && noce_try_cmove (if_info
))
3614 if (! targetm
.have_conditional_execution ())
3616 if (noce_try_addcc (if_info
))
3618 if (noce_try_store_flag_mask (if_info
))
3620 if (HAVE_conditional_move
3621 && noce_try_cmove_arith (if_info
))
3623 if (noce_try_sign_mask (if_info
))
3627 if (!else_bb
&& set_b
)
3638 if (dump_file
&& if_info
->transform_name
)
3639 fprintf (dump_file
, "if-conversion succeeded through %s\n",
3640 if_info
->transform_name
);
3642 /* If we used a temporary, fix it up now. */
3648 noce_emit_move_insn (orig_x
, x
);
3650 set_used_flags (orig_x
);
3651 unshare_all_rtl_in_chain (seq
);
3654 emit_insn_before_setloc (seq
, BB_END (test_bb
), INSN_LOCATION (insn_a
));
3657 /* The original THEN and ELSE blocks may now be removed. The test block
3658 must now jump to the join block. If the test block and the join block
3659 can be merged, do so. */
3662 delete_basic_block (else_bb
);
3666 remove_edge (find_edge (test_bb
, join_bb
));
3668 remove_edge (find_edge (then_bb
, join_bb
));
3669 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
3670 delete_basic_block (then_bb
);
3673 if (can_merge_blocks_p (test_bb
, join_bb
))
3675 merge_blocks (test_bb
, join_bb
);
3679 num_updated_if_blocks
++;
3683 /* Check whether a block is suitable for conditional move conversion.
3684 Every insn must be a simple set of a register to a constant or a
3685 register. For each assignment, store the value in the pointer map
3686 VALS, keyed indexed by register pointer, then store the register
3687 pointer in REGS. COND is the condition we will test. */
3690 check_cond_move_block (basic_block bb
,
3691 hash_map
<rtx
, rtx
> *vals
,
3696 rtx cc
= cc_in_cond (cond
);
3698 /* We can only handle simple jumps at the end of the basic block.
3699 It is almost impossible to update the CFG otherwise. */
3701 if (JUMP_P (insn
) && !onlyjump_p (insn
))
3704 FOR_BB_INSNS (bb
, insn
)
3708 if (!NONDEBUG_INSN_P (insn
) || JUMP_P (insn
))
3710 set
= single_set (insn
);
3714 dest
= SET_DEST (set
);
3715 src
= SET_SRC (set
);
3717 || (HARD_REGISTER_P (dest
)
3718 && targetm
.small_register_classes_for_mode_p (GET_MODE (dest
))))
3721 if (!CONSTANT_P (src
) && !register_operand (src
, VOIDmode
))
3724 if (side_effects_p (src
) || side_effects_p (dest
))
3727 if (may_trap_p (src
) || may_trap_p (dest
))
3730 /* Don't try to handle this if the source register was
3731 modified earlier in the block. */
3734 || (GET_CODE (src
) == SUBREG
&& REG_P (SUBREG_REG (src
))
3735 && vals
->get (SUBREG_REG (src
))))
3738 /* Don't try to handle this if the destination register was
3739 modified earlier in the block. */
3740 if (vals
->get (dest
))
3743 /* Don't try to handle this if the condition uses the
3744 destination register. */
3745 if (reg_overlap_mentioned_p (dest
, cond
))
3748 /* Don't try to handle this if the source register is modified
3749 later in the block. */
3750 if (!CONSTANT_P (src
)
3751 && modified_between_p (src
, insn
, NEXT_INSN (BB_END (bb
))))
3754 /* Skip it if the instruction to be moved might clobber CC. */
3755 if (cc
&& set_of (cc
, insn
))
3758 vals
->put (dest
, src
);
3760 regs
->safe_push (dest
);
3766 /* Given a basic block BB suitable for conditional move conversion,
3767 a condition COND, and pointer maps THEN_VALS and ELSE_VALS containing
3768 the register values depending on COND, emit the insns in the block as
3769 conditional moves. If ELSE_BLOCK is true, THEN_BB was already
3770 processed. The caller has started a sequence for the conversion.
3771 Return true if successful, false if something goes wrong. */
3774 cond_move_convert_if_block (struct noce_if_info
*if_infop
,
3775 basic_block bb
, rtx cond
,
3776 hash_map
<rtx
, rtx
> *then_vals
,
3777 hash_map
<rtx
, rtx
> *else_vals
,
3782 rtx cond_arg0
, cond_arg1
;
3784 code
= GET_CODE (cond
);
3785 cond_arg0
= XEXP (cond
, 0);
3786 cond_arg1
= XEXP (cond
, 1);
3788 FOR_BB_INSNS (bb
, insn
)
3790 rtx set
, target
, dest
, t
, e
;
3792 /* ??? Maybe emit conditional debug insn? */
3793 if (!NONDEBUG_INSN_P (insn
) || JUMP_P (insn
))
3795 set
= single_set (insn
);
3796 gcc_assert (set
&& REG_P (SET_DEST (set
)));
3798 dest
= SET_DEST (set
);
3800 rtx
*then_slot
= then_vals
->get (dest
);
3801 rtx
*else_slot
= else_vals
->get (dest
);
3802 t
= then_slot
? *then_slot
: NULL_RTX
;
3803 e
= else_slot
? *else_slot
: NULL_RTX
;
3807 /* If this register was set in the then block, we already
3808 handled this case there. */
3821 target
= noce_emit_cmove (if_infop
, dest
, code
, cond_arg0
, cond_arg1
,
3827 noce_emit_move_insn (dest
, target
);
3833 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
3834 it using only conditional moves. Return TRUE if we were successful at
3835 converting the block. */
3838 cond_move_process_if_block (struct noce_if_info
*if_info
)
3840 basic_block test_bb
= if_info
->test_bb
;
3841 basic_block then_bb
= if_info
->then_bb
;
3842 basic_block else_bb
= if_info
->else_bb
;
3843 basic_block join_bb
= if_info
->join_bb
;
3844 rtx_insn
*jump
= if_info
->jump
;
3845 rtx cond
= if_info
->cond
;
3846 rtx_insn
*seq
, *loc_insn
;
3849 vec
<rtx
> then_regs
= vNULL
;
3850 vec
<rtx
> else_regs
= vNULL
;
3852 int success_p
= FALSE
;
3853 int limit
= PARAM_VALUE (PARAM_MAX_RTL_IF_CONVERSION_INSNS
);
3855 /* Build a mapping for each block to the value used for each
3857 hash_map
<rtx
, rtx
> then_vals
;
3858 hash_map
<rtx
, rtx
> else_vals
;
3860 /* Make sure the blocks are suitable. */
3861 if (!check_cond_move_block (then_bb
, &then_vals
, &then_regs
, cond
)
3863 && !check_cond_move_block (else_bb
, &else_vals
, &else_regs
, cond
)))
3866 /* Make sure the blocks can be used together. If the same register
3867 is set in both blocks, and is not set to a constant in both
3868 cases, then both blocks must set it to the same register. We
3869 have already verified that if it is set to a register, that the
3870 source register does not change after the assignment. Also count
3871 the number of registers set in only one of the blocks. */
3873 FOR_EACH_VEC_ELT (then_regs
, i
, reg
)
3875 rtx
*then_slot
= then_vals
.get (reg
);
3876 rtx
*else_slot
= else_vals
.get (reg
);
3878 gcc_checking_assert (then_slot
);
3883 rtx then_val
= *then_slot
;
3884 rtx else_val
= *else_slot
;
3885 if (!CONSTANT_P (then_val
) && !CONSTANT_P (else_val
)
3886 && !rtx_equal_p (then_val
, else_val
))
3891 /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
3892 FOR_EACH_VEC_ELT (else_regs
, i
, reg
)
3894 gcc_checking_assert (else_vals
.get (reg
));
3895 if (!then_vals
.get (reg
))
3899 /* Make sure it is reasonable to convert this block. What matters
3900 is the number of assignments currently made in only one of the
3901 branches, since if we convert we are going to always execute
3903 if (c
> MAX_CONDITIONAL_EXECUTE
3907 /* Try to emit the conditional moves. First do the then block,
3908 then do anything left in the else blocks. */
3910 if (!cond_move_convert_if_block (if_info
, then_bb
, cond
,
3911 &then_vals
, &else_vals
, false)
3913 && !cond_move_convert_if_block (if_info
, else_bb
, cond
,
3914 &then_vals
, &else_vals
, true)))
3919 seq
= end_ifcvt_sequence (if_info
);
3923 loc_insn
= first_active_insn (then_bb
);
3926 loc_insn
= first_active_insn (else_bb
);
3927 gcc_assert (loc_insn
);
3929 emit_insn_before_setloc (seq
, jump
, INSN_LOCATION (loc_insn
));
3933 delete_basic_block (else_bb
);
3937 remove_edge (find_edge (test_bb
, join_bb
));
3939 remove_edge (find_edge (then_bb
, join_bb
));
3940 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
3941 delete_basic_block (then_bb
);
3944 if (can_merge_blocks_p (test_bb
, join_bb
))
3946 merge_blocks (test_bb
, join_bb
);
3950 num_updated_if_blocks
++;
3954 then_regs
.release ();
3955 else_regs
.release ();
3960 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
3961 IF-THEN-ELSE-JOIN block.
3963 If so, we'll try to convert the insns to not require the branch,
3964 using only transformations that do not require conditional execution.
3966 Return TRUE if we were successful at converting the block. */
3969 noce_find_if_block (basic_block test_bb
, edge then_edge
, edge else_edge
,
3972 basic_block then_bb
, else_bb
, join_bb
;
3973 bool then_else_reversed
= false;
3976 rtx_insn
*cond_earliest
;
3977 struct noce_if_info if_info
;
3978 bool speed_p
= optimize_bb_for_speed_p (test_bb
);
3980 /* We only ever should get here before reload. */
3981 gcc_assert (!reload_completed
);
3983 /* Recognize an IF-THEN-ELSE-JOIN block. */
3984 if (single_pred_p (then_edge
->dest
)
3985 && single_succ_p (then_edge
->dest
)
3986 && single_pred_p (else_edge
->dest
)
3987 && single_succ_p (else_edge
->dest
)
3988 && single_succ (then_edge
->dest
) == single_succ (else_edge
->dest
))
3990 then_bb
= then_edge
->dest
;
3991 else_bb
= else_edge
->dest
;
3992 join_bb
= single_succ (then_bb
);
3994 /* Recognize an IF-THEN-JOIN block. */
3995 else if (single_pred_p (then_edge
->dest
)
3996 && single_succ_p (then_edge
->dest
)
3997 && single_succ (then_edge
->dest
) == else_edge
->dest
)
3999 then_bb
= then_edge
->dest
;
4000 else_bb
= NULL_BLOCK
;
4001 join_bb
= else_edge
->dest
;
4003 /* Recognize an IF-ELSE-JOIN block. We can have those because the order
4004 of basic blocks in cfglayout mode does not matter, so the fallthrough
4005 edge can go to any basic block (and not just to bb->next_bb, like in
4007 else if (single_pred_p (else_edge
->dest
)
4008 && single_succ_p (else_edge
->dest
)
4009 && single_succ (else_edge
->dest
) == then_edge
->dest
)
4011 /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
4012 To make this work, we have to invert the THEN and ELSE blocks
4013 and reverse the jump condition. */
4014 then_bb
= else_edge
->dest
;
4015 else_bb
= NULL_BLOCK
;
4016 join_bb
= single_succ (then_bb
);
4017 then_else_reversed
= true;
4020 /* Not a form we can handle. */
4023 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
4024 if (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
4027 && single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
4030 num_possible_if_blocks
++;
4035 "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
4036 (else_bb
) ? "-ELSE" : "",
4037 pass
, test_bb
->index
, then_bb
->index
);
4040 fprintf (dump_file
, ", else %d", else_bb
->index
);
4042 fprintf (dump_file
, ", join %d\n", join_bb
->index
);
4045 /* If the conditional jump is more than just a conditional
4046 jump, then we can not do if-conversion on this block. */
4047 jump
= BB_END (test_bb
);
4048 if (! onlyjump_p (jump
))
4051 /* If this is not a standard conditional jump, we can't parse it. */
4052 cond
= noce_get_condition (jump
, &cond_earliest
, then_else_reversed
);
4056 /* We must be comparing objects whose modes imply the size. */
4057 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
4060 /* Initialize an IF_INFO struct to pass around. */
4061 memset (&if_info
, 0, sizeof if_info
);
4062 if_info
.test_bb
= test_bb
;
4063 if_info
.then_bb
= then_bb
;
4064 if_info
.else_bb
= else_bb
;
4065 if_info
.join_bb
= join_bb
;
4066 if_info
.cond
= cond
;
4067 if_info
.cond_earliest
= cond_earliest
;
4068 if_info
.jump
= jump
;
4069 if_info
.then_else_reversed
= then_else_reversed
;
4070 if_info
.speed_p
= speed_p
;
4071 if_info
.max_seq_cost
4072 = targetm
.max_noce_ifcvt_seq_cost (then_edge
);
4073 /* We'll add in the cost of THEN_BB and ELSE_BB later, when we check
4074 that they are valid to transform. We can't easily get back to the insn
4075 for COND (and it may not exist if we had to canonicalize to get COND),
4076 and jump_insns are always given a cost of 1 by seq_cost, so treat
4077 both instructions as having cost COSTS_N_INSNS (1). */
4078 if_info
.original_cost
= COSTS_N_INSNS (2);
4081 /* Do the real work. */
4083 if (noce_process_if_block (&if_info
))
4086 if (HAVE_conditional_move
4087 && cond_move_process_if_block (&if_info
))
4094 /* Merge the blocks and mark for local life update. */
4097 merge_if_block (struct ce_if_block
* ce_info
)
4099 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
4100 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
4101 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
4102 basic_block join_bb
= ce_info
->join_bb
; /* join block */
4103 basic_block combo_bb
;
4105 /* All block merging is done into the lower block numbers. */
4108 df_set_bb_dirty (test_bb
);
4110 /* Merge any basic blocks to handle && and || subtests. Each of
4111 the blocks are on the fallthru path from the predecessor block. */
4112 if (ce_info
->num_multiple_test_blocks
> 0)
4114 basic_block bb
= test_bb
;
4115 basic_block last_test_bb
= ce_info
->last_test_bb
;
4116 basic_block fallthru
= block_fallthru (bb
);
4121 fallthru
= block_fallthru (bb
);
4122 merge_blocks (combo_bb
, bb
);
4125 while (bb
!= last_test_bb
);
4128 /* Merge TEST block into THEN block. Normally the THEN block won't have a
4129 label, but it might if there were || tests. That label's count should be
4130 zero, and it normally should be removed. */
4134 /* If THEN_BB has no successors, then there's a BARRIER after it.
4135 If COMBO_BB has more than one successor (THEN_BB), then that BARRIER
4136 is no longer needed, and in fact it is incorrect to leave it in
4138 if (EDGE_COUNT (then_bb
->succs
) == 0
4139 && EDGE_COUNT (combo_bb
->succs
) > 1)
4141 rtx_insn
*end
= NEXT_INSN (BB_END (then_bb
));
4142 while (end
&& NOTE_P (end
) && !NOTE_INSN_BASIC_BLOCK_P (end
))
4143 end
= NEXT_INSN (end
);
4145 if (end
&& BARRIER_P (end
))
4148 merge_blocks (combo_bb
, then_bb
);
4152 /* The ELSE block, if it existed, had a label. That label count
4153 will almost always be zero, but odd things can happen when labels
4154 get their addresses taken. */
4157 /* If ELSE_BB has no successors, then there's a BARRIER after it.
4158 If COMBO_BB has more than one successor (ELSE_BB), then that BARRIER
4159 is no longer needed, and in fact it is incorrect to leave it in
4161 if (EDGE_COUNT (else_bb
->succs
) == 0
4162 && EDGE_COUNT (combo_bb
->succs
) > 1)
4164 rtx_insn
*end
= NEXT_INSN (BB_END (else_bb
));
4165 while (end
&& NOTE_P (end
) && !NOTE_INSN_BASIC_BLOCK_P (end
))
4166 end
= NEXT_INSN (end
);
4168 if (end
&& BARRIER_P (end
))
4171 merge_blocks (combo_bb
, else_bb
);
4175 /* If there was no join block reported, that means it was not adjacent
4176 to the others, and so we cannot merge them. */
4180 rtx_insn
*last
= BB_END (combo_bb
);
4182 /* The outgoing edge for the current COMBO block should already
4183 be correct. Verify this. */
4184 if (EDGE_COUNT (combo_bb
->succs
) == 0)
4185 gcc_assert (find_reg_note (last
, REG_NORETURN
, NULL
)
4186 || (NONJUMP_INSN_P (last
)
4187 && GET_CODE (PATTERN (last
)) == TRAP_IF
4188 && (TRAP_CONDITION (PATTERN (last
))
4189 == const_true_rtx
)));
4192 /* There should still be something at the end of the THEN or ELSE
4193 blocks taking us to our final destination. */
4194 gcc_assert (JUMP_P (last
)
4195 || (EDGE_SUCC (combo_bb
, 0)->dest
4196 == EXIT_BLOCK_PTR_FOR_FN (cfun
)
4198 && SIBLING_CALL_P (last
))
4199 || ((EDGE_SUCC (combo_bb
, 0)->flags
& EDGE_EH
)
4200 && can_throw_internal (last
)));
4203 /* The JOIN block may have had quite a number of other predecessors too.
4204 Since we've already merged the TEST, THEN and ELSE blocks, we should
4205 have only one remaining edge from our if-then-else diamond. If there
4206 is more than one remaining edge, it must come from elsewhere. There
4207 may be zero incoming edges if the THEN block didn't actually join
4208 back up (as with a call to a non-return function). */
4209 else if (EDGE_COUNT (join_bb
->preds
) < 2
4210 && join_bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
4212 /* We can merge the JOIN cleanly and update the dataflow try
4213 again on this pass.*/
4214 merge_blocks (combo_bb
, join_bb
);
4219 /* We cannot merge the JOIN. */
4221 /* The outgoing edge for the current COMBO block should already
4222 be correct. Verify this. */
4223 gcc_assert (single_succ_p (combo_bb
)
4224 && single_succ (combo_bb
) == join_bb
);
4226 /* Remove the jump and cruft from the end of the COMBO block. */
4227 if (join_bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
4228 tidy_fallthru_edge (single_succ_edge (combo_bb
));
4231 num_updated_if_blocks
++;
4234 /* Find a block ending in a simple IF condition and try to transform it
4235 in some way. When converting a multi-block condition, put the new code
4236 in the first such block and delete the rest. Return a pointer to this
4237 first block if some transformation was done. Return NULL otherwise. */
4240 find_if_header (basic_block test_bb
, int pass
)
4242 ce_if_block ce_info
;
4246 /* The kind of block we're looking for has exactly two successors. */
4247 if (EDGE_COUNT (test_bb
->succs
) != 2)
4250 then_edge
= EDGE_SUCC (test_bb
, 0);
4251 else_edge
= EDGE_SUCC (test_bb
, 1);
4253 if (df_get_bb_dirty (then_edge
->dest
))
4255 if (df_get_bb_dirty (else_edge
->dest
))
4258 /* Neither edge should be abnormal. */
4259 if ((then_edge
->flags
& EDGE_COMPLEX
)
4260 || (else_edge
->flags
& EDGE_COMPLEX
))
4263 /* Nor exit the loop. */
4264 if ((then_edge
->flags
& EDGE_LOOP_EXIT
)
4265 || (else_edge
->flags
& EDGE_LOOP_EXIT
))
4268 /* The THEN edge is canonically the one that falls through. */
4269 if (then_edge
->flags
& EDGE_FALLTHRU
)
4271 else if (else_edge
->flags
& EDGE_FALLTHRU
)
4272 std::swap (then_edge
, else_edge
);
4274 /* Otherwise this must be a multiway branch of some sort. */
4277 memset (&ce_info
, 0, sizeof (ce_info
));
4278 ce_info
.test_bb
= test_bb
;
4279 ce_info
.then_bb
= then_edge
->dest
;
4280 ce_info
.else_bb
= else_edge
->dest
;
4281 ce_info
.pass
= pass
;
4283 #ifdef IFCVT_MACHDEP_INIT
4284 IFCVT_MACHDEP_INIT (&ce_info
);
4287 if (!reload_completed
4288 && noce_find_if_block (test_bb
, then_edge
, else_edge
, pass
))
4291 if (reload_completed
4292 && targetm
.have_conditional_execution ()
4293 && cond_exec_find_if_block (&ce_info
))
4296 if (targetm
.have_trap ()
4297 && optab_handler (ctrap_optab
, word_mode
) != CODE_FOR_nothing
4298 && find_cond_trap (test_bb
, then_edge
, else_edge
))
4301 if (dom_info_state (CDI_POST_DOMINATORS
) >= DOM_NO_FAST_QUERY
4302 && (reload_completed
|| !targetm
.have_conditional_execution ()))
4304 if (find_if_case_1 (test_bb
, then_edge
, else_edge
))
4306 if (find_if_case_2 (test_bb
, then_edge
, else_edge
))
4314 fprintf (dump_file
, "Conversion succeeded on pass %d.\n", pass
);
4315 /* Set this so we continue looking. */
4316 cond_exec_changed_p
= TRUE
;
4317 return ce_info
.test_bb
;
4320 /* Return true if a block has two edges, one of which falls through to the next
4321 block, and the other jumps to a specific block, so that we can tell if the
4322 block is part of an && test or an || test. Returns either -1 or the number
4323 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
4326 block_jumps_and_fallthru_p (basic_block cur_bb
, basic_block target_bb
)
4329 int fallthru_p
= FALSE
;
4336 if (!cur_bb
|| !target_bb
)
4339 /* If no edges, obviously it doesn't jump or fallthru. */
4340 if (EDGE_COUNT (cur_bb
->succs
) == 0)
4343 FOR_EACH_EDGE (cur_edge
, ei
, cur_bb
->succs
)
4345 if (cur_edge
->flags
& EDGE_COMPLEX
)
4346 /* Anything complex isn't what we want. */
4349 else if (cur_edge
->flags
& EDGE_FALLTHRU
)
4352 else if (cur_edge
->dest
== target_bb
)
4359 if ((jump_p
& fallthru_p
) == 0)
4362 /* Don't allow calls in the block, since this is used to group && and ||
4363 together for conditional execution support. ??? we should support
4364 conditional execution support across calls for IA-64 some day, but
4365 for now it makes the code simpler. */
4366 end
= BB_END (cur_bb
);
4367 insn
= BB_HEAD (cur_bb
);
4369 while (insn
!= NULL_RTX
)
4376 && !DEBUG_INSN_P (insn
)
4377 && GET_CODE (PATTERN (insn
)) != USE
4378 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
4384 insn
= NEXT_INSN (insn
);
4390 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
4391 block. If so, we'll try to convert the insns to not require the branch.
4392 Return TRUE if we were successful at converting the block. */
4395 cond_exec_find_if_block (struct ce_if_block
* ce_info
)
4397 basic_block test_bb
= ce_info
->test_bb
;
4398 basic_block then_bb
= ce_info
->then_bb
;
4399 basic_block else_bb
= ce_info
->else_bb
;
4400 basic_block join_bb
= NULL_BLOCK
;
4405 ce_info
->last_test_bb
= test_bb
;
4407 /* We only ever should get here after reload,
4408 and if we have conditional execution. */
4409 gcc_assert (reload_completed
&& targetm
.have_conditional_execution ());
4411 /* Discover if any fall through predecessors of the current test basic block
4412 were && tests (which jump to the else block) or || tests (which jump to
4414 if (single_pred_p (test_bb
)
4415 && single_pred_edge (test_bb
)->flags
== EDGE_FALLTHRU
)
4417 basic_block bb
= single_pred (test_bb
);
4418 basic_block target_bb
;
4419 int max_insns
= MAX_CONDITIONAL_EXECUTE
;
4422 /* Determine if the preceding block is an && or || block. */
4423 if ((n_insns
= block_jumps_and_fallthru_p (bb
, else_bb
)) >= 0)
4425 ce_info
->and_and_p
= TRUE
;
4426 target_bb
= else_bb
;
4428 else if ((n_insns
= block_jumps_and_fallthru_p (bb
, then_bb
)) >= 0)
4430 ce_info
->and_and_p
= FALSE
;
4431 target_bb
= then_bb
;
4434 target_bb
= NULL_BLOCK
;
4436 if (target_bb
&& n_insns
<= max_insns
)
4438 int total_insns
= 0;
4441 ce_info
->last_test_bb
= test_bb
;
4443 /* Found at least one && or || block, look for more. */
4446 ce_info
->test_bb
= test_bb
= bb
;
4447 total_insns
+= n_insns
;
4450 if (!single_pred_p (bb
))
4453 bb
= single_pred (bb
);
4454 n_insns
= block_jumps_and_fallthru_p (bb
, target_bb
);
4456 while (n_insns
>= 0 && (total_insns
+ n_insns
) <= max_insns
);
4458 ce_info
->num_multiple_test_blocks
= blocks
;
4459 ce_info
->num_multiple_test_insns
= total_insns
;
4461 if (ce_info
->and_and_p
)
4462 ce_info
->num_and_and_blocks
= blocks
;
4464 ce_info
->num_or_or_blocks
= blocks
;
4468 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
4469 other than any || blocks which jump to the THEN block. */
4470 if ((EDGE_COUNT (then_bb
->preds
) - ce_info
->num_or_or_blocks
) != 1)
4473 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
4474 FOR_EACH_EDGE (cur_edge
, ei
, then_bb
->preds
)
4476 if (cur_edge
->flags
& EDGE_COMPLEX
)
4480 FOR_EACH_EDGE (cur_edge
, ei
, else_bb
->preds
)
4482 if (cur_edge
->flags
& EDGE_COMPLEX
)
4486 /* The THEN block of an IF-THEN combo must have zero or one successors. */
4487 if (EDGE_COUNT (then_bb
->succs
) > 0
4488 && (!single_succ_p (then_bb
)
4489 || (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
4490 || (epilogue_completed
4491 && tablejump_p (BB_END (then_bb
), NULL
, NULL
))))
4494 /* If the THEN block has no successors, conditional execution can still
4495 make a conditional call. Don't do this unless the ELSE block has
4496 only one incoming edge -- the CFG manipulation is too ugly otherwise.
4497 Check for the last insn of the THEN block being an indirect jump, which
4498 is listed as not having any successors, but confuses the rest of the CE
4499 code processing. ??? we should fix this in the future. */
4500 if (EDGE_COUNT (then_bb
->succs
) == 0)
4502 if (single_pred_p (else_bb
) && else_bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
4504 rtx_insn
*last_insn
= BB_END (then_bb
);
4507 && NOTE_P (last_insn
)
4508 && last_insn
!= BB_HEAD (then_bb
))
4509 last_insn
= PREV_INSN (last_insn
);
4512 && JUMP_P (last_insn
)
4513 && ! simplejump_p (last_insn
))
4517 else_bb
= NULL_BLOCK
;
4523 /* If the THEN block's successor is the other edge out of the TEST block,
4524 then we have an IF-THEN combo without an ELSE. */
4525 else if (single_succ (then_bb
) == else_bb
)
4528 else_bb
= NULL_BLOCK
;
4531 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
4532 has exactly one predecessor and one successor, and the outgoing edge
4533 is not complex, then we have an IF-THEN-ELSE combo. */
4534 else if (single_succ_p (else_bb
)
4535 && single_succ (then_bb
) == single_succ (else_bb
)
4536 && single_pred_p (else_bb
)
4537 && !(single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
4538 && !(epilogue_completed
4539 && tablejump_p (BB_END (else_bb
), NULL
, NULL
)))
4540 join_bb
= single_succ (else_bb
);
4542 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
4546 num_possible_if_blocks
++;
4551 "\nIF-THEN%s block found, pass %d, start block %d "
4552 "[insn %d], then %d [%d]",
4553 (else_bb
) ? "-ELSE" : "",
4556 BB_HEAD (test_bb
) ? (int)INSN_UID (BB_HEAD (test_bb
)) : -1,
4558 BB_HEAD (then_bb
) ? (int)INSN_UID (BB_HEAD (then_bb
)) : -1);
4561 fprintf (dump_file
, ", else %d [%d]",
4563 BB_HEAD (else_bb
) ? (int)INSN_UID (BB_HEAD (else_bb
)) : -1);
4565 fprintf (dump_file
, ", join %d [%d]",
4567 BB_HEAD (join_bb
) ? (int)INSN_UID (BB_HEAD (join_bb
)) : -1);
4569 if (ce_info
->num_multiple_test_blocks
> 0)
4570 fprintf (dump_file
, ", %d %s block%s last test %d [%d]",
4571 ce_info
->num_multiple_test_blocks
,
4572 (ce_info
->and_and_p
) ? "&&" : "||",
4573 (ce_info
->num_multiple_test_blocks
== 1) ? "" : "s",
4574 ce_info
->last_test_bb
->index
,
4575 ((BB_HEAD (ce_info
->last_test_bb
))
4576 ? (int)INSN_UID (BB_HEAD (ce_info
->last_test_bb
))
4579 fputc ('\n', dump_file
);
4582 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
4583 first condition for free, since we've already asserted that there's a
4584 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
4585 we checked the FALLTHRU flag, those are already adjacent to the last IF
4587 /* ??? As an enhancement, move the ELSE block. Have to deal with
4588 BLOCK notes, if by no other means than backing out the merge if they
4589 exist. Sticky enough I don't want to think about it now. */
4591 if (else_bb
&& (next
= next
->next_bb
) != else_bb
)
4593 if ((next
= next
->next_bb
) != join_bb
4594 && join_bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
4602 /* Do the real work. */
4604 ce_info
->else_bb
= else_bb
;
4605 ce_info
->join_bb
= join_bb
;
4607 /* If we have && and || tests, try to first handle combining the && and ||
4608 tests into the conditional code, and if that fails, go back and handle
4609 it without the && and ||, which at present handles the && case if there
4610 was no ELSE block. */
4611 if (cond_exec_process_if_block (ce_info
, TRUE
))
4614 if (ce_info
->num_multiple_test_blocks
)
4618 if (cond_exec_process_if_block (ce_info
, FALSE
))
4625 /* Convert a branch over a trap, or a branch
4626 to a trap, into a conditional trap. */
4629 find_cond_trap (basic_block test_bb
, edge then_edge
, edge else_edge
)
4631 basic_block then_bb
= then_edge
->dest
;
4632 basic_block else_bb
= else_edge
->dest
;
4633 basic_block other_bb
, trap_bb
;
4634 rtx_insn
*trap
, *jump
;
4636 rtx_insn
*cond_earliest
;
4639 /* Locate the block with the trap instruction. */
4640 /* ??? While we look for no successors, we really ought to allow
4641 EH successors. Need to fix merge_if_block for that to work. */
4642 if ((trap
= block_has_only_trap (then_bb
)) != NULL
)
4643 trap_bb
= then_bb
, other_bb
= else_bb
;
4644 else if ((trap
= block_has_only_trap (else_bb
)) != NULL
)
4645 trap_bb
= else_bb
, other_bb
= then_bb
;
4651 fprintf (dump_file
, "\nTRAP-IF block found, start %d, trap %d\n",
4652 test_bb
->index
, trap_bb
->index
);
4655 /* If this is not a standard conditional jump, we can't parse it. */
4656 jump
= BB_END (test_bb
);
4657 cond
= noce_get_condition (jump
, &cond_earliest
, false);
4661 /* If the conditional jump is more than just a conditional jump, then
4662 we can not do if-conversion on this block. Give up for returnjump_p,
4663 changing a conditional return followed by unconditional trap for
4664 conditional trap followed by unconditional return is likely not
4665 beneficial and harder to handle. */
4666 if (! onlyjump_p (jump
) || returnjump_p (jump
))
4669 /* We must be comparing objects whose modes imply the size. */
4670 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
4673 /* Reverse the comparison code, if necessary. */
4674 code
= GET_CODE (cond
);
4675 if (then_bb
== trap_bb
)
4677 code
= reversed_comparison_code (cond
, jump
);
4678 if (code
== UNKNOWN
)
4682 /* Attempt to generate the conditional trap. */
4683 rtx_insn
*seq
= gen_cond_trap (code
, copy_rtx (XEXP (cond
, 0)),
4684 copy_rtx (XEXP (cond
, 1)),
4685 TRAP_CODE (PATTERN (trap
)));
4689 /* If that results in an invalid insn, back out. */
4690 for (rtx_insn
*x
= seq
; x
; x
= NEXT_INSN (x
))
4691 if (recog_memoized (x
) < 0)
4694 /* Emit the new insns before cond_earliest. */
4695 emit_insn_before_setloc (seq
, cond_earliest
, INSN_LOCATION (trap
));
4697 /* Delete the trap block if possible. */
4698 remove_edge (trap_bb
== then_bb
? then_edge
: else_edge
);
4699 df_set_bb_dirty (test_bb
);
4700 df_set_bb_dirty (then_bb
);
4701 df_set_bb_dirty (else_bb
);
4703 if (EDGE_COUNT (trap_bb
->preds
) == 0)
4705 delete_basic_block (trap_bb
);
4709 /* Wire together the blocks again. */
4710 if (current_ir_type () == IR_RTL_CFGLAYOUT
)
4711 single_succ_edge (test_bb
)->flags
|= EDGE_FALLTHRU
;
4712 else if (trap_bb
== then_bb
)
4714 rtx lab
= JUMP_LABEL (jump
);
4715 rtx_insn
*seq
= targetm
.gen_jump (lab
);
4716 rtx_jump_insn
*newjump
= emit_jump_insn_after (seq
, jump
);
4717 LABEL_NUSES (lab
) += 1;
4718 JUMP_LABEL (newjump
) = lab
;
4719 emit_barrier_after (newjump
);
4723 if (can_merge_blocks_p (test_bb
, other_bb
))
4725 merge_blocks (test_bb
, other_bb
);
4729 num_updated_if_blocks
++;
4733 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
4737 block_has_only_trap (basic_block bb
)
4741 /* We're not the exit block. */
4742 if (bb
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
4745 /* The block must have no successors. */
4746 if (EDGE_COUNT (bb
->succs
) > 0)
4749 /* The only instruction in the THEN block must be the trap. */
4750 trap
= first_active_insn (bb
);
4751 if (! (trap
== BB_END (bb
)
4752 && GET_CODE (PATTERN (trap
)) == TRAP_IF
4753 && TRAP_CONDITION (PATTERN (trap
)) == const_true_rtx
))
4759 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
4760 transformable, but not necessarily the other. There need be no
4763 Return TRUE if we were successful at converting the block.
4765 Cases we'd like to look at:
4768 if (test) goto over; // x not live
4776 if (! test) goto label;
4779 if (test) goto E; // x not live
4793 (3) // This one's really only interesting for targets that can do
4794 // multiway branching, e.g. IA-64 BBB bundles. For other targets
4795 // it results in multiple branches on a cache line, which often
4796 // does not sit well with predictors.
4798 if (test1) goto E; // predicted not taken
4814 (A) Don't do (2) if the branch is predicted against the block we're
4815 eliminating. Do it anyway if we can eliminate a branch; this requires
4816 that the sole successor of the eliminated block postdominate the other
4819 (B) With CE, on (3) we can steal from both sides of the if, creating
4828 Again, this is most useful if J postdominates.
4830 (C) CE substitutes for helpful life information.
4832 (D) These heuristics need a lot of work. */
4834 /* Tests for case 1 above. */
4837 find_if_case_1 (basic_block test_bb
, edge then_edge
, edge else_edge
)
4839 basic_block then_bb
= then_edge
->dest
;
4840 basic_block else_bb
= else_edge
->dest
;
4842 int then_bb_index
, then_prob
;
4843 rtx else_target
= NULL_RTX
;
4845 /* If we are partitioning hot/cold basic blocks, we don't want to
4846 mess up unconditional or indirect jumps that cross between hot
4849 Basic block partitioning may result in some jumps that appear to
4850 be optimizable (or blocks that appear to be mergeable), but which really
4851 must be left untouched (they are required to make it safely across
4852 partition boundaries). See the comments at the top of
4853 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4855 if ((BB_END (then_bb
)
4856 && JUMP_P (BB_END (then_bb
))
4857 && CROSSING_JUMP_P (BB_END (then_bb
)))
4858 || (BB_END (test_bb
)
4859 && JUMP_P (BB_END (test_bb
))
4860 && CROSSING_JUMP_P (BB_END (test_bb
)))
4861 || (BB_END (else_bb
)
4862 && JUMP_P (BB_END (else_bb
))
4863 && CROSSING_JUMP_P (BB_END (else_bb
))))
4866 /* THEN has one successor. */
4867 if (!single_succ_p (then_bb
))
4870 /* THEN does not fall through, but is not strange either. */
4871 if (single_succ_edge (then_bb
)->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
))
4874 /* THEN has one predecessor. */
4875 if (!single_pred_p (then_bb
))
4878 /* THEN must do something. */
4879 if (forwarder_block_p (then_bb
))
4882 num_possible_if_blocks
++;
4885 "\nIF-CASE-1 found, start %d, then %d\n",
4886 test_bb
->index
, then_bb
->index
);
4888 if (then_edge
->probability
)
4889 then_prob
= REG_BR_PROB_BASE
- then_edge
->probability
;
4891 then_prob
= REG_BR_PROB_BASE
/ 2;
4893 /* We're speculating from the THEN path, we want to make sure the cost
4894 of speculation is within reason. */
4895 if (! cheap_bb_rtx_cost_p (then_bb
, then_prob
,
4896 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge
->src
),
4897 predictable_edge_p (then_edge
)))))
4900 if (else_bb
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
4902 rtx_insn
*jump
= BB_END (else_edge
->src
);
4903 gcc_assert (JUMP_P (jump
));
4904 else_target
= JUMP_LABEL (jump
);
4907 /* Registers set are dead, or are predicable. */
4908 if (! dead_or_predicable (test_bb
, then_bb
, else_bb
,
4909 single_succ_edge (then_bb
), 1))
4912 /* Conversion went ok, including moving the insns and fixing up the
4913 jump. Adjust the CFG to match. */
4915 /* We can avoid creating a new basic block if then_bb is immediately
4916 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
4917 through to else_bb. */
4919 if (then_bb
->next_bb
== else_bb
4920 && then_bb
->prev_bb
== test_bb
4921 && else_bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
4923 redirect_edge_succ (FALLTHRU_EDGE (test_bb
), else_bb
);
4926 else if (else_bb
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
4927 new_bb
= force_nonfallthru_and_redirect (FALLTHRU_EDGE (test_bb
),
4928 else_bb
, else_target
);
4930 new_bb
= redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb
),
4933 df_set_bb_dirty (test_bb
);
4934 df_set_bb_dirty (else_bb
);
4936 then_bb_index
= then_bb
->index
;
4937 delete_basic_block (then_bb
);
4939 /* Make rest of code believe that the newly created block is the THEN_BB
4940 block we removed. */
4943 df_bb_replace (then_bb_index
, new_bb
);
4944 /* This should have been done above via force_nonfallthru_and_redirect
4945 (possibly called from redirect_edge_and_branch_force). */
4946 gcc_checking_assert (BB_PARTITION (new_bb
) == BB_PARTITION (test_bb
));
4950 num_updated_if_blocks
++;
4954 /* Test for case 2 above. */
4957 find_if_case_2 (basic_block test_bb
, edge then_edge
, edge else_edge
)
4959 basic_block then_bb
= then_edge
->dest
;
4960 basic_block else_bb
= else_edge
->dest
;
4962 int then_prob
, else_prob
;
4964 /* We do not want to speculate (empty) loop latches. */
4966 && else_bb
->loop_father
->latch
== else_bb
)
4969 /* If we are partitioning hot/cold basic blocks, we don't want to
4970 mess up unconditional or indirect jumps that cross between hot
4973 Basic block partitioning may result in some jumps that appear to
4974 be optimizable (or blocks that appear to be mergeable), but which really
4975 must be left untouched (they are required to make it safely across
4976 partition boundaries). See the comments at the top of
4977 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4979 if ((BB_END (then_bb
)
4980 && JUMP_P (BB_END (then_bb
))
4981 && CROSSING_JUMP_P (BB_END (then_bb
)))
4982 || (BB_END (test_bb
)
4983 && JUMP_P (BB_END (test_bb
))
4984 && CROSSING_JUMP_P (BB_END (test_bb
)))
4985 || (BB_END (else_bb
)
4986 && JUMP_P (BB_END (else_bb
))
4987 && CROSSING_JUMP_P (BB_END (else_bb
))))
4990 /* ELSE has one successor. */
4991 if (!single_succ_p (else_bb
))
4994 else_succ
= single_succ_edge (else_bb
);
4996 /* ELSE outgoing edge is not complex. */
4997 if (else_succ
->flags
& EDGE_COMPLEX
)
5000 /* ELSE has one predecessor. */
5001 if (!single_pred_p (else_bb
))
5004 /* THEN is not EXIT. */
5005 if (then_bb
->index
< NUM_FIXED_BLOCKS
)
5008 if (else_edge
->probability
)
5010 else_prob
= else_edge
->probability
;
5011 then_prob
= REG_BR_PROB_BASE
- else_prob
;
5015 else_prob
= REG_BR_PROB_BASE
/ 2;
5016 then_prob
= REG_BR_PROB_BASE
/ 2;
5019 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
5020 if (else_prob
> then_prob
)
5022 else if (else_succ
->dest
->index
< NUM_FIXED_BLOCKS
5023 || dominated_by_p (CDI_POST_DOMINATORS
, then_bb
,
5029 num_possible_if_blocks
++;
5032 "\nIF-CASE-2 found, start %d, else %d\n",
5033 test_bb
->index
, else_bb
->index
);
5035 /* We're speculating from the ELSE path, we want to make sure the cost
5036 of speculation is within reason. */
5037 if (! cheap_bb_rtx_cost_p (else_bb
, else_prob
,
5038 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge
->src
),
5039 predictable_edge_p (else_edge
)))))
5042 /* Registers set are dead, or are predicable. */
5043 if (! dead_or_predicable (test_bb
, else_bb
, then_bb
, else_succ
, 0))
5046 /* Conversion went ok, including moving the insns and fixing up the
5047 jump. Adjust the CFG to match. */
5049 df_set_bb_dirty (test_bb
);
5050 df_set_bb_dirty (then_bb
);
5051 delete_basic_block (else_bb
);
5054 num_updated_if_blocks
++;
5056 /* ??? We may now fallthru from one of THEN's successors into a join
5057 block. Rerun cleanup_cfg? Examine things manually? Wait? */
5062 /* Used by the code above to perform the actual rtl transformations.
5063 Return TRUE if successful.
5065 TEST_BB is the block containing the conditional branch. MERGE_BB
5066 is the block containing the code to manipulate. DEST_EDGE is an
5067 edge representing a jump to the join block; after the conversion,
5068 TEST_BB should be branching to its destination.
5069 REVERSEP is true if the sense of the branch should be reversed. */
5072 dead_or_predicable (basic_block test_bb
, basic_block merge_bb
,
5073 basic_block other_bb
, edge dest_edge
, int reversep
)
5075 basic_block new_dest
= dest_edge
->dest
;
5076 rtx_insn
*head
, *end
, *jump
;
5077 rtx_insn
*earliest
= NULL
;
5079 bitmap merge_set
= NULL
;
5080 /* Number of pending changes. */
5081 int n_validated_changes
= 0;
5082 rtx new_dest_label
= NULL_RTX
;
5084 jump
= BB_END (test_bb
);
5086 /* Find the extent of the real code in the merge block. */
5087 head
= BB_HEAD (merge_bb
);
5088 end
= BB_END (merge_bb
);
5090 while (DEBUG_INSN_P (end
) && end
!= head
)
5091 end
= PREV_INSN (end
);
5093 /* If merge_bb ends with a tablejump, predicating/moving insn's
5094 into test_bb and then deleting merge_bb will result in the jumptable
5095 that follows merge_bb being removed along with merge_bb and then we
5096 get an unresolved reference to the jumptable. */
5097 if (tablejump_p (end
, NULL
, NULL
))
5101 head
= NEXT_INSN (head
);
5102 while (DEBUG_INSN_P (head
) && head
!= end
)
5103 head
= NEXT_INSN (head
);
5111 head
= NEXT_INSN (head
);
5112 while (DEBUG_INSN_P (head
) && head
!= end
)
5113 head
= NEXT_INSN (head
);
5118 if (!onlyjump_p (end
))
5125 end
= PREV_INSN (end
);
5126 while (DEBUG_INSN_P (end
) && end
!= head
)
5127 end
= PREV_INSN (end
);
5130 /* Don't move frame-related insn across the conditional branch. This
5131 can lead to one of the paths of the branch having wrong unwind info. */
5132 if (epilogue_completed
)
5134 rtx_insn
*insn
= head
;
5137 if (INSN_P (insn
) && RTX_FRAME_RELATED_P (insn
))
5141 insn
= NEXT_INSN (insn
);
5145 /* Disable handling dead code by conditional execution if the machine needs
5146 to do anything funny with the tests, etc. */
5147 #ifndef IFCVT_MODIFY_TESTS
5148 if (targetm
.have_conditional_execution ())
5150 /* In the conditional execution case, we have things easy. We know
5151 the condition is reversible. We don't have to check life info
5152 because we're going to conditionally execute the code anyway.
5153 All that's left is making sure the insns involved can actually
5158 cond
= cond_exec_get_condition (jump
);
5162 rtx note
= find_reg_note (jump
, REG_BR_PROB
, NULL_RTX
);
5163 int prob_val
= (note
? XINT (note
, 0) : -1);
5167 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
5170 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
5173 prob_val
= REG_BR_PROB_BASE
- prob_val
;
5176 if (cond_exec_process_insns (NULL
, head
, end
, cond
, prob_val
, 0)
5177 && verify_changes (0))
5178 n_validated_changes
= num_validated_changes ();
5186 /* If we allocated new pseudos (e.g. in the conditional move
5187 expander called from noce_emit_cmove), we must resize the
5189 if (max_regno
< max_reg_num ())
5190 max_regno
= max_reg_num ();
5192 /* Try the NCE path if the CE path did not result in any changes. */
5193 if (n_validated_changes
== 0)
5200 /* In the non-conditional execution case, we have to verify that there
5201 are no trapping operations, no calls, no references to memory, and
5202 that any registers modified are dead at the branch site. */
5204 if (!any_condjump_p (jump
))
5207 /* Find the extent of the conditional. */
5208 cond
= noce_get_condition (jump
, &earliest
, false);
5212 live
= BITMAP_ALLOC (®_obstack
);
5213 simulate_backwards_to_point (merge_bb
, live
, end
);
5214 success
= can_move_insns_across (head
, end
, earliest
, jump
,
5216 df_get_live_in (other_bb
), NULL
);
5221 /* Collect the set of registers set in MERGE_BB. */
5222 merge_set
= BITMAP_ALLOC (®_obstack
);
5224 FOR_BB_INSNS (merge_bb
, insn
)
5225 if (NONDEBUG_INSN_P (insn
))
5226 df_simulate_find_defs (insn
, merge_set
);
5228 /* If shrink-wrapping, disable this optimization when test_bb is
5229 the first basic block and merge_bb exits. The idea is to not
5230 move code setting up a return register as that may clobber a
5231 register used to pass function parameters, which then must be
5232 saved in caller-saved regs. A caller-saved reg requires the
5233 prologue, killing a shrink-wrap opportunity. */
5234 if ((SHRINK_WRAPPING_ENABLED
&& !epilogue_completed
)
5235 && ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
== test_bb
5236 && single_succ_p (new_dest
)
5237 && single_succ (new_dest
) == EXIT_BLOCK_PTR_FOR_FN (cfun
)
5238 && bitmap_intersect_p (df_get_live_in (new_dest
), merge_set
))
5243 return_regs
= BITMAP_ALLOC (®_obstack
);
5245 /* Start off with the intersection of regs used to pass
5246 params and regs used to return values. */
5247 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
5248 if (FUNCTION_ARG_REGNO_P (i
)
5249 && targetm
.calls
.function_value_regno_p (i
))
5250 bitmap_set_bit (return_regs
, INCOMING_REGNO (i
));
5252 bitmap_and_into (return_regs
,
5253 df_get_live_out (ENTRY_BLOCK_PTR_FOR_FN (cfun
)));
5254 bitmap_and_into (return_regs
,
5255 df_get_live_in (EXIT_BLOCK_PTR_FOR_FN (cfun
)));
5256 if (!bitmap_empty_p (return_regs
))
5258 FOR_BB_INSNS_REVERSE (new_dest
, insn
)
5259 if (NONDEBUG_INSN_P (insn
))
5263 /* If this insn sets any reg in return_regs, add all
5264 reg uses to the set of regs we're interested in. */
5265 FOR_EACH_INSN_DEF (def
, insn
)
5266 if (bitmap_bit_p (return_regs
, DF_REF_REGNO (def
)))
5268 df_simulate_uses (insn
, return_regs
);
5272 if (bitmap_intersect_p (merge_set
, return_regs
))
5274 BITMAP_FREE (return_regs
);
5275 BITMAP_FREE (merge_set
);
5279 BITMAP_FREE (return_regs
);
5284 /* We don't want to use normal invert_jump or redirect_jump because
5285 we don't want to delete_insn called. Also, we want to do our own
5286 change group management. */
5288 old_dest
= JUMP_LABEL (jump
);
5289 if (other_bb
!= new_dest
)
5291 if (!any_condjump_p (jump
))
5294 if (JUMP_P (BB_END (dest_edge
->src
)))
5295 new_dest_label
= JUMP_LABEL (BB_END (dest_edge
->src
));
5296 else if (new_dest
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
5297 new_dest_label
= ret_rtx
;
5299 new_dest_label
= block_label (new_dest
);
5301 rtx_jump_insn
*jump_insn
= as_a
<rtx_jump_insn
*> (jump
);
5303 ? ! invert_jump_1 (jump_insn
, new_dest_label
)
5304 : ! redirect_jump_1 (jump_insn
, new_dest_label
))
5308 if (verify_changes (n_validated_changes
))
5309 confirm_change_group ();
5313 if (other_bb
!= new_dest
)
5315 redirect_jump_2 (as_a
<rtx_jump_insn
*> (jump
), old_dest
, new_dest_label
,
5318 redirect_edge_succ (BRANCH_EDGE (test_bb
), new_dest
);
5321 std::swap (BRANCH_EDGE (test_bb
)->count
,
5322 FALLTHRU_EDGE (test_bb
)->count
);
5323 std::swap (BRANCH_EDGE (test_bb
)->probability
,
5324 FALLTHRU_EDGE (test_bb
)->probability
);
5325 update_br_prob_note (test_bb
);
5329 /* Move the insns out of MERGE_BB to before the branch. */
5334 if (end
== BB_END (merge_bb
))
5335 BB_END (merge_bb
) = PREV_INSN (head
);
5337 /* PR 21767: when moving insns above a conditional branch, the REG_EQUAL
5338 notes being moved might become invalid. */
5344 if (! INSN_P (insn
))
5346 note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
);
5349 remove_note (insn
, note
);
5350 } while (insn
!= end
&& (insn
= NEXT_INSN (insn
)));
5352 /* PR46315: when moving insns above a conditional branch, the REG_EQUAL
5353 notes referring to the registers being set might become invalid. */
5359 EXECUTE_IF_SET_IN_BITMAP (merge_set
, 0, i
, bi
)
5360 remove_reg_equal_equiv_notes_for_regno (i
);
5362 BITMAP_FREE (merge_set
);
5365 reorder_insns (head
, end
, PREV_INSN (earliest
));
5368 /* Remove the jump and edge if we can. */
5369 if (other_bb
== new_dest
)
5372 remove_edge (BRANCH_EDGE (test_bb
));
5373 /* ??? Can't merge blocks here, as then_bb is still in use.
5374 At minimum, the merge will get done just before bb-reorder. */
5383 BITMAP_FREE (merge_set
);
5388 /* Main entry point for all if-conversion. AFTER_COMBINE is true if
5389 we are after combine pass. */
5392 if_convert (bool after_combine
)
5399 df_live_add_problem ();
5400 df_live_set_all_dirty ();
5403 /* Record whether we are after combine pass. */
5404 ifcvt_after_combine
= after_combine
;
5405 have_cbranchcc4
= (direct_optab_handler (cbranch_optab
, CCmode
)
5406 != CODE_FOR_nothing
);
5407 num_possible_if_blocks
= 0;
5408 num_updated_if_blocks
= 0;
5409 num_true_changes
= 0;
5411 loop_optimizer_init (AVOID_CFG_MODIFICATIONS
);
5412 mark_loop_exit_edges ();
5413 loop_optimizer_finalize ();
5414 free_dominance_info (CDI_DOMINATORS
);
5416 /* Compute postdominators. */
5417 calculate_dominance_info (CDI_POST_DOMINATORS
);
5419 df_set_flags (DF_LR_RUN_DCE
);
5421 /* Go through each of the basic blocks looking for things to convert. If we
5422 have conditional execution, we make multiple passes to allow us to handle
5423 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
5428 /* Only need to do dce on the first pass. */
5429 df_clear_flags (DF_LR_RUN_DCE
);
5430 cond_exec_changed_p
= FALSE
;
5433 #ifdef IFCVT_MULTIPLE_DUMPS
5434 if (dump_file
&& pass
> 1)
5435 fprintf (dump_file
, "\n\n========== Pass %d ==========\n", pass
);
5438 FOR_EACH_BB_FN (bb
, cfun
)
5441 while (!df_get_bb_dirty (bb
)
5442 && (new_bb
= find_if_header (bb
, pass
)) != NULL
)
5446 #ifdef IFCVT_MULTIPLE_DUMPS
5447 if (dump_file
&& cond_exec_changed_p
)
5448 print_rtl_with_bb (dump_file
, get_insns (), dump_flags
);
5451 while (cond_exec_changed_p
);
5453 #ifdef IFCVT_MULTIPLE_DUMPS
5455 fprintf (dump_file
, "\n\n========== no more changes\n");
5458 free_dominance_info (CDI_POST_DOMINATORS
);
5463 clear_aux_for_blocks ();
5465 /* If we allocated new pseudos, we must resize the array for sched1. */
5466 if (max_regno
< max_reg_num ())
5467 max_regno
= max_reg_num ();
5469 /* Write the final stats. */
5470 if (dump_file
&& num_possible_if_blocks
> 0)
5473 "\n%d possible IF blocks searched.\n",
5474 num_possible_if_blocks
);
5476 "%d IF blocks converted.\n",
5477 num_updated_if_blocks
);
5479 "%d true changes made.\n\n\n",
5484 df_remove_problem (df_live
);
5486 checking_verify_flow_info ();
5489 /* If-conversion and CFG cleanup. */
5491 rest_of_handle_if_conversion (void)
5493 if (flag_if_conversion
)
5497 dump_reg_info (dump_file
);
5498 dump_flow_info (dump_file
, dump_flags
);
5500 cleanup_cfg (CLEANUP_EXPENSIVE
);
5510 const pass_data pass_data_rtl_ifcvt
=
5512 RTL_PASS
, /* type */
5514 OPTGROUP_NONE
, /* optinfo_flags */
5515 TV_IFCVT
, /* tv_id */
5516 0, /* properties_required */
5517 0, /* properties_provided */
5518 0, /* properties_destroyed */
5519 0, /* todo_flags_start */
5520 TODO_df_finish
, /* todo_flags_finish */
5523 class pass_rtl_ifcvt
: public rtl_opt_pass
5526 pass_rtl_ifcvt (gcc::context
*ctxt
)
5527 : rtl_opt_pass (pass_data_rtl_ifcvt
, ctxt
)
5530 /* opt_pass methods: */
5531 virtual bool gate (function
*)
5533 return (optimize
> 0) && dbg_cnt (if_conversion
);
5536 virtual unsigned int execute (function
*)
5538 return rest_of_handle_if_conversion ();
5541 }; // class pass_rtl_ifcvt
5546 make_pass_rtl_ifcvt (gcc::context
*ctxt
)
5548 return new pass_rtl_ifcvt (ctxt
);
5552 /* Rerun if-conversion, as combine may have simplified things enough
5553 to now meet sequence length restrictions. */
5557 const pass_data pass_data_if_after_combine
=
5559 RTL_PASS
, /* type */
5561 OPTGROUP_NONE
, /* optinfo_flags */
5562 TV_IFCVT
, /* tv_id */
5563 0, /* properties_required */
5564 0, /* properties_provided */
5565 0, /* properties_destroyed */
5566 0, /* todo_flags_start */
5567 TODO_df_finish
, /* todo_flags_finish */
5570 class pass_if_after_combine
: public rtl_opt_pass
5573 pass_if_after_combine (gcc::context
*ctxt
)
5574 : rtl_opt_pass (pass_data_if_after_combine
, ctxt
)
5577 /* opt_pass methods: */
5578 virtual bool gate (function
*)
5580 return optimize
> 0 && flag_if_conversion
5581 && dbg_cnt (if_after_combine
);
5584 virtual unsigned int execute (function
*)
5590 }; // class pass_if_after_combine
5595 make_pass_if_after_combine (gcc::context
*ctxt
)
5597 return new pass_if_after_combine (ctxt
);
5603 const pass_data pass_data_if_after_reload
=
5605 RTL_PASS
, /* type */
5607 OPTGROUP_NONE
, /* optinfo_flags */
5608 TV_IFCVT2
, /* tv_id */
5609 0, /* properties_required */
5610 0, /* properties_provided */
5611 0, /* properties_destroyed */
5612 0, /* todo_flags_start */
5613 TODO_df_finish
, /* todo_flags_finish */
5616 class pass_if_after_reload
: public rtl_opt_pass
5619 pass_if_after_reload (gcc::context
*ctxt
)
5620 : rtl_opt_pass (pass_data_if_after_reload
, ctxt
)
5623 /* opt_pass methods: */
5624 virtual bool gate (function
*)
5626 return optimize
> 0 && flag_if_conversion2
5627 && dbg_cnt (if_after_reload
);
5630 virtual unsigned int execute (function
*)
5636 }; // class pass_if_after_reload
5641 make_pass_if_after_reload (gcc::context
*ctxt
)
5643 return new pass_if_after_reload (ctxt
);