1 /* If-conversion support.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
30 #include "insn-config.h"
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
38 #include "diagnostic-core.h"
44 #include "tree-pass.h"
50 #ifndef HAVE_conditional_move
51 #define HAVE_conditional_move 0
63 #ifndef MAX_CONDITIONAL_EXECUTE
64 #define MAX_CONDITIONAL_EXECUTE \
65 (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
69 #define IFCVT_MULTIPLE_DUMPS 1
71 #define NULL_BLOCK ((basic_block) NULL)
73 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
74 static int num_possible_if_blocks
;
76 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
78 static int num_updated_if_blocks
;
80 /* # of changes made. */
81 static int num_true_changes
;
83 /* Whether conditional execution changes were made. */
84 static int cond_exec_changed_p
;
86 /* Forward references. */
87 static int count_bb_insns (const_basic_block
);
88 static bool cheap_bb_rtx_cost_p (const_basic_block
, int);
89 static rtx
first_active_insn (basic_block
);
90 static rtx
last_active_insn (basic_block
, int);
91 static rtx
find_active_insn_before (basic_block
, rtx
);
92 static rtx
find_active_insn_after (basic_block
, rtx
);
93 static basic_block
block_fallthru (basic_block
);
94 static int cond_exec_process_insns (ce_if_block_t
*, rtx
, rtx
, rtx
, rtx
, int);
95 static rtx
cond_exec_get_condition (rtx
);
96 static rtx
noce_get_condition (rtx
, rtx
*, bool);
97 static int noce_operand_ok (const_rtx
);
98 static void merge_if_block (ce_if_block_t
*);
99 static int find_cond_trap (basic_block
, edge
, edge
);
100 static basic_block
find_if_header (basic_block
, int);
101 static int block_jumps_and_fallthru_p (basic_block
, basic_block
);
102 static int noce_find_if_block (basic_block
, edge
, edge
, int);
103 static int cond_exec_find_if_block (ce_if_block_t
*);
104 static int find_if_case_1 (basic_block
, edge
, edge
);
105 static int find_if_case_2 (basic_block
, edge
, edge
);
106 static int find_memory (rtx
*, void *);
107 static int dead_or_predicable (basic_block
, basic_block
, basic_block
,
109 static void noce_emit_move_insn (rtx
, rtx
);
110 static rtx
block_has_only_trap (basic_block
);
112 /* Count the number of non-jump active insns in BB. */
115 count_bb_insns (const_basic_block bb
)
118 rtx insn
= BB_HEAD (bb
);
122 if (CALL_P (insn
) || NONJUMP_INSN_P (insn
))
125 if (insn
== BB_END (bb
))
127 insn
= NEXT_INSN (insn
);
133 /* Determine whether the total insn_rtx_cost on non-jump insns in
134 basic block BB is less than MAX_COST. This function returns
135 false if the cost of any instruction could not be estimated. */
138 cheap_bb_rtx_cost_p (const_basic_block bb
, int max_cost
)
141 rtx insn
= BB_HEAD (bb
);
142 bool speed
= optimize_bb_for_speed_p (bb
);
146 if (NONJUMP_INSN_P (insn
))
148 int cost
= insn_rtx_cost (PATTERN (insn
), speed
);
152 /* If this instruction is the load or set of a "stack" register,
153 such as a floating point register on x87, then the cost of
154 speculatively executing this insn may need to include
155 the additional cost of popping its result off of the
156 register stack. Unfortunately, correctly recognizing and
157 accounting for this additional overhead is tricky, so for
158 now we simply prohibit such speculative execution. */
161 rtx set
= single_set (insn
);
162 if (set
&& STACK_REG_P (SET_DEST (set
)))
168 if (count
>= max_cost
)
171 else if (CALL_P (insn
))
174 if (insn
== BB_END (bb
))
176 insn
= NEXT_INSN (insn
);
182 /* Return the first non-jump active insn in the basic block. */
185 first_active_insn (basic_block bb
)
187 rtx insn
= BB_HEAD (bb
);
191 if (insn
== BB_END (bb
))
193 insn
= NEXT_INSN (insn
);
196 while (NOTE_P (insn
) || DEBUG_INSN_P (insn
))
198 if (insn
== BB_END (bb
))
200 insn
= NEXT_INSN (insn
);
209 /* Return the last non-jump active (non-jump) insn in the basic block. */
212 last_active_insn (basic_block bb
, int skip_use_p
)
214 rtx insn
= BB_END (bb
);
215 rtx head
= BB_HEAD (bb
);
219 || DEBUG_INSN_P (insn
)
221 && NONJUMP_INSN_P (insn
)
222 && GET_CODE (PATTERN (insn
)) == USE
))
226 insn
= PREV_INSN (insn
);
235 /* Return the active insn before INSN inside basic block CURR_BB. */
238 find_active_insn_before (basic_block curr_bb
, rtx insn
)
240 if (!insn
|| insn
== BB_HEAD (curr_bb
))
243 while ((insn
= PREV_INSN (insn
)) != NULL_RTX
)
245 if (NONJUMP_INSN_P (insn
) || JUMP_P (insn
) || CALL_P (insn
))
248 /* No other active insn all the way to the start of the basic block. */
249 if (insn
== BB_HEAD (curr_bb
))
256 /* Return the active insn after INSN inside basic block CURR_BB. */
259 find_active_insn_after (basic_block curr_bb
, rtx insn
)
261 if (!insn
|| insn
== BB_END (curr_bb
))
264 while ((insn
= NEXT_INSN (insn
)) != NULL_RTX
)
266 if (NONJUMP_INSN_P (insn
) || JUMP_P (insn
) || CALL_P (insn
))
269 /* No other active insn all the way to the end of the basic block. */
270 if (insn
== BB_END (curr_bb
))
277 /* Return the basic block reached by falling though the basic block BB. */
280 block_fallthru (basic_block bb
)
282 edge e
= find_fallthru_edge (bb
->succs
);
284 return (e
) ? e
->dest
: NULL_BLOCK
;
287 /* Go through a bunch of insns, converting them to conditional
288 execution format if possible. Return TRUE if all of the non-note
289 insns were processed. */
292 cond_exec_process_insns (ce_if_block_t
*ce_info ATTRIBUTE_UNUSED
,
293 /* if block information */rtx start
,
294 /* first insn to look at */rtx end
,
295 /* last insn to look at */rtx test
,
296 /* conditional execution test */rtx prob_val
,
297 /* probability of branch taken. */int mod_ok
)
299 int must_be_last
= FALSE
;
307 for (insn
= start
; ; insn
= NEXT_INSN (insn
))
309 if (NOTE_P (insn
) || DEBUG_INSN_P (insn
))
312 gcc_assert(NONJUMP_INSN_P (insn
) || CALL_P (insn
));
314 /* Remove USE insns that get in the way. */
315 if (reload_completed
&& GET_CODE (PATTERN (insn
)) == USE
)
317 /* ??? Ug. Actually unlinking the thing is problematic,
318 given what we'd have to coordinate with our callers. */
319 SET_INSN_DELETED (insn
);
323 /* Last insn wasn't last? */
327 if (modified_in_p (test
, insn
))
334 /* Now build the conditional form of the instruction. */
335 pattern
= PATTERN (insn
);
336 xtest
= copy_rtx (test
);
338 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
340 if (GET_CODE (pattern
) == COND_EXEC
)
342 if (GET_MODE (xtest
) != GET_MODE (COND_EXEC_TEST (pattern
)))
345 xtest
= gen_rtx_AND (GET_MODE (xtest
), xtest
,
346 COND_EXEC_TEST (pattern
));
347 pattern
= COND_EXEC_CODE (pattern
);
350 pattern
= gen_rtx_COND_EXEC (VOIDmode
, xtest
, pattern
);
352 /* If the machine needs to modify the insn being conditionally executed,
353 say for example to force a constant integer operand into a temp
354 register, do so here. */
355 #ifdef IFCVT_MODIFY_INSN
356 IFCVT_MODIFY_INSN (ce_info
, pattern
, insn
);
361 validate_change (insn
, &PATTERN (insn
), pattern
, 1);
363 if (CALL_P (insn
) && prob_val
)
364 validate_change (insn
, ®_NOTES (insn
),
365 alloc_EXPR_LIST (REG_BR_PROB
, prob_val
,
366 REG_NOTES (insn
)), 1);
376 /* Return the condition for a jump. Do not do any special processing. */
379 cond_exec_get_condition (rtx jump
)
383 if (any_condjump_p (jump
))
384 test_if
= SET_SRC (pc_set (jump
));
387 cond
= XEXP (test_if
, 0);
389 /* If this branches to JUMP_LABEL when the condition is false,
390 reverse the condition. */
391 if (GET_CODE (XEXP (test_if
, 2)) == LABEL_REF
392 && XEXP (XEXP (test_if
, 2), 0) == JUMP_LABEL (jump
))
394 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
398 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
405 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
406 to conditional execution. Return TRUE if we were successful at
407 converting the block. */
410 cond_exec_process_if_block (ce_if_block_t
* ce_info
,
411 /* if block information */int do_multiple_p
)
413 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
414 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
415 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
416 rtx test_expr
; /* expression in IF_THEN_ELSE that is tested */
417 rtx then_start
; /* first insn in THEN block */
418 rtx then_end
; /* last insn + 1 in THEN block */
419 rtx else_start
= NULL_RTX
; /* first insn in ELSE block or NULL */
420 rtx else_end
= NULL_RTX
; /* last insn + 1 in ELSE block */
421 int max
; /* max # of insns to convert. */
422 int then_mod_ok
; /* whether conditional mods are ok in THEN */
423 rtx true_expr
; /* test for else block insns */
424 rtx false_expr
; /* test for then block insns */
425 rtx true_prob_val
; /* probability of else block */
426 rtx false_prob_val
; /* probability of then block */
427 rtx then_last_head
= NULL_RTX
; /* Last match at the head of THEN */
428 rtx else_last_head
= NULL_RTX
; /* Last match at the head of ELSE */
429 rtx then_first_tail
= NULL_RTX
; /* First match at the tail of THEN */
430 rtx else_first_tail
= NULL_RTX
; /* First match at the tail of ELSE */
431 int then_n_insns
, else_n_insns
, n_insns
;
432 enum rtx_code false_code
;
434 /* If test is comprised of && or || elements, and we've failed at handling
435 all of them together, just use the last test if it is the special case of
436 && elements without an ELSE block. */
437 if (!do_multiple_p
&& ce_info
->num_multiple_test_blocks
)
439 if (else_bb
|| ! ce_info
->and_and_p
)
442 ce_info
->test_bb
= test_bb
= ce_info
->last_test_bb
;
443 ce_info
->num_multiple_test_blocks
= 0;
444 ce_info
->num_and_and_blocks
= 0;
445 ce_info
->num_or_or_blocks
= 0;
448 /* Find the conditional jump to the ELSE or JOIN part, and isolate
450 test_expr
= cond_exec_get_condition (BB_END (test_bb
));
454 /* If the conditional jump is more than just a conditional jump,
455 then we can not do conditional execution conversion on this block. */
456 if (! onlyjump_p (BB_END (test_bb
)))
459 /* Collect the bounds of where we're to search, skipping any labels, jumps
460 and notes at the beginning and end of the block. Then count the total
461 number of insns and see if it is small enough to convert. */
462 then_start
= first_active_insn (then_bb
);
463 then_end
= last_active_insn (then_bb
, TRUE
);
464 then_n_insns
= ce_info
->num_then_insns
= count_bb_insns (then_bb
);
465 n_insns
= then_n_insns
;
466 max
= MAX_CONDITIONAL_EXECUTE
;
473 else_start
= first_active_insn (else_bb
);
474 else_end
= last_active_insn (else_bb
, TRUE
);
475 else_n_insns
= ce_info
->num_else_insns
= count_bb_insns (else_bb
);
476 n_insns
+= else_n_insns
;
478 /* Look for matching sequences at the head and tail of the two blocks,
479 and limit the range of insns to be converted if possible. */
480 n_matching
= flow_find_cross_jump (then_bb
, else_bb
,
481 &then_first_tail
, &else_first_tail
);
482 if (then_first_tail
== BB_HEAD (then_bb
))
483 then_start
= then_end
= NULL_RTX
;
484 if (else_first_tail
== BB_HEAD (else_bb
))
485 else_start
= else_end
= NULL_RTX
;
490 then_end
= find_active_insn_before (then_bb
, then_first_tail
);
492 else_end
= find_active_insn_before (else_bb
, else_first_tail
);
493 n_insns
-= 2 * n_matching
;
496 if (then_start
&& else_start
)
498 int longest_match
= MIN (then_n_insns
- n_matching
,
499 else_n_insns
- n_matching
);
501 = flow_find_head_matching_sequence (then_bb
, else_bb
,
510 /* We won't pass the insns in the head sequence to
511 cond_exec_process_insns, so we need to test them here
512 to make sure that they don't clobber the condition. */
513 for (insn
= BB_HEAD (then_bb
);
514 insn
!= NEXT_INSN (then_last_head
);
515 insn
= NEXT_INSN (insn
))
516 if (!LABEL_P (insn
) && !NOTE_P (insn
)
517 && !DEBUG_INSN_P (insn
)
518 && modified_in_p (test_expr
, insn
))
522 if (then_last_head
== then_end
)
523 then_start
= then_end
= NULL_RTX
;
524 if (else_last_head
== else_end
)
525 else_start
= else_end
= NULL_RTX
;
530 then_start
= find_active_insn_after (then_bb
, then_last_head
);
532 else_start
= find_active_insn_after (else_bb
, else_last_head
);
533 n_insns
-= 2 * n_matching
;
541 /* Map test_expr/test_jump into the appropriate MD tests to use on
542 the conditionally executed code. */
544 true_expr
= test_expr
;
546 false_code
= reversed_comparison_code (true_expr
, BB_END (test_bb
));
547 if (false_code
!= UNKNOWN
)
548 false_expr
= gen_rtx_fmt_ee (false_code
, GET_MODE (true_expr
),
549 XEXP (true_expr
, 0), XEXP (true_expr
, 1));
551 false_expr
= NULL_RTX
;
553 #ifdef IFCVT_MODIFY_TESTS
554 /* If the machine description needs to modify the tests, such as setting a
555 conditional execution register from a comparison, it can do so here. */
556 IFCVT_MODIFY_TESTS (ce_info
, true_expr
, false_expr
);
558 /* See if the conversion failed. */
559 if (!true_expr
|| !false_expr
)
563 true_prob_val
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
566 true_prob_val
= XEXP (true_prob_val
, 0);
567 false_prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (true_prob_val
));
570 false_prob_val
= NULL_RTX
;
572 /* If we have && or || tests, do them here. These tests are in the adjacent
573 blocks after the first block containing the test. */
574 if (ce_info
->num_multiple_test_blocks
> 0)
576 basic_block bb
= test_bb
;
577 basic_block last_test_bb
= ce_info
->last_test_bb
;
586 enum rtx_code f_code
;
588 bb
= block_fallthru (bb
);
589 start
= first_active_insn (bb
);
590 end
= last_active_insn (bb
, TRUE
);
592 && ! cond_exec_process_insns (ce_info
, start
, end
, false_expr
,
593 false_prob_val
, FALSE
))
596 /* If the conditional jump is more than just a conditional jump, then
597 we can not do conditional execution conversion on this block. */
598 if (! onlyjump_p (BB_END (bb
)))
601 /* Find the conditional jump and isolate the test. */
602 t
= cond_exec_get_condition (BB_END (bb
));
606 f_code
= reversed_comparison_code (t
, BB_END (bb
));
607 if (f_code
== UNKNOWN
)
610 f
= gen_rtx_fmt_ee (f_code
, GET_MODE (t
), XEXP (t
, 0), XEXP (t
, 1));
611 if (ce_info
->and_and_p
)
613 t
= gen_rtx_AND (GET_MODE (t
), true_expr
, t
);
614 f
= gen_rtx_IOR (GET_MODE (t
), false_expr
, f
);
618 t
= gen_rtx_IOR (GET_MODE (t
), true_expr
, t
);
619 f
= gen_rtx_AND (GET_MODE (t
), false_expr
, f
);
622 /* If the machine description needs to modify the tests, such as
623 setting a conditional execution register from a comparison, it can
625 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
626 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info
, bb
, t
, f
);
628 /* See if the conversion failed. */
636 while (bb
!= last_test_bb
);
639 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
640 on then THEN block. */
641 then_mod_ok
= (else_bb
== NULL_BLOCK
);
643 /* Go through the THEN and ELSE blocks converting the insns if possible
644 to conditional execution. */
648 || ! cond_exec_process_insns (ce_info
, then_start
, then_end
,
649 false_expr
, false_prob_val
,
653 if (else_bb
&& else_end
654 && ! cond_exec_process_insns (ce_info
, else_start
, else_end
,
655 true_expr
, true_prob_val
, TRUE
))
658 /* If we cannot apply the changes, fail. Do not go through the normal fail
659 processing, since apply_change_group will call cancel_changes. */
660 if (! apply_change_group ())
662 #ifdef IFCVT_MODIFY_CANCEL
663 /* Cancel any machine dependent changes. */
664 IFCVT_MODIFY_CANCEL (ce_info
);
669 #ifdef IFCVT_MODIFY_FINAL
670 /* Do any machine dependent final modifications. */
671 IFCVT_MODIFY_FINAL (ce_info
);
674 /* Conversion succeeded. */
676 fprintf (dump_file
, "%d insn%s converted to conditional execution.\n",
677 n_insns
, (n_insns
== 1) ? " was" : "s were");
679 /* Merge the blocks! If we had matching sequences, make sure to delete one
680 copy at the appropriate location first: delete the copy in the THEN branch
681 for a tail sequence so that the remaining one is executed last for both
682 branches, and delete the copy in the ELSE branch for a head sequence so
683 that the remaining one is executed first for both branches. */
686 rtx from
= then_first_tail
;
688 from
= find_active_insn_after (then_bb
, from
);
689 delete_insn_chain (from
, BB_END (then_bb
), false);
692 delete_insn_chain (first_active_insn (else_bb
), else_last_head
, false);
694 merge_if_block (ce_info
);
695 cond_exec_changed_p
= TRUE
;
699 #ifdef IFCVT_MODIFY_CANCEL
700 /* Cancel any machine dependent changes. */
701 IFCVT_MODIFY_CANCEL (ce_info
);
708 /* Used by noce_process_if_block to communicate with its subroutines.
710 The subroutines know that A and B may be evaluated freely. They
711 know that X is a register. They should insert new instructions
712 before cond_earliest. */
716 /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block. */
717 basic_block test_bb
, then_bb
, else_bb
, join_bb
;
719 /* The jump that ends TEST_BB. */
722 /* The jump condition. */
725 /* New insns should be inserted before this one. */
728 /* Insns in the THEN and ELSE block. There is always just this
729 one insns in those blocks. The insns are single_set insns.
730 If there was no ELSE block, INSN_B is the last insn before
731 COND_EARLIEST, or NULL_RTX. In the former case, the insn
732 operands are still valid, as if INSN_B was moved down below
736 /* The SET_SRC of INSN_A and INSN_B. */
739 /* The SET_DEST of INSN_A. */
742 /* True if this if block is not canonical. In the canonical form of
743 if blocks, the THEN_BB is the block reached via the fallthru edge
744 from TEST_BB. For the noce transformations, we allow the symmetric
746 bool then_else_reversed
;
748 /* Estimated cost of the particular branch instruction. */
752 static rtx
noce_emit_store_flag (struct noce_if_info
*, rtx
, int, int);
753 static int noce_try_move (struct noce_if_info
*);
754 static int noce_try_store_flag (struct noce_if_info
*);
755 static int noce_try_addcc (struct noce_if_info
*);
756 static int noce_try_store_flag_constants (struct noce_if_info
*);
757 static int noce_try_store_flag_mask (struct noce_if_info
*);
758 static rtx
noce_emit_cmove (struct noce_if_info
*, rtx
, enum rtx_code
, rtx
,
760 static int noce_try_cmove (struct noce_if_info
*);
761 static int noce_try_cmove_arith (struct noce_if_info
*);
762 static rtx
noce_get_alt_condition (struct noce_if_info
*, rtx
, rtx
*);
763 static int noce_try_minmax (struct noce_if_info
*);
764 static int noce_try_abs (struct noce_if_info
*);
765 static int noce_try_sign_mask (struct noce_if_info
*);
767 /* Helper function for noce_try_store_flag*. */
770 noce_emit_store_flag (struct noce_if_info
*if_info
, rtx x
, int reversep
,
773 rtx cond
= if_info
->cond
;
777 cond_complex
= (! general_operand (XEXP (cond
, 0), VOIDmode
)
778 || ! general_operand (XEXP (cond
, 1), VOIDmode
));
780 /* If earliest == jump, or when the condition is complex, try to
781 build the store_flag insn directly. */
785 rtx set
= pc_set (if_info
->jump
);
786 cond
= XEXP (SET_SRC (set
), 0);
787 if (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
788 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (if_info
->jump
))
789 reversep
= !reversep
;
790 if (if_info
->then_else_reversed
)
791 reversep
= !reversep
;
795 code
= reversed_comparison_code (cond
, if_info
->jump
);
797 code
= GET_CODE (cond
);
799 if ((if_info
->cond_earliest
== if_info
->jump
|| cond_complex
)
800 && (normalize
== 0 || STORE_FLAG_VALUE
== normalize
))
804 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (x
), XEXP (cond
, 0),
806 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
809 tmp
= emit_insn (tmp
);
811 if (recog_memoized (tmp
) >= 0)
817 if_info
->cond_earliest
= if_info
->jump
;
825 /* Don't even try if the comparison operands or the mode of X are weird. */
826 if (cond_complex
|| !SCALAR_INT_MODE_P (GET_MODE (x
)))
829 return emit_store_flag (x
, code
, XEXP (cond
, 0),
830 XEXP (cond
, 1), VOIDmode
,
831 (code
== LTU
|| code
== LEU
832 || code
== GEU
|| code
== GTU
), normalize
);
835 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
836 X is the destination/target and Y is the value to copy. */
839 noce_emit_move_insn (rtx x
, rtx y
)
841 enum machine_mode outmode
;
845 if (GET_CODE (x
) != STRICT_LOW_PART
)
847 rtx seq
, insn
, target
;
851 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
852 otherwise construct a suitable SET pattern ourselves. */
853 insn
= (OBJECT_P (y
) || CONSTANT_P (y
) || GET_CODE (y
) == SUBREG
)
854 ? emit_move_insn (x
, y
)
855 : emit_insn (gen_rtx_SET (VOIDmode
, x
, y
));
859 if (recog_memoized (insn
) <= 0)
861 if (GET_CODE (x
) == ZERO_EXTRACT
)
863 rtx op
= XEXP (x
, 0);
864 unsigned HOST_WIDE_INT size
= INTVAL (XEXP (x
, 1));
865 unsigned HOST_WIDE_INT start
= INTVAL (XEXP (x
, 2));
867 /* store_bit_field expects START to be relative to
868 BYTES_BIG_ENDIAN and adjusts this value for machines with
869 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
870 invoke store_bit_field again it is necessary to have the START
871 value from the first call. */
872 if (BITS_BIG_ENDIAN
!= BYTES_BIG_ENDIAN
)
875 start
= BITS_PER_UNIT
- start
- size
;
878 gcc_assert (REG_P (op
));
879 start
= BITS_PER_WORD
- start
- size
;
883 gcc_assert (start
< (MEM_P (op
) ? BITS_PER_UNIT
: BITS_PER_WORD
));
884 store_bit_field (op
, size
, start
, GET_MODE (x
), y
);
888 switch (GET_RTX_CLASS (GET_CODE (y
)))
891 ot
= code_to_optab
[GET_CODE (y
)];
895 target
= expand_unop (GET_MODE (y
), ot
, XEXP (y
, 0), x
, 0);
896 if (target
!= NULL_RTX
)
899 emit_move_insn (x
, target
);
908 ot
= code_to_optab
[GET_CODE (y
)];
912 target
= expand_binop (GET_MODE (y
), ot
,
913 XEXP (y
, 0), XEXP (y
, 1),
915 if (target
!= NULL_RTX
)
918 emit_move_insn (x
, target
);
935 inner
= XEXP (outer
, 0);
936 outmode
= GET_MODE (outer
);
937 bitpos
= SUBREG_BYTE (outer
) * BITS_PER_UNIT
;
938 store_bit_field (inner
, GET_MODE_BITSIZE (outmode
), bitpos
, outmode
, y
);
941 /* Return sequence of instructions generated by if conversion. This
942 function calls end_sequence() to end the current stream, ensures
943 that are instructions are unshared, recognizable non-jump insns.
944 On failure, this function returns a NULL_RTX. */
947 end_ifcvt_sequence (struct noce_if_info
*if_info
)
950 rtx seq
= get_insns ();
952 set_used_flags (if_info
->x
);
953 set_used_flags (if_info
->cond
);
954 unshare_all_rtl_in_chain (seq
);
957 /* Make sure that all of the instructions emitted are recognizable,
958 and that we haven't introduced a new jump instruction.
959 As an exercise for the reader, build a general mechanism that
960 allows proper placement of required clobbers. */
961 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
963 || recog_memoized (insn
) == -1)
969 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
970 "if (a == b) x = a; else x = b" into "x = b". */
973 noce_try_move (struct noce_if_info
*if_info
)
975 rtx cond
= if_info
->cond
;
976 enum rtx_code code
= GET_CODE (cond
);
979 if (code
!= NE
&& code
!= EQ
)
982 /* This optimization isn't valid if either A or B could be a NaN
984 if (HONOR_NANS (GET_MODE (if_info
->x
))
985 || HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
)))
988 /* Check whether the operands of the comparison are A and in
990 if ((rtx_equal_p (if_info
->a
, XEXP (cond
, 0))
991 && rtx_equal_p (if_info
->b
, XEXP (cond
, 1)))
992 || (rtx_equal_p (if_info
->a
, XEXP (cond
, 1))
993 && rtx_equal_p (if_info
->b
, XEXP (cond
, 0))))
995 y
= (code
== EQ
) ? if_info
->a
: if_info
->b
;
997 /* Avoid generating the move if the source is the destination. */
998 if (! rtx_equal_p (if_info
->x
, y
))
1001 noce_emit_move_insn (if_info
->x
, y
);
1002 seq
= end_ifcvt_sequence (if_info
);
1006 emit_insn_before_setloc (seq
, if_info
->jump
,
1007 INSN_LOCATOR (if_info
->insn_a
));
1014 /* Convert "if (test) x = 1; else x = 0".
1016 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
1017 tried in noce_try_store_flag_constants after noce_try_cmove has had
1018 a go at the conversion. */
1021 noce_try_store_flag (struct noce_if_info
*if_info
)
1026 if (CONST_INT_P (if_info
->b
)
1027 && INTVAL (if_info
->b
) == STORE_FLAG_VALUE
1028 && if_info
->a
== const0_rtx
)
1030 else if (if_info
->b
== const0_rtx
1031 && CONST_INT_P (if_info
->a
)
1032 && INTVAL (if_info
->a
) == STORE_FLAG_VALUE
1033 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1041 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, 0);
1044 if (target
!= if_info
->x
)
1045 noce_emit_move_insn (if_info
->x
, target
);
1047 seq
= end_ifcvt_sequence (if_info
);
1051 emit_insn_before_setloc (seq
, if_info
->jump
,
1052 INSN_LOCATOR (if_info
->insn_a
));
1062 /* Convert "if (test) x = a; else x = b", for A and B constant. */
1065 noce_try_store_flag_constants (struct noce_if_info
*if_info
)
1069 HOST_WIDE_INT itrue
, ifalse
, diff
, tmp
;
1070 int normalize
, can_reverse
;
1071 enum machine_mode mode
;
1073 if (CONST_INT_P (if_info
->a
)
1074 && CONST_INT_P (if_info
->b
))
1076 mode
= GET_MODE (if_info
->x
);
1077 ifalse
= INTVAL (if_info
->a
);
1078 itrue
= INTVAL (if_info
->b
);
1080 /* Make sure we can represent the difference between the two values. */
1081 if ((itrue
- ifalse
> 0)
1082 != ((ifalse
< 0) != (itrue
< 0) ? ifalse
< 0 : ifalse
< itrue
))
1085 diff
= trunc_int_for_mode (itrue
- ifalse
, mode
);
1087 can_reverse
= (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1091 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
1093 else if (ifalse
== 0 && exact_log2 (itrue
) >= 0
1094 && (STORE_FLAG_VALUE
== 1
1095 || if_info
->branch_cost
>= 2))
1097 else if (itrue
== 0 && exact_log2 (ifalse
) >= 0 && can_reverse
1098 && (STORE_FLAG_VALUE
== 1 || if_info
->branch_cost
>= 2))
1099 normalize
= 1, reversep
= 1;
1100 else if (itrue
== -1
1101 && (STORE_FLAG_VALUE
== -1
1102 || if_info
->branch_cost
>= 2))
1104 else if (ifalse
== -1 && can_reverse
1105 && (STORE_FLAG_VALUE
== -1 || if_info
->branch_cost
>= 2))
1106 normalize
= -1, reversep
= 1;
1107 else if ((if_info
->branch_cost
>= 2 && STORE_FLAG_VALUE
== -1)
1108 || if_info
->branch_cost
>= 3)
1115 tmp
= itrue
; itrue
= ifalse
; ifalse
= tmp
;
1116 diff
= trunc_int_for_mode (-diff
, mode
);
1120 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, normalize
);
1127 /* if (test) x = 3; else x = 4;
1128 => x = 3 + (test == 0); */
1129 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
1131 target
= expand_simple_binop (mode
,
1132 (diff
== STORE_FLAG_VALUE
1134 GEN_INT (ifalse
), target
, if_info
->x
, 0,
1138 /* if (test) x = 8; else x = 0;
1139 => x = (test != 0) << 3; */
1140 else if (ifalse
== 0 && (tmp
= exact_log2 (itrue
)) >= 0)
1142 target
= expand_simple_binop (mode
, ASHIFT
,
1143 target
, GEN_INT (tmp
), if_info
->x
, 0,
1147 /* if (test) x = -1; else x = b;
1148 => x = -(test != 0) | b; */
1149 else if (itrue
== -1)
1151 target
= expand_simple_binop (mode
, IOR
,
1152 target
, GEN_INT (ifalse
), if_info
->x
, 0,
1156 /* if (test) x = a; else x = b;
1157 => x = (-(test != 0) & (b - a)) + a; */
1160 target
= expand_simple_binop (mode
, AND
,
1161 target
, GEN_INT (diff
), if_info
->x
, 0,
1164 target
= expand_simple_binop (mode
, PLUS
,
1165 target
, GEN_INT (ifalse
),
1166 if_info
->x
, 0, OPTAB_WIDEN
);
1175 if (target
!= if_info
->x
)
1176 noce_emit_move_insn (if_info
->x
, target
);
1178 seq
= end_ifcvt_sequence (if_info
);
1182 emit_insn_before_setloc (seq
, if_info
->jump
,
1183 INSN_LOCATOR (if_info
->insn_a
));
1190 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1191 similarly for "foo--". */
1194 noce_try_addcc (struct noce_if_info
*if_info
)
1197 int subtract
, normalize
;
1199 if (GET_CODE (if_info
->a
) == PLUS
1200 && rtx_equal_p (XEXP (if_info
->a
, 0), if_info
->b
)
1201 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1204 rtx cond
= if_info
->cond
;
1205 enum rtx_code code
= reversed_comparison_code (cond
, if_info
->jump
);
1207 /* First try to use addcc pattern. */
1208 if (general_operand (XEXP (cond
, 0), VOIDmode
)
1209 && general_operand (XEXP (cond
, 1), VOIDmode
))
1212 target
= emit_conditional_add (if_info
->x
, code
,
1217 XEXP (if_info
->a
, 1),
1218 GET_MODE (if_info
->x
),
1219 (code
== LTU
|| code
== GEU
1220 || code
== LEU
|| code
== GTU
));
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_LOCATOR (if_info
->insn_a
));
1237 /* If that fails, construct conditional increment or decrement using
1239 if (if_info
->branch_cost
>= 2
1240 && (XEXP (if_info
->a
, 1) == const1_rtx
1241 || XEXP (if_info
->a
, 1) == constm1_rtx
))
1244 if (STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1245 subtract
= 0, normalize
= 0;
1246 else if (-STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1247 subtract
= 1, normalize
= 0;
1249 subtract
= 0, normalize
= INTVAL (XEXP (if_info
->a
, 1));
1252 target
= noce_emit_store_flag (if_info
,
1253 gen_reg_rtx (GET_MODE (if_info
->x
)),
1257 target
= expand_simple_binop (GET_MODE (if_info
->x
),
1258 subtract
? MINUS
: PLUS
,
1259 if_info
->b
, target
, if_info
->x
,
1263 if (target
!= if_info
->x
)
1264 noce_emit_move_insn (if_info
->x
, target
);
1266 seq
= end_ifcvt_sequence (if_info
);
1270 emit_insn_before_setloc (seq
, if_info
->jump
,
1271 INSN_LOCATOR (if_info
->insn_a
));
1281 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1284 noce_try_store_flag_mask (struct noce_if_info
*if_info
)
1290 if ((if_info
->branch_cost
>= 2
1291 || STORE_FLAG_VALUE
== -1)
1292 && ((if_info
->a
== const0_rtx
1293 && rtx_equal_p (if_info
->b
, if_info
->x
))
1294 || ((reversep
= (reversed_comparison_code (if_info
->cond
,
1297 && if_info
->b
== const0_rtx
1298 && rtx_equal_p (if_info
->a
, if_info
->x
))))
1301 target
= noce_emit_store_flag (if_info
,
1302 gen_reg_rtx (GET_MODE (if_info
->x
)),
1305 target
= expand_simple_binop (GET_MODE (if_info
->x
), AND
,
1307 target
, if_info
->x
, 0,
1312 if (target
!= if_info
->x
)
1313 noce_emit_move_insn (if_info
->x
, target
);
1315 seq
= end_ifcvt_sequence (if_info
);
1319 emit_insn_before_setloc (seq
, if_info
->jump
,
1320 INSN_LOCATOR (if_info
->insn_a
));
1330 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1333 noce_emit_cmove (struct noce_if_info
*if_info
, rtx x
, enum rtx_code code
,
1334 rtx cmp_a
, rtx cmp_b
, rtx vfalse
, rtx vtrue
)
1336 rtx target ATTRIBUTE_UNUSED
;
1337 int unsignedp ATTRIBUTE_UNUSED
;
1339 /* If earliest == jump, try to build the cmove insn directly.
1340 This is helpful when combine has created some complex condition
1341 (like for alpha's cmovlbs) that we can't hope to regenerate
1342 through the normal interface. */
1344 if (if_info
->cond_earliest
== if_info
->jump
)
1348 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (if_info
->cond
), cmp_a
, cmp_b
);
1349 tmp
= gen_rtx_IF_THEN_ELSE (GET_MODE (x
), tmp
, vtrue
, vfalse
);
1350 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
1353 tmp
= emit_insn (tmp
);
1355 if (recog_memoized (tmp
) >= 0)
1367 /* Don't even try if the comparison operands are weird. */
1368 if (! general_operand (cmp_a
, GET_MODE (cmp_a
))
1369 || ! general_operand (cmp_b
, GET_MODE (cmp_b
)))
1372 #if HAVE_conditional_move
1373 unsignedp
= (code
== LTU
|| code
== GEU
1374 || code
== LEU
|| code
== GTU
);
1376 target
= emit_conditional_move (x
, code
, cmp_a
, cmp_b
, VOIDmode
,
1377 vtrue
, vfalse
, GET_MODE (x
),
1382 /* We might be faced with a situation like:
1385 vtrue = (subreg:M (reg:N VTRUE) BYTE)
1386 vfalse = (subreg:M (reg:N VFALSE) BYTE)
1388 We can't do a conditional move in mode M, but it's possible that we
1389 could do a conditional move in mode N instead and take a subreg of
1392 If we can't create new pseudos, though, don't bother. */
1393 if (reload_completed
)
1396 if (GET_CODE (vtrue
) == SUBREG
&& GET_CODE (vfalse
) == SUBREG
)
1398 rtx reg_vtrue
= SUBREG_REG (vtrue
);
1399 rtx reg_vfalse
= SUBREG_REG (vfalse
);
1400 unsigned int byte_vtrue
= SUBREG_BYTE (vtrue
);
1401 unsigned int byte_vfalse
= SUBREG_BYTE (vfalse
);
1402 rtx promoted_target
;
1404 if (GET_MODE (reg_vtrue
) != GET_MODE (reg_vfalse
)
1405 || byte_vtrue
!= byte_vfalse
1406 || (SUBREG_PROMOTED_VAR_P (vtrue
)
1407 != SUBREG_PROMOTED_VAR_P (vfalse
))
1408 || (SUBREG_PROMOTED_UNSIGNED_P (vtrue
)
1409 != SUBREG_PROMOTED_UNSIGNED_P (vfalse
)))
1412 promoted_target
= gen_reg_rtx (GET_MODE (reg_vtrue
));
1414 target
= emit_conditional_move (promoted_target
, code
, cmp_a
, cmp_b
,
1415 VOIDmode
, reg_vtrue
, reg_vfalse
,
1416 GET_MODE (reg_vtrue
), unsignedp
);
1417 /* Nope, couldn't do it in that mode either. */
1421 target
= gen_rtx_SUBREG (GET_MODE (vtrue
), promoted_target
, byte_vtrue
);
1422 SUBREG_PROMOTED_VAR_P (target
) = SUBREG_PROMOTED_VAR_P (vtrue
);
1423 SUBREG_PROMOTED_UNSIGNED_SET (target
, SUBREG_PROMOTED_UNSIGNED_P (vtrue
));
1424 emit_move_insn (x
, target
);
1430 /* We'll never get here, as noce_process_if_block doesn't call the
1431 functions involved. Ifdef code, however, should be discouraged
1432 because it leads to typos in the code not selected. However,
1433 emit_conditional_move won't exist either. */
1438 /* Try only simple constants and registers here. More complex cases
1439 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1440 has had a go at it. */
1443 noce_try_cmove (struct noce_if_info
*if_info
)
1448 if ((CONSTANT_P (if_info
->a
) || register_operand (if_info
->a
, VOIDmode
))
1449 && (CONSTANT_P (if_info
->b
) || register_operand (if_info
->b
, VOIDmode
)))
1453 code
= GET_CODE (if_info
->cond
);
1454 target
= noce_emit_cmove (if_info
, if_info
->x
, code
,
1455 XEXP (if_info
->cond
, 0),
1456 XEXP (if_info
->cond
, 1),
1457 if_info
->a
, if_info
->b
);
1461 if (target
!= if_info
->x
)
1462 noce_emit_move_insn (if_info
->x
, target
);
1464 seq
= end_ifcvt_sequence (if_info
);
1468 emit_insn_before_setloc (seq
, if_info
->jump
,
1469 INSN_LOCATOR (if_info
->insn_a
));
1482 /* Try more complex cases involving conditional_move. */
1485 noce_try_cmove_arith (struct noce_if_info
*if_info
)
1497 /* A conditional move from two memory sources is equivalent to a
1498 conditional on their addresses followed by a load. Don't do this
1499 early because it'll screw alias analysis. Note that we've
1500 already checked for no side effects. */
1501 /* ??? FIXME: Magic number 5. */
1502 if (cse_not_expected
1503 && MEM_P (a
) && MEM_P (b
)
1504 && MEM_ADDR_SPACE (a
) == MEM_ADDR_SPACE (b
)
1505 && if_info
->branch_cost
>= 5)
1507 enum machine_mode address_mode
1508 = targetm
.addr_space
.address_mode (MEM_ADDR_SPACE (a
));
1512 x
= gen_reg_rtx (address_mode
);
1516 /* ??? We could handle this if we knew that a load from A or B could
1517 not fault. This is also true if we've already loaded
1518 from the address along the path from ENTRY. */
1519 else if (may_trap_p (a
) || may_trap_p (b
))
1522 /* if (test) x = a + b; else x = c - d;
1529 code
= GET_CODE (if_info
->cond
);
1530 insn_a
= if_info
->insn_a
;
1531 insn_b
= if_info
->insn_b
;
1533 /* Total insn_rtx_cost should be smaller than branch cost. Exit
1534 if insn_rtx_cost can't be estimated. */
1538 = insn_rtx_cost (PATTERN (insn_a
),
1539 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_a
)));
1540 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (if_info
->branch_cost
))
1549 += insn_rtx_cost (PATTERN (insn_b
),
1550 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_b
)));
1551 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (if_info
->branch_cost
))
1555 /* Possibly rearrange operands to make things come out more natural. */
1556 if (reversed_comparison_code (if_info
->cond
, if_info
->jump
) != UNKNOWN
)
1559 if (rtx_equal_p (b
, x
))
1561 else if (general_operand (b
, GET_MODE (b
)))
1566 code
= reversed_comparison_code (if_info
->cond
, if_info
->jump
);
1567 tmp
= a
, a
= b
, b
= tmp
;
1568 tmp
= insn_a
, insn_a
= insn_b
, insn_b
= tmp
;
1577 /* If either operand is complex, load it into a register first.
1578 The best way to do this is to copy the original insn. In this
1579 way we preserve any clobbers etc that the insn may have had.
1580 This is of course not possible in the IS_MEM case. */
1581 if (! general_operand (a
, GET_MODE (a
)))
1587 tmp
= gen_reg_rtx (GET_MODE (a
));
1588 tmp
= emit_insn (gen_rtx_SET (VOIDmode
, tmp
, a
));
1591 goto end_seq_and_fail
;
1594 a
= gen_reg_rtx (GET_MODE (a
));
1595 tmp
= copy_rtx (insn_a
);
1596 set
= single_set (tmp
);
1598 tmp
= emit_insn (PATTERN (tmp
));
1600 if (recog_memoized (tmp
) < 0)
1601 goto end_seq_and_fail
;
1603 if (! general_operand (b
, GET_MODE (b
)))
1609 tmp
= gen_reg_rtx (GET_MODE (b
));
1610 tmp
= gen_rtx_SET (VOIDmode
, tmp
, b
);
1613 goto end_seq_and_fail
;
1616 b
= gen_reg_rtx (GET_MODE (b
));
1617 tmp
= copy_rtx (insn_b
);
1618 set
= single_set (tmp
);
1620 tmp
= PATTERN (tmp
);
1623 /* If insn to set up A clobbers any registers B depends on, try to
1624 swap insn that sets up A with the one that sets up B. If even
1625 that doesn't help, punt. */
1626 last
= get_last_insn ();
1627 if (last
&& modified_in_p (orig_b
, last
))
1629 tmp
= emit_insn_before (tmp
, get_insns ());
1630 if (modified_in_p (orig_a
, tmp
))
1631 goto end_seq_and_fail
;
1634 tmp
= emit_insn (tmp
);
1636 if (recog_memoized (tmp
) < 0)
1637 goto end_seq_and_fail
;
1640 target
= noce_emit_cmove (if_info
, x
, code
, XEXP (if_info
->cond
, 0),
1641 XEXP (if_info
->cond
, 1), a
, b
);
1644 goto end_seq_and_fail
;
1646 /* If we're handling a memory for above, emit the load now. */
1649 tmp
= gen_rtx_MEM (GET_MODE (if_info
->x
), target
);
1651 /* Copy over flags as appropriate. */
1652 if (MEM_VOLATILE_P (if_info
->a
) || MEM_VOLATILE_P (if_info
->b
))
1653 MEM_VOLATILE_P (tmp
) = 1;
1654 if (MEM_IN_STRUCT_P (if_info
->a
) && MEM_IN_STRUCT_P (if_info
->b
))
1655 MEM_IN_STRUCT_P (tmp
) = 1;
1656 if (MEM_SCALAR_P (if_info
->a
) && MEM_SCALAR_P (if_info
->b
))
1657 MEM_SCALAR_P (tmp
) = 1;
1658 if (MEM_ALIAS_SET (if_info
->a
) == MEM_ALIAS_SET (if_info
->b
))
1659 set_mem_alias_set (tmp
, MEM_ALIAS_SET (if_info
->a
));
1661 MIN (MEM_ALIGN (if_info
->a
), MEM_ALIGN (if_info
->b
)));
1663 gcc_assert (MEM_ADDR_SPACE (if_info
->a
) == MEM_ADDR_SPACE (if_info
->b
));
1664 set_mem_addr_space (tmp
, MEM_ADDR_SPACE (if_info
->a
));
1666 noce_emit_move_insn (if_info
->x
, tmp
);
1668 else if (target
!= x
)
1669 noce_emit_move_insn (x
, target
);
1671 tmp
= end_ifcvt_sequence (if_info
);
1675 emit_insn_before_setloc (tmp
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1683 /* For most cases, the simplified condition we found is the best
1684 choice, but this is not the case for the min/max/abs transforms.
1685 For these we wish to know that it is A or B in the condition. */
1688 noce_get_alt_condition (struct noce_if_info
*if_info
, rtx target
,
1691 rtx cond
, set
, insn
;
1694 /* If target is already mentioned in the known condition, return it. */
1695 if (reg_mentioned_p (target
, if_info
->cond
))
1697 *earliest
= if_info
->cond_earliest
;
1698 return if_info
->cond
;
1701 set
= pc_set (if_info
->jump
);
1702 cond
= XEXP (SET_SRC (set
), 0);
1704 = GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
1705 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (if_info
->jump
);
1706 if (if_info
->then_else_reversed
)
1709 /* If we're looking for a constant, try to make the conditional
1710 have that constant in it. There are two reasons why it may
1711 not have the constant we want:
1713 1. GCC may have needed to put the constant in a register, because
1714 the target can't compare directly against that constant. For
1715 this case, we look for a SET immediately before the comparison
1716 that puts a constant in that register.
1718 2. GCC may have canonicalized the conditional, for example
1719 replacing "if x < 4" with "if x <= 3". We can undo that (or
1720 make equivalent types of changes) to get the constants we need
1721 if they're off by one in the right direction. */
1723 if (CONST_INT_P (target
))
1725 enum rtx_code code
= GET_CODE (if_info
->cond
);
1726 rtx op_a
= XEXP (if_info
->cond
, 0);
1727 rtx op_b
= XEXP (if_info
->cond
, 1);
1730 /* First, look to see if we put a constant in a register. */
1731 prev_insn
= prev_nonnote_insn (if_info
->cond_earliest
);
1733 && BLOCK_FOR_INSN (prev_insn
)
1734 == BLOCK_FOR_INSN (if_info
->cond_earliest
)
1735 && INSN_P (prev_insn
)
1736 && GET_CODE (PATTERN (prev_insn
)) == SET
)
1738 rtx src
= find_reg_equal_equiv_note (prev_insn
);
1740 src
= SET_SRC (PATTERN (prev_insn
));
1741 if (CONST_INT_P (src
))
1743 if (rtx_equal_p (op_a
, SET_DEST (PATTERN (prev_insn
))))
1745 else if (rtx_equal_p (op_b
, SET_DEST (PATTERN (prev_insn
))))
1748 if (CONST_INT_P (op_a
))
1753 code
= swap_condition (code
);
1758 /* Now, look to see if we can get the right constant by
1759 adjusting the conditional. */
1760 if (CONST_INT_P (op_b
))
1762 HOST_WIDE_INT desired_val
= INTVAL (target
);
1763 HOST_WIDE_INT actual_val
= INTVAL (op_b
);
1768 if (actual_val
== desired_val
+ 1)
1771 op_b
= GEN_INT (desired_val
);
1775 if (actual_val
== desired_val
- 1)
1778 op_b
= GEN_INT (desired_val
);
1782 if (actual_val
== desired_val
- 1)
1785 op_b
= GEN_INT (desired_val
);
1789 if (actual_val
== desired_val
+ 1)
1792 op_b
= GEN_INT (desired_val
);
1800 /* If we made any changes, generate a new conditional that is
1801 equivalent to what we started with, but has the right
1803 if (code
!= GET_CODE (if_info
->cond
)
1804 || op_a
!= XEXP (if_info
->cond
, 0)
1805 || op_b
!= XEXP (if_info
->cond
, 1))
1807 cond
= gen_rtx_fmt_ee (code
, GET_MODE (cond
), op_a
, op_b
);
1808 *earliest
= if_info
->cond_earliest
;
1813 cond
= canonicalize_condition (if_info
->jump
, cond
, reverse
,
1814 earliest
, target
, false, true);
1815 if (! cond
|| ! reg_mentioned_p (target
, cond
))
1818 /* We almost certainly searched back to a different place.
1819 Need to re-verify correct lifetimes. */
1821 /* X may not be mentioned in the range (cond_earliest, jump]. */
1822 for (insn
= if_info
->jump
; insn
!= *earliest
; insn
= PREV_INSN (insn
))
1823 if (INSN_P (insn
) && reg_overlap_mentioned_p (if_info
->x
, PATTERN (insn
)))
1826 /* A and B may not be modified in the range [cond_earliest, jump). */
1827 for (insn
= *earliest
; insn
!= if_info
->jump
; insn
= NEXT_INSN (insn
))
1829 && (modified_in_p (if_info
->a
, insn
)
1830 || modified_in_p (if_info
->b
, insn
)))
1836 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1839 noce_try_minmax (struct noce_if_info
*if_info
)
1841 rtx cond
, earliest
, target
, seq
;
1842 enum rtx_code code
, op
;
1845 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1846 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1847 to get the target to tell us... */
1848 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
))
1849 || HONOR_NANS (GET_MODE (if_info
->x
)))
1852 cond
= noce_get_alt_condition (if_info
, if_info
->a
, &earliest
);
1856 /* Verify the condition is of the form we expect, and canonicalize
1857 the comparison code. */
1858 code
= GET_CODE (cond
);
1859 if (rtx_equal_p (XEXP (cond
, 0), if_info
->a
))
1861 if (! rtx_equal_p (XEXP (cond
, 1), if_info
->b
))
1864 else if (rtx_equal_p (XEXP (cond
, 1), if_info
->a
))
1866 if (! rtx_equal_p (XEXP (cond
, 0), if_info
->b
))
1868 code
= swap_condition (code
);
1873 /* Determine what sort of operation this is. Note that the code is for
1874 a taken branch, so the code->operation mapping appears backwards. */
1907 target
= expand_simple_binop (GET_MODE (if_info
->x
), op
,
1908 if_info
->a
, if_info
->b
,
1909 if_info
->x
, unsignedp
, OPTAB_WIDEN
);
1915 if (target
!= if_info
->x
)
1916 noce_emit_move_insn (if_info
->x
, target
);
1918 seq
= end_ifcvt_sequence (if_info
);
1922 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1923 if_info
->cond
= cond
;
1924 if_info
->cond_earliest
= earliest
;
1929 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
1930 "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
1934 noce_try_abs (struct noce_if_info
*if_info
)
1936 rtx cond
, earliest
, target
, seq
, a
, b
, c
;
1938 bool one_cmpl
= false;
1940 /* Reject modes with signed zeros. */
1941 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
)))
1944 /* Recognize A and B as constituting an ABS or NABS. The canonical
1945 form is a branch around the negation, taken when the object is the
1946 first operand of a comparison against 0 that evaluates to true. */
1949 if (GET_CODE (a
) == NEG
&& rtx_equal_p (XEXP (a
, 0), b
))
1951 else if (GET_CODE (b
) == NEG
&& rtx_equal_p (XEXP (b
, 0), a
))
1953 c
= a
; a
= b
; b
= c
;
1956 else if (GET_CODE (a
) == NOT
&& rtx_equal_p (XEXP (a
, 0), b
))
1961 else if (GET_CODE (b
) == NOT
&& rtx_equal_p (XEXP (b
, 0), a
))
1963 c
= a
; a
= b
; b
= c
;
1970 cond
= noce_get_alt_condition (if_info
, b
, &earliest
);
1974 /* Verify the condition is of the form we expect. */
1975 if (rtx_equal_p (XEXP (cond
, 0), b
))
1977 else if (rtx_equal_p (XEXP (cond
, 1), b
))
1985 /* Verify that C is zero. Search one step backward for a
1986 REG_EQUAL note or a simple source if necessary. */
1989 rtx set
, insn
= prev_nonnote_insn (earliest
);
1991 && BLOCK_FOR_INSN (insn
) == BLOCK_FOR_INSN (earliest
)
1992 && (set
= single_set (insn
))
1993 && rtx_equal_p (SET_DEST (set
), c
))
1995 rtx note
= find_reg_equal_equiv_note (insn
);
2005 && GET_CODE (XEXP (c
, 0)) == SYMBOL_REF
2006 && CONSTANT_POOL_ADDRESS_P (XEXP (c
, 0)))
2007 c
= get_pool_constant (XEXP (c
, 0));
2009 /* Work around funny ideas get_condition has wrt canonicalization.
2010 Note that these rtx constants are known to be CONST_INT, and
2011 therefore imply integer comparisons. */
2012 if (c
== constm1_rtx
&& GET_CODE (cond
) == GT
)
2014 else if (c
== const1_rtx
&& GET_CODE (cond
) == LT
)
2016 else if (c
!= CONST0_RTX (GET_MODE (b
)))
2019 /* Determine what sort of operation this is. */
2020 switch (GET_CODE (cond
))
2039 target
= expand_one_cmpl_abs_nojump (GET_MODE (if_info
->x
), b
,
2042 target
= expand_abs_nojump (GET_MODE (if_info
->x
), b
, if_info
->x
, 1);
2044 /* ??? It's a quandary whether cmove would be better here, especially
2045 for integers. Perhaps combine will clean things up. */
2046 if (target
&& negate
)
2049 target
= expand_simple_unop (GET_MODE (target
), NOT
, target
,
2052 target
= expand_simple_unop (GET_MODE (target
), NEG
, target
,
2062 if (target
!= if_info
->x
)
2063 noce_emit_move_insn (if_info
->x
, target
);
2065 seq
= end_ifcvt_sequence (if_info
);
2069 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
2070 if_info
->cond
= cond
;
2071 if_info
->cond_earliest
= earliest
;
2076 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
2079 noce_try_sign_mask (struct noce_if_info
*if_info
)
2081 rtx cond
, t
, m
, c
, seq
;
2082 enum machine_mode mode
;
2084 bool t_unconditional
;
2086 cond
= if_info
->cond
;
2087 code
= GET_CODE (cond
);
2092 if (if_info
->a
== const0_rtx
)
2094 if ((code
== LT
&& c
== const0_rtx
)
2095 || (code
== LE
&& c
== constm1_rtx
))
2098 else if (if_info
->b
== const0_rtx
)
2100 if ((code
== GE
&& c
== const0_rtx
)
2101 || (code
== GT
&& c
== constm1_rtx
))
2105 if (! t
|| side_effects_p (t
))
2108 /* We currently don't handle different modes. */
2109 mode
= GET_MODE (t
);
2110 if (GET_MODE (m
) != mode
)
2113 /* This is only profitable if T is unconditionally executed/evaluated in the
2114 original insn sequence or T is cheap. The former happens if B is the
2115 non-zero (T) value and if INSN_B was taken from TEST_BB, or there was no
2116 INSN_B which can happen for e.g. conditional stores to memory. For the
2117 cost computation use the block TEST_BB where the evaluation will end up
2118 after the transformation. */
2121 && (if_info
->insn_b
== NULL_RTX
2122 || BLOCK_FOR_INSN (if_info
->insn_b
) == if_info
->test_bb
));
2123 if (!(t_unconditional
2124 || (rtx_cost (t
, SET
, optimize_bb_for_speed_p (if_info
->test_bb
))
2125 < COSTS_N_INSNS (2))))
2129 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
2130 "(signed) m >> 31" directly. This benefits targets with specialized
2131 insns to obtain the signmask, but still uses ashr_optab otherwise. */
2132 m
= emit_store_flag (gen_reg_rtx (mode
), LT
, m
, const0_rtx
, mode
, 0, -1);
2133 t
= m
? expand_binop (mode
, and_optab
, m
, t
, NULL_RTX
, 0, OPTAB_DIRECT
)
2142 noce_emit_move_insn (if_info
->x
, t
);
2144 seq
= end_ifcvt_sequence (if_info
);
2148 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
2153 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
2157 noce_try_bitop (struct noce_if_info
*if_info
)
2159 rtx cond
, x
, a
, result
, seq
;
2160 enum machine_mode mode
;
2165 cond
= if_info
->cond
;
2166 code
= GET_CODE (cond
);
2168 /* Check for no else condition. */
2169 if (! rtx_equal_p (x
, if_info
->b
))
2172 /* Check for a suitable condition. */
2173 if (code
!= NE
&& code
!= EQ
)
2175 if (XEXP (cond
, 1) != const0_rtx
)
2177 cond
= XEXP (cond
, 0);
2179 /* ??? We could also handle AND here. */
2180 if (GET_CODE (cond
) == ZERO_EXTRACT
)
2182 if (XEXP (cond
, 1) != const1_rtx
2183 || !CONST_INT_P (XEXP (cond
, 2))
2184 || ! rtx_equal_p (x
, XEXP (cond
, 0)))
2186 bitnum
= INTVAL (XEXP (cond
, 2));
2187 mode
= GET_MODE (x
);
2188 if (BITS_BIG_ENDIAN
)
2189 bitnum
= GET_MODE_BITSIZE (mode
) - 1 - bitnum
;
2190 if (bitnum
< 0 || bitnum
>= HOST_BITS_PER_WIDE_INT
)
2197 if (GET_CODE (a
) == IOR
|| GET_CODE (a
) == XOR
)
2199 /* Check for "if (X & C) x = x op C". */
2200 if (! rtx_equal_p (x
, XEXP (a
, 0))
2201 || !CONST_INT_P (XEXP (a
, 1))
2202 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
2203 != (unsigned HOST_WIDE_INT
) 1 << bitnum
)
2206 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
2207 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
2208 if (GET_CODE (a
) == IOR
)
2209 result
= (code
== NE
) ? a
: NULL_RTX
;
2210 else if (code
== NE
)
2212 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
2213 result
= gen_int_mode ((HOST_WIDE_INT
) 1 << bitnum
, mode
);
2214 result
= simplify_gen_binary (IOR
, mode
, x
, result
);
2218 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
2219 result
= gen_int_mode (~((HOST_WIDE_INT
) 1 << bitnum
), mode
);
2220 result
= simplify_gen_binary (AND
, mode
, x
, result
);
2223 else if (GET_CODE (a
) == AND
)
2225 /* Check for "if (X & C) x &= ~C". */
2226 if (! rtx_equal_p (x
, XEXP (a
, 0))
2227 || !CONST_INT_P (XEXP (a
, 1))
2228 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
2229 != (~((HOST_WIDE_INT
) 1 << bitnum
) & GET_MODE_MASK (mode
)))
2232 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
2233 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
2234 result
= (code
== EQ
) ? a
: NULL_RTX
;
2242 noce_emit_move_insn (x
, result
);
2243 seq
= end_ifcvt_sequence (if_info
);
2247 emit_insn_before_setloc (seq
, if_info
->jump
,
2248 INSN_LOCATOR (if_info
->insn_a
));
2254 /* Similar to get_condition, only the resulting condition must be
2255 valid at JUMP, instead of at EARLIEST.
2257 If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2258 THEN block of the caller, and we have to reverse the condition. */
2261 noce_get_condition (rtx jump
, rtx
*earliest
, bool then_else_reversed
)
2266 if (! any_condjump_p (jump
))
2269 set
= pc_set (jump
);
2271 /* If this branches to JUMP_LABEL when the condition is false,
2272 reverse the condition. */
2273 reverse
= (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
2274 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (jump
));
2276 /* We may have to reverse because the caller's if block is not canonical,
2277 i.e. the THEN block isn't the fallthrough block for the TEST block
2278 (see find_if_header). */
2279 if (then_else_reversed
)
2282 /* If the condition variable is a register and is MODE_INT, accept it. */
2284 cond
= XEXP (SET_SRC (set
), 0);
2285 tmp
= XEXP (cond
, 0);
2286 if (REG_P (tmp
) && GET_MODE_CLASS (GET_MODE (tmp
)) == MODE_INT
)
2291 cond
= gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond
)),
2292 GET_MODE (cond
), tmp
, XEXP (cond
, 1));
2296 /* Otherwise, fall back on canonicalize_condition to do the dirty
2297 work of manipulating MODE_CC values and COMPARE rtx codes. */
2298 tmp
= canonicalize_condition (jump
, cond
, reverse
, earliest
,
2299 NULL_RTX
, false, true);
2301 /* We don't handle side-effects in the condition, like handling
2302 REG_INC notes and making sure no duplicate conditions are emitted. */
2303 if (tmp
!= NULL_RTX
&& side_effects_p (tmp
))
2309 /* Return true if OP is ok for if-then-else processing. */
2312 noce_operand_ok (const_rtx op
)
2314 /* We special-case memories, so handle any of them with
2315 no address side effects. */
2317 return ! side_effects_p (XEXP (op
, 0));
2319 if (side_effects_p (op
))
2322 return ! may_trap_p (op
);
2325 /* Return true if a write into MEM may trap or fault. */
2328 noce_mem_write_may_trap_or_fault_p (const_rtx mem
)
2332 if (MEM_READONLY_P (mem
))
2335 if (may_trap_or_fault_p (mem
))
2338 addr
= XEXP (mem
, 0);
2340 /* Call target hook to avoid the effects of -fpic etc.... */
2341 addr
= targetm
.delegitimize_address (addr
);
2344 switch (GET_CODE (addr
))
2352 addr
= XEXP (addr
, 0);
2356 addr
= XEXP (addr
, 1);
2359 if (CONST_INT_P (XEXP (addr
, 1)))
2360 addr
= XEXP (addr
, 0);
2367 if (SYMBOL_REF_DECL (addr
)
2368 && decl_readonly_section (SYMBOL_REF_DECL (addr
), 0))
2378 /* Return whether we can use store speculation for MEM. TOP_BB is the
2379 basic block above the conditional block where we are considering
2380 doing the speculative store. We look for whether MEM is set
2381 unconditionally later in the function. */
2384 noce_can_store_speculate_p (basic_block top_bb
, const_rtx mem
)
2386 basic_block dominator
;
2388 for (dominator
= get_immediate_dominator (CDI_POST_DOMINATORS
, top_bb
);
2390 dominator
= get_immediate_dominator (CDI_POST_DOMINATORS
, dominator
))
2394 FOR_BB_INSNS (dominator
, insn
)
2396 /* If we see something that might be a memory barrier, we
2397 have to stop looking. Even if the MEM is set later in
2398 the function, we still don't want to set it
2399 unconditionally before the barrier. */
2401 && (volatile_insn_p (PATTERN (insn
))
2402 || (CALL_P (insn
) && (!RTL_CONST_CALL_P (insn
)))))
2405 if (memory_modified_in_insn_p (mem
, insn
))
2407 if (modified_in_p (XEXP (mem
, 0), insn
))
2416 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2417 it without using conditional execution. Return TRUE if we were successful
2418 at converting the block. */
2421 noce_process_if_block (struct noce_if_info
*if_info
)
2423 basic_block test_bb
= if_info
->test_bb
; /* test block */
2424 basic_block then_bb
= if_info
->then_bb
; /* THEN */
2425 basic_block else_bb
= if_info
->else_bb
; /* ELSE or NULL */
2426 basic_block join_bb
= if_info
->join_bb
; /* JOIN */
2427 rtx jump
= if_info
->jump
;
2428 rtx cond
= if_info
->cond
;
2431 rtx orig_x
, x
, a
, b
;
2433 /* We're looking for patterns of the form
2435 (1) if (...) x = a; else x = b;
2436 (2) x = b; if (...) x = a;
2437 (3) if (...) x = a; // as if with an initial x = x.
2439 The later patterns require jumps to be more expensive.
2441 ??? For future expansion, look for multiple X in such patterns. */
2443 /* Look for one of the potential sets. */
2444 insn_a
= first_active_insn (then_bb
);
2446 || insn_a
!= last_active_insn (then_bb
, FALSE
)
2447 || (set_a
= single_set (insn_a
)) == NULL_RTX
)
2450 x
= SET_DEST (set_a
);
2451 a
= SET_SRC (set_a
);
2453 /* Look for the other potential set. Make sure we've got equivalent
2455 /* ??? This is overconservative. Storing to two different mems is
2456 as easy as conditionally computing the address. Storing to a
2457 single mem merely requires a scratch memory to use as one of the
2458 destination addresses; often the memory immediately below the
2459 stack pointer is available for this. */
2463 insn_b
= first_active_insn (else_bb
);
2465 || insn_b
!= last_active_insn (else_bb
, FALSE
)
2466 || (set_b
= single_set (insn_b
)) == NULL_RTX
2467 || ! rtx_equal_p (x
, SET_DEST (set_b
)))
2472 insn_b
= prev_nonnote_nondebug_insn (if_info
->cond_earliest
);
2473 /* We're going to be moving the evaluation of B down from above
2474 COND_EARLIEST to JUMP. Make sure the relevant data is still
2477 || BLOCK_FOR_INSN (insn_b
) != BLOCK_FOR_INSN (if_info
->cond_earliest
)
2478 || !NONJUMP_INSN_P (insn_b
)
2479 || (set_b
= single_set (insn_b
)) == NULL_RTX
2480 || ! rtx_equal_p (x
, SET_DEST (set_b
))
2481 || ! noce_operand_ok (SET_SRC (set_b
))
2482 || reg_overlap_mentioned_p (x
, SET_SRC (set_b
))
2483 || modified_between_p (SET_SRC (set_b
), insn_b
, jump
)
2484 /* Likewise with X. In particular this can happen when
2485 noce_get_condition looks farther back in the instruction
2486 stream than one might expect. */
2487 || reg_overlap_mentioned_p (x
, cond
)
2488 || reg_overlap_mentioned_p (x
, a
)
2489 || modified_between_p (x
, insn_b
, jump
))
2490 insn_b
= set_b
= NULL_RTX
;
2493 /* If x has side effects then only the if-then-else form is safe to
2494 convert. But even in that case we would need to restore any notes
2495 (such as REG_INC) at then end. That can be tricky if
2496 noce_emit_move_insn expands to more than one insn, so disable the
2497 optimization entirely for now if there are side effects. */
2498 if (side_effects_p (x
))
2501 b
= (set_b
? SET_SRC (set_b
) : x
);
2503 /* Only operate on register destinations, and even then avoid extending
2504 the lifetime of hard registers on small register class machines. */
2507 || (HARD_REGISTER_P (x
)
2508 && targetm
.small_register_classes_for_mode_p (GET_MODE (x
))))
2510 if (GET_MODE (x
) == BLKmode
)
2513 if (GET_CODE (x
) == ZERO_EXTRACT
2514 && (!CONST_INT_P (XEXP (x
, 1))
2515 || !CONST_INT_P (XEXP (x
, 2))))
2518 x
= gen_reg_rtx (GET_MODE (GET_CODE (x
) == STRICT_LOW_PART
2519 ? XEXP (x
, 0) : x
));
2522 /* Don't operate on sources that may trap or are volatile. */
2523 if (! noce_operand_ok (a
) || ! noce_operand_ok (b
))
2527 /* Set up the info block for our subroutines. */
2528 if_info
->insn_a
= insn_a
;
2529 if_info
->insn_b
= insn_b
;
2534 /* Try optimizations in some approximation of a useful order. */
2535 /* ??? Should first look to see if X is live incoming at all. If it
2536 isn't, we don't need anything but an unconditional set. */
2538 /* Look and see if A and B are really the same. Avoid creating silly
2539 cmove constructs that no one will fix up later. */
2540 if (rtx_equal_p (a
, b
))
2542 /* If we have an INSN_B, we don't have to create any new rtl. Just
2543 move the instruction that we already have. If we don't have an
2544 INSN_B, that means that A == X, and we've got a noop move. In
2545 that case don't do anything and let the code below delete INSN_A. */
2546 if (insn_b
&& else_bb
)
2550 if (else_bb
&& insn_b
== BB_END (else_bb
))
2551 BB_END (else_bb
) = PREV_INSN (insn_b
);
2552 reorder_insns (insn_b
, insn_b
, PREV_INSN (jump
));
2554 /* If there was a REG_EQUAL note, delete it since it may have been
2555 true due to this insn being after a jump. */
2556 if ((note
= find_reg_note (insn_b
, REG_EQUAL
, NULL_RTX
)) != 0)
2557 remove_note (insn_b
, note
);
2561 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2562 x must be executed twice. */
2563 else if (insn_b
&& side_effects_p (orig_x
))
2570 if (!set_b
&& MEM_P (orig_x
))
2572 /* Disallow the "if (...) x = a;" form (implicit "else x = x;")
2573 for optimizations if writing to x may trap or fault,
2574 i.e. it's a memory other than a static var or a stack slot,
2575 is misaligned on strict aligned machines or is read-only. If
2576 x is a read-only memory, then the program is valid only if we
2577 avoid the store into it. If there are stores on both the
2578 THEN and ELSE arms, then we can go ahead with the conversion;
2579 either the program is broken, or the condition is always
2580 false such that the other memory is selected. */
2581 if (noce_mem_write_may_trap_or_fault_p (orig_x
))
2584 /* Avoid store speculation: given "if (...) x = a" where x is a
2585 MEM, we only want to do the store if x is always set
2586 somewhere in the function. This avoids cases like
2587 if (pthread_mutex_trylock(mutex))
2589 where we only want global_variable to be changed if the mutex
2590 is held. FIXME: This should ideally be expressed directly in
2592 if (!noce_can_store_speculate_p (test_bb
, orig_x
))
2596 if (noce_try_move (if_info
))
2598 if (noce_try_store_flag (if_info
))
2600 if (noce_try_bitop (if_info
))
2602 if (noce_try_minmax (if_info
))
2604 if (noce_try_abs (if_info
))
2606 if (HAVE_conditional_move
2607 && noce_try_cmove (if_info
))
2609 if (! targetm
.have_conditional_execution ())
2611 if (noce_try_store_flag_constants (if_info
))
2613 if (noce_try_addcc (if_info
))
2615 if (noce_try_store_flag_mask (if_info
))
2617 if (HAVE_conditional_move
2618 && noce_try_cmove_arith (if_info
))
2620 if (noce_try_sign_mask (if_info
))
2624 if (!else_bb
&& set_b
)
2626 insn_b
= set_b
= NULL_RTX
;
2635 /* If we used a temporary, fix it up now. */
2641 noce_emit_move_insn (orig_x
, x
);
2643 set_used_flags (orig_x
);
2644 unshare_all_rtl_in_chain (seq
);
2647 emit_insn_before_setloc (seq
, BB_END (test_bb
), INSN_LOCATOR (insn_a
));
2650 /* The original THEN and ELSE blocks may now be removed. The test block
2651 must now jump to the join block. If the test block and the join block
2652 can be merged, do so. */
2655 delete_basic_block (else_bb
);
2659 remove_edge (find_edge (test_bb
, join_bb
));
2661 remove_edge (find_edge (then_bb
, join_bb
));
2662 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
2663 delete_basic_block (then_bb
);
2666 if (can_merge_blocks_p (test_bb
, join_bb
))
2668 merge_blocks (test_bb
, join_bb
);
2672 num_updated_if_blocks
++;
2676 /* Check whether a block is suitable for conditional move conversion.
2677 Every insn must be a simple set of a register to a constant or a
2678 register. For each assignment, store the value in the array VALS,
2679 indexed by register number, then store the register number in
2680 REGS. COND is the condition we will test. */
2683 check_cond_move_block (basic_block bb
, rtx
*vals
, VEC (int, heap
) **regs
,
2688 /* We can only handle simple jumps at the end of the basic block.
2689 It is almost impossible to update the CFG otherwise. */
2691 if (JUMP_P (insn
) && !onlyjump_p (insn
))
2694 FOR_BB_INSNS (bb
, insn
)
2698 if (!NONDEBUG_INSN_P (insn
) || JUMP_P (insn
))
2700 set
= single_set (insn
);
2704 dest
= SET_DEST (set
);
2705 src
= SET_SRC (set
);
2707 || (HARD_REGISTER_P (dest
)
2708 && targetm
.small_register_classes_for_mode_p (GET_MODE (dest
))))
2711 if (!CONSTANT_P (src
) && !register_operand (src
, VOIDmode
))
2714 if (side_effects_p (src
) || side_effects_p (dest
))
2717 if (may_trap_p (src
) || may_trap_p (dest
))
2720 /* Don't try to handle this if the source register was
2721 modified earlier in the block. */
2723 && vals
[REGNO (src
)] != NULL
)
2724 || (GET_CODE (src
) == SUBREG
&& REG_P (SUBREG_REG (src
))
2725 && vals
[REGNO (SUBREG_REG (src
))] != NULL
))
2728 /* Don't try to handle this if the destination register was
2729 modified earlier in the block. */
2730 if (vals
[REGNO (dest
)] != NULL
)
2733 /* Don't try to handle this if the condition uses the
2734 destination register. */
2735 if (reg_overlap_mentioned_p (dest
, cond
))
2738 /* Don't try to handle this if the source register is modified
2739 later in the block. */
2740 if (!CONSTANT_P (src
)
2741 && modified_between_p (src
, insn
, NEXT_INSN (BB_END (bb
))))
2744 vals
[REGNO (dest
)] = src
;
2746 VEC_safe_push (int, heap
, *regs
, REGNO (dest
));
2752 /* Given a basic block BB suitable for conditional move conversion,
2753 a condition COND, and arrays THEN_VALS and ELSE_VALS containing the
2754 register values depending on COND, emit the insns in the block as
2755 conditional moves. If ELSE_BLOCK is true, THEN_BB was already
2756 processed. The caller has started a sequence for the conversion.
2757 Return true if successful, false if something goes wrong. */
2760 cond_move_convert_if_block (struct noce_if_info
*if_infop
,
2761 basic_block bb
, rtx cond
,
2762 rtx
*then_vals
, rtx
*else_vals
,
2766 rtx insn
, cond_arg0
, cond_arg1
;
2768 code
= GET_CODE (cond
);
2769 cond_arg0
= XEXP (cond
, 0);
2770 cond_arg1
= XEXP (cond
, 1);
2772 FOR_BB_INSNS (bb
, insn
)
2774 rtx set
, target
, dest
, t
, e
;
2777 /* ??? Maybe emit conditional debug insn? */
2778 if (!NONDEBUG_INSN_P (insn
) || JUMP_P (insn
))
2780 set
= single_set (insn
);
2781 gcc_assert (set
&& REG_P (SET_DEST (set
)));
2783 dest
= SET_DEST (set
);
2784 regno
= REGNO (dest
);
2786 t
= then_vals
[regno
];
2787 e
= else_vals
[regno
];
2791 /* If this register was set in the then block, we already
2792 handled this case there. */
2805 target
= noce_emit_cmove (if_infop
, dest
, code
, cond_arg0
, cond_arg1
,
2811 noce_emit_move_insn (dest
, target
);
2817 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2818 it using only conditional moves. Return TRUE if we were successful at
2819 converting the block. */
2822 cond_move_process_if_block (struct noce_if_info
*if_info
)
2824 basic_block test_bb
= if_info
->test_bb
;
2825 basic_block then_bb
= if_info
->then_bb
;
2826 basic_block else_bb
= if_info
->else_bb
;
2827 basic_block join_bb
= if_info
->join_bb
;
2828 rtx jump
= if_info
->jump
;
2829 rtx cond
= if_info
->cond
;
2831 int max_reg
, size
, c
, reg
;
2834 VEC (int, heap
) *then_regs
= NULL
;
2835 VEC (int, heap
) *else_regs
= NULL
;
2838 /* Build a mapping for each block to the value used for each
2840 max_reg
= max_reg_num ();
2841 size
= (max_reg
+ 1) * sizeof (rtx
);
2842 then_vals
= (rtx
*) alloca (size
);
2843 else_vals
= (rtx
*) alloca (size
);
2844 memset (then_vals
, 0, size
);
2845 memset (else_vals
, 0, size
);
2847 /* Make sure the blocks are suitable. */
2848 if (!check_cond_move_block (then_bb
, then_vals
, &then_regs
, cond
)
2850 && !check_cond_move_block (else_bb
, else_vals
, &else_regs
, cond
)))
2852 VEC_free (int, heap
, then_regs
);
2853 VEC_free (int, heap
, else_regs
);
2857 /* Make sure the blocks can be used together. If the same register
2858 is set in both blocks, and is not set to a constant in both
2859 cases, then both blocks must set it to the same register. We
2860 have already verified that if it is set to a register, that the
2861 source register does not change after the assignment. Also count
2862 the number of registers set in only one of the blocks. */
2864 FOR_EACH_VEC_ELT (int, then_regs
, i
, reg
)
2866 if (!then_vals
[reg
] && !else_vals
[reg
])
2869 if (!else_vals
[reg
])
2873 if (!CONSTANT_P (then_vals
[reg
])
2874 && !CONSTANT_P (else_vals
[reg
])
2875 && !rtx_equal_p (then_vals
[reg
], else_vals
[reg
]))
2877 VEC_free (int, heap
, then_regs
);
2878 VEC_free (int, heap
, else_regs
);
2884 /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
2885 FOR_EACH_VEC_ELT (int, else_regs
, i
, reg
)
2886 if (!then_vals
[reg
])
2889 /* Make sure it is reasonable to convert this block. What matters
2890 is the number of assignments currently made in only one of the
2891 branches, since if we convert we are going to always execute
2893 if (c
> MAX_CONDITIONAL_EXECUTE
)
2895 VEC_free (int, heap
, then_regs
);
2896 VEC_free (int, heap
, else_regs
);
2900 /* Try to emit the conditional moves. First do the then block,
2901 then do anything left in the else blocks. */
2903 if (!cond_move_convert_if_block (if_info
, then_bb
, cond
,
2904 then_vals
, else_vals
, false)
2906 && !cond_move_convert_if_block (if_info
, else_bb
, cond
,
2907 then_vals
, else_vals
, true)))
2910 VEC_free (int, heap
, then_regs
);
2911 VEC_free (int, heap
, else_regs
);
2914 seq
= end_ifcvt_sequence (if_info
);
2917 VEC_free (int, heap
, then_regs
);
2918 VEC_free (int, heap
, else_regs
);
2922 loc_insn
= first_active_insn (then_bb
);
2925 loc_insn
= first_active_insn (else_bb
);
2926 gcc_assert (loc_insn
);
2928 emit_insn_before_setloc (seq
, jump
, INSN_LOCATOR (loc_insn
));
2932 delete_basic_block (else_bb
);
2936 remove_edge (find_edge (test_bb
, join_bb
));
2938 remove_edge (find_edge (then_bb
, join_bb
));
2939 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
2940 delete_basic_block (then_bb
);
2943 if (can_merge_blocks_p (test_bb
, join_bb
))
2945 merge_blocks (test_bb
, join_bb
);
2949 num_updated_if_blocks
++;
2951 VEC_free (int, heap
, then_regs
);
2952 VEC_free (int, heap
, else_regs
);
2957 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
2958 IF-THEN-ELSE-JOIN block.
2960 If so, we'll try to convert the insns to not require the branch,
2961 using only transformations that do not require conditional execution.
2963 Return TRUE if we were successful at converting the block. */
2966 noce_find_if_block (basic_block test_bb
, edge then_edge
, edge else_edge
,
2969 basic_block then_bb
, else_bb
, join_bb
;
2970 bool then_else_reversed
= false;
2973 struct noce_if_info if_info
;
2975 /* We only ever should get here before reload. */
2976 gcc_assert (!reload_completed
);
2978 /* Recognize an IF-THEN-ELSE-JOIN block. */
2979 if (single_pred_p (then_edge
->dest
)
2980 && single_succ_p (then_edge
->dest
)
2981 && single_pred_p (else_edge
->dest
)
2982 && single_succ_p (else_edge
->dest
)
2983 && single_succ (then_edge
->dest
) == single_succ (else_edge
->dest
))
2985 then_bb
= then_edge
->dest
;
2986 else_bb
= else_edge
->dest
;
2987 join_bb
= single_succ (then_bb
);
2989 /* Recognize an IF-THEN-JOIN block. */
2990 else if (single_pred_p (then_edge
->dest
)
2991 && single_succ_p (then_edge
->dest
)
2992 && single_succ (then_edge
->dest
) == else_edge
->dest
)
2994 then_bb
= then_edge
->dest
;
2995 else_bb
= NULL_BLOCK
;
2996 join_bb
= else_edge
->dest
;
2998 /* Recognize an IF-ELSE-JOIN block. We can have those because the order
2999 of basic blocks in cfglayout mode does not matter, so the fallthrough
3000 edge can go to any basic block (and not just to bb->next_bb, like in
3002 else if (single_pred_p (else_edge
->dest
)
3003 && single_succ_p (else_edge
->dest
)
3004 && single_succ (else_edge
->dest
) == then_edge
->dest
)
3006 /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
3007 To make this work, we have to invert the THEN and ELSE blocks
3008 and reverse the jump condition. */
3009 then_bb
= else_edge
->dest
;
3010 else_bb
= NULL_BLOCK
;
3011 join_bb
= single_succ (then_bb
);
3012 then_else_reversed
= true;
3015 /* Not a form we can handle. */
3018 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3019 if (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
3022 && single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
3025 num_possible_if_blocks
++;
3030 "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
3031 (else_bb
) ? "-ELSE" : "",
3032 pass
, test_bb
->index
, then_bb
->index
);
3035 fprintf (dump_file
, ", else %d", else_bb
->index
);
3037 fprintf (dump_file
, ", join %d\n", join_bb
->index
);
3040 /* If the conditional jump is more than just a conditional
3041 jump, then we can not do if-conversion on this block. */
3042 jump
= BB_END (test_bb
);
3043 if (! onlyjump_p (jump
))
3046 /* If this is not a standard conditional jump, we can't parse it. */
3047 cond
= noce_get_condition (jump
, &cond_earliest
, then_else_reversed
);
3051 /* We must be comparing objects whose modes imply the size. */
3052 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
3055 /* Initialize an IF_INFO struct to pass around. */
3056 memset (&if_info
, 0, sizeof if_info
);
3057 if_info
.test_bb
= test_bb
;
3058 if_info
.then_bb
= then_bb
;
3059 if_info
.else_bb
= else_bb
;
3060 if_info
.join_bb
= join_bb
;
3061 if_info
.cond
= cond
;
3062 if_info
.cond_earliest
= cond_earliest
;
3063 if_info
.jump
= jump
;
3064 if_info
.then_else_reversed
= then_else_reversed
;
3065 if_info
.branch_cost
= BRANCH_COST (optimize_bb_for_speed_p (test_bb
),
3066 predictable_edge_p (then_edge
));
3068 /* Do the real work. */
3070 if (noce_process_if_block (&if_info
))
3073 if (HAVE_conditional_move
3074 && cond_move_process_if_block (&if_info
))
3081 /* Merge the blocks and mark for local life update. */
3084 merge_if_block (struct ce_if_block
* ce_info
)
3086 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
3087 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
3088 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
3089 basic_block join_bb
= ce_info
->join_bb
; /* join block */
3090 basic_block combo_bb
;
3092 /* All block merging is done into the lower block numbers. */
3095 df_set_bb_dirty (test_bb
);
3097 /* Merge any basic blocks to handle && and || subtests. Each of
3098 the blocks are on the fallthru path from the predecessor block. */
3099 if (ce_info
->num_multiple_test_blocks
> 0)
3101 basic_block bb
= test_bb
;
3102 basic_block last_test_bb
= ce_info
->last_test_bb
;
3103 basic_block fallthru
= block_fallthru (bb
);
3108 fallthru
= block_fallthru (bb
);
3109 merge_blocks (combo_bb
, bb
);
3112 while (bb
!= last_test_bb
);
3115 /* Merge TEST block into THEN block. Normally the THEN block won't have a
3116 label, but it might if there were || tests. That label's count should be
3117 zero, and it normally should be removed. */
3121 merge_blocks (combo_bb
, then_bb
);
3125 /* The ELSE block, if it existed, had a label. That label count
3126 will almost always be zero, but odd things can happen when labels
3127 get their addresses taken. */
3130 merge_blocks (combo_bb
, else_bb
);
3134 /* If there was no join block reported, that means it was not adjacent
3135 to the others, and so we cannot merge them. */
3139 rtx last
= BB_END (combo_bb
);
3141 /* The outgoing edge for the current COMBO block should already
3142 be correct. Verify this. */
3143 if (EDGE_COUNT (combo_bb
->succs
) == 0)
3144 gcc_assert (find_reg_note (last
, REG_NORETURN
, NULL
)
3145 || (NONJUMP_INSN_P (last
)
3146 && GET_CODE (PATTERN (last
)) == TRAP_IF
3147 && (TRAP_CONDITION (PATTERN (last
))
3148 == const_true_rtx
)));
3151 /* There should still be something at the end of the THEN or ELSE
3152 blocks taking us to our final destination. */
3153 gcc_assert (JUMP_P (last
)
3154 || (EDGE_SUCC (combo_bb
, 0)->dest
== EXIT_BLOCK_PTR
3156 && SIBLING_CALL_P (last
))
3157 || ((EDGE_SUCC (combo_bb
, 0)->flags
& EDGE_EH
)
3158 && can_throw_internal (last
)));
3161 /* The JOIN block may have had quite a number of other predecessors too.
3162 Since we've already merged the TEST, THEN and ELSE blocks, we should
3163 have only one remaining edge from our if-then-else diamond. If there
3164 is more than one remaining edge, it must come from elsewhere. There
3165 may be zero incoming edges if the THEN block didn't actually join
3166 back up (as with a call to a non-return function). */
3167 else if (EDGE_COUNT (join_bb
->preds
) < 2
3168 && join_bb
!= EXIT_BLOCK_PTR
)
3170 /* We can merge the JOIN cleanly and update the dataflow try
3171 again on this pass.*/
3172 merge_blocks (combo_bb
, join_bb
);
3177 /* We cannot merge the JOIN. */
3179 /* The outgoing edge for the current COMBO block should already
3180 be correct. Verify this. */
3181 gcc_assert (single_succ_p (combo_bb
)
3182 && single_succ (combo_bb
) == join_bb
);
3184 /* Remove the jump and cruft from the end of the COMBO block. */
3185 if (join_bb
!= EXIT_BLOCK_PTR
)
3186 tidy_fallthru_edge (single_succ_edge (combo_bb
));
3189 num_updated_if_blocks
++;
3192 /* Find a block ending in a simple IF condition and try to transform it
3193 in some way. When converting a multi-block condition, put the new code
3194 in the first such block and delete the rest. Return a pointer to this
3195 first block if some transformation was done. Return NULL otherwise. */
3198 find_if_header (basic_block test_bb
, int pass
)
3200 ce_if_block_t ce_info
;
3204 /* The kind of block we're looking for has exactly two successors. */
3205 if (EDGE_COUNT (test_bb
->succs
) != 2)
3208 then_edge
= EDGE_SUCC (test_bb
, 0);
3209 else_edge
= EDGE_SUCC (test_bb
, 1);
3211 if (df_get_bb_dirty (then_edge
->dest
))
3213 if (df_get_bb_dirty (else_edge
->dest
))
3216 /* Neither edge should be abnormal. */
3217 if ((then_edge
->flags
& EDGE_COMPLEX
)
3218 || (else_edge
->flags
& EDGE_COMPLEX
))
3221 /* Nor exit the loop. */
3222 if ((then_edge
->flags
& EDGE_LOOP_EXIT
)
3223 || (else_edge
->flags
& EDGE_LOOP_EXIT
))
3226 /* The THEN edge is canonically the one that falls through. */
3227 if (then_edge
->flags
& EDGE_FALLTHRU
)
3229 else if (else_edge
->flags
& EDGE_FALLTHRU
)
3232 else_edge
= then_edge
;
3236 /* Otherwise this must be a multiway branch of some sort. */
3239 memset (&ce_info
, 0, sizeof (ce_info
));
3240 ce_info
.test_bb
= test_bb
;
3241 ce_info
.then_bb
= then_edge
->dest
;
3242 ce_info
.else_bb
= else_edge
->dest
;
3243 ce_info
.pass
= pass
;
3245 #ifdef IFCVT_INIT_EXTRA_FIELDS
3246 IFCVT_INIT_EXTRA_FIELDS (&ce_info
);
3249 if (!reload_completed
3250 && noce_find_if_block (test_bb
, then_edge
, else_edge
, pass
))
3253 if (reload_completed
3254 && targetm
.have_conditional_execution ()
3255 && cond_exec_find_if_block (&ce_info
))
3259 && optab_handler (ctrap_optab
, word_mode
) != CODE_FOR_nothing
3260 && find_cond_trap (test_bb
, then_edge
, else_edge
))
3263 if (dom_info_state (CDI_POST_DOMINATORS
) >= DOM_NO_FAST_QUERY
3264 && (reload_completed
|| !targetm
.have_conditional_execution ()))
3266 if (find_if_case_1 (test_bb
, then_edge
, else_edge
))
3268 if (find_if_case_2 (test_bb
, then_edge
, else_edge
))
3276 fprintf (dump_file
, "Conversion succeeded on pass %d.\n", pass
);
3277 /* Set this so we continue looking. */
3278 cond_exec_changed_p
= TRUE
;
3279 return ce_info
.test_bb
;
3282 /* Return true if a block has two edges, one of which falls through to the next
3283 block, and the other jumps to a specific block, so that we can tell if the
3284 block is part of an && test or an || test. Returns either -1 or the number
3285 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
3288 block_jumps_and_fallthru_p (basic_block cur_bb
, basic_block target_bb
)
3291 int fallthru_p
= FALSE
;
3298 if (!cur_bb
|| !target_bb
)
3301 /* If no edges, obviously it doesn't jump or fallthru. */
3302 if (EDGE_COUNT (cur_bb
->succs
) == 0)
3305 FOR_EACH_EDGE (cur_edge
, ei
, cur_bb
->succs
)
3307 if (cur_edge
->flags
& EDGE_COMPLEX
)
3308 /* Anything complex isn't what we want. */
3311 else if (cur_edge
->flags
& EDGE_FALLTHRU
)
3314 else if (cur_edge
->dest
== target_bb
)
3321 if ((jump_p
& fallthru_p
) == 0)
3324 /* Don't allow calls in the block, since this is used to group && and ||
3325 together for conditional execution support. ??? we should support
3326 conditional execution support across calls for IA-64 some day, but
3327 for now it makes the code simpler. */
3328 end
= BB_END (cur_bb
);
3329 insn
= BB_HEAD (cur_bb
);
3331 while (insn
!= NULL_RTX
)
3338 && !DEBUG_INSN_P (insn
)
3339 && GET_CODE (PATTERN (insn
)) != USE
3340 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
3346 insn
= NEXT_INSN (insn
);
3352 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
3353 block. If so, we'll try to convert the insns to not require the branch.
3354 Return TRUE if we were successful at converting the block. */
3357 cond_exec_find_if_block (struct ce_if_block
* ce_info
)
3359 basic_block test_bb
= ce_info
->test_bb
;
3360 basic_block then_bb
= ce_info
->then_bb
;
3361 basic_block else_bb
= ce_info
->else_bb
;
3362 basic_block join_bb
= NULL_BLOCK
;
3367 ce_info
->last_test_bb
= test_bb
;
3369 /* We only ever should get here after reload,
3370 and if we have conditional execution. */
3371 gcc_assert (reload_completed
&& targetm
.have_conditional_execution ());
3373 /* Discover if any fall through predecessors of the current test basic block
3374 were && tests (which jump to the else block) or || tests (which jump to
3376 if (single_pred_p (test_bb
)
3377 && single_pred_edge (test_bb
)->flags
== EDGE_FALLTHRU
)
3379 basic_block bb
= single_pred (test_bb
);
3380 basic_block target_bb
;
3381 int max_insns
= MAX_CONDITIONAL_EXECUTE
;
3384 /* Determine if the preceding block is an && or || block. */
3385 if ((n_insns
= block_jumps_and_fallthru_p (bb
, else_bb
)) >= 0)
3387 ce_info
->and_and_p
= TRUE
;
3388 target_bb
= else_bb
;
3390 else if ((n_insns
= block_jumps_and_fallthru_p (bb
, then_bb
)) >= 0)
3392 ce_info
->and_and_p
= FALSE
;
3393 target_bb
= then_bb
;
3396 target_bb
= NULL_BLOCK
;
3398 if (target_bb
&& n_insns
<= max_insns
)
3400 int total_insns
= 0;
3403 ce_info
->last_test_bb
= test_bb
;
3405 /* Found at least one && or || block, look for more. */
3408 ce_info
->test_bb
= test_bb
= bb
;
3409 total_insns
+= n_insns
;
3412 if (!single_pred_p (bb
))
3415 bb
= single_pred (bb
);
3416 n_insns
= block_jumps_and_fallthru_p (bb
, target_bb
);
3418 while (n_insns
>= 0 && (total_insns
+ n_insns
) <= max_insns
);
3420 ce_info
->num_multiple_test_blocks
= blocks
;
3421 ce_info
->num_multiple_test_insns
= total_insns
;
3423 if (ce_info
->and_and_p
)
3424 ce_info
->num_and_and_blocks
= blocks
;
3426 ce_info
->num_or_or_blocks
= blocks
;
3430 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
3431 other than any || blocks which jump to the THEN block. */
3432 if ((EDGE_COUNT (then_bb
->preds
) - ce_info
->num_or_or_blocks
) != 1)
3435 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3436 FOR_EACH_EDGE (cur_edge
, ei
, then_bb
->preds
)
3438 if (cur_edge
->flags
& EDGE_COMPLEX
)
3442 FOR_EACH_EDGE (cur_edge
, ei
, else_bb
->preds
)
3444 if (cur_edge
->flags
& EDGE_COMPLEX
)
3448 /* The THEN block of an IF-THEN combo must have zero or one successors. */
3449 if (EDGE_COUNT (then_bb
->succs
) > 0
3450 && (!single_succ_p (then_bb
)
3451 || (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
3452 || (epilogue_completed
3453 && tablejump_p (BB_END (then_bb
), NULL
, NULL
))))
3456 /* If the THEN block has no successors, conditional execution can still
3457 make a conditional call. Don't do this unless the ELSE block has
3458 only one incoming edge -- the CFG manipulation is too ugly otherwise.
3459 Check for the last insn of the THEN block being an indirect jump, which
3460 is listed as not having any successors, but confuses the rest of the CE
3461 code processing. ??? we should fix this in the future. */
3462 if (EDGE_COUNT (then_bb
->succs
) == 0)
3464 if (single_pred_p (else_bb
))
3466 rtx last_insn
= BB_END (then_bb
);
3469 && NOTE_P (last_insn
)
3470 && last_insn
!= BB_HEAD (then_bb
))
3471 last_insn
= PREV_INSN (last_insn
);
3474 && JUMP_P (last_insn
)
3475 && ! simplejump_p (last_insn
))
3479 else_bb
= NULL_BLOCK
;
3485 /* If the THEN block's successor is the other edge out of the TEST block,
3486 then we have an IF-THEN combo without an ELSE. */
3487 else if (single_succ (then_bb
) == else_bb
)
3490 else_bb
= NULL_BLOCK
;
3493 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
3494 has exactly one predecessor and one successor, and the outgoing edge
3495 is not complex, then we have an IF-THEN-ELSE combo. */
3496 else if (single_succ_p (else_bb
)
3497 && single_succ (then_bb
) == single_succ (else_bb
)
3498 && single_pred_p (else_bb
)
3499 && !(single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
3500 && !(epilogue_completed
3501 && tablejump_p (BB_END (else_bb
), NULL
, NULL
)))
3502 join_bb
= single_succ (else_bb
);
3504 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
3508 num_possible_if_blocks
++;
3513 "\nIF-THEN%s block found, pass %d, start block %d "
3514 "[insn %d], then %d [%d]",
3515 (else_bb
) ? "-ELSE" : "",
3518 BB_HEAD (test_bb
) ? (int)INSN_UID (BB_HEAD (test_bb
)) : -1,
3520 BB_HEAD (then_bb
) ? (int)INSN_UID (BB_HEAD (then_bb
)) : -1);
3523 fprintf (dump_file
, ", else %d [%d]",
3525 BB_HEAD (else_bb
) ? (int)INSN_UID (BB_HEAD (else_bb
)) : -1);
3527 fprintf (dump_file
, ", join %d [%d]",
3529 BB_HEAD (join_bb
) ? (int)INSN_UID (BB_HEAD (join_bb
)) : -1);
3531 if (ce_info
->num_multiple_test_blocks
> 0)
3532 fprintf (dump_file
, ", %d %s block%s last test %d [%d]",
3533 ce_info
->num_multiple_test_blocks
,
3534 (ce_info
->and_and_p
) ? "&&" : "||",
3535 (ce_info
->num_multiple_test_blocks
== 1) ? "" : "s",
3536 ce_info
->last_test_bb
->index
,
3537 ((BB_HEAD (ce_info
->last_test_bb
))
3538 ? (int)INSN_UID (BB_HEAD (ce_info
->last_test_bb
))
3541 fputc ('\n', dump_file
);
3544 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
3545 first condition for free, since we've already asserted that there's a
3546 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
3547 we checked the FALLTHRU flag, those are already adjacent to the last IF
3549 /* ??? As an enhancement, move the ELSE block. Have to deal with
3550 BLOCK notes, if by no other means than backing out the merge if they
3551 exist. Sticky enough I don't want to think about it now. */
3553 if (else_bb
&& (next
= next
->next_bb
) != else_bb
)
3555 if ((next
= next
->next_bb
) != join_bb
&& join_bb
!= EXIT_BLOCK_PTR
)
3563 /* Do the real work. */
3565 ce_info
->else_bb
= else_bb
;
3566 ce_info
->join_bb
= join_bb
;
3568 /* If we have && and || tests, try to first handle combining the && and ||
3569 tests into the conditional code, and if that fails, go back and handle
3570 it without the && and ||, which at present handles the && case if there
3571 was no ELSE block. */
3572 if (cond_exec_process_if_block (ce_info
, TRUE
))
3575 if (ce_info
->num_multiple_test_blocks
)
3579 if (cond_exec_process_if_block (ce_info
, FALSE
))
3586 /* Convert a branch over a trap, or a branch
3587 to a trap, into a conditional trap. */
3590 find_cond_trap (basic_block test_bb
, edge then_edge
, edge else_edge
)
3592 basic_block then_bb
= then_edge
->dest
;
3593 basic_block else_bb
= else_edge
->dest
;
3594 basic_block other_bb
, trap_bb
;
3595 rtx trap
, jump
, cond
, cond_earliest
, seq
;
3598 /* Locate the block with the trap instruction. */
3599 /* ??? While we look for no successors, we really ought to allow
3600 EH successors. Need to fix merge_if_block for that to work. */
3601 if ((trap
= block_has_only_trap (then_bb
)) != NULL
)
3602 trap_bb
= then_bb
, other_bb
= else_bb
;
3603 else if ((trap
= block_has_only_trap (else_bb
)) != NULL
)
3604 trap_bb
= else_bb
, other_bb
= then_bb
;
3610 fprintf (dump_file
, "\nTRAP-IF block found, start %d, trap %d\n",
3611 test_bb
->index
, trap_bb
->index
);
3614 /* If this is not a standard conditional jump, we can't parse it. */
3615 jump
= BB_END (test_bb
);
3616 cond
= noce_get_condition (jump
, &cond_earliest
, false);
3620 /* If the conditional jump is more than just a conditional jump, then
3621 we can not do if-conversion on this block. */
3622 if (! onlyjump_p (jump
))
3625 /* We must be comparing objects whose modes imply the size. */
3626 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
3629 /* Reverse the comparison code, if necessary. */
3630 code
= GET_CODE (cond
);
3631 if (then_bb
== trap_bb
)
3633 code
= reversed_comparison_code (cond
, jump
);
3634 if (code
== UNKNOWN
)
3638 /* Attempt to generate the conditional trap. */
3639 seq
= gen_cond_trap (code
, copy_rtx (XEXP (cond
, 0)),
3640 copy_rtx (XEXP (cond
, 1)),
3641 TRAP_CODE (PATTERN (trap
)));
3645 /* Emit the new insns before cond_earliest. */
3646 emit_insn_before_setloc (seq
, cond_earliest
, INSN_LOCATOR (trap
));
3648 /* Delete the trap block if possible. */
3649 remove_edge (trap_bb
== then_bb
? then_edge
: else_edge
);
3650 df_set_bb_dirty (test_bb
);
3651 df_set_bb_dirty (then_bb
);
3652 df_set_bb_dirty (else_bb
);
3654 if (EDGE_COUNT (trap_bb
->preds
) == 0)
3656 delete_basic_block (trap_bb
);
3660 /* Wire together the blocks again. */
3661 if (current_ir_type () == IR_RTL_CFGLAYOUT
)
3662 single_succ_edge (test_bb
)->flags
|= EDGE_FALLTHRU
;
3667 lab
= JUMP_LABEL (jump
);
3668 newjump
= emit_jump_insn_after (gen_jump (lab
), jump
);
3669 LABEL_NUSES (lab
) += 1;
3670 JUMP_LABEL (newjump
) = lab
;
3671 emit_barrier_after (newjump
);
3675 if (can_merge_blocks_p (test_bb
, other_bb
))
3677 merge_blocks (test_bb
, other_bb
);
3681 num_updated_if_blocks
++;
3685 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
3689 block_has_only_trap (basic_block bb
)
3693 /* We're not the exit block. */
3694 if (bb
== EXIT_BLOCK_PTR
)
3697 /* The block must have no successors. */
3698 if (EDGE_COUNT (bb
->succs
) > 0)
3701 /* The only instruction in the THEN block must be the trap. */
3702 trap
= first_active_insn (bb
);
3703 if (! (trap
== BB_END (bb
)
3704 && GET_CODE (PATTERN (trap
)) == TRAP_IF
3705 && TRAP_CONDITION (PATTERN (trap
)) == const_true_rtx
))
3711 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
3712 transformable, but not necessarily the other. There need be no
3715 Return TRUE if we were successful at converting the block.
3717 Cases we'd like to look at:
3720 if (test) goto over; // x not live
3728 if (! test) goto label;
3731 if (test) goto E; // x not live
3745 (3) // This one's really only interesting for targets that can do
3746 // multiway branching, e.g. IA-64 BBB bundles. For other targets
3747 // it results in multiple branches on a cache line, which often
3748 // does not sit well with predictors.
3750 if (test1) goto E; // predicted not taken
3766 (A) Don't do (2) if the branch is predicted against the block we're
3767 eliminating. Do it anyway if we can eliminate a branch; this requires
3768 that the sole successor of the eliminated block postdominate the other
3771 (B) With CE, on (3) we can steal from both sides of the if, creating
3780 Again, this is most useful if J postdominates.
3782 (C) CE substitutes for helpful life information.
3784 (D) These heuristics need a lot of work. */
3786 /* Tests for case 1 above. */
3789 find_if_case_1 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3791 basic_block then_bb
= then_edge
->dest
;
3792 basic_block else_bb
= else_edge
->dest
;
3796 /* If we are partitioning hot/cold basic blocks, we don't want to
3797 mess up unconditional or indirect jumps that cross between hot
3800 Basic block partitioning may result in some jumps that appear to
3801 be optimizable (or blocks that appear to be mergeable), but which really
3802 must be left untouched (they are required to make it safely across
3803 partition boundaries). See the comments at the top of
3804 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3806 if ((BB_END (then_bb
)
3807 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3808 || (BB_END (test_bb
)
3809 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3810 || (BB_END (else_bb
)
3811 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3815 /* THEN has one successor. */
3816 if (!single_succ_p (then_bb
))
3819 /* THEN does not fall through, but is not strange either. */
3820 if (single_succ_edge (then_bb
)->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
))
3823 /* THEN has one predecessor. */
3824 if (!single_pred_p (then_bb
))
3827 /* THEN must do something. */
3828 if (forwarder_block_p (then_bb
))
3831 num_possible_if_blocks
++;
3834 "\nIF-CASE-1 found, start %d, then %d\n",
3835 test_bb
->index
, then_bb
->index
);
3837 /* THEN is small. */
3838 if (! cheap_bb_rtx_cost_p (then_bb
,
3839 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge
->src
),
3840 predictable_edge_p (then_edge
)))))
3843 /* Registers set are dead, or are predicable. */
3844 if (! dead_or_predicable (test_bb
, then_bb
, else_bb
,
3845 single_succ (then_bb
), 1))
3848 /* Conversion went ok, including moving the insns and fixing up the
3849 jump. Adjust the CFG to match. */
3851 /* We can avoid creating a new basic block if then_bb is immediately
3852 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
3855 if (then_bb
->next_bb
== else_bb
3856 && then_bb
->prev_bb
== test_bb
3857 && else_bb
!= EXIT_BLOCK_PTR
)
3859 redirect_edge_succ (FALLTHRU_EDGE (test_bb
), else_bb
);
3863 new_bb
= redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb
),
3866 df_set_bb_dirty (test_bb
);
3867 df_set_bb_dirty (else_bb
);
3869 then_bb_index
= then_bb
->index
;
3870 delete_basic_block (then_bb
);
3872 /* Make rest of code believe that the newly created block is the THEN_BB
3873 block we removed. */
3876 df_bb_replace (then_bb_index
, new_bb
);
3877 /* Since the fallthru edge was redirected from test_bb to new_bb,
3878 we need to ensure that new_bb is in the same partition as
3879 test bb (you can not fall through across section boundaries). */
3880 BB_COPY_PARTITION (new_bb
, test_bb
);
3884 num_updated_if_blocks
++;
3889 /* Test for case 2 above. */
3892 find_if_case_2 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3894 basic_block then_bb
= then_edge
->dest
;
3895 basic_block else_bb
= else_edge
->dest
;
3899 /* If we are partitioning hot/cold basic blocks, we don't want to
3900 mess up unconditional or indirect jumps that cross between hot
3903 Basic block partitioning may result in some jumps that appear to
3904 be optimizable (or blocks that appear to be mergeable), but which really
3905 must be left untouched (they are required to make it safely across
3906 partition boundaries). See the comments at the top of
3907 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3909 if ((BB_END (then_bb
)
3910 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3911 || (BB_END (test_bb
)
3912 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3913 || (BB_END (else_bb
)
3914 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3918 /* ELSE has one successor. */
3919 if (!single_succ_p (else_bb
))
3922 else_succ
= single_succ_edge (else_bb
);
3924 /* ELSE outgoing edge is not complex. */
3925 if (else_succ
->flags
& EDGE_COMPLEX
)
3928 /* ELSE has one predecessor. */
3929 if (!single_pred_p (else_bb
))
3932 /* THEN is not EXIT. */
3933 if (then_bb
->index
< NUM_FIXED_BLOCKS
)
3936 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
3937 note
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
3938 if (note
&& INTVAL (XEXP (note
, 0)) >= REG_BR_PROB_BASE
/ 2)
3940 else if (else_succ
->dest
->index
< NUM_FIXED_BLOCKS
3941 || dominated_by_p (CDI_POST_DOMINATORS
, then_bb
,
3947 num_possible_if_blocks
++;
3950 "\nIF-CASE-2 found, start %d, else %d\n",
3951 test_bb
->index
, else_bb
->index
);
3953 /* ELSE is small. */
3954 if (! cheap_bb_rtx_cost_p (else_bb
,
3955 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge
->src
),
3956 predictable_edge_p (else_edge
)))))
3959 /* Registers set are dead, or are predicable. */
3960 if (! dead_or_predicable (test_bb
, else_bb
, then_bb
, else_succ
->dest
, 0))
3963 /* Conversion went ok, including moving the insns and fixing up the
3964 jump. Adjust the CFG to match. */
3966 df_set_bb_dirty (test_bb
);
3967 df_set_bb_dirty (then_bb
);
3968 delete_basic_block (else_bb
);
3971 num_updated_if_blocks
++;
3973 /* ??? We may now fallthru from one of THEN's successors into a join
3974 block. Rerun cleanup_cfg? Examine things manually? Wait? */
3979 /* A subroutine of dead_or_predicable called through for_each_rtx.
3980 Return 1 if a memory is found. */
3983 find_memory (rtx
*px
, void *data ATTRIBUTE_UNUSED
)
3988 /* Used by the code above to perform the actual rtl transformations.
3989 Return TRUE if successful.
3991 TEST_BB is the block containing the conditional branch. MERGE_BB
3992 is the block containing the code to manipulate. NEW_DEST is the
3993 label TEST_BB should be branching to after the conversion.
3994 REVERSEP is true if the sense of the branch should be reversed. */
3997 dead_or_predicable (basic_block test_bb
, basic_block merge_bb
,
3998 basic_block other_bb
, basic_block new_dest
, int reversep
)
4000 rtx head
, end
, jump
, earliest
= NULL_RTX
, old_dest
, new_label
= NULL_RTX
;
4001 /* Number of pending changes. */
4002 int n_validated_changes
= 0;
4004 jump
= BB_END (test_bb
);
4006 /* Find the extent of the real code in the merge block. */
4007 head
= BB_HEAD (merge_bb
);
4008 end
= BB_END (merge_bb
);
4010 while (DEBUG_INSN_P (end
) && end
!= head
)
4011 end
= PREV_INSN (end
);
4013 /* If merge_bb ends with a tablejump, predicating/moving insn's
4014 into test_bb and then deleting merge_bb will result in the jumptable
4015 that follows merge_bb being removed along with merge_bb and then we
4016 get an unresolved reference to the jumptable. */
4017 if (tablejump_p (end
, NULL
, NULL
))
4021 head
= NEXT_INSN (head
);
4022 while (DEBUG_INSN_P (head
) && head
!= end
)
4023 head
= NEXT_INSN (head
);
4028 head
= end
= NULL_RTX
;
4031 head
= NEXT_INSN (head
);
4032 while (DEBUG_INSN_P (head
) && head
!= end
)
4033 head
= NEXT_INSN (head
);
4040 head
= end
= NULL_RTX
;
4043 end
= PREV_INSN (end
);
4044 while (DEBUG_INSN_P (end
) && end
!= head
)
4045 end
= PREV_INSN (end
);
4048 /* Disable handling dead code by conditional execution if the machine needs
4049 to do anything funny with the tests, etc. */
4050 #ifndef IFCVT_MODIFY_TESTS
4051 if (targetm
.have_conditional_execution ())
4053 /* In the conditional execution case, we have things easy. We know
4054 the condition is reversible. We don't have to check life info
4055 because we're going to conditionally execute the code anyway.
4056 All that's left is making sure the insns involved can actually
4061 cond
= cond_exec_get_condition (jump
);
4065 prob_val
= find_reg_note (jump
, REG_BR_PROB
, NULL_RTX
);
4067 prob_val
= XEXP (prob_val
, 0);
4071 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
4074 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
4077 prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (prob_val
));
4080 if (cond_exec_process_insns (NULL
, head
, end
, cond
, prob_val
, 0)
4081 && verify_changes (0))
4082 n_validated_changes
= num_validated_changes ();
4089 /* Try the NCE path if the CE path did not result in any changes. */
4090 if (n_validated_changes
== 0)
4092 /* In the non-conditional execution case, we have to verify that there
4093 are no trapping operations, no calls, no references to memory, and
4094 that any registers modified are dead at the branch site. */
4096 rtx insn
, cond
, prev
;
4097 bitmap merge_set
, merge_set_noclobber
, test_live
, test_set
;
4098 unsigned i
, fail
= 0;
4101 /* Check for no calls or trapping operations. */
4102 for (insn
= head
; ; insn
= NEXT_INSN (insn
))
4106 if (NONDEBUG_INSN_P (insn
))
4108 if (may_trap_p (PATTERN (insn
)))
4111 /* ??? Even non-trapping memories such as stack frame
4112 references must be avoided. For stores, we collect
4113 no lifetime info; for reads, we'd have to assert
4114 true_dependence false against every store in the
4116 if (for_each_rtx (&PATTERN (insn
), find_memory
, NULL
))
4123 if (! any_condjump_p (jump
))
4126 /* Find the extent of the conditional. */
4127 cond
= noce_get_condition (jump
, &earliest
, false);
4132 MERGE_SET = set of registers set in MERGE_BB
4133 MERGE_SET_NOCLOBBER = like MERGE_SET, but only includes registers
4134 that are really set, not just clobbered.
4135 TEST_LIVE = set of registers live at EARLIEST
4136 TEST_SET = set of registers set between EARLIEST and the
4137 end of the block. */
4139 merge_set
= BITMAP_ALLOC (®_obstack
);
4140 merge_set_noclobber
= BITMAP_ALLOC (®_obstack
);
4141 test_live
= BITMAP_ALLOC (®_obstack
);
4142 test_set
= BITMAP_ALLOC (®_obstack
);
4144 /* ??? bb->local_set is only valid during calculate_global_regs_live,
4145 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
4146 since we've already asserted that MERGE_BB is small. */
4147 /* If we allocated new pseudos (e.g. in the conditional move
4148 expander called from noce_emit_cmove), we must resize the
4150 if (max_regno
< max_reg_num ())
4151 max_regno
= max_reg_num ();
4153 FOR_BB_INSNS (merge_bb
, insn
)
4155 if (NONDEBUG_INSN_P (insn
))
4157 df_simulate_find_defs (insn
, merge_set
);
4158 df_simulate_find_noclobber_defs (insn
, merge_set_noclobber
);
4162 /* For small register class machines, don't lengthen lifetimes of
4163 hard registers before reload. */
4164 if (! reload_completed
4165 && targetm
.small_register_classes_for_mode_p (VOIDmode
))
4167 EXECUTE_IF_SET_IN_BITMAP (merge_set_noclobber
, 0, i
, bi
)
4169 if (i
< FIRST_PSEUDO_REGISTER
4171 && ! global_regs
[i
])
4176 /* For TEST, we're interested in a range of insns, not a whole block.
4177 Moreover, we're interested in the insns live from OTHER_BB. */
4179 /* The loop below takes the set of live registers
4180 after JUMP, and calculates the live set before EARLIEST. */
4181 bitmap_copy (test_live
, df_get_live_in (other_bb
));
4182 df_simulate_initialize_backwards (test_bb
, test_live
);
4183 for (insn
= jump
; ; insn
= prev
)
4187 df_simulate_find_defs (insn
, test_set
);
4188 df_simulate_one_insn_backwards (test_bb
, insn
, test_live
);
4190 prev
= PREV_INSN (insn
);
4191 if (insn
== earliest
)
4195 /* We can perform the transformation if
4196 MERGE_SET_NOCLOBBER & TEST_SET
4198 MERGE_SET & TEST_LIVE)
4200 TEST_SET & DF_LIVE_IN (merge_bb)
4203 if (bitmap_intersect_p (test_set
, merge_set_noclobber
)
4204 || bitmap_intersect_p (test_live
, merge_set
)
4205 || bitmap_intersect_p (test_set
, df_get_live_in (merge_bb
)))
4208 BITMAP_FREE (merge_set_noclobber
);
4209 BITMAP_FREE (merge_set
);
4210 BITMAP_FREE (test_live
);
4211 BITMAP_FREE (test_set
);
4218 /* We don't want to use normal invert_jump or redirect_jump because
4219 we don't want to delete_insn called. Also, we want to do our own
4220 change group management. */
4222 old_dest
= JUMP_LABEL (jump
);
4223 if (other_bb
!= new_dest
)
4225 new_label
= block_label (new_dest
);
4227 ? ! invert_jump_1 (jump
, new_label
)
4228 : ! redirect_jump_1 (jump
, new_label
))
4232 if (verify_changes (n_validated_changes
))
4233 confirm_change_group ();
4237 if (other_bb
!= new_dest
)
4239 redirect_jump_2 (jump
, old_dest
, new_label
, 0, reversep
);
4241 redirect_edge_succ (BRANCH_EDGE (test_bb
), new_dest
);
4244 gcov_type count
, probability
;
4245 count
= BRANCH_EDGE (test_bb
)->count
;
4246 BRANCH_EDGE (test_bb
)->count
= FALLTHRU_EDGE (test_bb
)->count
;
4247 FALLTHRU_EDGE (test_bb
)->count
= count
;
4248 probability
= BRANCH_EDGE (test_bb
)->probability
;
4249 BRANCH_EDGE (test_bb
)->probability
4250 = FALLTHRU_EDGE (test_bb
)->probability
;
4251 FALLTHRU_EDGE (test_bb
)->probability
= probability
;
4252 update_br_prob_note (test_bb
);
4256 /* Move the insns out of MERGE_BB to before the branch. */
4261 if (end
== BB_END (merge_bb
))
4262 BB_END (merge_bb
) = PREV_INSN (head
);
4264 /* PR 21767: When moving insns above a conditional branch, REG_EQUAL
4265 notes might become invalid. */
4271 if (! INSN_P (insn
))
4273 note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
);
4276 set
= single_set (insn
);
4277 if (!set
|| !function_invariant_p (SET_SRC (set
))
4278 || !function_invariant_p (XEXP (note
, 0)))
4279 remove_note (insn
, note
);
4280 } while (insn
!= end
&& (insn
= NEXT_INSN (insn
)));
4282 reorder_insns (head
, end
, PREV_INSN (earliest
));
4285 /* Remove the jump and edge if we can. */
4286 if (other_bb
== new_dest
)
4289 remove_edge (BRANCH_EDGE (test_bb
));
4290 /* ??? Can't merge blocks here, as then_bb is still in use.
4291 At minimum, the merge will get done just before bb-reorder. */
4301 /* Main entry point for all if-conversion. */
4311 df_live_add_problem ();
4312 df_live_set_all_dirty ();
4315 num_possible_if_blocks
= 0;
4316 num_updated_if_blocks
= 0;
4317 num_true_changes
= 0;
4319 loop_optimizer_init (AVOID_CFG_MODIFICATIONS
);
4320 mark_loop_exit_edges ();
4321 loop_optimizer_finalize ();
4322 free_dominance_info (CDI_DOMINATORS
);
4324 /* Compute postdominators. */
4325 calculate_dominance_info (CDI_POST_DOMINATORS
);
4327 df_set_flags (DF_LR_RUN_DCE
);
4329 /* Go through each of the basic blocks looking for things to convert. If we
4330 have conditional execution, we make multiple passes to allow us to handle
4331 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
4336 /* Only need to do dce on the first pass. */
4337 df_clear_flags (DF_LR_RUN_DCE
);
4338 cond_exec_changed_p
= FALSE
;
4341 #ifdef IFCVT_MULTIPLE_DUMPS
4342 if (dump_file
&& pass
> 1)
4343 fprintf (dump_file
, "\n\n========== Pass %d ==========\n", pass
);
4349 while (!df_get_bb_dirty (bb
)
4350 && (new_bb
= find_if_header (bb
, pass
)) != NULL
)
4354 #ifdef IFCVT_MULTIPLE_DUMPS
4355 if (dump_file
&& cond_exec_changed_p
)
4357 if (dump_flags
& TDF_SLIM
)
4358 print_rtl_slim_with_bb (dump_file
, get_insns (), dump_flags
);
4360 print_rtl_with_bb (dump_file
, get_insns ());
4364 while (cond_exec_changed_p
);
4366 #ifdef IFCVT_MULTIPLE_DUMPS
4368 fprintf (dump_file
, "\n\n========== no more changes\n");
4371 free_dominance_info (CDI_POST_DOMINATORS
);
4376 clear_aux_for_blocks ();
4378 /* If we allocated new pseudos, we must resize the array for sched1. */
4379 if (max_regno
< max_reg_num ())
4380 max_regno
= max_reg_num ();
4382 /* Write the final stats. */
4383 if (dump_file
&& num_possible_if_blocks
> 0)
4386 "\n%d possible IF blocks searched.\n",
4387 num_possible_if_blocks
);
4389 "%d IF blocks converted.\n",
4390 num_updated_if_blocks
);
4392 "%d true changes made.\n\n\n",
4397 df_remove_problem (df_live
);
4399 #ifdef ENABLE_CHECKING
4400 verify_flow_info ();
4405 gate_handle_if_conversion (void)
4407 return (optimize
> 0)
4408 && dbg_cnt (if_conversion
);
4411 /* If-conversion and CFG cleanup. */
4413 rest_of_handle_if_conversion (void)
4415 if (flag_if_conversion
)
4418 dump_flow_info (dump_file
, dump_flags
);
4419 cleanup_cfg (CLEANUP_EXPENSIVE
);
4427 struct rtl_opt_pass pass_rtl_ifcvt
=
4432 gate_handle_if_conversion
, /* gate */
4433 rest_of_handle_if_conversion
, /* execute */
4436 0, /* static_pass_number */
4437 TV_IFCVT
, /* tv_id */
4438 0, /* properties_required */
4439 0, /* properties_provided */
4440 0, /* properties_destroyed */
4441 0, /* todo_flags_start */
4442 TODO_df_finish
| TODO_verify_rtl_sharing
|
4443 TODO_dump_func
/* todo_flags_finish */
4448 gate_handle_if_after_combine (void)
4450 return optimize
> 0 && flag_if_conversion
4451 && dbg_cnt (if_after_combine
);
4455 /* Rerun if-conversion, as combine may have simplified things enough
4456 to now meet sequence length restrictions. */
4458 rest_of_handle_if_after_combine (void)
4464 struct rtl_opt_pass pass_if_after_combine
=
4469 gate_handle_if_after_combine
, /* gate */
4470 rest_of_handle_if_after_combine
, /* execute */
4473 0, /* static_pass_number */
4474 TV_IFCVT
, /* tv_id */
4475 0, /* properties_required */
4476 0, /* properties_provided */
4477 0, /* properties_destroyed */
4478 0, /* todo_flags_start */
4479 TODO_df_finish
| TODO_verify_rtl_sharing
|
4481 TODO_ggc_collect
/* todo_flags_finish */
4487 gate_handle_if_after_reload (void)
4489 return optimize
> 0 && flag_if_conversion2
4490 && dbg_cnt (if_after_reload
);
4494 rest_of_handle_if_after_reload (void)
4501 struct rtl_opt_pass pass_if_after_reload
=
4506 gate_handle_if_after_reload
, /* gate */
4507 rest_of_handle_if_after_reload
, /* execute */
4510 0, /* static_pass_number */
4511 TV_IFCVT2
, /* tv_id */
4512 0, /* properties_required */
4513 0, /* properties_provided */
4514 0, /* properties_destroyed */
4515 0, /* todo_flags_start */
4516 TODO_df_finish
| TODO_verify_rtl_sharing
|
4518 TODO_ggc_collect
/* todo_flags_finish */