1 /* If-conversion support.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
24 #include "coretypes.h"
31 #include "insn-config.h"
34 #include "hard-reg-set.h"
35 #include "basic-block.h"
45 #include "tree-pass.h"
48 #ifndef HAVE_conditional_execution
49 #define HAVE_conditional_execution 0
51 #ifndef HAVE_conditional_move
52 #define HAVE_conditional_move 0
63 #ifndef HAVE_conditional_trap
64 #define HAVE_conditional_trap 0
67 #ifndef MAX_CONDITIONAL_EXECUTE
68 #define MAX_CONDITIONAL_EXECUTE (BRANCH_COST + 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 which require life information to be updated. */
81 static int num_true_changes
;
83 /* Whether conditional execution changes were made. */
84 static int cond_exec_changed_p
;
86 /* True if life data ok at present. */
87 static bool life_data_ok
;
89 /* Forward references. */
90 static int count_bb_insns (basic_block
);
91 static bool cheap_bb_rtx_cost_p (basic_block
, int);
92 static rtx
first_active_insn (basic_block
);
93 static rtx
last_active_insn (basic_block
, int);
94 static basic_block
block_fallthru (basic_block
);
95 static int cond_exec_process_insns (ce_if_block_t
*, rtx
, rtx
, rtx
, rtx
, int);
96 static rtx
cond_exec_get_condition (rtx
);
97 static int cond_exec_process_if_block (ce_if_block_t
*, int);
98 static rtx
noce_get_condition (rtx
, rtx
*);
99 static int noce_operand_ok (rtx
);
100 static int noce_process_if_block (ce_if_block_t
*);
101 static int process_if_block (ce_if_block_t
*);
102 static void merge_if_block (ce_if_block_t
*);
103 static int find_cond_trap (basic_block
, edge
, edge
);
104 static basic_block
find_if_header (basic_block
, int);
105 static int block_jumps_and_fallthru_p (basic_block
, basic_block
);
106 static int find_if_block (ce_if_block_t
*);
107 static int find_if_case_1 (basic_block
, edge
, edge
);
108 static int find_if_case_2 (basic_block
, edge
, edge
);
109 static int find_memory (rtx
*, void *);
110 static int dead_or_predicable (basic_block
, basic_block
, basic_block
,
112 static void noce_emit_move_insn (rtx
, rtx
);
113 static rtx
block_has_only_trap (basic_block
);
115 /* Count the number of non-jump active insns in BB. */
118 count_bb_insns (basic_block bb
)
121 rtx insn
= BB_HEAD (bb
);
125 if (CALL_P (insn
) || NONJUMP_INSN_P (insn
))
128 if (insn
== BB_END (bb
))
130 insn
= NEXT_INSN (insn
);
136 /* Determine whether the total insn_rtx_cost on non-jump insns in
137 basic block BB is less than MAX_COST. This function returns
138 false if the cost of any instruction could not be estimated. */
141 cheap_bb_rtx_cost_p (basic_block bb
, int max_cost
)
144 rtx insn
= BB_HEAD (bb
);
148 if (NONJUMP_INSN_P (insn
))
150 int cost
= insn_rtx_cost (PATTERN (insn
));
154 /* If this instruction is the load or set of a "stack" register,
155 such as a floating point register on x87, then the cost of
156 speculatively executing this instruction needs to include
157 the additional cost of popping this register off of the
161 rtx set
= single_set (insn
);
162 if (set
&& STACK_REG_P (SET_DEST (set
)))
163 cost
+= COSTS_N_INSNS (1);
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
))
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
);
220 && NONJUMP_INSN_P (insn
)
221 && GET_CODE (PATTERN (insn
)) == USE
))
225 insn
= PREV_INSN (insn
);
234 /* Return the basic block reached by falling though the basic block BB. */
237 block_fallthru (basic_block bb
)
242 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
243 if (e
->flags
& EDGE_FALLTHRU
)
246 return (e
) ? e
->dest
: NULL_BLOCK
;
249 /* Go through a bunch of insns, converting them to conditional
250 execution format if possible. Return TRUE if all of the non-note
251 insns were processed. */
254 cond_exec_process_insns (ce_if_block_t
*ce_info ATTRIBUTE_UNUSED
,
255 /* if block information */rtx start
,
256 /* first insn to look at */rtx end
,
257 /* last insn to look at */rtx test
,
258 /* conditional execution test */rtx prob_val
,
259 /* probability of branch taken. */int mod_ok
)
261 int must_be_last
= FALSE
;
269 for (insn
= start
; ; insn
= NEXT_INSN (insn
))
274 gcc_assert(NONJUMP_INSN_P (insn
) || CALL_P (insn
));
276 /* Remove USE insns that get in the way. */
277 if (reload_completed
&& GET_CODE (PATTERN (insn
)) == USE
)
279 /* ??? Ug. Actually unlinking the thing is problematic,
280 given what we'd have to coordinate with our callers. */
281 SET_INSN_DELETED (insn
);
285 /* Last insn wasn't last? */
289 if (modified_in_p (test
, insn
))
296 /* Now build the conditional form of the instruction. */
297 pattern
= PATTERN (insn
);
298 xtest
= copy_rtx (test
);
300 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
302 if (GET_CODE (pattern
) == COND_EXEC
)
304 if (GET_MODE (xtest
) != GET_MODE (COND_EXEC_TEST (pattern
)))
307 xtest
= gen_rtx_AND (GET_MODE (xtest
), xtest
,
308 COND_EXEC_TEST (pattern
));
309 pattern
= COND_EXEC_CODE (pattern
);
312 pattern
= gen_rtx_COND_EXEC (VOIDmode
, xtest
, pattern
);
314 /* If the machine needs to modify the insn being conditionally executed,
315 say for example to force a constant integer operand into a temp
316 register, do so here. */
317 #ifdef IFCVT_MODIFY_INSN
318 IFCVT_MODIFY_INSN (ce_info
, pattern
, insn
);
323 validate_change (insn
, &PATTERN (insn
), pattern
, 1);
325 if (CALL_P (insn
) && prob_val
)
326 validate_change (insn
, ®_NOTES (insn
),
327 alloc_EXPR_LIST (REG_BR_PROB
, prob_val
,
328 REG_NOTES (insn
)), 1);
338 /* Return the condition for a jump. Do not do any special processing. */
341 cond_exec_get_condition (rtx jump
)
345 if (any_condjump_p (jump
))
346 test_if
= SET_SRC (pc_set (jump
));
349 cond
= XEXP (test_if
, 0);
351 /* If this branches to JUMP_LABEL when the condition is false,
352 reverse the condition. */
353 if (GET_CODE (XEXP (test_if
, 2)) == LABEL_REF
354 && XEXP (XEXP (test_if
, 2), 0) == JUMP_LABEL (jump
))
356 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
360 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
367 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
368 to conditional execution. Return TRUE if we were successful at
369 converting the block. */
372 cond_exec_process_if_block (ce_if_block_t
* ce_info
,
373 /* if block information */int do_multiple_p
)
375 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
376 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
377 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
378 rtx test_expr
; /* expression in IF_THEN_ELSE that is tested */
379 rtx then_start
; /* first insn in THEN block */
380 rtx then_end
; /* last insn + 1 in THEN block */
381 rtx else_start
= NULL_RTX
; /* first insn in ELSE block or NULL */
382 rtx else_end
= NULL_RTX
; /* last insn + 1 in ELSE block */
383 int max
; /* max # of insns to convert. */
384 int then_mod_ok
; /* whether conditional mods are ok in THEN */
385 rtx true_expr
; /* test for else block insns */
386 rtx false_expr
; /* test for then block insns */
387 rtx true_prob_val
; /* probability of else block */
388 rtx false_prob_val
; /* probability of then block */
390 enum rtx_code false_code
;
392 /* If test is comprised of && or || elements, and we've failed at handling
393 all of them together, just use the last test if it is the special case of
394 && elements without an ELSE block. */
395 if (!do_multiple_p
&& ce_info
->num_multiple_test_blocks
)
397 if (else_bb
|| ! ce_info
->and_and_p
)
400 ce_info
->test_bb
= test_bb
= ce_info
->last_test_bb
;
401 ce_info
->num_multiple_test_blocks
= 0;
402 ce_info
->num_and_and_blocks
= 0;
403 ce_info
->num_or_or_blocks
= 0;
406 /* Find the conditional jump to the ELSE or JOIN part, and isolate
408 test_expr
= cond_exec_get_condition (BB_END (test_bb
));
412 /* If the conditional jump is more than just a conditional jump,
413 then we can not do conditional execution conversion on this block. */
414 if (! onlyjump_p (BB_END (test_bb
)))
417 /* Collect the bounds of where we're to search, skipping any labels, jumps
418 and notes at the beginning and end of the block. Then count the total
419 number of insns and see if it is small enough to convert. */
420 then_start
= first_active_insn (then_bb
);
421 then_end
= last_active_insn (then_bb
, TRUE
);
422 n_insns
= ce_info
->num_then_insns
= count_bb_insns (then_bb
);
423 max
= MAX_CONDITIONAL_EXECUTE
;
428 else_start
= first_active_insn (else_bb
);
429 else_end
= last_active_insn (else_bb
, TRUE
);
430 n_insns
+= ce_info
->num_else_insns
= count_bb_insns (else_bb
);
436 /* Map test_expr/test_jump into the appropriate MD tests to use on
437 the conditionally executed code. */
439 true_expr
= test_expr
;
441 false_code
= reversed_comparison_code (true_expr
, BB_END (test_bb
));
442 if (false_code
!= UNKNOWN
)
443 false_expr
= gen_rtx_fmt_ee (false_code
, GET_MODE (true_expr
),
444 XEXP (true_expr
, 0), XEXP (true_expr
, 1));
446 false_expr
= NULL_RTX
;
448 #ifdef IFCVT_MODIFY_TESTS
449 /* If the machine description needs to modify the tests, such as setting a
450 conditional execution register from a comparison, it can do so here. */
451 IFCVT_MODIFY_TESTS (ce_info
, true_expr
, false_expr
);
453 /* See if the conversion failed. */
454 if (!true_expr
|| !false_expr
)
458 true_prob_val
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
461 true_prob_val
= XEXP (true_prob_val
, 0);
462 false_prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (true_prob_val
));
465 false_prob_val
= NULL_RTX
;
467 /* If we have && or || tests, do them here. These tests are in the adjacent
468 blocks after the first block containing the test. */
469 if (ce_info
->num_multiple_test_blocks
> 0)
471 basic_block bb
= test_bb
;
472 basic_block last_test_bb
= ce_info
->last_test_bb
;
481 enum rtx_code f_code
;
483 bb
= block_fallthru (bb
);
484 start
= first_active_insn (bb
);
485 end
= last_active_insn (bb
, TRUE
);
487 && ! cond_exec_process_insns (ce_info
, start
, end
, false_expr
,
488 false_prob_val
, FALSE
))
491 /* If the conditional jump is more than just a conditional jump, then
492 we can not do conditional execution conversion on this block. */
493 if (! onlyjump_p (BB_END (bb
)))
496 /* Find the conditional jump and isolate the test. */
497 t
= cond_exec_get_condition (BB_END (bb
));
501 f_code
= reversed_comparison_code (t
, BB_END (bb
));
502 if (f_code
== UNKNOWN
)
505 f
= gen_rtx_fmt_ee (f_code
, GET_MODE (t
), XEXP (t
, 0), XEXP (t
, 1));
506 if (ce_info
->and_and_p
)
508 t
= gen_rtx_AND (GET_MODE (t
), true_expr
, t
);
509 f
= gen_rtx_IOR (GET_MODE (t
), false_expr
, f
);
513 t
= gen_rtx_IOR (GET_MODE (t
), true_expr
, t
);
514 f
= gen_rtx_AND (GET_MODE (t
), false_expr
, f
);
517 /* If the machine description needs to modify the tests, such as
518 setting a conditional execution register from a comparison, it can
520 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
521 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info
, bb
, t
, f
);
523 /* See if the conversion failed. */
531 while (bb
!= last_test_bb
);
534 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
535 on then THEN block. */
536 then_mod_ok
= (else_bb
== NULL_BLOCK
);
538 /* Go through the THEN and ELSE blocks converting the insns if possible
539 to conditional execution. */
543 || ! cond_exec_process_insns (ce_info
, then_start
, then_end
,
544 false_expr
, false_prob_val
,
548 if (else_bb
&& else_end
549 && ! cond_exec_process_insns (ce_info
, else_start
, else_end
,
550 true_expr
, true_prob_val
, TRUE
))
553 /* If we cannot apply the changes, fail. Do not go through the normal fail
554 processing, since apply_change_group will call cancel_changes. */
555 if (! apply_change_group ())
557 #ifdef IFCVT_MODIFY_CANCEL
558 /* Cancel any machine dependent changes. */
559 IFCVT_MODIFY_CANCEL (ce_info
);
564 #ifdef IFCVT_MODIFY_FINAL
565 /* Do any machine dependent final modifications. */
566 IFCVT_MODIFY_FINAL (ce_info
);
569 /* Conversion succeeded. */
571 fprintf (dump_file
, "%d insn%s converted to conditional execution.\n",
572 n_insns
, (n_insns
== 1) ? " was" : "s were");
574 /* Merge the blocks! */
575 merge_if_block (ce_info
);
576 cond_exec_changed_p
= TRUE
;
580 #ifdef IFCVT_MODIFY_CANCEL
581 /* Cancel any machine dependent changes. */
582 IFCVT_MODIFY_CANCEL (ce_info
);
589 /* Used by noce_process_if_block to communicate with its subroutines.
591 The subroutines know that A and B may be evaluated freely. They
592 know that X is a register. They should insert new instructions
593 before cond_earliest. */
600 rtx jump
, cond
, cond_earliest
;
601 /* True if "b" was originally evaluated unconditionally. */
602 bool b_unconditional
;
605 static rtx
noce_emit_store_flag (struct noce_if_info
*, rtx
, int, int);
606 static int noce_try_move (struct noce_if_info
*);
607 static int noce_try_store_flag (struct noce_if_info
*);
608 static int noce_try_addcc (struct noce_if_info
*);
609 static int noce_try_store_flag_constants (struct noce_if_info
*);
610 static int noce_try_store_flag_mask (struct noce_if_info
*);
611 static rtx
noce_emit_cmove (struct noce_if_info
*, rtx
, enum rtx_code
, rtx
,
613 static int noce_try_cmove (struct noce_if_info
*);
614 static int noce_try_cmove_arith (struct noce_if_info
*);
615 static rtx
noce_get_alt_condition (struct noce_if_info
*, rtx
, rtx
*);
616 static int noce_try_minmax (struct noce_if_info
*);
617 static int noce_try_abs (struct noce_if_info
*);
618 static int noce_try_sign_mask (struct noce_if_info
*);
620 /* Helper function for noce_try_store_flag*. */
623 noce_emit_store_flag (struct noce_if_info
*if_info
, rtx x
, int reversep
,
626 rtx cond
= if_info
->cond
;
630 cond_complex
= (! general_operand (XEXP (cond
, 0), VOIDmode
)
631 || ! general_operand (XEXP (cond
, 1), VOIDmode
));
633 /* If earliest == jump, or when the condition is complex, try to
634 build the store_flag insn directly. */
637 cond
= XEXP (SET_SRC (pc_set (if_info
->jump
)), 0);
640 code
= reversed_comparison_code (cond
, if_info
->jump
);
642 code
= GET_CODE (cond
);
644 if ((if_info
->cond_earliest
== if_info
->jump
|| cond_complex
)
645 && (normalize
== 0 || STORE_FLAG_VALUE
== normalize
))
649 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (x
), XEXP (cond
, 0),
651 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
654 tmp
= emit_insn (tmp
);
656 if (recog_memoized (tmp
) >= 0)
662 if_info
->cond_earliest
= if_info
->jump
;
670 /* Don't even try if the comparison operands or the mode of X are weird. */
671 if (cond_complex
|| !SCALAR_INT_MODE_P (GET_MODE (x
)))
674 return emit_store_flag (x
, code
, XEXP (cond
, 0),
675 XEXP (cond
, 1), VOIDmode
,
676 (code
== LTU
|| code
== LEU
677 || code
== GEU
|| code
== GTU
), normalize
);
680 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
681 X is the destination/target and Y is the value to copy. */
684 noce_emit_move_insn (rtx x
, rtx y
)
686 enum machine_mode outmode
;
690 if (GET_CODE (x
) != STRICT_LOW_PART
)
692 rtx seq
, insn
, target
;
696 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
697 otherwise construct a suitable SET pattern ourselves. */
698 insn
= (OBJECT_P (y
) || CONSTANT_P (y
) || GET_CODE (y
) == SUBREG
)
699 ? emit_move_insn (x
, y
)
700 : emit_insn (gen_rtx_SET (VOIDmode
, x
, y
));
704 if (recog_memoized (insn
) <= 0)
706 if (GET_CODE (x
) == ZERO_EXTRACT
)
708 rtx op
= XEXP (x
, 0);
709 unsigned HOST_WIDE_INT size
= INTVAL (XEXP (x
, 1));
710 unsigned HOST_WIDE_INT start
= INTVAL (XEXP (x
, 2));
712 /* store_bit_field expects START to be relative to
713 BYTES_BIG_ENDIAN and adjusts this value for machines with
714 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
715 invoke store_bit_field again it is necessary to have the START
716 value from the first call. */
717 if (BITS_BIG_ENDIAN
!= BYTES_BIG_ENDIAN
)
720 start
= BITS_PER_UNIT
- start
- size
;
723 gcc_assert (REG_P (op
));
724 start
= BITS_PER_WORD
- start
- size
;
728 gcc_assert (start
< (MEM_P (op
) ? BITS_PER_UNIT
: BITS_PER_WORD
));
729 store_bit_field (op
, size
, start
, GET_MODE (x
), y
);
733 switch (GET_RTX_CLASS (GET_CODE (y
)))
736 ot
= code_to_optab
[GET_CODE (y
)];
740 target
= expand_unop (GET_MODE (y
), ot
, XEXP (y
, 0), x
, 0);
741 if (target
!= NULL_RTX
)
744 emit_move_insn (x
, target
);
753 ot
= code_to_optab
[GET_CODE (y
)];
757 target
= expand_binop (GET_MODE (y
), ot
,
758 XEXP (y
, 0), XEXP (y
, 1),
760 if (target
!= NULL_RTX
)
763 emit_move_insn (x
, target
);
780 inner
= XEXP (outer
, 0);
781 outmode
= GET_MODE (outer
);
782 bitpos
= SUBREG_BYTE (outer
) * BITS_PER_UNIT
;
783 store_bit_field (inner
, GET_MODE_BITSIZE (outmode
), bitpos
, outmode
, y
);
786 /* Return sequence of instructions generated by if conversion. This
787 function calls end_sequence() to end the current stream, ensures
788 that are instructions are unshared, recognizable non-jump insns.
789 On failure, this function returns a NULL_RTX. */
792 end_ifcvt_sequence (struct noce_if_info
*if_info
)
795 rtx seq
= get_insns ();
797 set_used_flags (if_info
->x
);
798 set_used_flags (if_info
->cond
);
799 unshare_all_rtl_in_chain (seq
);
802 /* Make sure that all of the instructions emitted are recognizable,
803 and that we haven't introduced a new jump instruction.
804 As an exercise for the reader, build a general mechanism that
805 allows proper placement of required clobbers. */
806 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
808 || recog_memoized (insn
) == -1)
814 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
815 "if (a == b) x = a; else x = b" into "x = b". */
818 noce_try_move (struct noce_if_info
*if_info
)
820 rtx cond
= if_info
->cond
;
821 enum rtx_code code
= GET_CODE (cond
);
824 if (code
!= NE
&& code
!= EQ
)
827 /* This optimization isn't valid if either A or B could be a NaN
829 if (HONOR_NANS (GET_MODE (if_info
->x
))
830 || HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
)))
833 /* Check whether the operands of the comparison are A and in
835 if ((rtx_equal_p (if_info
->a
, XEXP (cond
, 0))
836 && rtx_equal_p (if_info
->b
, XEXP (cond
, 1)))
837 || (rtx_equal_p (if_info
->a
, XEXP (cond
, 1))
838 && rtx_equal_p (if_info
->b
, XEXP (cond
, 0))))
840 y
= (code
== EQ
) ? if_info
->a
: if_info
->b
;
842 /* Avoid generating the move if the source is the destination. */
843 if (! rtx_equal_p (if_info
->x
, y
))
846 noce_emit_move_insn (if_info
->x
, y
);
847 seq
= end_ifcvt_sequence (if_info
);
851 emit_insn_before_setloc (seq
, if_info
->jump
,
852 INSN_LOCATOR (if_info
->insn_a
));
859 /* Convert "if (test) x = 1; else x = 0".
861 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
862 tried in noce_try_store_flag_constants after noce_try_cmove has had
863 a go at the conversion. */
866 noce_try_store_flag (struct noce_if_info
*if_info
)
871 if (GET_CODE (if_info
->b
) == CONST_INT
872 && INTVAL (if_info
->b
) == STORE_FLAG_VALUE
873 && if_info
->a
== const0_rtx
)
875 else if (if_info
->b
== const0_rtx
876 && GET_CODE (if_info
->a
) == CONST_INT
877 && INTVAL (if_info
->a
) == STORE_FLAG_VALUE
878 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
886 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, 0);
889 if (target
!= if_info
->x
)
890 noce_emit_move_insn (if_info
->x
, target
);
892 seq
= end_ifcvt_sequence (if_info
);
896 emit_insn_before_setloc (seq
, if_info
->jump
,
897 INSN_LOCATOR (if_info
->insn_a
));
907 /* Convert "if (test) x = a; else x = b", for A and B constant. */
910 noce_try_store_flag_constants (struct noce_if_info
*if_info
)
914 HOST_WIDE_INT itrue
, ifalse
, diff
, tmp
;
915 int normalize
, can_reverse
;
916 enum machine_mode mode
;
919 && GET_CODE (if_info
->a
) == CONST_INT
920 && GET_CODE (if_info
->b
) == CONST_INT
)
922 mode
= GET_MODE (if_info
->x
);
923 ifalse
= INTVAL (if_info
->a
);
924 itrue
= INTVAL (if_info
->b
);
926 /* Make sure we can represent the difference between the two values. */
927 if ((itrue
- ifalse
> 0)
928 != ((ifalse
< 0) != (itrue
< 0) ? ifalse
< 0 : ifalse
< itrue
))
931 diff
= trunc_int_for_mode (itrue
- ifalse
, mode
);
933 can_reverse
= (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
937 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
939 else if (ifalse
== 0 && exact_log2 (itrue
) >= 0
940 && (STORE_FLAG_VALUE
== 1
941 || BRANCH_COST
>= 2))
943 else if (itrue
== 0 && exact_log2 (ifalse
) >= 0 && can_reverse
944 && (STORE_FLAG_VALUE
== 1 || BRANCH_COST
>= 2))
945 normalize
= 1, reversep
= 1;
947 && (STORE_FLAG_VALUE
== -1
948 || BRANCH_COST
>= 2))
950 else if (ifalse
== -1 && can_reverse
951 && (STORE_FLAG_VALUE
== -1 || BRANCH_COST
>= 2))
952 normalize
= -1, reversep
= 1;
953 else if ((BRANCH_COST
>= 2 && STORE_FLAG_VALUE
== -1)
961 tmp
= itrue
; itrue
= ifalse
; ifalse
= tmp
;
962 diff
= trunc_int_for_mode (-diff
, mode
);
966 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, normalize
);
973 /* if (test) x = 3; else x = 4;
974 => x = 3 + (test == 0); */
975 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
977 target
= expand_simple_binop (mode
,
978 (diff
== STORE_FLAG_VALUE
980 GEN_INT (ifalse
), target
, if_info
->x
, 0,
984 /* if (test) x = 8; else x = 0;
985 => x = (test != 0) << 3; */
986 else if (ifalse
== 0 && (tmp
= exact_log2 (itrue
)) >= 0)
988 target
= expand_simple_binop (mode
, ASHIFT
,
989 target
, GEN_INT (tmp
), if_info
->x
, 0,
993 /* if (test) x = -1; else x = b;
994 => x = -(test != 0) | b; */
995 else if (itrue
== -1)
997 target
= expand_simple_binop (mode
, IOR
,
998 target
, GEN_INT (ifalse
), if_info
->x
, 0,
1002 /* if (test) x = a; else x = b;
1003 => x = (-(test != 0) & (b - a)) + a; */
1006 target
= expand_simple_binop (mode
, AND
,
1007 target
, GEN_INT (diff
), if_info
->x
, 0,
1010 target
= expand_simple_binop (mode
, PLUS
,
1011 target
, GEN_INT (ifalse
),
1012 if_info
->x
, 0, OPTAB_WIDEN
);
1021 if (target
!= if_info
->x
)
1022 noce_emit_move_insn (if_info
->x
, target
);
1024 seq
= end_ifcvt_sequence (if_info
);
1028 emit_insn_before_setloc (seq
, if_info
->jump
,
1029 INSN_LOCATOR (if_info
->insn_a
));
1036 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1037 similarly for "foo--". */
1040 noce_try_addcc (struct noce_if_info
*if_info
)
1043 int subtract
, normalize
;
1045 if (! no_new_pseudos
1046 && GET_CODE (if_info
->a
) == PLUS
1047 && rtx_equal_p (XEXP (if_info
->a
, 0), if_info
->b
)
1048 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1051 rtx cond
= if_info
->cond
;
1052 enum rtx_code code
= reversed_comparison_code (cond
, if_info
->jump
);
1054 /* First try to use addcc pattern. */
1055 if (general_operand (XEXP (cond
, 0), VOIDmode
)
1056 && general_operand (XEXP (cond
, 1), VOIDmode
))
1059 target
= emit_conditional_add (if_info
->x
, code
,
1064 XEXP (if_info
->a
, 1),
1065 GET_MODE (if_info
->x
),
1066 (code
== LTU
|| code
== GEU
1067 || code
== LEU
|| code
== GTU
));
1070 if (target
!= if_info
->x
)
1071 noce_emit_move_insn (if_info
->x
, target
);
1073 seq
= end_ifcvt_sequence (if_info
);
1077 emit_insn_before_setloc (seq
, if_info
->jump
,
1078 INSN_LOCATOR (if_info
->insn_a
));
1084 /* If that fails, construct conditional increment or decrement using
1086 if (BRANCH_COST
>= 2
1087 && (XEXP (if_info
->a
, 1) == const1_rtx
1088 || XEXP (if_info
->a
, 1) == constm1_rtx
))
1091 if (STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1092 subtract
= 0, normalize
= 0;
1093 else if (-STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1094 subtract
= 1, normalize
= 0;
1096 subtract
= 0, normalize
= INTVAL (XEXP (if_info
->a
, 1));
1099 target
= noce_emit_store_flag (if_info
,
1100 gen_reg_rtx (GET_MODE (if_info
->x
)),
1104 target
= expand_simple_binop (GET_MODE (if_info
->x
),
1105 subtract
? MINUS
: PLUS
,
1106 if_info
->b
, target
, if_info
->x
,
1110 if (target
!= if_info
->x
)
1111 noce_emit_move_insn (if_info
->x
, target
);
1113 seq
= end_ifcvt_sequence (if_info
);
1117 emit_insn_before_setloc (seq
, if_info
->jump
,
1118 INSN_LOCATOR (if_info
->insn_a
));
1128 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1131 noce_try_store_flag_mask (struct noce_if_info
*if_info
)
1137 if (! no_new_pseudos
1138 && (BRANCH_COST
>= 2
1139 || STORE_FLAG_VALUE
== -1)
1140 && ((if_info
->a
== const0_rtx
1141 && rtx_equal_p (if_info
->b
, if_info
->x
))
1142 || ((reversep
= (reversed_comparison_code (if_info
->cond
,
1145 && if_info
->b
== const0_rtx
1146 && rtx_equal_p (if_info
->a
, if_info
->x
))))
1149 target
= noce_emit_store_flag (if_info
,
1150 gen_reg_rtx (GET_MODE (if_info
->x
)),
1153 target
= expand_simple_binop (GET_MODE (if_info
->x
), AND
,
1155 target
, if_info
->x
, 0,
1160 if (target
!= if_info
->x
)
1161 noce_emit_move_insn (if_info
->x
, target
);
1163 seq
= end_ifcvt_sequence (if_info
);
1167 emit_insn_before_setloc (seq
, if_info
->jump
,
1168 INSN_LOCATOR (if_info
->insn_a
));
1178 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1181 noce_emit_cmove (struct noce_if_info
*if_info
, rtx x
, enum rtx_code code
,
1182 rtx cmp_a
, rtx cmp_b
, rtx vfalse
, rtx vtrue
)
1184 /* If earliest == jump, try to build the cmove insn directly.
1185 This is helpful when combine has created some complex condition
1186 (like for alpha's cmovlbs) that we can't hope to regenerate
1187 through the normal interface. */
1189 if (if_info
->cond_earliest
== if_info
->jump
)
1193 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (if_info
->cond
), cmp_a
, cmp_b
);
1194 tmp
= gen_rtx_IF_THEN_ELSE (GET_MODE (x
), tmp
, vtrue
, vfalse
);
1195 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
1198 tmp
= emit_insn (tmp
);
1200 if (recog_memoized (tmp
) >= 0)
1212 /* Don't even try if the comparison operands are weird. */
1213 if (! general_operand (cmp_a
, GET_MODE (cmp_a
))
1214 || ! general_operand (cmp_b
, GET_MODE (cmp_b
)))
1217 #if HAVE_conditional_move
1218 return emit_conditional_move (x
, code
, cmp_a
, cmp_b
, VOIDmode
,
1219 vtrue
, vfalse
, GET_MODE (x
),
1220 (code
== LTU
|| code
== GEU
1221 || code
== LEU
|| code
== GTU
));
1223 /* We'll never get here, as noce_process_if_block doesn't call the
1224 functions involved. Ifdef code, however, should be discouraged
1225 because it leads to typos in the code not selected. However,
1226 emit_conditional_move won't exist either. */
1231 /* Try only simple constants and registers here. More complex cases
1232 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1233 has had a go at it. */
1236 noce_try_cmove (struct noce_if_info
*if_info
)
1241 if ((CONSTANT_P (if_info
->a
) || register_operand (if_info
->a
, VOIDmode
))
1242 && (CONSTANT_P (if_info
->b
) || register_operand (if_info
->b
, VOIDmode
)))
1246 code
= GET_CODE (if_info
->cond
);
1247 target
= noce_emit_cmove (if_info
, if_info
->x
, code
,
1248 XEXP (if_info
->cond
, 0),
1249 XEXP (if_info
->cond
, 1),
1250 if_info
->a
, if_info
->b
);
1254 if (target
!= if_info
->x
)
1255 noce_emit_move_insn (if_info
->x
, target
);
1257 seq
= end_ifcvt_sequence (if_info
);
1261 emit_insn_before_setloc (seq
, if_info
->jump
,
1262 INSN_LOCATOR (if_info
->insn_a
));
1275 /* Try more complex cases involving conditional_move. */
1278 noce_try_cmove_arith (struct noce_if_info
*if_info
)
1290 /* A conditional move from two memory sources is equivalent to a
1291 conditional on their addresses followed by a load. Don't do this
1292 early because it'll screw alias analysis. Note that we've
1293 already checked for no side effects. */
1294 if (! no_new_pseudos
&& cse_not_expected
1295 && MEM_P (a
) && MEM_P (b
)
1296 && BRANCH_COST
>= 5)
1300 x
= gen_reg_rtx (Pmode
);
1304 /* ??? We could handle this if we knew that a load from A or B could
1305 not fault. This is also true if we've already loaded
1306 from the address along the path from ENTRY. */
1307 else if (may_trap_p (a
) || may_trap_p (b
))
1310 /* if (test) x = a + b; else x = c - d;
1317 code
= GET_CODE (if_info
->cond
);
1318 insn_a
= if_info
->insn_a
;
1319 insn_b
= if_info
->insn_b
;
1321 /* Total insn_rtx_cost should be smaller than branch cost. Exit
1322 if insn_rtx_cost can't be estimated. */
1325 insn_cost
= insn_rtx_cost (PATTERN (insn_a
));
1326 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (BRANCH_COST
))
1335 insn_cost
+= insn_rtx_cost (PATTERN (insn_b
));
1336 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (BRANCH_COST
))
1340 /* Possibly rearrange operands to make things come out more natural. */
1341 if (reversed_comparison_code (if_info
->cond
, if_info
->jump
) != UNKNOWN
)
1344 if (rtx_equal_p (b
, x
))
1346 else if (general_operand (b
, GET_MODE (b
)))
1351 code
= reversed_comparison_code (if_info
->cond
, if_info
->jump
);
1352 tmp
= a
, a
= b
, b
= tmp
;
1353 tmp
= insn_a
, insn_a
= insn_b
, insn_b
= tmp
;
1362 /* If either operand is complex, load it into a register first.
1363 The best way to do this is to copy the original insn. In this
1364 way we preserve any clobbers etc that the insn may have had.
1365 This is of course not possible in the IS_MEM case. */
1366 if (! general_operand (a
, GET_MODE (a
)))
1371 goto end_seq_and_fail
;
1375 tmp
= gen_reg_rtx (GET_MODE (a
));
1376 tmp
= emit_insn (gen_rtx_SET (VOIDmode
, tmp
, a
));
1379 goto end_seq_and_fail
;
1382 a
= gen_reg_rtx (GET_MODE (a
));
1383 tmp
= copy_rtx (insn_a
);
1384 set
= single_set (tmp
);
1386 tmp
= emit_insn (PATTERN (tmp
));
1388 if (recog_memoized (tmp
) < 0)
1389 goto end_seq_and_fail
;
1391 if (! general_operand (b
, GET_MODE (b
)))
1396 goto end_seq_and_fail
;
1400 tmp
= gen_reg_rtx (GET_MODE (b
));
1401 tmp
= gen_rtx_SET (VOIDmode
, tmp
, b
);
1404 goto end_seq_and_fail
;
1407 b
= gen_reg_rtx (GET_MODE (b
));
1408 tmp
= copy_rtx (insn_b
);
1409 set
= single_set (tmp
);
1411 tmp
= PATTERN (tmp
);
1414 /* If insn to set up A clobbers any registers B depends on, try to
1415 swap insn that sets up A with the one that sets up B. If even
1416 that doesn't help, punt. */
1417 last
= get_last_insn ();
1418 if (last
&& modified_in_p (orig_b
, last
))
1420 tmp
= emit_insn_before (tmp
, get_insns ());
1421 if (modified_in_p (orig_a
, tmp
))
1422 goto end_seq_and_fail
;
1425 tmp
= emit_insn (tmp
);
1427 if (recog_memoized (tmp
) < 0)
1428 goto end_seq_and_fail
;
1431 target
= noce_emit_cmove (if_info
, x
, code
, XEXP (if_info
->cond
, 0),
1432 XEXP (if_info
->cond
, 1), a
, b
);
1435 goto end_seq_and_fail
;
1437 /* If we're handling a memory for above, emit the load now. */
1440 tmp
= gen_rtx_MEM (GET_MODE (if_info
->x
), target
);
1442 /* Copy over flags as appropriate. */
1443 if (MEM_VOLATILE_P (if_info
->a
) || MEM_VOLATILE_P (if_info
->b
))
1444 MEM_VOLATILE_P (tmp
) = 1;
1445 if (MEM_IN_STRUCT_P (if_info
->a
) && MEM_IN_STRUCT_P (if_info
->b
))
1446 MEM_IN_STRUCT_P (tmp
) = 1;
1447 if (MEM_SCALAR_P (if_info
->a
) && MEM_SCALAR_P (if_info
->b
))
1448 MEM_SCALAR_P (tmp
) = 1;
1449 if (MEM_ALIAS_SET (if_info
->a
) == MEM_ALIAS_SET (if_info
->b
))
1450 set_mem_alias_set (tmp
, MEM_ALIAS_SET (if_info
->a
));
1452 MIN (MEM_ALIGN (if_info
->a
), MEM_ALIGN (if_info
->b
)));
1454 noce_emit_move_insn (if_info
->x
, tmp
);
1456 else if (target
!= x
)
1457 noce_emit_move_insn (x
, target
);
1459 tmp
= end_ifcvt_sequence (if_info
);
1463 emit_insn_before_setloc (tmp
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1471 /* For most cases, the simplified condition we found is the best
1472 choice, but this is not the case for the min/max/abs transforms.
1473 For these we wish to know that it is A or B in the condition. */
1476 noce_get_alt_condition (struct noce_if_info
*if_info
, rtx target
,
1479 rtx cond
, set
, insn
;
1482 /* If target is already mentioned in the known condition, return it. */
1483 if (reg_mentioned_p (target
, if_info
->cond
))
1485 *earliest
= if_info
->cond_earliest
;
1486 return if_info
->cond
;
1489 set
= pc_set (if_info
->jump
);
1490 cond
= XEXP (SET_SRC (set
), 0);
1492 = GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
1493 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (if_info
->jump
);
1495 /* If we're looking for a constant, try to make the conditional
1496 have that constant in it. There are two reasons why it may
1497 not have the constant we want:
1499 1. GCC may have needed to put the constant in a register, because
1500 the target can't compare directly against that constant. For
1501 this case, we look for a SET immediately before the comparison
1502 that puts a constant in that register.
1504 2. GCC may have canonicalized the conditional, for example
1505 replacing "if x < 4" with "if x <= 3". We can undo that (or
1506 make equivalent types of changes) to get the constants we need
1507 if they're off by one in the right direction. */
1509 if (GET_CODE (target
) == CONST_INT
)
1511 enum rtx_code code
= GET_CODE (if_info
->cond
);
1512 rtx op_a
= XEXP (if_info
->cond
, 0);
1513 rtx op_b
= XEXP (if_info
->cond
, 1);
1516 /* First, look to see if we put a constant in a register. */
1517 prev_insn
= prev_nonnote_insn (if_info
->cond_earliest
);
1519 && INSN_P (prev_insn
)
1520 && GET_CODE (PATTERN (prev_insn
)) == SET
)
1522 rtx src
= find_reg_equal_equiv_note (prev_insn
);
1524 src
= SET_SRC (PATTERN (prev_insn
));
1525 if (GET_CODE (src
) == CONST_INT
)
1527 if (rtx_equal_p (op_a
, SET_DEST (PATTERN (prev_insn
))))
1529 else if (rtx_equal_p (op_b
, SET_DEST (PATTERN (prev_insn
))))
1532 if (GET_CODE (op_a
) == CONST_INT
)
1537 code
= swap_condition (code
);
1542 /* Now, look to see if we can get the right constant by
1543 adjusting the conditional. */
1544 if (GET_CODE (op_b
) == CONST_INT
)
1546 HOST_WIDE_INT desired_val
= INTVAL (target
);
1547 HOST_WIDE_INT actual_val
= INTVAL (op_b
);
1552 if (actual_val
== desired_val
+ 1)
1555 op_b
= GEN_INT (desired_val
);
1559 if (actual_val
== desired_val
- 1)
1562 op_b
= GEN_INT (desired_val
);
1566 if (actual_val
== desired_val
- 1)
1569 op_b
= GEN_INT (desired_val
);
1573 if (actual_val
== desired_val
+ 1)
1576 op_b
= GEN_INT (desired_val
);
1584 /* If we made any changes, generate a new conditional that is
1585 equivalent to what we started with, but has the right
1587 if (code
!= GET_CODE (if_info
->cond
)
1588 || op_a
!= XEXP (if_info
->cond
, 0)
1589 || op_b
!= XEXP (if_info
->cond
, 1))
1591 cond
= gen_rtx_fmt_ee (code
, GET_MODE (cond
), op_a
, op_b
);
1592 *earliest
= if_info
->cond_earliest
;
1597 cond
= canonicalize_condition (if_info
->jump
, cond
, reverse
,
1598 earliest
, target
, false, true);
1599 if (! cond
|| ! reg_mentioned_p (target
, cond
))
1602 /* We almost certainly searched back to a different place.
1603 Need to re-verify correct lifetimes. */
1605 /* X may not be mentioned in the range (cond_earliest, jump]. */
1606 for (insn
= if_info
->jump
; insn
!= *earliest
; insn
= PREV_INSN (insn
))
1607 if (INSN_P (insn
) && reg_overlap_mentioned_p (if_info
->x
, PATTERN (insn
)))
1610 /* A and B may not be modified in the range [cond_earliest, jump). */
1611 for (insn
= *earliest
; insn
!= if_info
->jump
; insn
= NEXT_INSN (insn
))
1613 && (modified_in_p (if_info
->a
, insn
)
1614 || modified_in_p (if_info
->b
, insn
)))
1620 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1623 noce_try_minmax (struct noce_if_info
*if_info
)
1625 rtx cond
, earliest
, target
, seq
;
1626 enum rtx_code code
, op
;
1629 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1633 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1634 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1635 to get the target to tell us... */
1636 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
))
1637 || HONOR_NANS (GET_MODE (if_info
->x
)))
1640 cond
= noce_get_alt_condition (if_info
, if_info
->a
, &earliest
);
1644 /* Verify the condition is of the form we expect, and canonicalize
1645 the comparison code. */
1646 code
= GET_CODE (cond
);
1647 if (rtx_equal_p (XEXP (cond
, 0), if_info
->a
))
1649 if (! rtx_equal_p (XEXP (cond
, 1), if_info
->b
))
1652 else if (rtx_equal_p (XEXP (cond
, 1), if_info
->a
))
1654 if (! rtx_equal_p (XEXP (cond
, 0), if_info
->b
))
1656 code
= swap_condition (code
);
1661 /* Determine what sort of operation this is. Note that the code is for
1662 a taken branch, so the code->operation mapping appears backwards. */
1695 target
= expand_simple_binop (GET_MODE (if_info
->x
), op
,
1696 if_info
->a
, if_info
->b
,
1697 if_info
->x
, unsignedp
, OPTAB_WIDEN
);
1703 if (target
!= if_info
->x
)
1704 noce_emit_move_insn (if_info
->x
, target
);
1706 seq
= end_ifcvt_sequence (if_info
);
1710 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1711 if_info
->cond
= cond
;
1712 if_info
->cond_earliest
= earliest
;
1717 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc. */
1720 noce_try_abs (struct noce_if_info
*if_info
)
1722 rtx cond
, earliest
, target
, seq
, a
, b
, c
;
1725 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1729 /* Recognize A and B as constituting an ABS or NABS. The canonical
1730 form is a branch around the negation, taken when the object is the
1731 first operand of a comparison against 0 that evaluates to true. */
1734 if (GET_CODE (a
) == NEG
&& rtx_equal_p (XEXP (a
, 0), b
))
1736 else if (GET_CODE (b
) == NEG
&& rtx_equal_p (XEXP (b
, 0), a
))
1738 c
= a
; a
= b
; b
= c
;
1744 cond
= noce_get_alt_condition (if_info
, b
, &earliest
);
1748 /* Verify the condition is of the form we expect. */
1749 if (rtx_equal_p (XEXP (cond
, 0), b
))
1751 else if (rtx_equal_p (XEXP (cond
, 1), b
))
1759 /* Verify that C is zero. Search one step backward for a
1760 REG_EQUAL note or a simple source if necessary. */
1763 rtx set
, insn
= prev_nonnote_insn (earliest
);
1765 && (set
= single_set (insn
))
1766 && rtx_equal_p (SET_DEST (set
), c
))
1768 rtx note
= find_reg_equal_equiv_note (insn
);
1778 && GET_CODE (XEXP (c
, 0)) == SYMBOL_REF
1779 && CONSTANT_POOL_ADDRESS_P (XEXP (c
, 0)))
1780 c
= get_pool_constant (XEXP (c
, 0));
1782 /* Work around funny ideas get_condition has wrt canonicalization.
1783 Note that these rtx constants are known to be CONST_INT, and
1784 therefore imply integer comparisons. */
1785 if (c
== constm1_rtx
&& GET_CODE (cond
) == GT
)
1787 else if (c
== const1_rtx
&& GET_CODE (cond
) == LT
)
1789 else if (c
!= CONST0_RTX (GET_MODE (b
)))
1792 /* Determine what sort of operation this is. */
1793 switch (GET_CODE (cond
))
1812 target
= expand_abs_nojump (GET_MODE (if_info
->x
), b
, if_info
->x
, 1);
1814 /* ??? It's a quandary whether cmove would be better here, especially
1815 for integers. Perhaps combine will clean things up. */
1816 if (target
&& negate
)
1817 target
= expand_simple_unop (GET_MODE (target
), NEG
, target
, if_info
->x
, 0);
1825 if (target
!= if_info
->x
)
1826 noce_emit_move_insn (if_info
->x
, target
);
1828 seq
= end_ifcvt_sequence (if_info
);
1832 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1833 if_info
->cond
= cond
;
1834 if_info
->cond_earliest
= earliest
;
1839 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
1842 noce_try_sign_mask (struct noce_if_info
*if_info
)
1844 rtx cond
, t
, m
, c
, seq
;
1845 enum machine_mode mode
;
1851 cond
= if_info
->cond
;
1852 code
= GET_CODE (cond
);
1857 if (if_info
->a
== const0_rtx
)
1859 if ((code
== LT
&& c
== const0_rtx
)
1860 || (code
== LE
&& c
== constm1_rtx
))
1863 else if (if_info
->b
== const0_rtx
)
1865 if ((code
== GE
&& c
== const0_rtx
)
1866 || (code
== GT
&& c
== constm1_rtx
))
1870 if (! t
|| side_effects_p (t
))
1873 /* We currently don't handle different modes. */
1874 mode
= GET_MODE (t
);
1875 if (GET_MODE (m
) != mode
)
1878 /* This is only profitable if T is cheap, or T is unconditionally
1879 executed/evaluated in the original insn sequence. */
1880 if (rtx_cost (t
, SET
) >= COSTS_N_INSNS (2)
1881 && (!if_info
->b_unconditional
1882 || t
!= if_info
->b
))
1886 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
1887 "(signed) m >> 31" directly. This benefits targets with specialized
1888 insns to obtain the signmask, but still uses ashr_optab otherwise. */
1889 m
= emit_store_flag (gen_reg_rtx (mode
), LT
, m
, const0_rtx
, mode
, 0, -1);
1890 t
= m
? expand_binop (mode
, and_optab
, m
, t
, NULL_RTX
, 0, OPTAB_DIRECT
)
1899 noce_emit_move_insn (if_info
->x
, t
);
1901 seq
= end_ifcvt_sequence (if_info
);
1905 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1910 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
1914 noce_try_bitop (struct noce_if_info
*if_info
)
1916 rtx cond
, x
, a
, result
, seq
;
1917 enum machine_mode mode
;
1922 cond
= if_info
->cond
;
1923 code
= GET_CODE (cond
);
1925 /* Check for no else condition. */
1926 if (! rtx_equal_p (x
, if_info
->b
))
1929 /* Check for a suitable condition. */
1930 if (code
!= NE
&& code
!= EQ
)
1932 if (XEXP (cond
, 1) != const0_rtx
)
1934 cond
= XEXP (cond
, 0);
1936 /* ??? We could also handle AND here. */
1937 if (GET_CODE (cond
) == ZERO_EXTRACT
)
1939 if (XEXP (cond
, 1) != const1_rtx
1940 || GET_CODE (XEXP (cond
, 2)) != CONST_INT
1941 || ! rtx_equal_p (x
, XEXP (cond
, 0)))
1943 bitnum
= INTVAL (XEXP (cond
, 2));
1944 mode
= GET_MODE (x
);
1945 if (BITS_BIG_ENDIAN
)
1946 bitnum
= GET_MODE_BITSIZE (mode
) - 1 - bitnum
;
1947 if (bitnum
< 0 || bitnum
>= HOST_BITS_PER_WIDE_INT
)
1954 if (GET_CODE (a
) == IOR
|| GET_CODE (a
) == XOR
)
1956 /* Check for "if (X & C) x = x op C". */
1957 if (! rtx_equal_p (x
, XEXP (a
, 0))
1958 || GET_CODE (XEXP (a
, 1)) != CONST_INT
1959 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
1960 != (unsigned HOST_WIDE_INT
) 1 << bitnum
)
1963 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
1964 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
1965 if (GET_CODE (a
) == IOR
)
1966 result
= (code
== NE
) ? a
: NULL_RTX
;
1967 else if (code
== NE
)
1969 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
1970 result
= gen_int_mode ((HOST_WIDE_INT
) 1 << bitnum
, mode
);
1971 result
= simplify_gen_binary (IOR
, mode
, x
, result
);
1975 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
1976 result
= gen_int_mode (~((HOST_WIDE_INT
) 1 << bitnum
), mode
);
1977 result
= simplify_gen_binary (AND
, mode
, x
, result
);
1980 else if (GET_CODE (a
) == AND
)
1982 /* Check for "if (X & C) x &= ~C". */
1983 if (! rtx_equal_p (x
, XEXP (a
, 0))
1984 || GET_CODE (XEXP (a
, 1)) != CONST_INT
1985 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
1986 != (~((HOST_WIDE_INT
) 1 << bitnum
) & GET_MODE_MASK (mode
)))
1989 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
1990 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
1991 result
= (code
== EQ
) ? a
: NULL_RTX
;
1999 noce_emit_move_insn (x
, result
);
2000 seq
= end_ifcvt_sequence (if_info
);
2004 emit_insn_before_setloc (seq
, if_info
->jump
,
2005 INSN_LOCATOR (if_info
->insn_a
));
2011 /* Similar to get_condition, only the resulting condition must be
2012 valid at JUMP, instead of at EARLIEST. */
2015 noce_get_condition (rtx jump
, rtx
*earliest
)
2020 if (! any_condjump_p (jump
))
2023 set
= pc_set (jump
);
2025 /* If this branches to JUMP_LABEL when the condition is false,
2026 reverse the condition. */
2027 reverse
= (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
2028 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (jump
));
2030 /* If the condition variable is a register and is MODE_INT, accept it. */
2032 cond
= XEXP (SET_SRC (set
), 0);
2033 tmp
= XEXP (cond
, 0);
2034 if (REG_P (tmp
) && GET_MODE_CLASS (GET_MODE (tmp
)) == MODE_INT
)
2039 cond
= gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond
)),
2040 GET_MODE (cond
), tmp
, XEXP (cond
, 1));
2044 /* Otherwise, fall back on canonicalize_condition to do the dirty
2045 work of manipulating MODE_CC values and COMPARE rtx codes. */
2046 return canonicalize_condition (jump
, cond
, reverse
, earliest
,
2047 NULL_RTX
, false, true);
2050 /* Return true if OP is ok for if-then-else processing. */
2053 noce_operand_ok (rtx op
)
2055 /* We special-case memories, so handle any of them with
2056 no address side effects. */
2058 return ! side_effects_p (XEXP (op
, 0));
2060 if (side_effects_p (op
))
2063 return ! may_trap_p (op
);
2066 /* Return true if a write into MEM may trap or fault. */
2069 noce_mem_write_may_trap_or_fault_p (rtx mem
)
2073 if (MEM_READONLY_P (mem
))
2076 if (may_trap_or_fault_p (mem
))
2079 addr
= XEXP (mem
, 0);
2081 /* Call target hook to avoid the effects of -fpic etc.... */
2082 addr
= targetm
.delegitimize_address (addr
);
2085 switch (GET_CODE (addr
))
2093 addr
= XEXP (addr
, 0);
2097 addr
= XEXP (addr
, 1);
2100 if (GET_CODE (XEXP (addr
, 1)) == CONST_INT
)
2101 addr
= XEXP (addr
, 0);
2108 if (SYMBOL_REF_DECL (addr
)
2109 && decl_readonly_section (SYMBOL_REF_DECL (addr
), 0))
2119 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
2120 without using conditional execution. Return TRUE if we were
2121 successful at converting the block. */
2124 noce_process_if_block (struct ce_if_block
* ce_info
)
2126 basic_block test_bb
= ce_info
->test_bb
; /* test block */
2127 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
2128 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
2129 struct noce_if_info if_info
;
2132 rtx orig_x
, x
, a
, b
;
2135 /* We're looking for patterns of the form
2137 (1) if (...) x = a; else x = b;
2138 (2) x = b; if (...) x = a;
2139 (3) if (...) x = a; // as if with an initial x = x.
2141 The later patterns require jumps to be more expensive.
2143 ??? For future expansion, look for multiple X in such patterns. */
2145 /* If test is comprised of && or || elements, don't handle it unless it is
2146 the special case of && elements without an ELSE block. */
2147 if (ce_info
->num_multiple_test_blocks
)
2149 if (else_bb
|| ! ce_info
->and_and_p
)
2152 ce_info
->test_bb
= test_bb
= ce_info
->last_test_bb
;
2153 ce_info
->num_multiple_test_blocks
= 0;
2154 ce_info
->num_and_and_blocks
= 0;
2155 ce_info
->num_or_or_blocks
= 0;
2158 /* If this is not a standard conditional jump, we can't parse it. */
2159 jump
= BB_END (test_bb
);
2160 cond
= noce_get_condition (jump
, &if_info
.cond_earliest
);
2164 /* If the conditional jump is more than just a conditional
2165 jump, then we can not do if-conversion on this block. */
2166 if (! onlyjump_p (jump
))
2169 /* We must be comparing objects whose modes imply the size. */
2170 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
2173 /* Look for one of the potential sets. */
2174 insn_a
= first_active_insn (then_bb
);
2176 || insn_a
!= last_active_insn (then_bb
, FALSE
)
2177 || (set_a
= single_set (insn_a
)) == NULL_RTX
)
2180 x
= SET_DEST (set_a
);
2181 a
= SET_SRC (set_a
);
2183 /* Look for the other potential set. Make sure we've got equivalent
2185 /* ??? This is overconservative. Storing to two different mems is
2186 as easy as conditionally computing the address. Storing to a
2187 single mem merely requires a scratch memory to use as one of the
2188 destination addresses; often the memory immediately below the
2189 stack pointer is available for this. */
2193 insn_b
= first_active_insn (else_bb
);
2195 || insn_b
!= last_active_insn (else_bb
, FALSE
)
2196 || (set_b
= single_set (insn_b
)) == NULL_RTX
2197 || ! rtx_equal_p (x
, SET_DEST (set_b
)))
2202 insn_b
= prev_nonnote_insn (if_info
.cond_earliest
);
2203 /* We're going to be moving the evaluation of B down from above
2204 COND_EARLIEST to JUMP. Make sure the relevant data is still
2207 || !NONJUMP_INSN_P (insn_b
)
2208 || (set_b
= single_set (insn_b
)) == NULL_RTX
2209 || ! rtx_equal_p (x
, SET_DEST (set_b
))
2210 || reg_overlap_mentioned_p (x
, SET_SRC (set_b
))
2211 || modified_between_p (SET_SRC (set_b
),
2212 PREV_INSN (if_info
.cond_earliest
), jump
)
2213 /* Likewise with X. In particular this can happen when
2214 noce_get_condition looks farther back in the instruction
2215 stream than one might expect. */
2216 || reg_overlap_mentioned_p (x
, cond
)
2217 || reg_overlap_mentioned_p (x
, a
)
2218 || modified_between_p (x
, PREV_INSN (if_info
.cond_earliest
), jump
))
2219 insn_b
= set_b
= NULL_RTX
;
2222 /* If x has side effects then only the if-then-else form is safe to
2223 convert. But even in that case we would need to restore any notes
2224 (such as REG_INC) at then end. That can be tricky if
2225 noce_emit_move_insn expands to more than one insn, so disable the
2226 optimization entirely for now if there are side effects. */
2227 if (side_effects_p (x
))
2230 b
= (set_b
? SET_SRC (set_b
) : x
);
2232 /* Only operate on register destinations, and even then avoid extending
2233 the lifetime of hard registers on small register class machines. */
2236 || (SMALL_REGISTER_CLASSES
2237 && REGNO (x
) < FIRST_PSEUDO_REGISTER
))
2239 if (no_new_pseudos
|| GET_MODE (x
) == BLKmode
)
2242 if (GET_MODE (x
) == ZERO_EXTRACT
2243 && (GET_CODE (XEXP (x
, 1)) != CONST_INT
2244 || GET_CODE (XEXP (x
, 2)) != CONST_INT
))
2247 x
= gen_reg_rtx (GET_MODE (GET_CODE (x
) == STRICT_LOW_PART
2248 ? XEXP (x
, 0) : x
));
2251 /* Don't operate on sources that may trap or are volatile. */
2252 if (! noce_operand_ok (a
) || ! noce_operand_ok (b
))
2255 /* Set up the info block for our subroutines. */
2256 if_info
.test_bb
= test_bb
;
2257 if_info
.cond
= cond
;
2258 if_info
.jump
= jump
;
2259 if_info
.insn_a
= insn_a
;
2260 if_info
.insn_b
= insn_b
;
2264 if_info
.b_unconditional
= else_bb
== 0;
2266 /* Try optimizations in some approximation of a useful order. */
2267 /* ??? Should first look to see if X is live incoming at all. If it
2268 isn't, we don't need anything but an unconditional set. */
2270 /* Look and see if A and B are really the same. Avoid creating silly
2271 cmove constructs that no one will fix up later. */
2272 if (rtx_equal_p (a
, b
))
2274 /* If we have an INSN_B, we don't have to create any new rtl. Just
2275 move the instruction that we already have. If we don't have an
2276 INSN_B, that means that A == X, and we've got a noop move. In
2277 that case don't do anything and let the code below delete INSN_A. */
2278 if (insn_b
&& else_bb
)
2282 if (else_bb
&& insn_b
== BB_END (else_bb
))
2283 BB_END (else_bb
) = PREV_INSN (insn_b
);
2284 reorder_insns (insn_b
, insn_b
, PREV_INSN (jump
));
2286 /* If there was a REG_EQUAL note, delete it since it may have been
2287 true due to this insn being after a jump. */
2288 if ((note
= find_reg_note (insn_b
, REG_EQUAL
, NULL_RTX
)) != 0)
2289 remove_note (insn_b
, note
);
2293 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2294 x must be executed twice. */
2295 else if (insn_b
&& side_effects_p (orig_x
))
2302 /* Disallow the "if (...) x = a;" form (with an implicit "else x = x;")
2303 for optimizations if writing to x may trap or fault, i.e. it's a memory
2304 other than a static var or a stack slot, is misaligned on strict
2305 aligned machines or is read-only.
2306 If x is a read-only memory, then the program is valid only if we
2307 avoid the store into it. If there are stores on both the THEN and
2308 ELSE arms, then we can go ahead with the conversion; either the
2309 program is broken, or the condition is always false such that the
2310 other memory is selected. */
2311 if (!set_b
&& MEM_P (orig_x
) && noce_mem_write_may_trap_or_fault_p (orig_x
))
2314 if (noce_try_move (&if_info
))
2316 if (noce_try_store_flag (&if_info
))
2318 if (noce_try_bitop (&if_info
))
2320 if (noce_try_minmax (&if_info
))
2322 if (noce_try_abs (&if_info
))
2324 if (HAVE_conditional_move
2325 && noce_try_cmove (&if_info
))
2327 if (! HAVE_conditional_execution
)
2329 if (noce_try_store_flag_constants (&if_info
))
2331 if (noce_try_addcc (&if_info
))
2333 if (noce_try_store_flag_mask (&if_info
))
2335 if (HAVE_conditional_move
2336 && noce_try_cmove_arith (&if_info
))
2338 if (noce_try_sign_mask (&if_info
))
2345 /* The original sets may now be killed. */
2346 delete_insn (insn_a
);
2348 /* Several special cases here: First, we may have reused insn_b above,
2349 in which case insn_b is now NULL. Second, we want to delete insn_b
2350 if it came from the ELSE block, because follows the now correct
2351 write that appears in the TEST block. However, if we got insn_b from
2352 the TEST block, it may in fact be loading data needed for the comparison.
2353 We'll let life_analysis remove the insn if it's really dead. */
2354 if (insn_b
&& else_bb
)
2355 delete_insn (insn_b
);
2357 /* The new insns will have been inserted immediately before the jump. We
2358 should be able to remove the jump with impunity, but the condition itself
2359 may have been modified by gcse to be shared across basic blocks. */
2362 /* If we used a temporary, fix it up now. */
2366 noce_emit_move_insn (orig_x
, x
);
2367 insn_b
= get_insns ();
2368 set_used_flags (orig_x
);
2369 unshare_all_rtl_in_chain (insn_b
);
2372 emit_insn_after_setloc (insn_b
, BB_END (test_bb
), INSN_LOCATOR (insn_a
));
2375 /* Merge the blocks! */
2376 merge_if_block (ce_info
);
2381 /* Attempt to convert an IF-THEN or IF-THEN-ELSE block into
2382 straight line code. Return true if successful. */
2385 process_if_block (struct ce_if_block
* ce_info
)
2387 if (! reload_completed
2388 && noce_process_if_block (ce_info
))
2391 if (HAVE_conditional_execution
&& reload_completed
)
2393 /* If we have && and || tests, try to first handle combining the && and
2394 || tests into the conditional code, and if that fails, go back and
2395 handle it without the && and ||, which at present handles the && case
2396 if there was no ELSE block. */
2397 if (cond_exec_process_if_block (ce_info
, TRUE
))
2400 if (ce_info
->num_multiple_test_blocks
)
2404 if (cond_exec_process_if_block (ce_info
, FALSE
))
2412 /* Merge the blocks and mark for local life update. */
2415 merge_if_block (struct ce_if_block
* ce_info
)
2417 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
2418 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
2419 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
2420 basic_block join_bb
= ce_info
->join_bb
; /* join block */
2421 basic_block combo_bb
;
2423 /* All block merging is done into the lower block numbers. */
2427 /* Merge any basic blocks to handle && and || subtests. Each of
2428 the blocks are on the fallthru path from the predecessor block. */
2429 if (ce_info
->num_multiple_test_blocks
> 0)
2431 basic_block bb
= test_bb
;
2432 basic_block last_test_bb
= ce_info
->last_test_bb
;
2433 basic_block fallthru
= block_fallthru (bb
);
2438 fallthru
= block_fallthru (bb
);
2439 merge_blocks (combo_bb
, bb
);
2442 while (bb
!= last_test_bb
);
2445 /* Merge TEST block into THEN block. Normally the THEN block won't have a
2446 label, but it might if there were || tests. That label's count should be
2447 zero, and it normally should be removed. */
2451 if (combo_bb
->il
.rtl
->global_live_at_end
)
2452 COPY_REG_SET (combo_bb
->il
.rtl
->global_live_at_end
,
2453 then_bb
->il
.rtl
->global_live_at_end
);
2454 merge_blocks (combo_bb
, then_bb
);
2458 /* The ELSE block, if it existed, had a label. That label count
2459 will almost always be zero, but odd things can happen when labels
2460 get their addresses taken. */
2463 merge_blocks (combo_bb
, else_bb
);
2467 /* If there was no join block reported, that means it was not adjacent
2468 to the others, and so we cannot merge them. */
2472 rtx last
= BB_END (combo_bb
);
2474 /* The outgoing edge for the current COMBO block should already
2475 be correct. Verify this. */
2476 if (EDGE_COUNT (combo_bb
->succs
) == 0)
2477 gcc_assert (find_reg_note (last
, REG_NORETURN
, NULL
)
2478 || (NONJUMP_INSN_P (last
)
2479 && GET_CODE (PATTERN (last
)) == TRAP_IF
2480 && (TRAP_CONDITION (PATTERN (last
))
2481 == const_true_rtx
)));
2484 /* There should still be something at the end of the THEN or ELSE
2485 blocks taking us to our final destination. */
2486 gcc_assert (JUMP_P (last
)
2487 || (EDGE_SUCC (combo_bb
, 0)->dest
== EXIT_BLOCK_PTR
2489 && SIBLING_CALL_P (last
))
2490 || ((EDGE_SUCC (combo_bb
, 0)->flags
& EDGE_EH
)
2491 && can_throw_internal (last
)));
2494 /* The JOIN block may have had quite a number of other predecessors too.
2495 Since we've already merged the TEST, THEN and ELSE blocks, we should
2496 have only one remaining edge from our if-then-else diamond. If there
2497 is more than one remaining edge, it must come from elsewhere. There
2498 may be zero incoming edges if the THEN block didn't actually join
2499 back up (as with a call to a non-return function). */
2500 else if (EDGE_COUNT (join_bb
->preds
) < 2
2501 && join_bb
!= EXIT_BLOCK_PTR
)
2503 /* We can merge the JOIN. */
2504 if (combo_bb
->il
.rtl
->global_live_at_end
)
2505 COPY_REG_SET (combo_bb
->il
.rtl
->global_live_at_end
,
2506 join_bb
->il
.rtl
->global_live_at_end
);
2508 merge_blocks (combo_bb
, join_bb
);
2513 /* We cannot merge the JOIN. */
2515 /* The outgoing edge for the current COMBO block should already
2516 be correct. Verify this. */
2517 gcc_assert (single_succ_p (combo_bb
)
2518 && single_succ (combo_bb
) == join_bb
);
2520 /* Remove the jump and cruft from the end of the COMBO block. */
2521 if (join_bb
!= EXIT_BLOCK_PTR
)
2522 tidy_fallthru_edge (single_succ_edge (combo_bb
));
2525 num_updated_if_blocks
++;
2528 /* Find a block ending in a simple IF condition and try to transform it
2529 in some way. When converting a multi-block condition, put the new code
2530 in the first such block and delete the rest. Return a pointer to this
2531 first block if some transformation was done. Return NULL otherwise. */
2534 find_if_header (basic_block test_bb
, int pass
)
2536 ce_if_block_t ce_info
;
2540 /* The kind of block we're looking for has exactly two successors. */
2541 if (EDGE_COUNT (test_bb
->succs
) != 2)
2544 then_edge
= EDGE_SUCC (test_bb
, 0);
2545 else_edge
= EDGE_SUCC (test_bb
, 1);
2547 /* Neither edge should be abnormal. */
2548 if ((then_edge
->flags
& EDGE_COMPLEX
)
2549 || (else_edge
->flags
& EDGE_COMPLEX
))
2552 /* Nor exit the loop. */
2553 if ((then_edge
->flags
& EDGE_LOOP_EXIT
)
2554 || (else_edge
->flags
& EDGE_LOOP_EXIT
))
2557 /* The THEN edge is canonically the one that falls through. */
2558 if (then_edge
->flags
& EDGE_FALLTHRU
)
2560 else if (else_edge
->flags
& EDGE_FALLTHRU
)
2563 else_edge
= then_edge
;
2567 /* Otherwise this must be a multiway branch of some sort. */
2570 memset (&ce_info
, '\0', sizeof (ce_info
));
2571 ce_info
.test_bb
= test_bb
;
2572 ce_info
.then_bb
= then_edge
->dest
;
2573 ce_info
.else_bb
= else_edge
->dest
;
2574 ce_info
.pass
= pass
;
2576 #ifdef IFCVT_INIT_EXTRA_FIELDS
2577 IFCVT_INIT_EXTRA_FIELDS (&ce_info
);
2580 if (find_if_block (&ce_info
))
2583 if (HAVE_trap
&& HAVE_conditional_trap
2584 && find_cond_trap (test_bb
, then_edge
, else_edge
))
2587 if (dom_computed
[CDI_POST_DOMINATORS
] >= DOM_NO_FAST_QUERY
2588 && (! HAVE_conditional_execution
|| reload_completed
))
2590 if (find_if_case_1 (test_bb
, then_edge
, else_edge
))
2592 if (find_if_case_2 (test_bb
, then_edge
, else_edge
))
2600 fprintf (dump_file
, "Conversion succeeded on pass %d.\n", pass
);
2601 return ce_info
.test_bb
;
2604 /* Return true if a block has two edges, one of which falls through to the next
2605 block, and the other jumps to a specific block, so that we can tell if the
2606 block is part of an && test or an || test. Returns either -1 or the number
2607 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
2610 block_jumps_and_fallthru_p (basic_block cur_bb
, basic_block target_bb
)
2613 int fallthru_p
= FALSE
;
2620 if (!cur_bb
|| !target_bb
)
2623 /* If no edges, obviously it doesn't jump or fallthru. */
2624 if (EDGE_COUNT (cur_bb
->succs
) == 0)
2627 FOR_EACH_EDGE (cur_edge
, ei
, cur_bb
->succs
)
2629 if (cur_edge
->flags
& EDGE_COMPLEX
)
2630 /* Anything complex isn't what we want. */
2633 else if (cur_edge
->flags
& EDGE_FALLTHRU
)
2636 else if (cur_edge
->dest
== target_bb
)
2643 if ((jump_p
& fallthru_p
) == 0)
2646 /* Don't allow calls in the block, since this is used to group && and ||
2647 together for conditional execution support. ??? we should support
2648 conditional execution support across calls for IA-64 some day, but
2649 for now it makes the code simpler. */
2650 end
= BB_END (cur_bb
);
2651 insn
= BB_HEAD (cur_bb
);
2653 while (insn
!= NULL_RTX
)
2660 && GET_CODE (PATTERN (insn
)) != USE
2661 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
2667 insn
= NEXT_INSN (insn
);
2673 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
2674 block. If so, we'll try to convert the insns to not require the branch.
2675 Return TRUE if we were successful at converting the block. */
2678 find_if_block (struct ce_if_block
* ce_info
)
2680 basic_block test_bb
= ce_info
->test_bb
;
2681 basic_block then_bb
= ce_info
->then_bb
;
2682 basic_block else_bb
= ce_info
->else_bb
;
2683 basic_block join_bb
= NULL_BLOCK
;
2688 ce_info
->last_test_bb
= test_bb
;
2690 /* Discover if any fall through predecessors of the current test basic block
2691 were && tests (which jump to the else block) or || tests (which jump to
2693 if (HAVE_conditional_execution
&& reload_completed
2694 && single_pred_p (test_bb
)
2695 && single_pred_edge (test_bb
)->flags
== EDGE_FALLTHRU
)
2697 basic_block bb
= single_pred (test_bb
);
2698 basic_block target_bb
;
2699 int max_insns
= MAX_CONDITIONAL_EXECUTE
;
2702 /* Determine if the preceding block is an && or || block. */
2703 if ((n_insns
= block_jumps_and_fallthru_p (bb
, else_bb
)) >= 0)
2705 ce_info
->and_and_p
= TRUE
;
2706 target_bb
= else_bb
;
2708 else if ((n_insns
= block_jumps_and_fallthru_p (bb
, then_bb
)) >= 0)
2710 ce_info
->and_and_p
= FALSE
;
2711 target_bb
= then_bb
;
2714 target_bb
= NULL_BLOCK
;
2716 if (target_bb
&& n_insns
<= max_insns
)
2718 int total_insns
= 0;
2721 ce_info
->last_test_bb
= test_bb
;
2723 /* Found at least one && or || block, look for more. */
2726 ce_info
->test_bb
= test_bb
= bb
;
2727 total_insns
+= n_insns
;
2730 if (!single_pred_p (bb
))
2733 bb
= single_pred (bb
);
2734 n_insns
= block_jumps_and_fallthru_p (bb
, target_bb
);
2736 while (n_insns
>= 0 && (total_insns
+ n_insns
) <= max_insns
);
2738 ce_info
->num_multiple_test_blocks
= blocks
;
2739 ce_info
->num_multiple_test_insns
= total_insns
;
2741 if (ce_info
->and_and_p
)
2742 ce_info
->num_and_and_blocks
= blocks
;
2744 ce_info
->num_or_or_blocks
= blocks
;
2748 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
2749 other than any || blocks which jump to the THEN block. */
2750 if ((EDGE_COUNT (then_bb
->preds
) - ce_info
->num_or_or_blocks
) != 1)
2753 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
2754 FOR_EACH_EDGE (cur_edge
, ei
, then_bb
->preds
)
2756 if (cur_edge
->flags
& EDGE_COMPLEX
)
2760 FOR_EACH_EDGE (cur_edge
, ei
, else_bb
->preds
)
2762 if (cur_edge
->flags
& EDGE_COMPLEX
)
2766 /* The THEN block of an IF-THEN combo must have zero or one successors. */
2767 if (EDGE_COUNT (then_bb
->succs
) > 0
2768 && (!single_succ_p (then_bb
)
2769 || (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
2770 || (flow2_completed
&& tablejump_p (BB_END (then_bb
), NULL
, NULL
))))
2773 /* If the THEN block has no successors, conditional execution can still
2774 make a conditional call. Don't do this unless the ELSE block has
2775 only one incoming edge -- the CFG manipulation is too ugly otherwise.
2776 Check for the last insn of the THEN block being an indirect jump, which
2777 is listed as not having any successors, but confuses the rest of the CE
2778 code processing. ??? we should fix this in the future. */
2779 if (EDGE_COUNT (then_bb
->succs
) == 0)
2781 if (single_pred_p (else_bb
))
2783 rtx last_insn
= BB_END (then_bb
);
2786 && NOTE_P (last_insn
)
2787 && last_insn
!= BB_HEAD (then_bb
))
2788 last_insn
= PREV_INSN (last_insn
);
2791 && JUMP_P (last_insn
)
2792 && ! simplejump_p (last_insn
))
2796 else_bb
= NULL_BLOCK
;
2802 /* If the THEN block's successor is the other edge out of the TEST block,
2803 then we have an IF-THEN combo without an ELSE. */
2804 else if (single_succ (then_bb
) == else_bb
)
2807 else_bb
= NULL_BLOCK
;
2810 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
2811 has exactly one predecessor and one successor, and the outgoing edge
2812 is not complex, then we have an IF-THEN-ELSE combo. */
2813 else if (single_succ_p (else_bb
)
2814 && single_succ (then_bb
) == single_succ (else_bb
)
2815 && single_pred_p (else_bb
)
2816 && ! (single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
2817 && ! (flow2_completed
&& tablejump_p (BB_END (else_bb
), NULL
, NULL
)))
2818 join_bb
= single_succ (else_bb
);
2820 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
2824 num_possible_if_blocks
++;
2829 "\nIF-THEN%s block found, pass %d, start block %d "
2830 "[insn %d], then %d [%d]",
2831 (else_bb
) ? "-ELSE" : "",
2834 BB_HEAD (test_bb
) ? (int)INSN_UID (BB_HEAD (test_bb
)) : -1,
2836 BB_HEAD (then_bb
) ? (int)INSN_UID (BB_HEAD (then_bb
)) : -1);
2839 fprintf (dump_file
, ", else %d [%d]",
2841 BB_HEAD (else_bb
) ? (int)INSN_UID (BB_HEAD (else_bb
)) : -1);
2843 fprintf (dump_file
, ", join %d [%d]",
2845 BB_HEAD (join_bb
) ? (int)INSN_UID (BB_HEAD (join_bb
)) : -1);
2847 if (ce_info
->num_multiple_test_blocks
> 0)
2848 fprintf (dump_file
, ", %d %s block%s last test %d [%d]",
2849 ce_info
->num_multiple_test_blocks
,
2850 (ce_info
->and_and_p
) ? "&&" : "||",
2851 (ce_info
->num_multiple_test_blocks
== 1) ? "" : "s",
2852 ce_info
->last_test_bb
->index
,
2853 ((BB_HEAD (ce_info
->last_test_bb
))
2854 ? (int)INSN_UID (BB_HEAD (ce_info
->last_test_bb
))
2857 fputc ('\n', dump_file
);
2860 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
2861 first condition for free, since we've already asserted that there's a
2862 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
2863 we checked the FALLTHRU flag, those are already adjacent to the last IF
2865 /* ??? As an enhancement, move the ELSE block. Have to deal with
2866 BLOCK notes, if by no other means than backing out the merge if they
2867 exist. Sticky enough I don't want to think about it now. */
2869 if (else_bb
&& (next
= next
->next_bb
) != else_bb
)
2871 if ((next
= next
->next_bb
) != join_bb
&& join_bb
!= EXIT_BLOCK_PTR
)
2879 /* Do the real work. */
2880 ce_info
->else_bb
= else_bb
;
2881 ce_info
->join_bb
= join_bb
;
2883 return process_if_block (ce_info
);
2886 /* Convert a branch over a trap, or a branch
2887 to a trap, into a conditional trap. */
2890 find_cond_trap (basic_block test_bb
, edge then_edge
, edge else_edge
)
2892 basic_block then_bb
= then_edge
->dest
;
2893 basic_block else_bb
= else_edge
->dest
;
2894 basic_block other_bb
, trap_bb
;
2895 rtx trap
, jump
, cond
, cond_earliest
, seq
;
2898 /* Locate the block with the trap instruction. */
2899 /* ??? While we look for no successors, we really ought to allow
2900 EH successors. Need to fix merge_if_block for that to work. */
2901 if ((trap
= block_has_only_trap (then_bb
)) != NULL
)
2902 trap_bb
= then_bb
, other_bb
= else_bb
;
2903 else if ((trap
= block_has_only_trap (else_bb
)) != NULL
)
2904 trap_bb
= else_bb
, other_bb
= then_bb
;
2910 fprintf (dump_file
, "\nTRAP-IF block found, start %d, trap %d\n",
2911 test_bb
->index
, trap_bb
->index
);
2914 /* If this is not a standard conditional jump, we can't parse it. */
2915 jump
= BB_END (test_bb
);
2916 cond
= noce_get_condition (jump
, &cond_earliest
);
2920 /* If the conditional jump is more than just a conditional jump, then
2921 we can not do if-conversion on this block. */
2922 if (! onlyjump_p (jump
))
2925 /* We must be comparing objects whose modes imply the size. */
2926 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
2929 /* Reverse the comparison code, if necessary. */
2930 code
= GET_CODE (cond
);
2931 if (then_bb
== trap_bb
)
2933 code
= reversed_comparison_code (cond
, jump
);
2934 if (code
== UNKNOWN
)
2938 /* Attempt to generate the conditional trap. */
2939 seq
= gen_cond_trap (code
, XEXP (cond
, 0),
2941 TRAP_CODE (PATTERN (trap
)));
2947 /* Emit the new insns before cond_earliest. */
2948 emit_insn_before_setloc (seq
, cond_earliest
, INSN_LOCATOR (trap
));
2950 /* Delete the trap block if possible. */
2951 remove_edge (trap_bb
== then_bb
? then_edge
: else_edge
);
2952 if (EDGE_COUNT (trap_bb
->preds
) == 0)
2953 delete_basic_block (trap_bb
);
2955 /* If the non-trap block and the test are now adjacent, merge them.
2956 Otherwise we must insert a direct branch. */
2957 if (test_bb
->next_bb
== other_bb
)
2959 struct ce_if_block new_ce_info
;
2961 memset (&new_ce_info
, '\0', sizeof (new_ce_info
));
2962 new_ce_info
.test_bb
= test_bb
;
2963 new_ce_info
.then_bb
= NULL
;
2964 new_ce_info
.else_bb
= NULL
;
2965 new_ce_info
.join_bb
= other_bb
;
2966 merge_if_block (&new_ce_info
);
2972 lab
= JUMP_LABEL (jump
);
2973 newjump
= emit_jump_insn_after (gen_jump (lab
), jump
);
2974 LABEL_NUSES (lab
) += 1;
2975 JUMP_LABEL (newjump
) = lab
;
2976 emit_barrier_after (newjump
);
2984 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
2988 block_has_only_trap (basic_block bb
)
2992 /* We're not the exit block. */
2993 if (bb
== EXIT_BLOCK_PTR
)
2996 /* The block must have no successors. */
2997 if (EDGE_COUNT (bb
->succs
) > 0)
3000 /* The only instruction in the THEN block must be the trap. */
3001 trap
= first_active_insn (bb
);
3002 if (! (trap
== BB_END (bb
)
3003 && GET_CODE (PATTERN (trap
)) == TRAP_IF
3004 && TRAP_CONDITION (PATTERN (trap
)) == const_true_rtx
))
3010 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
3011 transformable, but not necessarily the other. There need be no
3014 Return TRUE if we were successful at converting the block.
3016 Cases we'd like to look at:
3019 if (test) goto over; // x not live
3027 if (! test) goto label;
3030 if (test) goto E; // x not live
3044 (3) // This one's really only interesting for targets that can do
3045 // multiway branching, e.g. IA-64 BBB bundles. For other targets
3046 // it results in multiple branches on a cache line, which often
3047 // does not sit well with predictors.
3049 if (test1) goto E; // predicted not taken
3065 (A) Don't do (2) if the branch is predicted against the block we're
3066 eliminating. Do it anyway if we can eliminate a branch; this requires
3067 that the sole successor of the eliminated block postdominate the other
3070 (B) With CE, on (3) we can steal from both sides of the if, creating
3079 Again, this is most useful if J postdominates.
3081 (C) CE substitutes for helpful life information.
3083 (D) These heuristics need a lot of work. */
3085 /* Tests for case 1 above. */
3088 find_if_case_1 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3090 basic_block then_bb
= then_edge
->dest
;
3091 basic_block else_bb
= else_edge
->dest
, new_bb
;
3094 /* If we are partitioning hot/cold basic blocks, we don't want to
3095 mess up unconditional or indirect jumps that cross between hot
3098 Basic block partitioning may result in some jumps that appear to
3099 be optimizable (or blocks that appear to be mergeable), but which really
3100 must be left untouched (they are required to make it safely across
3101 partition boundaries). See the comments at the top of
3102 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3104 if ((BB_END (then_bb
)
3105 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3106 || (BB_END (test_bb
)
3107 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3108 || (BB_END (else_bb
)
3109 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3113 /* THEN has one successor. */
3114 if (!single_succ_p (then_bb
))
3117 /* THEN does not fall through, but is not strange either. */
3118 if (single_succ_edge (then_bb
)->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
))
3121 /* THEN has one predecessor. */
3122 if (!single_pred_p (then_bb
))
3125 /* THEN must do something. */
3126 if (forwarder_block_p (then_bb
))
3129 num_possible_if_blocks
++;
3132 "\nIF-CASE-1 found, start %d, then %d\n",
3133 test_bb
->index
, then_bb
->index
);
3135 /* THEN is small. */
3136 if (! cheap_bb_rtx_cost_p (then_bb
, COSTS_N_INSNS (BRANCH_COST
)))
3139 /* Registers set are dead, or are predicable. */
3140 if (! dead_or_predicable (test_bb
, then_bb
, else_bb
,
3141 single_succ (then_bb
), 1))
3144 /* Conversion went ok, including moving the insns and fixing up the
3145 jump. Adjust the CFG to match. */
3147 bitmap_ior (test_bb
->il
.rtl
->global_live_at_end
,
3148 else_bb
->il
.rtl
->global_live_at_start
,
3149 then_bb
->il
.rtl
->global_live_at_end
);
3152 /* We can avoid creating a new basic block if then_bb is immediately
3153 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
3156 if (then_bb
->next_bb
== else_bb
3157 && then_bb
->prev_bb
== test_bb
3158 && else_bb
!= EXIT_BLOCK_PTR
)
3160 redirect_edge_succ (FALLTHRU_EDGE (test_bb
), else_bb
);
3164 new_bb
= redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb
),
3167 then_bb_index
= then_bb
->index
;
3168 delete_basic_block (then_bb
);
3170 /* Make rest of code believe that the newly created block is the THEN_BB
3171 block we removed. */
3174 new_bb
->index
= then_bb_index
;
3175 BASIC_BLOCK (then_bb_index
) = new_bb
;
3176 /* Since the fallthru edge was redirected from test_bb to new_bb,
3177 we need to ensure that new_bb is in the same partition as
3178 test bb (you can not fall through across section boundaries). */
3179 BB_COPY_PARTITION (new_bb
, test_bb
);
3181 /* We've possibly created jump to next insn, cleanup_cfg will solve that
3185 num_updated_if_blocks
++;
3190 /* Test for case 2 above. */
3193 find_if_case_2 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3195 basic_block then_bb
= then_edge
->dest
;
3196 basic_block else_bb
= else_edge
->dest
;
3200 /* If we are partitioning hot/cold basic blocks, we don't want to
3201 mess up unconditional or indirect jumps that cross between hot
3204 Basic block partitioning may result in some jumps that appear to
3205 be optimizable (or blocks that appear to be mergeable), but which really
3206 must be left untouched (they are required to make it safely across
3207 partition boundaries). See the comments at the top of
3208 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3210 if ((BB_END (then_bb
)
3211 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3212 || (BB_END (test_bb
)
3213 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3214 || (BB_END (else_bb
)
3215 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3219 /* ELSE has one successor. */
3220 if (!single_succ_p (else_bb
))
3223 else_succ
= single_succ_edge (else_bb
);
3225 /* ELSE outgoing edge is not complex. */
3226 if (else_succ
->flags
& EDGE_COMPLEX
)
3229 /* ELSE has one predecessor. */
3230 if (!single_pred_p (else_bb
))
3233 /* THEN is not EXIT. */
3234 if (then_bb
->index
< 0)
3237 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
3238 note
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
3239 if (note
&& INTVAL (XEXP (note
, 0)) >= REG_BR_PROB_BASE
/ 2)
3241 else if (else_succ
->dest
->index
< 0
3242 || dominated_by_p (CDI_POST_DOMINATORS
, then_bb
,
3248 num_possible_if_blocks
++;
3251 "\nIF-CASE-2 found, start %d, else %d\n",
3252 test_bb
->index
, else_bb
->index
);
3254 /* ELSE is small. */
3255 if (! cheap_bb_rtx_cost_p (else_bb
, COSTS_N_INSNS (BRANCH_COST
)))
3258 /* Registers set are dead, or are predicable. */
3259 if (! dead_or_predicable (test_bb
, else_bb
, then_bb
, else_succ
->dest
, 0))
3262 /* Conversion went ok, including moving the insns and fixing up the
3263 jump. Adjust the CFG to match. */
3265 bitmap_ior (test_bb
->il
.rtl
->global_live_at_end
,
3266 then_bb
->il
.rtl
->global_live_at_start
,
3267 else_bb
->il
.rtl
->global_live_at_end
);
3269 delete_basic_block (else_bb
);
3272 num_updated_if_blocks
++;
3274 /* ??? We may now fallthru from one of THEN's successors into a join
3275 block. Rerun cleanup_cfg? Examine things manually? Wait? */
3280 /* A subroutine of dead_or_predicable called through for_each_rtx.
3281 Return 1 if a memory is found. */
3284 find_memory (rtx
*px
, void *data ATTRIBUTE_UNUSED
)
3289 /* Used by the code above to perform the actual rtl transformations.
3290 Return TRUE if successful.
3292 TEST_BB is the block containing the conditional branch. MERGE_BB
3293 is the block containing the code to manipulate. NEW_DEST is the
3294 label TEST_BB should be branching to after the conversion.
3295 REVERSEP is true if the sense of the branch should be reversed. */
3298 dead_or_predicable (basic_block test_bb
, basic_block merge_bb
,
3299 basic_block other_bb
, basic_block new_dest
, int reversep
)
3301 rtx head
, end
, jump
, earliest
= NULL_RTX
, old_dest
, new_label
= NULL_RTX
;
3303 jump
= BB_END (test_bb
);
3305 /* Find the extent of the real code in the merge block. */
3306 head
= BB_HEAD (merge_bb
);
3307 end
= BB_END (merge_bb
);
3310 head
= NEXT_INSN (head
);
3315 head
= end
= NULL_RTX
;
3318 head
= NEXT_INSN (head
);
3325 head
= end
= NULL_RTX
;
3328 end
= PREV_INSN (end
);
3331 /* Disable handling dead code by conditional execution if the machine needs
3332 to do anything funny with the tests, etc. */
3333 #ifndef IFCVT_MODIFY_TESTS
3334 if (HAVE_conditional_execution
)
3336 /* In the conditional execution case, we have things easy. We know
3337 the condition is reversible. We don't have to check life info
3338 because we're going to conditionally execute the code anyway.
3339 All that's left is making sure the insns involved can actually
3344 cond
= cond_exec_get_condition (jump
);
3348 prob_val
= find_reg_note (jump
, REG_BR_PROB
, NULL_RTX
);
3350 prob_val
= XEXP (prob_val
, 0);
3354 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
3357 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
3360 prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (prob_val
));
3363 if (! cond_exec_process_insns ((ce_if_block_t
*)0, head
, end
, cond
,
3372 /* In the non-conditional execution case, we have to verify that there
3373 are no trapping operations, no calls, no references to memory, and
3374 that any registers modified are dead at the branch site. */
3376 rtx insn
, cond
, prev
;
3377 regset merge_set
, tmp
, test_live
, test_set
;
3378 struct propagate_block_info
*pbi
;
3379 unsigned i
, fail
= 0;
3382 /* Check for no calls or trapping operations. */
3383 for (insn
= head
; ; insn
= NEXT_INSN (insn
))
3389 if (may_trap_p (PATTERN (insn
)))
3392 /* ??? Even non-trapping memories such as stack frame
3393 references must be avoided. For stores, we collect
3394 no lifetime info; for reads, we'd have to assert
3395 true_dependence false against every store in the
3397 if (for_each_rtx (&PATTERN (insn
), find_memory
, NULL
))
3404 if (! any_condjump_p (jump
))
3407 /* Find the extent of the conditional. */
3408 cond
= noce_get_condition (jump
, &earliest
);
3413 MERGE_SET = set of registers set in MERGE_BB
3414 TEST_LIVE = set of registers live at EARLIEST
3415 TEST_SET = set of registers set between EARLIEST and the
3416 end of the block. */
3418 tmp
= ALLOC_REG_SET (®_obstack
);
3419 merge_set
= ALLOC_REG_SET (®_obstack
);
3420 test_live
= ALLOC_REG_SET (®_obstack
);
3421 test_set
= ALLOC_REG_SET (®_obstack
);
3423 /* ??? bb->local_set is only valid during calculate_global_regs_live,
3424 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
3425 since we've already asserted that MERGE_BB is small. */
3426 /* If we allocated new pseudos (e.g. in the conditional move
3427 expander called from noce_emit_cmove), we must resize the
3429 if (max_regno
< max_reg_num ())
3431 max_regno
= max_reg_num ();
3432 allocate_reg_info (max_regno
, FALSE
, FALSE
);
3434 propagate_block (merge_bb
, tmp
, merge_set
, merge_set
, 0);
3436 /* For small register class machines, don't lengthen lifetimes of
3437 hard registers before reload. */
3438 if (SMALL_REGISTER_CLASSES
&& ! reload_completed
)
3440 EXECUTE_IF_SET_IN_BITMAP (merge_set
, 0, i
, bi
)
3442 if (i
< FIRST_PSEUDO_REGISTER
3444 && ! global_regs
[i
])
3449 /* For TEST, we're interested in a range of insns, not a whole block.
3450 Moreover, we're interested in the insns live from OTHER_BB. */
3452 COPY_REG_SET (test_live
, other_bb
->il
.rtl
->global_live_at_start
);
3453 pbi
= init_propagate_block_info (test_bb
, test_live
, test_set
, test_set
,
3456 for (insn
= jump
; ; insn
= prev
)
3458 prev
= propagate_one_insn (pbi
, insn
);
3459 if (insn
== earliest
)
3463 free_propagate_block_info (pbi
);
3465 /* We can perform the transformation if
3466 MERGE_SET & (TEST_SET | TEST_LIVE)
3468 TEST_SET & merge_bb->il.rtl->global_live_at_start
3471 if (bitmap_intersect_p (test_set
, merge_set
)
3472 || bitmap_intersect_p (test_live
, merge_set
)
3473 || bitmap_intersect_p (test_set
,
3474 merge_bb
->il
.rtl
->global_live_at_start
))
3478 FREE_REG_SET (merge_set
);
3479 FREE_REG_SET (test_live
);
3480 FREE_REG_SET (test_set
);
3487 /* We don't want to use normal invert_jump or redirect_jump because
3488 we don't want to delete_insn called. Also, we want to do our own
3489 change group management. */
3491 old_dest
= JUMP_LABEL (jump
);
3492 if (other_bb
!= new_dest
)
3494 new_label
= block_label (new_dest
);
3496 ? ! invert_jump_1 (jump
, new_label
)
3497 : ! redirect_jump_1 (jump
, new_label
))
3501 if (! apply_change_group ())
3504 if (other_bb
!= new_dest
)
3506 redirect_jump_2 (jump
, old_dest
, new_label
, -1, reversep
);
3508 redirect_edge_succ (BRANCH_EDGE (test_bb
), new_dest
);
3511 gcov_type count
, probability
;
3512 count
= BRANCH_EDGE (test_bb
)->count
;
3513 BRANCH_EDGE (test_bb
)->count
= FALLTHRU_EDGE (test_bb
)->count
;
3514 FALLTHRU_EDGE (test_bb
)->count
= count
;
3515 probability
= BRANCH_EDGE (test_bb
)->probability
;
3516 BRANCH_EDGE (test_bb
)->probability
3517 = FALLTHRU_EDGE (test_bb
)->probability
;
3518 FALLTHRU_EDGE (test_bb
)->probability
= probability
;
3519 update_br_prob_note (test_bb
);
3523 /* Move the insns out of MERGE_BB to before the branch. */
3528 if (end
== BB_END (merge_bb
))
3529 BB_END (merge_bb
) = PREV_INSN (head
);
3531 if (squeeze_notes (&head
, &end
))
3534 /* PR 21767: When moving insns above a conditional branch, REG_EQUAL
3535 notes might become invalid. */
3541 if (! INSN_P (insn
))
3543 note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
);
3546 set
= single_set (insn
);
3547 if (!set
|| !function_invariant_p (SET_SRC (set
)))
3548 remove_note (insn
, note
);
3549 } while (insn
!= end
&& (insn
= NEXT_INSN (insn
)));
3551 reorder_insns (head
, end
, PREV_INSN (earliest
));
3554 /* Remove the jump and edge if we can. */
3555 if (other_bb
== new_dest
)
3558 remove_edge (BRANCH_EDGE (test_bb
));
3559 /* ??? Can't merge blocks here, as then_bb is still in use.
3560 At minimum, the merge will get done just before bb-reorder. */
3570 /* Main entry point for all if-conversion. */
3573 if_convert (int x_life_data_ok
)
3578 num_possible_if_blocks
= 0;
3579 num_updated_if_blocks
= 0;
3580 num_true_changes
= 0;
3581 life_data_ok
= (x_life_data_ok
!= 0);
3583 if ((! targetm
.cannot_modify_jumps_p ())
3584 && (!flag_reorder_blocks_and_partition
|| !no_new_pseudos
3585 || !targetm
.have_named_sections
))
3589 flow_loops_find (&loops
);
3590 mark_loop_exit_edges (&loops
);
3591 flow_loops_free (&loops
);
3592 free_dominance_info (CDI_DOMINATORS
);
3595 /* Compute postdominators if we think we'll use them. */
3596 if (HAVE_conditional_execution
|| life_data_ok
)
3597 calculate_dominance_info (CDI_POST_DOMINATORS
);
3602 /* Go through each of the basic blocks looking for things to convert. If we
3603 have conditional execution, we make multiple passes to allow us to handle
3604 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
3608 cond_exec_changed_p
= FALSE
;
3611 #ifdef IFCVT_MULTIPLE_DUMPS
3612 if (dump_file
&& pass
> 1)
3613 fprintf (dump_file
, "\n\n========== Pass %d ==========\n", pass
);
3619 while ((new_bb
= find_if_header (bb
, pass
)))
3623 #ifdef IFCVT_MULTIPLE_DUMPS
3624 if (dump_file
&& cond_exec_changed_p
)
3625 print_rtl_with_bb (dump_file
, get_insns ());
3628 while (cond_exec_changed_p
);
3630 #ifdef IFCVT_MULTIPLE_DUMPS
3632 fprintf (dump_file
, "\n\n========== no more changes\n");
3635 free_dominance_info (CDI_POST_DOMINATORS
);
3640 clear_aux_for_blocks ();
3642 /* Rebuild life info for basic blocks that require it. */
3643 if (num_true_changes
&& life_data_ok
)
3645 /* If we allocated new pseudos, we must resize the array for sched1. */
3646 if (max_regno
< max_reg_num ())
3648 max_regno
= max_reg_num ();
3649 allocate_reg_info (max_regno
, FALSE
, FALSE
);
3651 update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES
,
3652 PROP_DEATH_NOTES
| PROP_SCAN_DEAD_CODE
3653 | PROP_KILL_DEAD_CODE
);
3656 /* Write the final stats. */
3657 if (dump_file
&& num_possible_if_blocks
> 0)
3660 "\n%d possible IF blocks searched.\n",
3661 num_possible_if_blocks
);
3663 "%d IF blocks converted.\n",
3664 num_updated_if_blocks
);
3666 "%d true changes made.\n\n\n",
3670 #ifdef ENABLE_CHECKING
3671 verify_flow_info ();
3676 gate_handle_if_conversion (void)
3678 return (optimize
> 0);
3681 /* If-conversion and CFG cleanup. */
3683 rest_of_handle_if_conversion (void)
3685 if (flag_if_conversion
)
3688 dump_flow_info (dump_file
);
3689 cleanup_cfg (CLEANUP_EXPENSIVE
);
3690 reg_scan (get_insns (), max_reg_num ());
3694 timevar_push (TV_JUMP
);
3695 cleanup_cfg (CLEANUP_EXPENSIVE
);
3696 reg_scan (get_insns (), max_reg_num ());
3697 timevar_pop (TV_JUMP
);
3700 struct tree_opt_pass pass_rtl_ifcvt
=
3703 gate_handle_if_conversion
, /* gate */
3704 rest_of_handle_if_conversion
, /* execute */
3707 0, /* static_pass_number */
3708 TV_IFCVT
, /* tv_id */
3709 0, /* properties_required */
3710 0, /* properties_provided */
3711 0, /* properties_destroyed */
3712 0, /* todo_flags_start */
3713 TODO_dump_func
, /* todo_flags_finish */
3718 gate_handle_if_after_combine (void)
3720 return (optimize
> 0 && flag_if_conversion
);
3724 /* Rerun if-conversion, as combine may have simplified things enough
3725 to now meet sequence length restrictions. */
3727 rest_of_handle_if_after_combine (void)
3734 struct tree_opt_pass pass_if_after_combine
=
3737 gate_handle_if_after_combine
, /* gate */
3738 rest_of_handle_if_after_combine
, /* execute */
3741 0, /* static_pass_number */
3742 TV_IFCVT
, /* tv_id */
3743 0, /* properties_required */
3744 0, /* properties_provided */
3745 0, /* properties_destroyed */
3746 0, /* todo_flags_start */
3748 TODO_ggc_collect
, /* todo_flags_finish */
3754 gate_handle_if_after_reload (void)
3756 return (optimize
> 0);
3760 rest_of_handle_if_after_reload (void)
3762 /* Last attempt to optimize CFG, as scheduling, peepholing and insn
3763 splitting possibly introduced more crossjumping opportunities. */
3764 cleanup_cfg (CLEANUP_EXPENSIVE
3765 | CLEANUP_UPDATE_LIFE
3766 | (flag_crossjumping
? CLEANUP_CROSSJUMP
: 0));
3767 if (flag_if_conversion2
)
3772 struct tree_opt_pass pass_if_after_reload
=
3775 gate_handle_if_after_reload
, /* gate */
3776 rest_of_handle_if_after_reload
, /* execute */
3779 0, /* static_pass_number */
3780 TV_IFCVT2
, /* tv_id */
3781 0, /* properties_required */
3782 0, /* properties_provided */
3783 0, /* properties_destroyed */
3784 0, /* todo_flags_start */
3786 TODO_ggc_collect
, /* todo_flags_finish */