1 /* If-conversion support.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
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"
44 #include "tree-pass.h"
50 #ifndef HAVE_conditional_execution
51 #define HAVE_conditional_execution 0
53 #ifndef HAVE_conditional_move
54 #define HAVE_conditional_move 0
65 #ifndef HAVE_conditional_trap
66 #define HAVE_conditional_trap 0
69 #ifndef MAX_CONDITIONAL_EXECUTE
70 #define MAX_CONDITIONAL_EXECUTE \
71 (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
75 #define IFCVT_MULTIPLE_DUMPS 1
77 #define NULL_BLOCK ((basic_block) NULL)
79 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
80 static int num_possible_if_blocks
;
82 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
84 static int num_updated_if_blocks
;
86 /* # of changes made. */
87 static int num_true_changes
;
89 /* Whether conditional execution changes were made. */
90 static int cond_exec_changed_p
;
92 /* Forward references. */
93 static int count_bb_insns (const_basic_block
);
94 static bool cheap_bb_rtx_cost_p (const_basic_block
, int);
95 static rtx
first_active_insn (basic_block
);
96 static rtx
last_active_insn (basic_block
, int);
97 static basic_block
block_fallthru (basic_block
);
98 static int cond_exec_process_insns (ce_if_block_t
*, rtx
, rtx
, rtx
, rtx
, int);
99 static rtx
cond_exec_get_condition (rtx
);
100 static rtx
noce_get_condition (rtx
, rtx
*, bool);
101 static int noce_operand_ok (const_rtx
);
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 noce_find_if_block (basic_block
, edge
, edge
, int);
107 static int cond_exec_find_if_block (ce_if_block_t
*);
108 static int find_if_case_1 (basic_block
, edge
, edge
);
109 static int find_if_case_2 (basic_block
, edge
, edge
);
110 static int find_memory (rtx
*, void *);
111 static int dead_or_predicable (basic_block
, basic_block
, basic_block
,
113 static void noce_emit_move_insn (rtx
, rtx
);
114 static rtx
block_has_only_trap (basic_block
);
116 /* Count the number of non-jump active insns in BB. */
119 count_bb_insns (const_basic_block bb
)
122 rtx insn
= BB_HEAD (bb
);
126 if (CALL_P (insn
) || NONJUMP_INSN_P (insn
))
129 if (insn
== BB_END (bb
))
131 insn
= NEXT_INSN (insn
);
137 /* Determine whether the total insn_rtx_cost on non-jump insns in
138 basic block BB is less than MAX_COST. This function returns
139 false if the cost of any instruction could not be estimated. */
142 cheap_bb_rtx_cost_p (const_basic_block bb
, int max_cost
)
145 rtx insn
= BB_HEAD (bb
);
146 bool speed
= optimize_bb_for_speed_p (bb
);
150 if (NONJUMP_INSN_P (insn
))
152 int cost
= insn_rtx_cost (PATTERN (insn
), speed
);
156 /* If this instruction is the load or set of a "stack" register,
157 such as a floating point register on x87, then the cost of
158 speculatively executing this insn may need to include
159 the additional cost of popping its result off of the
160 register stack. Unfortunately, correctly recognizing and
161 accounting for this additional overhead is tricky, so for
162 now we simply prohibit such speculative execution. */
165 rtx set
= single_set (insn
);
166 if (set
&& STACK_REG_P (SET_DEST (set
)))
172 if (count
>= max_cost
)
175 else if (CALL_P (insn
))
178 if (insn
== BB_END (bb
))
180 insn
= NEXT_INSN (insn
);
186 /* Return the first non-jump active insn in the basic block. */
189 first_active_insn (basic_block bb
)
191 rtx insn
= BB_HEAD (bb
);
195 if (insn
== BB_END (bb
))
197 insn
= NEXT_INSN (insn
);
200 while (NOTE_P (insn
))
202 if (insn
== BB_END (bb
))
204 insn
= NEXT_INSN (insn
);
213 /* Return the last non-jump active (non-jump) insn in the basic block. */
216 last_active_insn (basic_block bb
, int skip_use_p
)
218 rtx insn
= BB_END (bb
);
219 rtx head
= BB_HEAD (bb
);
224 && NONJUMP_INSN_P (insn
)
225 && GET_CODE (PATTERN (insn
)) == USE
))
229 insn
= PREV_INSN (insn
);
238 /* Return the basic block reached by falling though the basic block BB. */
241 block_fallthru (basic_block bb
)
246 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
247 if (e
->flags
& EDGE_FALLTHRU
)
250 return (e
) ? e
->dest
: NULL_BLOCK
;
253 /* Go through a bunch of insns, converting them to conditional
254 execution format if possible. Return TRUE if all of the non-note
255 insns were processed. */
258 cond_exec_process_insns (ce_if_block_t
*ce_info ATTRIBUTE_UNUSED
,
259 /* if block information */rtx start
,
260 /* first insn to look at */rtx end
,
261 /* last insn to look at */rtx test
,
262 /* conditional execution test */rtx prob_val
,
263 /* probability of branch taken. */int mod_ok
)
265 int must_be_last
= FALSE
;
273 for (insn
= start
; ; insn
= NEXT_INSN (insn
))
278 gcc_assert(NONJUMP_INSN_P (insn
) || CALL_P (insn
));
280 /* Remove USE insns that get in the way. */
281 if (reload_completed
&& GET_CODE (PATTERN (insn
)) == USE
)
283 /* ??? Ug. Actually unlinking the thing is problematic,
284 given what we'd have to coordinate with our callers. */
285 SET_INSN_DELETED (insn
);
289 /* Last insn wasn't last? */
293 if (modified_in_p (test
, insn
))
300 /* Now build the conditional form of the instruction. */
301 pattern
= PATTERN (insn
);
302 xtest
= copy_rtx (test
);
304 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
306 if (GET_CODE (pattern
) == COND_EXEC
)
308 if (GET_MODE (xtest
) != GET_MODE (COND_EXEC_TEST (pattern
)))
311 xtest
= gen_rtx_AND (GET_MODE (xtest
), xtest
,
312 COND_EXEC_TEST (pattern
));
313 pattern
= COND_EXEC_CODE (pattern
);
316 pattern
= gen_rtx_COND_EXEC (VOIDmode
, xtest
, pattern
);
318 /* If the machine needs to modify the insn being conditionally executed,
319 say for example to force a constant integer operand into a temp
320 register, do so here. */
321 #ifdef IFCVT_MODIFY_INSN
322 IFCVT_MODIFY_INSN (ce_info
, pattern
, insn
);
327 validate_change (insn
, &PATTERN (insn
), pattern
, 1);
329 if (CALL_P (insn
) && prob_val
)
330 validate_change (insn
, ®_NOTES (insn
),
331 alloc_EXPR_LIST (REG_BR_PROB
, prob_val
,
332 REG_NOTES (insn
)), 1);
342 /* Return the condition for a jump. Do not do any special processing. */
345 cond_exec_get_condition (rtx jump
)
349 if (any_condjump_p (jump
))
350 test_if
= SET_SRC (pc_set (jump
));
353 cond
= XEXP (test_if
, 0);
355 /* If this branches to JUMP_LABEL when the condition is false,
356 reverse the condition. */
357 if (GET_CODE (XEXP (test_if
, 2)) == LABEL_REF
358 && XEXP (XEXP (test_if
, 2), 0) == JUMP_LABEL (jump
))
360 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
364 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
371 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
372 to conditional execution. Return TRUE if we were successful at
373 converting the block. */
376 cond_exec_process_if_block (ce_if_block_t
* ce_info
,
377 /* if block information */int do_multiple_p
)
379 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
380 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
381 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
382 rtx test_expr
; /* expression in IF_THEN_ELSE that is tested */
383 rtx then_start
; /* first insn in THEN block */
384 rtx then_end
; /* last insn + 1 in THEN block */
385 rtx else_start
= NULL_RTX
; /* first insn in ELSE block or NULL */
386 rtx else_end
= NULL_RTX
; /* last insn + 1 in ELSE block */
387 int max
; /* max # of insns to convert. */
388 int then_mod_ok
; /* whether conditional mods are ok in THEN */
389 rtx true_expr
; /* test for else block insns */
390 rtx false_expr
; /* test for then block insns */
391 rtx true_prob_val
; /* probability of else block */
392 rtx false_prob_val
; /* probability of then block */
394 enum rtx_code false_code
;
396 /* If test is comprised of && or || elements, and we've failed at handling
397 all of them together, just use the last test if it is the special case of
398 && elements without an ELSE block. */
399 if (!do_multiple_p
&& ce_info
->num_multiple_test_blocks
)
401 if (else_bb
|| ! ce_info
->and_and_p
)
404 ce_info
->test_bb
= test_bb
= ce_info
->last_test_bb
;
405 ce_info
->num_multiple_test_blocks
= 0;
406 ce_info
->num_and_and_blocks
= 0;
407 ce_info
->num_or_or_blocks
= 0;
410 /* Find the conditional jump to the ELSE or JOIN part, and isolate
412 test_expr
= cond_exec_get_condition (BB_END (test_bb
));
416 /* If the conditional jump is more than just a conditional jump,
417 then we can not do conditional execution conversion on this block. */
418 if (! onlyjump_p (BB_END (test_bb
)))
421 /* Collect the bounds of where we're to search, skipping any labels, jumps
422 and notes at the beginning and end of the block. Then count the total
423 number of insns and see if it is small enough to convert. */
424 then_start
= first_active_insn (then_bb
);
425 then_end
= last_active_insn (then_bb
, TRUE
);
426 n_insns
= ce_info
->num_then_insns
= count_bb_insns (then_bb
);
427 max
= MAX_CONDITIONAL_EXECUTE
;
432 else_start
= first_active_insn (else_bb
);
433 else_end
= last_active_insn (else_bb
, TRUE
);
434 n_insns
+= ce_info
->num_else_insns
= count_bb_insns (else_bb
);
440 /* Map test_expr/test_jump into the appropriate MD tests to use on
441 the conditionally executed code. */
443 true_expr
= test_expr
;
445 false_code
= reversed_comparison_code (true_expr
, BB_END (test_bb
));
446 if (false_code
!= UNKNOWN
)
447 false_expr
= gen_rtx_fmt_ee (false_code
, GET_MODE (true_expr
),
448 XEXP (true_expr
, 0), XEXP (true_expr
, 1));
450 false_expr
= NULL_RTX
;
452 #ifdef IFCVT_MODIFY_TESTS
453 /* If the machine description needs to modify the tests, such as setting a
454 conditional execution register from a comparison, it can do so here. */
455 IFCVT_MODIFY_TESTS (ce_info
, true_expr
, false_expr
);
457 /* See if the conversion failed. */
458 if (!true_expr
|| !false_expr
)
462 true_prob_val
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
465 true_prob_val
= XEXP (true_prob_val
, 0);
466 false_prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (true_prob_val
));
469 false_prob_val
= NULL_RTX
;
471 /* If we have && or || tests, do them here. These tests are in the adjacent
472 blocks after the first block containing the test. */
473 if (ce_info
->num_multiple_test_blocks
> 0)
475 basic_block bb
= test_bb
;
476 basic_block last_test_bb
= ce_info
->last_test_bb
;
485 enum rtx_code f_code
;
487 bb
= block_fallthru (bb
);
488 start
= first_active_insn (bb
);
489 end
= last_active_insn (bb
, TRUE
);
491 && ! cond_exec_process_insns (ce_info
, start
, end
, false_expr
,
492 false_prob_val
, FALSE
))
495 /* If the conditional jump is more than just a conditional jump, then
496 we can not do conditional execution conversion on this block. */
497 if (! onlyjump_p (BB_END (bb
)))
500 /* Find the conditional jump and isolate the test. */
501 t
= cond_exec_get_condition (BB_END (bb
));
505 f_code
= reversed_comparison_code (t
, BB_END (bb
));
506 if (f_code
== UNKNOWN
)
509 f
= gen_rtx_fmt_ee (f_code
, GET_MODE (t
), XEXP (t
, 0), XEXP (t
, 1));
510 if (ce_info
->and_and_p
)
512 t
= gen_rtx_AND (GET_MODE (t
), true_expr
, t
);
513 f
= gen_rtx_IOR (GET_MODE (t
), false_expr
, f
);
517 t
= gen_rtx_IOR (GET_MODE (t
), true_expr
, t
);
518 f
= gen_rtx_AND (GET_MODE (t
), false_expr
, f
);
521 /* If the machine description needs to modify the tests, such as
522 setting a conditional execution register from a comparison, it can
524 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
525 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info
, bb
, t
, f
);
527 /* See if the conversion failed. */
535 while (bb
!= last_test_bb
);
538 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
539 on then THEN block. */
540 then_mod_ok
= (else_bb
== NULL_BLOCK
);
542 /* Go through the THEN and ELSE blocks converting the insns if possible
543 to conditional execution. */
547 || ! cond_exec_process_insns (ce_info
, then_start
, then_end
,
548 false_expr
, false_prob_val
,
552 if (else_bb
&& else_end
553 && ! cond_exec_process_insns (ce_info
, else_start
, else_end
,
554 true_expr
, true_prob_val
, TRUE
))
557 /* If we cannot apply the changes, fail. Do not go through the normal fail
558 processing, since apply_change_group will call cancel_changes. */
559 if (! apply_change_group ())
561 #ifdef IFCVT_MODIFY_CANCEL
562 /* Cancel any machine dependent changes. */
563 IFCVT_MODIFY_CANCEL (ce_info
);
568 #ifdef IFCVT_MODIFY_FINAL
569 /* Do any machine dependent final modifications. */
570 IFCVT_MODIFY_FINAL (ce_info
);
573 /* Conversion succeeded. */
575 fprintf (dump_file
, "%d insn%s converted to conditional execution.\n",
576 n_insns
, (n_insns
== 1) ? " was" : "s were");
578 /* Merge the blocks! */
579 merge_if_block (ce_info
);
580 cond_exec_changed_p
= TRUE
;
584 #ifdef IFCVT_MODIFY_CANCEL
585 /* Cancel any machine dependent changes. */
586 IFCVT_MODIFY_CANCEL (ce_info
);
593 /* Used by noce_process_if_block to communicate with its subroutines.
595 The subroutines know that A and B may be evaluated freely. They
596 know that X is a register. They should insert new instructions
597 before cond_earliest. */
601 /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block. */
602 basic_block test_bb
, then_bb
, else_bb
, join_bb
;
604 /* The jump that ends TEST_BB. */
607 /* The jump condition. */
610 /* New insns should be inserted before this one. */
613 /* Insns in the THEN and ELSE block. There is always just this
614 one insns in those blocks. The insns are single_set insns.
615 If there was no ELSE block, INSN_B is the last insn before
616 COND_EARLIEST, or NULL_RTX. In the former case, the insn
617 operands are still valid, as if INSN_B was moved down below
621 /* The SET_SRC of INSN_A and INSN_B. */
624 /* The SET_DEST of INSN_A. */
627 /* True if this if block is not canonical. In the canonical form of
628 if blocks, the THEN_BB is the block reached via the fallthru edge
629 from TEST_BB. For the noce transformations, we allow the symmetric
631 bool then_else_reversed
;
633 /* Estimated cost of the particular branch instruction. */
637 static rtx
noce_emit_store_flag (struct noce_if_info
*, rtx
, int, int);
638 static int noce_try_move (struct noce_if_info
*);
639 static int noce_try_store_flag (struct noce_if_info
*);
640 static int noce_try_addcc (struct noce_if_info
*);
641 static int noce_try_store_flag_constants (struct noce_if_info
*);
642 static int noce_try_store_flag_mask (struct noce_if_info
*);
643 static rtx
noce_emit_cmove (struct noce_if_info
*, rtx
, enum rtx_code
, rtx
,
645 static int noce_try_cmove (struct noce_if_info
*);
646 static int noce_try_cmove_arith (struct noce_if_info
*);
647 static rtx
noce_get_alt_condition (struct noce_if_info
*, rtx
, rtx
*);
648 static int noce_try_minmax (struct noce_if_info
*);
649 static int noce_try_abs (struct noce_if_info
*);
650 static int noce_try_sign_mask (struct noce_if_info
*);
652 /* Helper function for noce_try_store_flag*. */
655 noce_emit_store_flag (struct noce_if_info
*if_info
, rtx x
, int reversep
,
658 rtx cond
= if_info
->cond
;
662 cond_complex
= (! general_operand (XEXP (cond
, 0), VOIDmode
)
663 || ! general_operand (XEXP (cond
, 1), VOIDmode
));
665 /* If earliest == jump, or when the condition is complex, try to
666 build the store_flag insn directly. */
670 rtx set
= pc_set (if_info
->jump
);
671 cond
= XEXP (SET_SRC (set
), 0);
672 if (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
673 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (if_info
->jump
))
674 reversep
= !reversep
;
675 if (if_info
->then_else_reversed
)
676 reversep
= !reversep
;
680 code
= reversed_comparison_code (cond
, if_info
->jump
);
682 code
= GET_CODE (cond
);
684 if ((if_info
->cond_earliest
== if_info
->jump
|| cond_complex
)
685 && (normalize
== 0 || STORE_FLAG_VALUE
== normalize
))
689 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (x
), XEXP (cond
, 0),
691 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
694 tmp
= emit_insn (tmp
);
696 if (recog_memoized (tmp
) >= 0)
702 if_info
->cond_earliest
= if_info
->jump
;
710 /* Don't even try if the comparison operands or the mode of X are weird. */
711 if (cond_complex
|| !SCALAR_INT_MODE_P (GET_MODE (x
)))
714 return emit_store_flag (x
, code
, XEXP (cond
, 0),
715 XEXP (cond
, 1), VOIDmode
,
716 (code
== LTU
|| code
== LEU
717 || code
== GEU
|| code
== GTU
), normalize
);
720 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
721 X is the destination/target and Y is the value to copy. */
724 noce_emit_move_insn (rtx x
, rtx y
)
726 enum machine_mode outmode
;
730 if (GET_CODE (x
) != STRICT_LOW_PART
)
732 rtx seq
, insn
, target
;
736 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
737 otherwise construct a suitable SET pattern ourselves. */
738 insn
= (OBJECT_P (y
) || CONSTANT_P (y
) || GET_CODE (y
) == SUBREG
)
739 ? emit_move_insn (x
, y
)
740 : emit_insn (gen_rtx_SET (VOIDmode
, x
, y
));
744 if (recog_memoized (insn
) <= 0)
746 if (GET_CODE (x
) == ZERO_EXTRACT
)
748 rtx op
= XEXP (x
, 0);
749 unsigned HOST_WIDE_INT size
= INTVAL (XEXP (x
, 1));
750 unsigned HOST_WIDE_INT start
= INTVAL (XEXP (x
, 2));
752 /* store_bit_field expects START to be relative to
753 BYTES_BIG_ENDIAN and adjusts this value for machines with
754 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
755 invoke store_bit_field again it is necessary to have the START
756 value from the first call. */
757 if (BITS_BIG_ENDIAN
!= BYTES_BIG_ENDIAN
)
760 start
= BITS_PER_UNIT
- start
- size
;
763 gcc_assert (REG_P (op
));
764 start
= BITS_PER_WORD
- start
- size
;
768 gcc_assert (start
< (MEM_P (op
) ? BITS_PER_UNIT
: BITS_PER_WORD
));
769 store_bit_field (op
, size
, start
, GET_MODE (x
), y
);
773 switch (GET_RTX_CLASS (GET_CODE (y
)))
776 ot
= code_to_optab
[GET_CODE (y
)];
780 target
= expand_unop (GET_MODE (y
), ot
, XEXP (y
, 0), x
, 0);
781 if (target
!= NULL_RTX
)
784 emit_move_insn (x
, target
);
793 ot
= code_to_optab
[GET_CODE (y
)];
797 target
= expand_binop (GET_MODE (y
), ot
,
798 XEXP (y
, 0), XEXP (y
, 1),
800 if (target
!= NULL_RTX
)
803 emit_move_insn (x
, target
);
820 inner
= XEXP (outer
, 0);
821 outmode
= GET_MODE (outer
);
822 bitpos
= SUBREG_BYTE (outer
) * BITS_PER_UNIT
;
823 store_bit_field (inner
, GET_MODE_BITSIZE (outmode
), bitpos
, outmode
, y
);
826 /* Return sequence of instructions generated by if conversion. This
827 function calls end_sequence() to end the current stream, ensures
828 that are instructions are unshared, recognizable non-jump insns.
829 On failure, this function returns a NULL_RTX. */
832 end_ifcvt_sequence (struct noce_if_info
*if_info
)
835 rtx seq
= get_insns ();
837 set_used_flags (if_info
->x
);
838 set_used_flags (if_info
->cond
);
839 unshare_all_rtl_in_chain (seq
);
842 /* Make sure that all of the instructions emitted are recognizable,
843 and that we haven't introduced a new jump instruction.
844 As an exercise for the reader, build a general mechanism that
845 allows proper placement of required clobbers. */
846 for (insn
= seq
; insn
; insn
= NEXT_INSN (insn
))
848 || recog_memoized (insn
) == -1)
854 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
855 "if (a == b) x = a; else x = b" into "x = b". */
858 noce_try_move (struct noce_if_info
*if_info
)
860 rtx cond
= if_info
->cond
;
861 enum rtx_code code
= GET_CODE (cond
);
864 if (code
!= NE
&& code
!= EQ
)
867 /* This optimization isn't valid if either A or B could be a NaN
869 if (HONOR_NANS (GET_MODE (if_info
->x
))
870 || HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
)))
873 /* Check whether the operands of the comparison are A and in
875 if ((rtx_equal_p (if_info
->a
, XEXP (cond
, 0))
876 && rtx_equal_p (if_info
->b
, XEXP (cond
, 1)))
877 || (rtx_equal_p (if_info
->a
, XEXP (cond
, 1))
878 && rtx_equal_p (if_info
->b
, XEXP (cond
, 0))))
880 y
= (code
== EQ
) ? if_info
->a
: if_info
->b
;
882 /* Avoid generating the move if the source is the destination. */
883 if (! rtx_equal_p (if_info
->x
, y
))
886 noce_emit_move_insn (if_info
->x
, y
);
887 seq
= end_ifcvt_sequence (if_info
);
891 emit_insn_before_setloc (seq
, if_info
->jump
,
892 INSN_LOCATOR (if_info
->insn_a
));
899 /* Convert "if (test) x = 1; else x = 0".
901 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
902 tried in noce_try_store_flag_constants after noce_try_cmove has had
903 a go at the conversion. */
906 noce_try_store_flag (struct noce_if_info
*if_info
)
911 if (GET_CODE (if_info
->b
) == CONST_INT
912 && INTVAL (if_info
->b
) == STORE_FLAG_VALUE
913 && if_info
->a
== const0_rtx
)
915 else if (if_info
->b
== const0_rtx
916 && GET_CODE (if_info
->a
) == CONST_INT
917 && INTVAL (if_info
->a
) == STORE_FLAG_VALUE
918 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
926 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, 0);
929 if (target
!= if_info
->x
)
930 noce_emit_move_insn (if_info
->x
, target
);
932 seq
= end_ifcvt_sequence (if_info
);
936 emit_insn_before_setloc (seq
, if_info
->jump
,
937 INSN_LOCATOR (if_info
->insn_a
));
947 /* Convert "if (test) x = a; else x = b", for A and B constant. */
950 noce_try_store_flag_constants (struct noce_if_info
*if_info
)
954 HOST_WIDE_INT itrue
, ifalse
, diff
, tmp
;
955 int normalize
, can_reverse
;
956 enum machine_mode mode
;
958 if (GET_CODE (if_info
->a
) == CONST_INT
959 && GET_CODE (if_info
->b
) == CONST_INT
)
961 mode
= GET_MODE (if_info
->x
);
962 ifalse
= INTVAL (if_info
->a
);
963 itrue
= INTVAL (if_info
->b
);
965 /* Make sure we can represent the difference between the two values. */
966 if ((itrue
- ifalse
> 0)
967 != ((ifalse
< 0) != (itrue
< 0) ? ifalse
< 0 : ifalse
< itrue
))
970 diff
= trunc_int_for_mode (itrue
- ifalse
, mode
);
972 can_reverse
= (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
976 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
978 else if (ifalse
== 0 && exact_log2 (itrue
) >= 0
979 && (STORE_FLAG_VALUE
== 1
980 || if_info
->branch_cost
>= 2))
982 else if (itrue
== 0 && exact_log2 (ifalse
) >= 0 && can_reverse
983 && (STORE_FLAG_VALUE
== 1 || if_info
->branch_cost
>= 2))
984 normalize
= 1, reversep
= 1;
986 && (STORE_FLAG_VALUE
== -1
987 || if_info
->branch_cost
>= 2))
989 else if (ifalse
== -1 && can_reverse
990 && (STORE_FLAG_VALUE
== -1 || if_info
->branch_cost
>= 2))
991 normalize
= -1, reversep
= 1;
992 else if ((if_info
->branch_cost
>= 2 && STORE_FLAG_VALUE
== -1)
993 || if_info
->branch_cost
>= 3)
1000 tmp
= itrue
; itrue
= ifalse
; ifalse
= tmp
;
1001 diff
= trunc_int_for_mode (-diff
, mode
);
1005 target
= noce_emit_store_flag (if_info
, if_info
->x
, reversep
, normalize
);
1012 /* if (test) x = 3; else x = 4;
1013 => x = 3 + (test == 0); */
1014 if (diff
== STORE_FLAG_VALUE
|| diff
== -STORE_FLAG_VALUE
)
1016 target
= expand_simple_binop (mode
,
1017 (diff
== STORE_FLAG_VALUE
1019 GEN_INT (ifalse
), target
, if_info
->x
, 0,
1023 /* if (test) x = 8; else x = 0;
1024 => x = (test != 0) << 3; */
1025 else if (ifalse
== 0 && (tmp
= exact_log2 (itrue
)) >= 0)
1027 target
= expand_simple_binop (mode
, ASHIFT
,
1028 target
, GEN_INT (tmp
), if_info
->x
, 0,
1032 /* if (test) x = -1; else x = b;
1033 => x = -(test != 0) | b; */
1034 else if (itrue
== -1)
1036 target
= expand_simple_binop (mode
, IOR
,
1037 target
, GEN_INT (ifalse
), if_info
->x
, 0,
1041 /* if (test) x = a; else x = b;
1042 => x = (-(test != 0) & (b - a)) + a; */
1045 target
= expand_simple_binop (mode
, AND
,
1046 target
, GEN_INT (diff
), if_info
->x
, 0,
1049 target
= expand_simple_binop (mode
, PLUS
,
1050 target
, GEN_INT (ifalse
),
1051 if_info
->x
, 0, OPTAB_WIDEN
);
1060 if (target
!= if_info
->x
)
1061 noce_emit_move_insn (if_info
->x
, target
);
1063 seq
= end_ifcvt_sequence (if_info
);
1067 emit_insn_before_setloc (seq
, if_info
->jump
,
1068 INSN_LOCATOR (if_info
->insn_a
));
1075 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1076 similarly for "foo--". */
1079 noce_try_addcc (struct noce_if_info
*if_info
)
1082 int subtract
, normalize
;
1084 if (GET_CODE (if_info
->a
) == PLUS
1085 && rtx_equal_p (XEXP (if_info
->a
, 0), if_info
->b
)
1086 && (reversed_comparison_code (if_info
->cond
, if_info
->jump
)
1089 rtx cond
= if_info
->cond
;
1090 enum rtx_code code
= reversed_comparison_code (cond
, if_info
->jump
);
1092 /* First try to use addcc pattern. */
1093 if (general_operand (XEXP (cond
, 0), VOIDmode
)
1094 && general_operand (XEXP (cond
, 1), VOIDmode
))
1097 target
= emit_conditional_add (if_info
->x
, code
,
1102 XEXP (if_info
->a
, 1),
1103 GET_MODE (if_info
->x
),
1104 (code
== LTU
|| code
== GEU
1105 || code
== LEU
|| code
== GTU
));
1108 if (target
!= if_info
->x
)
1109 noce_emit_move_insn (if_info
->x
, target
);
1111 seq
= end_ifcvt_sequence (if_info
);
1115 emit_insn_before_setloc (seq
, if_info
->jump
,
1116 INSN_LOCATOR (if_info
->insn_a
));
1122 /* If that fails, construct conditional increment or decrement using
1124 if (if_info
->branch_cost
>= 2
1125 && (XEXP (if_info
->a
, 1) == const1_rtx
1126 || XEXP (if_info
->a
, 1) == constm1_rtx
))
1129 if (STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1130 subtract
= 0, normalize
= 0;
1131 else if (-STORE_FLAG_VALUE
== INTVAL (XEXP (if_info
->a
, 1)))
1132 subtract
= 1, normalize
= 0;
1134 subtract
= 0, normalize
= INTVAL (XEXP (if_info
->a
, 1));
1137 target
= noce_emit_store_flag (if_info
,
1138 gen_reg_rtx (GET_MODE (if_info
->x
)),
1142 target
= expand_simple_binop (GET_MODE (if_info
->x
),
1143 subtract
? MINUS
: PLUS
,
1144 if_info
->b
, target
, if_info
->x
,
1148 if (target
!= if_info
->x
)
1149 noce_emit_move_insn (if_info
->x
, target
);
1151 seq
= end_ifcvt_sequence (if_info
);
1155 emit_insn_before_setloc (seq
, if_info
->jump
,
1156 INSN_LOCATOR (if_info
->insn_a
));
1166 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1169 noce_try_store_flag_mask (struct noce_if_info
*if_info
)
1175 if ((if_info
->branch_cost
>= 2
1176 || STORE_FLAG_VALUE
== -1)
1177 && ((if_info
->a
== const0_rtx
1178 && rtx_equal_p (if_info
->b
, if_info
->x
))
1179 || ((reversep
= (reversed_comparison_code (if_info
->cond
,
1182 && if_info
->b
== const0_rtx
1183 && rtx_equal_p (if_info
->a
, if_info
->x
))))
1186 target
= noce_emit_store_flag (if_info
,
1187 gen_reg_rtx (GET_MODE (if_info
->x
)),
1190 target
= expand_simple_binop (GET_MODE (if_info
->x
), AND
,
1192 target
, if_info
->x
, 0,
1197 if (target
!= if_info
->x
)
1198 noce_emit_move_insn (if_info
->x
, target
);
1200 seq
= end_ifcvt_sequence (if_info
);
1204 emit_insn_before_setloc (seq
, if_info
->jump
,
1205 INSN_LOCATOR (if_info
->insn_a
));
1215 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1218 noce_emit_cmove (struct noce_if_info
*if_info
, rtx x
, enum rtx_code code
,
1219 rtx cmp_a
, rtx cmp_b
, rtx vfalse
, rtx vtrue
)
1221 /* If earliest == jump, try to build the cmove insn directly.
1222 This is helpful when combine has created some complex condition
1223 (like for alpha's cmovlbs) that we can't hope to regenerate
1224 through the normal interface. */
1226 if (if_info
->cond_earliest
== if_info
->jump
)
1230 tmp
= gen_rtx_fmt_ee (code
, GET_MODE (if_info
->cond
), cmp_a
, cmp_b
);
1231 tmp
= gen_rtx_IF_THEN_ELSE (GET_MODE (x
), tmp
, vtrue
, vfalse
);
1232 tmp
= gen_rtx_SET (VOIDmode
, x
, tmp
);
1235 tmp
= emit_insn (tmp
);
1237 if (recog_memoized (tmp
) >= 0)
1249 /* Don't even try if the comparison operands are weird. */
1250 if (! general_operand (cmp_a
, GET_MODE (cmp_a
))
1251 || ! general_operand (cmp_b
, GET_MODE (cmp_b
)))
1254 #if HAVE_conditional_move
1255 return emit_conditional_move (x
, code
, cmp_a
, cmp_b
, VOIDmode
,
1256 vtrue
, vfalse
, GET_MODE (x
),
1257 (code
== LTU
|| code
== GEU
1258 || code
== LEU
|| code
== GTU
));
1260 /* We'll never get here, as noce_process_if_block doesn't call the
1261 functions involved. Ifdef code, however, should be discouraged
1262 because it leads to typos in the code not selected. However,
1263 emit_conditional_move won't exist either. */
1268 /* Try only simple constants and registers here. More complex cases
1269 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1270 has had a go at it. */
1273 noce_try_cmove (struct noce_if_info
*if_info
)
1278 if ((CONSTANT_P (if_info
->a
) || register_operand (if_info
->a
, VOIDmode
))
1279 && (CONSTANT_P (if_info
->b
) || register_operand (if_info
->b
, VOIDmode
)))
1283 code
= GET_CODE (if_info
->cond
);
1284 target
= noce_emit_cmove (if_info
, if_info
->x
, code
,
1285 XEXP (if_info
->cond
, 0),
1286 XEXP (if_info
->cond
, 1),
1287 if_info
->a
, if_info
->b
);
1291 if (target
!= if_info
->x
)
1292 noce_emit_move_insn (if_info
->x
, target
);
1294 seq
= end_ifcvt_sequence (if_info
);
1298 emit_insn_before_setloc (seq
, if_info
->jump
,
1299 INSN_LOCATOR (if_info
->insn_a
));
1312 /* Try more complex cases involving conditional_move. */
1315 noce_try_cmove_arith (struct noce_if_info
*if_info
)
1327 /* A conditional move from two memory sources is equivalent to a
1328 conditional on their addresses followed by a load. Don't do this
1329 early because it'll screw alias analysis. Note that we've
1330 already checked for no side effects. */
1331 /* ??? FIXME: Magic number 5. */
1332 if (cse_not_expected
1333 && MEM_P (a
) && MEM_P (b
)
1334 && if_info
->branch_cost
>= 5)
1338 x
= gen_reg_rtx (Pmode
);
1342 /* ??? We could handle this if we knew that a load from A or B could
1343 not fault. This is also true if we've already loaded
1344 from the address along the path from ENTRY. */
1345 else if (may_trap_p (a
) || may_trap_p (b
))
1348 /* if (test) x = a + b; else x = c - d;
1355 code
= GET_CODE (if_info
->cond
);
1356 insn_a
= if_info
->insn_a
;
1357 insn_b
= if_info
->insn_b
;
1359 /* Total insn_rtx_cost should be smaller than branch cost. Exit
1360 if insn_rtx_cost can't be estimated. */
1363 insn_cost
= insn_rtx_cost (PATTERN (insn_a
),
1364 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_a
)));
1365 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (if_info
->branch_cost
))
1373 insn_cost
+= insn_rtx_cost (PATTERN (insn_b
),
1374 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_b
)));
1375 if (insn_cost
== 0 || insn_cost
> COSTS_N_INSNS (if_info
->branch_cost
))
1379 /* Possibly rearrange operands to make things come out more natural. */
1380 if (reversed_comparison_code (if_info
->cond
, if_info
->jump
) != UNKNOWN
)
1383 if (rtx_equal_p (b
, x
))
1385 else if (general_operand (b
, GET_MODE (b
)))
1390 code
= reversed_comparison_code (if_info
->cond
, if_info
->jump
);
1391 tmp
= a
, a
= b
, b
= tmp
;
1392 tmp
= insn_a
, insn_a
= insn_b
, insn_b
= tmp
;
1401 /* If either operand is complex, load it into a register first.
1402 The best way to do this is to copy the original insn. In this
1403 way we preserve any clobbers etc that the insn may have had.
1404 This is of course not possible in the IS_MEM case. */
1405 if (! general_operand (a
, GET_MODE (a
)))
1411 tmp
= gen_reg_rtx (GET_MODE (a
));
1412 tmp
= emit_insn (gen_rtx_SET (VOIDmode
, tmp
, a
));
1415 goto end_seq_and_fail
;
1418 a
= gen_reg_rtx (GET_MODE (a
));
1419 tmp
= copy_rtx (insn_a
);
1420 set
= single_set (tmp
);
1422 tmp
= emit_insn (PATTERN (tmp
));
1424 if (recog_memoized (tmp
) < 0)
1425 goto end_seq_and_fail
;
1427 if (! general_operand (b
, GET_MODE (b
)))
1433 tmp
= gen_reg_rtx (GET_MODE (b
));
1434 tmp
= gen_rtx_SET (VOIDmode
, tmp
, b
);
1437 goto end_seq_and_fail
;
1440 b
= gen_reg_rtx (GET_MODE (b
));
1441 tmp
= copy_rtx (insn_b
);
1442 set
= single_set (tmp
);
1444 tmp
= PATTERN (tmp
);
1447 /* If insn to set up A clobbers any registers B depends on, try to
1448 swap insn that sets up A with the one that sets up B. If even
1449 that doesn't help, punt. */
1450 last
= get_last_insn ();
1451 if (last
&& modified_in_p (orig_b
, last
))
1453 tmp
= emit_insn_before (tmp
, get_insns ());
1454 if (modified_in_p (orig_a
, tmp
))
1455 goto end_seq_and_fail
;
1458 tmp
= emit_insn (tmp
);
1460 if (recog_memoized (tmp
) < 0)
1461 goto end_seq_and_fail
;
1464 target
= noce_emit_cmove (if_info
, x
, code
, XEXP (if_info
->cond
, 0),
1465 XEXP (if_info
->cond
, 1), a
, b
);
1468 goto end_seq_and_fail
;
1470 /* If we're handling a memory for above, emit the load now. */
1473 tmp
= gen_rtx_MEM (GET_MODE (if_info
->x
), target
);
1475 /* Copy over flags as appropriate. */
1476 if (MEM_VOLATILE_P (if_info
->a
) || MEM_VOLATILE_P (if_info
->b
))
1477 MEM_VOLATILE_P (tmp
) = 1;
1478 if (MEM_IN_STRUCT_P (if_info
->a
) && MEM_IN_STRUCT_P (if_info
->b
))
1479 MEM_IN_STRUCT_P (tmp
) = 1;
1480 if (MEM_SCALAR_P (if_info
->a
) && MEM_SCALAR_P (if_info
->b
))
1481 MEM_SCALAR_P (tmp
) = 1;
1482 if (MEM_ALIAS_SET (if_info
->a
) == MEM_ALIAS_SET (if_info
->b
))
1483 set_mem_alias_set (tmp
, MEM_ALIAS_SET (if_info
->a
));
1485 MIN (MEM_ALIGN (if_info
->a
), MEM_ALIGN (if_info
->b
)));
1487 noce_emit_move_insn (if_info
->x
, tmp
);
1489 else if (target
!= x
)
1490 noce_emit_move_insn (x
, target
);
1492 tmp
= end_ifcvt_sequence (if_info
);
1496 emit_insn_before_setloc (tmp
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1504 /* For most cases, the simplified condition we found is the best
1505 choice, but this is not the case for the min/max/abs transforms.
1506 For these we wish to know that it is A or B in the condition. */
1509 noce_get_alt_condition (struct noce_if_info
*if_info
, rtx target
,
1512 rtx cond
, set
, insn
;
1515 /* If target is already mentioned in the known condition, return it. */
1516 if (reg_mentioned_p (target
, if_info
->cond
))
1518 *earliest
= if_info
->cond_earliest
;
1519 return if_info
->cond
;
1522 set
= pc_set (if_info
->jump
);
1523 cond
= XEXP (SET_SRC (set
), 0);
1525 = GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
1526 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (if_info
->jump
);
1527 if (if_info
->then_else_reversed
)
1530 /* If we're looking for a constant, try to make the conditional
1531 have that constant in it. There are two reasons why it may
1532 not have the constant we want:
1534 1. GCC may have needed to put the constant in a register, because
1535 the target can't compare directly against that constant. For
1536 this case, we look for a SET immediately before the comparison
1537 that puts a constant in that register.
1539 2. GCC may have canonicalized the conditional, for example
1540 replacing "if x < 4" with "if x <= 3". We can undo that (or
1541 make equivalent types of changes) to get the constants we need
1542 if they're off by one in the right direction. */
1544 if (GET_CODE (target
) == CONST_INT
)
1546 enum rtx_code code
= GET_CODE (if_info
->cond
);
1547 rtx op_a
= XEXP (if_info
->cond
, 0);
1548 rtx op_b
= XEXP (if_info
->cond
, 1);
1551 /* First, look to see if we put a constant in a register. */
1552 prev_insn
= prev_nonnote_insn (if_info
->cond_earliest
);
1554 && BLOCK_NUM (prev_insn
) == BLOCK_NUM (if_info
->cond_earliest
)
1555 && INSN_P (prev_insn
)
1556 && GET_CODE (PATTERN (prev_insn
)) == SET
)
1558 rtx src
= find_reg_equal_equiv_note (prev_insn
);
1560 src
= SET_SRC (PATTERN (prev_insn
));
1561 if (GET_CODE (src
) == CONST_INT
)
1563 if (rtx_equal_p (op_a
, SET_DEST (PATTERN (prev_insn
))))
1565 else if (rtx_equal_p (op_b
, SET_DEST (PATTERN (prev_insn
))))
1568 if (GET_CODE (op_a
) == CONST_INT
)
1573 code
= swap_condition (code
);
1578 /* Now, look to see if we can get the right constant by
1579 adjusting the conditional. */
1580 if (GET_CODE (op_b
) == CONST_INT
)
1582 HOST_WIDE_INT desired_val
= INTVAL (target
);
1583 HOST_WIDE_INT actual_val
= INTVAL (op_b
);
1588 if (actual_val
== desired_val
+ 1)
1591 op_b
= GEN_INT (desired_val
);
1595 if (actual_val
== desired_val
- 1)
1598 op_b
= GEN_INT (desired_val
);
1602 if (actual_val
== desired_val
- 1)
1605 op_b
= GEN_INT (desired_val
);
1609 if (actual_val
== desired_val
+ 1)
1612 op_b
= GEN_INT (desired_val
);
1620 /* If we made any changes, generate a new conditional that is
1621 equivalent to what we started with, but has the right
1623 if (code
!= GET_CODE (if_info
->cond
)
1624 || op_a
!= XEXP (if_info
->cond
, 0)
1625 || op_b
!= XEXP (if_info
->cond
, 1))
1627 cond
= gen_rtx_fmt_ee (code
, GET_MODE (cond
), op_a
, op_b
);
1628 *earliest
= if_info
->cond_earliest
;
1633 cond
= canonicalize_condition (if_info
->jump
, cond
, reverse
,
1634 earliest
, target
, false, true);
1635 if (! cond
|| ! reg_mentioned_p (target
, cond
))
1638 /* We almost certainly searched back to a different place.
1639 Need to re-verify correct lifetimes. */
1641 /* X may not be mentioned in the range (cond_earliest, jump]. */
1642 for (insn
= if_info
->jump
; insn
!= *earliest
; insn
= PREV_INSN (insn
))
1643 if (INSN_P (insn
) && reg_overlap_mentioned_p (if_info
->x
, PATTERN (insn
)))
1646 /* A and B may not be modified in the range [cond_earliest, jump). */
1647 for (insn
= *earliest
; insn
!= if_info
->jump
; insn
= NEXT_INSN (insn
))
1649 && (modified_in_p (if_info
->a
, insn
)
1650 || modified_in_p (if_info
->b
, insn
)))
1656 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1659 noce_try_minmax (struct noce_if_info
*if_info
)
1661 rtx cond
, earliest
, target
, seq
;
1662 enum rtx_code code
, op
;
1665 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1666 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1667 to get the target to tell us... */
1668 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
))
1669 || HONOR_NANS (GET_MODE (if_info
->x
)))
1672 cond
= noce_get_alt_condition (if_info
, if_info
->a
, &earliest
);
1676 /* Verify the condition is of the form we expect, and canonicalize
1677 the comparison code. */
1678 code
= GET_CODE (cond
);
1679 if (rtx_equal_p (XEXP (cond
, 0), if_info
->a
))
1681 if (! rtx_equal_p (XEXP (cond
, 1), if_info
->b
))
1684 else if (rtx_equal_p (XEXP (cond
, 1), if_info
->a
))
1686 if (! rtx_equal_p (XEXP (cond
, 0), if_info
->b
))
1688 code
= swap_condition (code
);
1693 /* Determine what sort of operation this is. Note that the code is for
1694 a taken branch, so the code->operation mapping appears backwards. */
1727 target
= expand_simple_binop (GET_MODE (if_info
->x
), op
,
1728 if_info
->a
, if_info
->b
,
1729 if_info
->x
, unsignedp
, OPTAB_WIDEN
);
1735 if (target
!= if_info
->x
)
1736 noce_emit_move_insn (if_info
->x
, target
);
1738 seq
= end_ifcvt_sequence (if_info
);
1742 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1743 if_info
->cond
= cond
;
1744 if_info
->cond_earliest
= earliest
;
1749 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc. */
1752 noce_try_abs (struct noce_if_info
*if_info
)
1754 rtx cond
, earliest
, target
, seq
, a
, b
, c
;
1757 /* Reject modes with signed zeros. */
1758 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info
->x
)))
1761 /* Recognize A and B as constituting an ABS or NABS. The canonical
1762 form is a branch around the negation, taken when the object is the
1763 first operand of a comparison against 0 that evaluates to true. */
1766 if (GET_CODE (a
) == NEG
&& rtx_equal_p (XEXP (a
, 0), b
))
1768 else if (GET_CODE (b
) == NEG
&& rtx_equal_p (XEXP (b
, 0), a
))
1770 c
= a
; a
= b
; b
= c
;
1776 cond
= noce_get_alt_condition (if_info
, b
, &earliest
);
1780 /* Verify the condition is of the form we expect. */
1781 if (rtx_equal_p (XEXP (cond
, 0), b
))
1783 else if (rtx_equal_p (XEXP (cond
, 1), b
))
1791 /* Verify that C is zero. Search one step backward for a
1792 REG_EQUAL note or a simple source if necessary. */
1795 rtx set
, insn
= prev_nonnote_insn (earliest
);
1797 && BLOCK_NUM (insn
) == BLOCK_NUM (earliest
)
1798 && (set
= single_set (insn
))
1799 && rtx_equal_p (SET_DEST (set
), c
))
1801 rtx note
= find_reg_equal_equiv_note (insn
);
1811 && GET_CODE (XEXP (c
, 0)) == SYMBOL_REF
1812 && CONSTANT_POOL_ADDRESS_P (XEXP (c
, 0)))
1813 c
= get_pool_constant (XEXP (c
, 0));
1815 /* Work around funny ideas get_condition has wrt canonicalization.
1816 Note that these rtx constants are known to be CONST_INT, and
1817 therefore imply integer comparisons. */
1818 if (c
== constm1_rtx
&& GET_CODE (cond
) == GT
)
1820 else if (c
== const1_rtx
&& GET_CODE (cond
) == LT
)
1822 else if (c
!= CONST0_RTX (GET_MODE (b
)))
1825 /* Determine what sort of operation this is. */
1826 switch (GET_CODE (cond
))
1845 target
= expand_abs_nojump (GET_MODE (if_info
->x
), b
, if_info
->x
, 1);
1847 /* ??? It's a quandary whether cmove would be better here, especially
1848 for integers. Perhaps combine will clean things up. */
1849 if (target
&& negate
)
1850 target
= expand_simple_unop (GET_MODE (target
), NEG
, target
, if_info
->x
, 0);
1858 if (target
!= if_info
->x
)
1859 noce_emit_move_insn (if_info
->x
, target
);
1861 seq
= end_ifcvt_sequence (if_info
);
1865 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1866 if_info
->cond
= cond
;
1867 if_info
->cond_earliest
= earliest
;
1872 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
1875 noce_try_sign_mask (struct noce_if_info
*if_info
)
1877 rtx cond
, t
, m
, c
, seq
;
1878 enum machine_mode mode
;
1880 bool t_unconditional
;
1882 cond
= if_info
->cond
;
1883 code
= GET_CODE (cond
);
1888 if (if_info
->a
== const0_rtx
)
1890 if ((code
== LT
&& c
== const0_rtx
)
1891 || (code
== LE
&& c
== constm1_rtx
))
1894 else if (if_info
->b
== const0_rtx
)
1896 if ((code
== GE
&& c
== const0_rtx
)
1897 || (code
== GT
&& c
== constm1_rtx
))
1901 if (! t
|| side_effects_p (t
))
1904 /* We currently don't handle different modes. */
1905 mode
= GET_MODE (t
);
1906 if (GET_MODE (m
) != mode
)
1909 /* This is only profitable if T is unconditionally executed/evaluated in the
1910 original insn sequence or T is cheap. The former happens if B is the
1911 non-zero (T) value and if INSN_B was taken from TEST_BB, or there was no
1912 INSN_B which can happen for e.g. conditional stores to memory. For the
1913 cost computation use the block TEST_BB where the evaluation will end up
1914 after the transformation. */
1917 && (if_info
->insn_b
== NULL_RTX
1918 || BLOCK_FOR_INSN (if_info
->insn_b
) == if_info
->test_bb
));
1919 if (!(t_unconditional
1920 || (rtx_cost (t
, SET
, optimize_bb_for_speed_p (if_info
->test_bb
))
1921 < COSTS_N_INSNS (2))))
1925 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
1926 "(signed) m >> 31" directly. This benefits targets with specialized
1927 insns to obtain the signmask, but still uses ashr_optab otherwise. */
1928 m
= emit_store_flag (gen_reg_rtx (mode
), LT
, m
, const0_rtx
, mode
, 0, -1);
1929 t
= m
? expand_binop (mode
, and_optab
, m
, t
, NULL_RTX
, 0, OPTAB_DIRECT
)
1938 noce_emit_move_insn (if_info
->x
, t
);
1940 seq
= end_ifcvt_sequence (if_info
);
1944 emit_insn_before_setloc (seq
, if_info
->jump
, INSN_LOCATOR (if_info
->insn_a
));
1949 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
1953 noce_try_bitop (struct noce_if_info
*if_info
)
1955 rtx cond
, x
, a
, result
, seq
;
1956 enum machine_mode mode
;
1961 cond
= if_info
->cond
;
1962 code
= GET_CODE (cond
);
1964 /* Check for no else condition. */
1965 if (! rtx_equal_p (x
, if_info
->b
))
1968 /* Check for a suitable condition. */
1969 if (code
!= NE
&& code
!= EQ
)
1971 if (XEXP (cond
, 1) != const0_rtx
)
1973 cond
= XEXP (cond
, 0);
1975 /* ??? We could also handle AND here. */
1976 if (GET_CODE (cond
) == ZERO_EXTRACT
)
1978 if (XEXP (cond
, 1) != const1_rtx
1979 || GET_CODE (XEXP (cond
, 2)) != CONST_INT
1980 || ! rtx_equal_p (x
, XEXP (cond
, 0)))
1982 bitnum
= INTVAL (XEXP (cond
, 2));
1983 mode
= GET_MODE (x
);
1984 if (BITS_BIG_ENDIAN
)
1985 bitnum
= GET_MODE_BITSIZE (mode
) - 1 - bitnum
;
1986 if (bitnum
< 0 || bitnum
>= HOST_BITS_PER_WIDE_INT
)
1993 if (GET_CODE (a
) == IOR
|| GET_CODE (a
) == XOR
)
1995 /* Check for "if (X & C) x = x op C". */
1996 if (! rtx_equal_p (x
, XEXP (a
, 0))
1997 || GET_CODE (XEXP (a
, 1)) != CONST_INT
1998 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
1999 != (unsigned HOST_WIDE_INT
) 1 << bitnum
)
2002 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
2003 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
2004 if (GET_CODE (a
) == IOR
)
2005 result
= (code
== NE
) ? a
: NULL_RTX
;
2006 else if (code
== NE
)
2008 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
2009 result
= gen_int_mode ((HOST_WIDE_INT
) 1 << bitnum
, mode
);
2010 result
= simplify_gen_binary (IOR
, mode
, x
, result
);
2014 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
2015 result
= gen_int_mode (~((HOST_WIDE_INT
) 1 << bitnum
), mode
);
2016 result
= simplify_gen_binary (AND
, mode
, x
, result
);
2019 else if (GET_CODE (a
) == AND
)
2021 /* Check for "if (X & C) x &= ~C". */
2022 if (! rtx_equal_p (x
, XEXP (a
, 0))
2023 || GET_CODE (XEXP (a
, 1)) != CONST_INT
2024 || (INTVAL (XEXP (a
, 1)) & GET_MODE_MASK (mode
))
2025 != (~((HOST_WIDE_INT
) 1 << bitnum
) & GET_MODE_MASK (mode
)))
2028 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
2029 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
2030 result
= (code
== EQ
) ? a
: NULL_RTX
;
2038 noce_emit_move_insn (x
, result
);
2039 seq
= end_ifcvt_sequence (if_info
);
2043 emit_insn_before_setloc (seq
, if_info
->jump
,
2044 INSN_LOCATOR (if_info
->insn_a
));
2050 /* Similar to get_condition, only the resulting condition must be
2051 valid at JUMP, instead of at EARLIEST.
2053 If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2054 THEN block of the caller, and we have to reverse the condition. */
2057 noce_get_condition (rtx jump
, rtx
*earliest
, bool then_else_reversed
)
2062 if (! any_condjump_p (jump
))
2065 set
= pc_set (jump
);
2067 /* If this branches to JUMP_LABEL when the condition is false,
2068 reverse the condition. */
2069 reverse
= (GET_CODE (XEXP (SET_SRC (set
), 2)) == LABEL_REF
2070 && XEXP (XEXP (SET_SRC (set
), 2), 0) == JUMP_LABEL (jump
));
2072 /* We may have to reverse because the caller's if block is not canonical,
2073 i.e. the THEN block isn't the fallthrough block for the TEST block
2074 (see find_if_header). */
2075 if (then_else_reversed
)
2078 /* If the condition variable is a register and is MODE_INT, accept it. */
2080 cond
= XEXP (SET_SRC (set
), 0);
2081 tmp
= XEXP (cond
, 0);
2082 if (REG_P (tmp
) && GET_MODE_CLASS (GET_MODE (tmp
)) == MODE_INT
)
2087 cond
= gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond
)),
2088 GET_MODE (cond
), tmp
, XEXP (cond
, 1));
2092 /* Otherwise, fall back on canonicalize_condition to do the dirty
2093 work of manipulating MODE_CC values and COMPARE rtx codes. */
2094 return canonicalize_condition (jump
, cond
, reverse
, earliest
,
2095 NULL_RTX
, false, true);
2098 /* Return true if OP is ok for if-then-else processing. */
2101 noce_operand_ok (const_rtx op
)
2103 /* We special-case memories, so handle any of them with
2104 no address side effects. */
2106 return ! side_effects_p (XEXP (op
, 0));
2108 if (side_effects_p (op
))
2111 return ! may_trap_p (op
);
2114 /* Return true if a write into MEM may trap or fault. */
2117 noce_mem_write_may_trap_or_fault_p (const_rtx mem
)
2121 if (MEM_READONLY_P (mem
))
2124 if (may_trap_or_fault_p (mem
))
2127 addr
= XEXP (mem
, 0);
2129 /* Call target hook to avoid the effects of -fpic etc.... */
2130 addr
= targetm
.delegitimize_address (addr
);
2133 switch (GET_CODE (addr
))
2141 addr
= XEXP (addr
, 0);
2145 addr
= XEXP (addr
, 1);
2148 if (GET_CODE (XEXP (addr
, 1)) == CONST_INT
)
2149 addr
= XEXP (addr
, 0);
2156 if (SYMBOL_REF_DECL (addr
)
2157 && decl_readonly_section (SYMBOL_REF_DECL (addr
), 0))
2167 /* Return whether we can use store speculation for MEM. TOP_BB is the
2168 basic block above the conditional block where we are considering
2169 doing the speculative store. We look for whether MEM is set
2170 unconditionally later in the function. */
2173 noce_can_store_speculate_p (basic_block top_bb
, const_rtx mem
)
2175 basic_block dominator
;
2177 for (dominator
= get_immediate_dominator (CDI_POST_DOMINATORS
, top_bb
);
2179 dominator
= get_immediate_dominator (CDI_POST_DOMINATORS
, dominator
))
2183 FOR_BB_INSNS (dominator
, insn
)
2185 /* If we see something that might be a memory barrier, we
2186 have to stop looking. Even if the MEM is set later in
2187 the function, we still don't want to set it
2188 unconditionally before the barrier. */
2190 && (volatile_insn_p (PATTERN (insn
))
2191 || (CALL_P (insn
) && (!RTL_CONST_CALL_P (insn
)))))
2194 if (memory_modified_in_insn_p (mem
, insn
))
2196 if (modified_in_p (XEXP (mem
, 0), insn
))
2205 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2206 it without using conditional execution. Return TRUE if we were successful
2207 at converting the block. */
2210 noce_process_if_block (struct noce_if_info
*if_info
)
2212 basic_block test_bb
= if_info
->test_bb
; /* test block */
2213 basic_block then_bb
= if_info
->then_bb
; /* THEN */
2214 basic_block else_bb
= if_info
->else_bb
; /* ELSE or NULL */
2215 basic_block join_bb
= if_info
->join_bb
; /* JOIN */
2216 rtx jump
= if_info
->jump
;
2217 rtx cond
= if_info
->cond
;
2220 rtx orig_x
, x
, a
, b
;
2222 /* We're looking for patterns of the form
2224 (1) if (...) x = a; else x = b;
2225 (2) x = b; if (...) x = a;
2226 (3) if (...) x = a; // as if with an initial x = x.
2228 The later patterns require jumps to be more expensive.
2230 ??? For future expansion, look for multiple X in such patterns. */
2232 /* Look for one of the potential sets. */
2233 insn_a
= first_active_insn (then_bb
);
2235 || insn_a
!= last_active_insn (then_bb
, FALSE
)
2236 || (set_a
= single_set (insn_a
)) == NULL_RTX
)
2239 x
= SET_DEST (set_a
);
2240 a
= SET_SRC (set_a
);
2242 /* Look for the other potential set. Make sure we've got equivalent
2244 /* ??? This is overconservative. Storing to two different mems is
2245 as easy as conditionally computing the address. Storing to a
2246 single mem merely requires a scratch memory to use as one of the
2247 destination addresses; often the memory immediately below the
2248 stack pointer is available for this. */
2252 insn_b
= first_active_insn (else_bb
);
2254 || insn_b
!= last_active_insn (else_bb
, FALSE
)
2255 || (set_b
= single_set (insn_b
)) == NULL_RTX
2256 || ! rtx_equal_p (x
, SET_DEST (set_b
)))
2261 insn_b
= prev_nonnote_insn (if_info
->cond_earliest
);
2262 /* We're going to be moving the evaluation of B down from above
2263 COND_EARLIEST to JUMP. Make sure the relevant data is still
2266 || BLOCK_NUM (insn_b
) != BLOCK_NUM (if_info
->cond_earliest
)
2267 || !NONJUMP_INSN_P (insn_b
)
2268 || (set_b
= single_set (insn_b
)) == NULL_RTX
2269 || ! rtx_equal_p (x
, SET_DEST (set_b
))
2270 || ! noce_operand_ok (SET_SRC (set_b
))
2271 || reg_overlap_mentioned_p (x
, SET_SRC (set_b
))
2272 || modified_between_p (SET_SRC (set_b
),
2273 PREV_INSN (if_info
->cond_earliest
), jump
)
2274 /* Likewise with X. In particular this can happen when
2275 noce_get_condition looks farther back in the instruction
2276 stream than one might expect. */
2277 || reg_overlap_mentioned_p (x
, cond
)
2278 || reg_overlap_mentioned_p (x
, a
)
2279 || modified_between_p (x
, PREV_INSN (if_info
->cond_earliest
), jump
))
2280 insn_b
= set_b
= NULL_RTX
;
2283 /* If x has side effects then only the if-then-else form is safe to
2284 convert. But even in that case we would need to restore any notes
2285 (such as REG_INC) at then end. That can be tricky if
2286 noce_emit_move_insn expands to more than one insn, so disable the
2287 optimization entirely for now if there are side effects. */
2288 if (side_effects_p (x
))
2291 b
= (set_b
? SET_SRC (set_b
) : x
);
2293 /* Only operate on register destinations, and even then avoid extending
2294 the lifetime of hard registers on small register class machines. */
2297 || (SMALL_REGISTER_CLASSES
2298 && REGNO (x
) < FIRST_PSEUDO_REGISTER
))
2300 if (GET_MODE (x
) == BLKmode
)
2303 if (GET_CODE (x
) == ZERO_EXTRACT
2304 && (GET_CODE (XEXP (x
, 1)) != CONST_INT
2305 || GET_CODE (XEXP (x
, 2)) != CONST_INT
))
2308 x
= gen_reg_rtx (GET_MODE (GET_CODE (x
) == STRICT_LOW_PART
2309 ? XEXP (x
, 0) : x
));
2312 /* Don't operate on sources that may trap or are volatile. */
2313 if (! noce_operand_ok (a
) || ! noce_operand_ok (b
))
2317 /* Set up the info block for our subroutines. */
2318 if_info
->insn_a
= insn_a
;
2319 if_info
->insn_b
= insn_b
;
2324 /* Try optimizations in some approximation of a useful order. */
2325 /* ??? Should first look to see if X is live incoming at all. If it
2326 isn't, we don't need anything but an unconditional set. */
2328 /* Look and see if A and B are really the same. Avoid creating silly
2329 cmove constructs that no one will fix up later. */
2330 if (rtx_equal_p (a
, b
))
2332 /* If we have an INSN_B, we don't have to create any new rtl. Just
2333 move the instruction that we already have. If we don't have an
2334 INSN_B, that means that A == X, and we've got a noop move. In
2335 that case don't do anything and let the code below delete INSN_A. */
2336 if (insn_b
&& else_bb
)
2340 if (else_bb
&& insn_b
== BB_END (else_bb
))
2341 BB_END (else_bb
) = PREV_INSN (insn_b
);
2342 reorder_insns (insn_b
, insn_b
, PREV_INSN (jump
));
2344 /* If there was a REG_EQUAL note, delete it since it may have been
2345 true due to this insn being after a jump. */
2346 if ((note
= find_reg_note (insn_b
, REG_EQUAL
, NULL_RTX
)) != 0)
2347 remove_note (insn_b
, note
);
2351 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2352 x must be executed twice. */
2353 else if (insn_b
&& side_effects_p (orig_x
))
2360 if (!set_b
&& MEM_P (orig_x
))
2362 /* Disallow the "if (...) x = a;" form (implicit "else x = x;")
2363 for optimizations if writing to x may trap or fault,
2364 i.e. it's a memory other than a static var or a stack slot,
2365 is misaligned on strict aligned machines or is read-only. If
2366 x is a read-only memory, then the program is valid only if we
2367 avoid the store into it. If there are stores on both the
2368 THEN and ELSE arms, then we can go ahead with the conversion;
2369 either the program is broken, or the condition is always
2370 false such that the other memory is selected. */
2371 if (noce_mem_write_may_trap_or_fault_p (orig_x
))
2374 /* Avoid store speculation: given "if (...) x = a" where x is a
2375 MEM, we only want to do the store if x is always set
2376 somewhere in the function. This avoids cases like
2377 if (pthread_mutex_trylock(mutex))
2379 where we only want global_variable to be changed if the mutex
2380 is held. FIXME: This should ideally be expressed directly in
2382 if (!noce_can_store_speculate_p (test_bb
, orig_x
))
2386 if (noce_try_move (if_info
))
2388 if (noce_try_store_flag (if_info
))
2390 if (noce_try_bitop (if_info
))
2392 if (noce_try_minmax (if_info
))
2394 if (noce_try_abs (if_info
))
2396 if (HAVE_conditional_move
2397 && noce_try_cmove (if_info
))
2399 if (! HAVE_conditional_execution
)
2401 if (noce_try_store_flag_constants (if_info
))
2403 if (noce_try_addcc (if_info
))
2405 if (noce_try_store_flag_mask (if_info
))
2407 if (HAVE_conditional_move
2408 && noce_try_cmove_arith (if_info
))
2410 if (noce_try_sign_mask (if_info
))
2414 if (!else_bb
&& set_b
)
2416 insn_b
= set_b
= NULL_RTX
;
2425 /* If we used a temporary, fix it up now. */
2431 noce_emit_move_insn (orig_x
, x
);
2433 set_used_flags (orig_x
);
2434 unshare_all_rtl_in_chain (seq
);
2437 emit_insn_before_setloc (seq
, BB_END (test_bb
), INSN_LOCATOR (insn_a
));
2440 /* The original THEN and ELSE blocks may now be removed. The test block
2441 must now jump to the join block. If the test block and the join block
2442 can be merged, do so. */
2445 delete_basic_block (else_bb
);
2449 remove_edge (find_edge (test_bb
, join_bb
));
2451 remove_edge (find_edge (then_bb
, join_bb
));
2452 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
2453 delete_basic_block (then_bb
);
2456 if (can_merge_blocks_p (test_bb
, join_bb
))
2458 merge_blocks (test_bb
, join_bb
);
2462 num_updated_if_blocks
++;
2466 /* Check whether a block is suitable for conditional move conversion.
2467 Every insn must be a simple set of a register to a constant or a
2468 register. For each assignment, store the value in the array VALS,
2469 indexed by register number, then store the register number in
2470 REGS. COND is the condition we will test. */
2473 check_cond_move_block (basic_block bb
, rtx
*vals
, VEC (int, heap
) **regs
, rtx cond
)
2477 /* We can only handle simple jumps at the end of the basic block.
2478 It is almost impossible to update the CFG otherwise. */
2480 if (JUMP_P (insn
) && !onlyjump_p (insn
))
2483 FOR_BB_INSNS (bb
, insn
)
2487 if (!INSN_P (insn
) || JUMP_P (insn
))
2489 set
= single_set (insn
);
2493 dest
= SET_DEST (set
);
2494 src
= SET_SRC (set
);
2496 || (SMALL_REGISTER_CLASSES
&& HARD_REGISTER_P (dest
)))
2499 if (!CONSTANT_P (src
) && !register_operand (src
, VOIDmode
))
2502 if (side_effects_p (src
) || side_effects_p (dest
))
2505 if (may_trap_p (src
) || may_trap_p (dest
))
2508 /* Don't try to handle this if the source register was
2509 modified earlier in the block. */
2511 && vals
[REGNO (src
)] != NULL
)
2512 || (GET_CODE (src
) == SUBREG
&& REG_P (SUBREG_REG (src
))
2513 && vals
[REGNO (SUBREG_REG (src
))] != NULL
))
2516 /* Don't try to handle this if the destination register was
2517 modified earlier in the block. */
2518 if (vals
[REGNO (dest
)] != NULL
)
2521 /* Don't try to handle this if the condition uses the
2522 destination register. */
2523 if (reg_overlap_mentioned_p (dest
, cond
))
2526 /* Don't try to handle this if the source register is modified
2527 later in the block. */
2528 if (!CONSTANT_P (src
)
2529 && modified_between_p (src
, insn
, NEXT_INSN (BB_END (bb
))))
2532 vals
[REGNO (dest
)] = src
;
2534 VEC_safe_push (int, heap
, *regs
, REGNO (dest
));
2540 /* Given a basic block BB suitable for conditional move conversion,
2541 a condition COND, and arrays THEN_VALS and ELSE_VALS containing the
2542 register values depending on COND, emit the insns in the block as
2543 conditional moves. If ELSE_BLOCK is true, THEN_BB was already
2544 processed. The caller has started a sequence for the conversion.
2545 Return true if successful, false if something goes wrong. */
2548 cond_move_convert_if_block (struct noce_if_info
*if_infop
,
2549 basic_block bb
, rtx cond
,
2550 rtx
*then_vals
, rtx
*else_vals
,
2554 rtx insn
, cond_arg0
, cond_arg1
;
2556 code
= GET_CODE (cond
);
2557 cond_arg0
= XEXP (cond
, 0);
2558 cond_arg1
= XEXP (cond
, 1);
2560 FOR_BB_INSNS (bb
, insn
)
2562 rtx set
, target
, dest
, t
, e
;
2565 if (!INSN_P (insn
) || JUMP_P (insn
))
2567 set
= single_set (insn
);
2568 gcc_assert (set
&& REG_P (SET_DEST (set
)));
2570 dest
= SET_DEST (set
);
2571 regno
= REGNO (dest
);
2573 t
= then_vals
[regno
];
2574 e
= else_vals
[regno
];
2578 /* If this register was set in the then block, we already
2579 handled this case there. */
2592 target
= noce_emit_cmove (if_infop
, dest
, code
, cond_arg0
, cond_arg1
,
2598 noce_emit_move_insn (dest
, target
);
2604 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2605 it using only conditional moves. Return TRUE if we were successful at
2606 converting the block. */
2609 cond_move_process_if_block (struct noce_if_info
*if_info
)
2611 basic_block test_bb
= if_info
->test_bb
;
2612 basic_block then_bb
= if_info
->then_bb
;
2613 basic_block else_bb
= if_info
->else_bb
;
2614 basic_block join_bb
= if_info
->join_bb
;
2615 rtx jump
= if_info
->jump
;
2616 rtx cond
= if_info
->cond
;
2618 int max_reg
, size
, c
, reg
;
2621 VEC (int, heap
) *then_regs
= NULL
;
2622 VEC (int, heap
) *else_regs
= NULL
;
2625 /* Build a mapping for each block to the value used for each
2627 max_reg
= max_reg_num ();
2628 size
= (max_reg
+ 1) * sizeof (rtx
);
2629 then_vals
= (rtx
*) alloca (size
);
2630 else_vals
= (rtx
*) alloca (size
);
2631 memset (then_vals
, 0, size
);
2632 memset (else_vals
, 0, size
);
2634 /* Make sure the blocks are suitable. */
2635 if (!check_cond_move_block (then_bb
, then_vals
, &then_regs
, cond
)
2636 || (else_bb
&& !check_cond_move_block (else_bb
, else_vals
, &else_regs
, cond
)))
2638 VEC_free (int, heap
, then_regs
);
2639 VEC_free (int, heap
, else_regs
);
2643 /* Make sure the blocks can be used together. If the same register
2644 is set in both blocks, and is not set to a constant in both
2645 cases, then both blocks must set it to the same register. We
2646 have already verified that if it is set to a register, that the
2647 source register does not change after the assignment. Also count
2648 the number of registers set in only one of the blocks. */
2650 for (i
= 0; VEC_iterate (int, then_regs
, i
, reg
); i
++)
2652 if (!then_vals
[reg
] && !else_vals
[reg
])
2655 if (!else_vals
[reg
])
2659 if (!CONSTANT_P (then_vals
[reg
])
2660 && !CONSTANT_P (else_vals
[reg
])
2661 && !rtx_equal_p (then_vals
[reg
], else_vals
[reg
]))
2663 VEC_free (int, heap
, then_regs
);
2664 VEC_free (int, heap
, else_regs
);
2670 /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
2671 for (i
= 0; VEC_iterate (int, else_regs
, i
, reg
); ++i
)
2672 if (!then_vals
[reg
])
2675 /* Make sure it is reasonable to convert this block. What matters
2676 is the number of assignments currently made in only one of the
2677 branches, since if we convert we are going to always execute
2679 if (c
> MAX_CONDITIONAL_EXECUTE
)
2681 VEC_free (int, heap
, then_regs
);
2682 VEC_free (int, heap
, else_regs
);
2686 /* Try to emit the conditional moves. First do the then block,
2687 then do anything left in the else blocks. */
2689 if (!cond_move_convert_if_block (if_info
, then_bb
, cond
,
2690 then_vals
, else_vals
, false)
2692 && !cond_move_convert_if_block (if_info
, else_bb
, cond
,
2693 then_vals
, else_vals
, true)))
2696 VEC_free (int, heap
, then_regs
);
2697 VEC_free (int, heap
, else_regs
);
2700 seq
= end_ifcvt_sequence (if_info
);
2703 VEC_free (int, heap
, then_regs
);
2704 VEC_free (int, heap
, else_regs
);
2708 loc_insn
= first_active_insn (then_bb
);
2711 loc_insn
= first_active_insn (else_bb
);
2712 gcc_assert (loc_insn
);
2714 emit_insn_before_setloc (seq
, jump
, INSN_LOCATOR (loc_insn
));
2718 delete_basic_block (else_bb
);
2722 remove_edge (find_edge (test_bb
, join_bb
));
2724 remove_edge (find_edge (then_bb
, join_bb
));
2725 redirect_edge_and_branch_force (single_succ_edge (test_bb
), join_bb
);
2726 delete_basic_block (then_bb
);
2729 if (can_merge_blocks_p (test_bb
, join_bb
))
2731 merge_blocks (test_bb
, join_bb
);
2735 num_updated_if_blocks
++;
2737 VEC_free (int, heap
, then_regs
);
2738 VEC_free (int, heap
, else_regs
);
2743 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
2744 IF-THEN-ELSE-JOIN block.
2746 If so, we'll try to convert the insns to not require the branch,
2747 using only transformations that do not require conditional execution.
2749 Return TRUE if we were successful at converting the block. */
2752 noce_find_if_block (basic_block test_bb
,
2753 edge then_edge
, edge else_edge
,
2756 basic_block then_bb
, else_bb
, join_bb
;
2757 bool then_else_reversed
= false;
2760 struct noce_if_info if_info
;
2762 /* We only ever should get here before reload. */
2763 gcc_assert (!reload_completed
);
2765 /* Recognize an IF-THEN-ELSE-JOIN block. */
2766 if (single_pred_p (then_edge
->dest
)
2767 && single_succ_p (then_edge
->dest
)
2768 && single_pred_p (else_edge
->dest
)
2769 && single_succ_p (else_edge
->dest
)
2770 && single_succ (then_edge
->dest
) == single_succ (else_edge
->dest
))
2772 then_bb
= then_edge
->dest
;
2773 else_bb
= else_edge
->dest
;
2774 join_bb
= single_succ (then_bb
);
2776 /* Recognize an IF-THEN-JOIN block. */
2777 else if (single_pred_p (then_edge
->dest
)
2778 && single_succ_p (then_edge
->dest
)
2779 && single_succ (then_edge
->dest
) == else_edge
->dest
)
2781 then_bb
= then_edge
->dest
;
2782 else_bb
= NULL_BLOCK
;
2783 join_bb
= else_edge
->dest
;
2785 /* Recognize an IF-ELSE-JOIN block. We can have those because the order
2786 of basic blocks in cfglayout mode does not matter, so the fallthrough
2787 edge can go to any basic block (and not just to bb->next_bb, like in
2789 else if (single_pred_p (else_edge
->dest
)
2790 && single_succ_p (else_edge
->dest
)
2791 && single_succ (else_edge
->dest
) == then_edge
->dest
)
2793 /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
2794 To make this work, we have to invert the THEN and ELSE blocks
2795 and reverse the jump condition. */
2796 then_bb
= else_edge
->dest
;
2797 else_bb
= NULL_BLOCK
;
2798 join_bb
= single_succ (then_bb
);
2799 then_else_reversed
= true;
2802 /* Not a form we can handle. */
2805 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
2806 if (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
2809 && single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
2812 num_possible_if_blocks
++;
2817 "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
2818 (else_bb
) ? "-ELSE" : "",
2819 pass
, test_bb
->index
, then_bb
->index
);
2822 fprintf (dump_file
, ", else %d", else_bb
->index
);
2824 fprintf (dump_file
, ", join %d\n", join_bb
->index
);
2827 /* If the conditional jump is more than just a conditional
2828 jump, then we can not do if-conversion on this block. */
2829 jump
= BB_END (test_bb
);
2830 if (! onlyjump_p (jump
))
2833 /* If this is not a standard conditional jump, we can't parse it. */
2834 cond
= noce_get_condition (jump
,
2836 then_else_reversed
);
2840 /* We must be comparing objects whose modes imply the size. */
2841 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
2844 /* Initialize an IF_INFO struct to pass around. */
2845 memset (&if_info
, 0, sizeof if_info
);
2846 if_info
.test_bb
= test_bb
;
2847 if_info
.then_bb
= then_bb
;
2848 if_info
.else_bb
= else_bb
;
2849 if_info
.join_bb
= join_bb
;
2850 if_info
.cond
= cond
;
2851 if_info
.cond_earliest
= cond_earliest
;
2852 if_info
.jump
= jump
;
2853 if_info
.then_else_reversed
= then_else_reversed
;
2854 if_info
.branch_cost
= BRANCH_COST (optimize_bb_for_speed_p (test_bb
),
2855 predictable_edge_p (then_edge
));
2857 /* Do the real work. */
2859 if (noce_process_if_block (&if_info
))
2862 if (HAVE_conditional_move
2863 && cond_move_process_if_block (&if_info
))
2870 /* Merge the blocks and mark for local life update. */
2873 merge_if_block (struct ce_if_block
* ce_info
)
2875 basic_block test_bb
= ce_info
->test_bb
; /* last test block */
2876 basic_block then_bb
= ce_info
->then_bb
; /* THEN */
2877 basic_block else_bb
= ce_info
->else_bb
; /* ELSE or NULL */
2878 basic_block join_bb
= ce_info
->join_bb
; /* join block */
2879 basic_block combo_bb
;
2881 /* All block merging is done into the lower block numbers. */
2884 df_set_bb_dirty (test_bb
);
2886 /* Merge any basic blocks to handle && and || subtests. Each of
2887 the blocks are on the fallthru path from the predecessor block. */
2888 if (ce_info
->num_multiple_test_blocks
> 0)
2890 basic_block bb
= test_bb
;
2891 basic_block last_test_bb
= ce_info
->last_test_bb
;
2892 basic_block fallthru
= block_fallthru (bb
);
2897 fallthru
= block_fallthru (bb
);
2898 merge_blocks (combo_bb
, bb
);
2901 while (bb
!= last_test_bb
);
2904 /* Merge TEST block into THEN block. Normally the THEN block won't have a
2905 label, but it might if there were || tests. That label's count should be
2906 zero, and it normally should be removed. */
2910 merge_blocks (combo_bb
, then_bb
);
2914 /* The ELSE block, if it existed, had a label. That label count
2915 will almost always be zero, but odd things can happen when labels
2916 get their addresses taken. */
2919 merge_blocks (combo_bb
, else_bb
);
2923 /* If there was no join block reported, that means it was not adjacent
2924 to the others, and so we cannot merge them. */
2928 rtx last
= BB_END (combo_bb
);
2930 /* The outgoing edge for the current COMBO block should already
2931 be correct. Verify this. */
2932 if (EDGE_COUNT (combo_bb
->succs
) == 0)
2933 gcc_assert (find_reg_note (last
, REG_NORETURN
, NULL
)
2934 || (NONJUMP_INSN_P (last
)
2935 && GET_CODE (PATTERN (last
)) == TRAP_IF
2936 && (TRAP_CONDITION (PATTERN (last
))
2937 == const_true_rtx
)));
2940 /* There should still be something at the end of the THEN or ELSE
2941 blocks taking us to our final destination. */
2942 gcc_assert (JUMP_P (last
)
2943 || (EDGE_SUCC (combo_bb
, 0)->dest
== EXIT_BLOCK_PTR
2945 && SIBLING_CALL_P (last
))
2946 || ((EDGE_SUCC (combo_bb
, 0)->flags
& EDGE_EH
)
2947 && can_throw_internal (last
)));
2950 /* The JOIN block may have had quite a number of other predecessors too.
2951 Since we've already merged the TEST, THEN and ELSE blocks, we should
2952 have only one remaining edge from our if-then-else diamond. If there
2953 is more than one remaining edge, it must come from elsewhere. There
2954 may be zero incoming edges if the THEN block didn't actually join
2955 back up (as with a call to a non-return function). */
2956 else if (EDGE_COUNT (join_bb
->preds
) < 2
2957 && join_bb
!= EXIT_BLOCK_PTR
)
2959 /* We can merge the JOIN cleanly and update the dataflow try
2960 again on this pass.*/
2961 merge_blocks (combo_bb
, join_bb
);
2966 /* We cannot merge the JOIN. */
2968 /* The outgoing edge for the current COMBO block should already
2969 be correct. Verify this. */
2970 gcc_assert (single_succ_p (combo_bb
)
2971 && single_succ (combo_bb
) == join_bb
);
2973 /* Remove the jump and cruft from the end of the COMBO block. */
2974 if (join_bb
!= EXIT_BLOCK_PTR
)
2975 tidy_fallthru_edge (single_succ_edge (combo_bb
));
2978 num_updated_if_blocks
++;
2981 /* Find a block ending in a simple IF condition and try to transform it
2982 in some way. When converting a multi-block condition, put the new code
2983 in the first such block and delete the rest. Return a pointer to this
2984 first block if some transformation was done. Return NULL otherwise. */
2987 find_if_header (basic_block test_bb
, int pass
)
2989 ce_if_block_t ce_info
;
2993 /* The kind of block we're looking for has exactly two successors. */
2994 if (EDGE_COUNT (test_bb
->succs
) != 2)
2997 then_edge
= EDGE_SUCC (test_bb
, 0);
2998 else_edge
= EDGE_SUCC (test_bb
, 1);
3000 if (df_get_bb_dirty (then_edge
->dest
))
3002 if (df_get_bb_dirty (else_edge
->dest
))
3005 /* Neither edge should be abnormal. */
3006 if ((then_edge
->flags
& EDGE_COMPLEX
)
3007 || (else_edge
->flags
& EDGE_COMPLEX
))
3010 /* Nor exit the loop. */
3011 if ((then_edge
->flags
& EDGE_LOOP_EXIT
)
3012 || (else_edge
->flags
& EDGE_LOOP_EXIT
))
3015 /* The THEN edge is canonically the one that falls through. */
3016 if (then_edge
->flags
& EDGE_FALLTHRU
)
3018 else if (else_edge
->flags
& EDGE_FALLTHRU
)
3021 else_edge
= then_edge
;
3025 /* Otherwise this must be a multiway branch of some sort. */
3028 memset (&ce_info
, '\0', sizeof (ce_info
));
3029 ce_info
.test_bb
= test_bb
;
3030 ce_info
.then_bb
= then_edge
->dest
;
3031 ce_info
.else_bb
= else_edge
->dest
;
3032 ce_info
.pass
= pass
;
3034 #ifdef IFCVT_INIT_EXTRA_FIELDS
3035 IFCVT_INIT_EXTRA_FIELDS (&ce_info
);
3038 if (! reload_completed
3039 && noce_find_if_block (test_bb
, then_edge
, else_edge
, pass
))
3042 if (HAVE_conditional_execution
&& reload_completed
3043 && cond_exec_find_if_block (&ce_info
))
3046 if (HAVE_trap
&& HAVE_conditional_trap
3047 && find_cond_trap (test_bb
, then_edge
, else_edge
))
3050 if (dom_info_state (CDI_POST_DOMINATORS
) >= DOM_NO_FAST_QUERY
3051 && (! HAVE_conditional_execution
|| reload_completed
))
3053 if (find_if_case_1 (test_bb
, then_edge
, else_edge
))
3055 if (find_if_case_2 (test_bb
, then_edge
, else_edge
))
3063 fprintf (dump_file
, "Conversion succeeded on pass %d.\n", pass
);
3064 /* Set this so we continue looking. */
3065 cond_exec_changed_p
= TRUE
;
3066 return ce_info
.test_bb
;
3069 /* Return true if a block has two edges, one of which falls through to the next
3070 block, and the other jumps to a specific block, so that we can tell if the
3071 block is part of an && test or an || test. Returns either -1 or the number
3072 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
3075 block_jumps_and_fallthru_p (basic_block cur_bb
, basic_block target_bb
)
3078 int fallthru_p
= FALSE
;
3085 if (!cur_bb
|| !target_bb
)
3088 /* If no edges, obviously it doesn't jump or fallthru. */
3089 if (EDGE_COUNT (cur_bb
->succs
) == 0)
3092 FOR_EACH_EDGE (cur_edge
, ei
, cur_bb
->succs
)
3094 if (cur_edge
->flags
& EDGE_COMPLEX
)
3095 /* Anything complex isn't what we want. */
3098 else if (cur_edge
->flags
& EDGE_FALLTHRU
)
3101 else if (cur_edge
->dest
== target_bb
)
3108 if ((jump_p
& fallthru_p
) == 0)
3111 /* Don't allow calls in the block, since this is used to group && and ||
3112 together for conditional execution support. ??? we should support
3113 conditional execution support across calls for IA-64 some day, but
3114 for now it makes the code simpler. */
3115 end
= BB_END (cur_bb
);
3116 insn
= BB_HEAD (cur_bb
);
3118 while (insn
!= NULL_RTX
)
3125 && GET_CODE (PATTERN (insn
)) != USE
3126 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
3132 insn
= NEXT_INSN (insn
);
3138 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
3139 block. If so, we'll try to convert the insns to not require the branch.
3140 Return TRUE if we were successful at converting the block. */
3143 cond_exec_find_if_block (struct ce_if_block
* ce_info
)
3145 basic_block test_bb
= ce_info
->test_bb
;
3146 basic_block then_bb
= ce_info
->then_bb
;
3147 basic_block else_bb
= ce_info
->else_bb
;
3148 basic_block join_bb
= NULL_BLOCK
;
3153 ce_info
->last_test_bb
= test_bb
;
3155 /* We only ever should get here after reload,
3156 and only if we have conditional execution. */
3157 gcc_assert (HAVE_conditional_execution
&& reload_completed
);
3159 /* Discover if any fall through predecessors of the current test basic block
3160 were && tests (which jump to the else block) or || tests (which jump to
3162 if (single_pred_p (test_bb
)
3163 && single_pred_edge (test_bb
)->flags
== EDGE_FALLTHRU
)
3165 basic_block bb
= single_pred (test_bb
);
3166 basic_block target_bb
;
3167 int max_insns
= MAX_CONDITIONAL_EXECUTE
;
3170 /* Determine if the preceding block is an && or || block. */
3171 if ((n_insns
= block_jumps_and_fallthru_p (bb
, else_bb
)) >= 0)
3173 ce_info
->and_and_p
= TRUE
;
3174 target_bb
= else_bb
;
3176 else if ((n_insns
= block_jumps_and_fallthru_p (bb
, then_bb
)) >= 0)
3178 ce_info
->and_and_p
= FALSE
;
3179 target_bb
= then_bb
;
3182 target_bb
= NULL_BLOCK
;
3184 if (target_bb
&& n_insns
<= max_insns
)
3186 int total_insns
= 0;
3189 ce_info
->last_test_bb
= test_bb
;
3191 /* Found at least one && or || block, look for more. */
3194 ce_info
->test_bb
= test_bb
= bb
;
3195 total_insns
+= n_insns
;
3198 if (!single_pred_p (bb
))
3201 bb
= single_pred (bb
);
3202 n_insns
= block_jumps_and_fallthru_p (bb
, target_bb
);
3204 while (n_insns
>= 0 && (total_insns
+ n_insns
) <= max_insns
);
3206 ce_info
->num_multiple_test_blocks
= blocks
;
3207 ce_info
->num_multiple_test_insns
= total_insns
;
3209 if (ce_info
->and_and_p
)
3210 ce_info
->num_and_and_blocks
= blocks
;
3212 ce_info
->num_or_or_blocks
= blocks
;
3216 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
3217 other than any || blocks which jump to the THEN block. */
3218 if ((EDGE_COUNT (then_bb
->preds
) - ce_info
->num_or_or_blocks
) != 1)
3221 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3222 FOR_EACH_EDGE (cur_edge
, ei
, then_bb
->preds
)
3224 if (cur_edge
->flags
& EDGE_COMPLEX
)
3228 FOR_EACH_EDGE (cur_edge
, ei
, else_bb
->preds
)
3230 if (cur_edge
->flags
& EDGE_COMPLEX
)
3234 /* The THEN block of an IF-THEN combo must have zero or one successors. */
3235 if (EDGE_COUNT (then_bb
->succs
) > 0
3236 && (!single_succ_p (then_bb
)
3237 || (single_succ_edge (then_bb
)->flags
& EDGE_COMPLEX
)
3238 || (epilogue_completed
&& tablejump_p (BB_END (then_bb
), NULL
, NULL
))))
3241 /* If the THEN block has no successors, conditional execution can still
3242 make a conditional call. Don't do this unless the ELSE block has
3243 only one incoming edge -- the CFG manipulation is too ugly otherwise.
3244 Check for the last insn of the THEN block being an indirect jump, which
3245 is listed as not having any successors, but confuses the rest of the CE
3246 code processing. ??? we should fix this in the future. */
3247 if (EDGE_COUNT (then_bb
->succs
) == 0)
3249 if (single_pred_p (else_bb
))
3251 rtx last_insn
= BB_END (then_bb
);
3254 && NOTE_P (last_insn
)
3255 && last_insn
!= BB_HEAD (then_bb
))
3256 last_insn
= PREV_INSN (last_insn
);
3259 && JUMP_P (last_insn
)
3260 && ! simplejump_p (last_insn
))
3264 else_bb
= NULL_BLOCK
;
3270 /* If the THEN block's successor is the other edge out of the TEST block,
3271 then we have an IF-THEN combo without an ELSE. */
3272 else if (single_succ (then_bb
) == else_bb
)
3275 else_bb
= NULL_BLOCK
;
3278 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
3279 has exactly one predecessor and one successor, and the outgoing edge
3280 is not complex, then we have an IF-THEN-ELSE combo. */
3281 else if (single_succ_p (else_bb
)
3282 && single_succ (then_bb
) == single_succ (else_bb
)
3283 && single_pred_p (else_bb
)
3284 && ! (single_succ_edge (else_bb
)->flags
& EDGE_COMPLEX
)
3285 && ! (epilogue_completed
&& tablejump_p (BB_END (else_bb
), NULL
, NULL
)))
3286 join_bb
= single_succ (else_bb
);
3288 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
3292 num_possible_if_blocks
++;
3297 "\nIF-THEN%s block found, pass %d, start block %d "
3298 "[insn %d], then %d [%d]",
3299 (else_bb
) ? "-ELSE" : "",
3302 BB_HEAD (test_bb
) ? (int)INSN_UID (BB_HEAD (test_bb
)) : -1,
3304 BB_HEAD (then_bb
) ? (int)INSN_UID (BB_HEAD (then_bb
)) : -1);
3307 fprintf (dump_file
, ", else %d [%d]",
3309 BB_HEAD (else_bb
) ? (int)INSN_UID (BB_HEAD (else_bb
)) : -1);
3311 fprintf (dump_file
, ", join %d [%d]",
3313 BB_HEAD (join_bb
) ? (int)INSN_UID (BB_HEAD (join_bb
)) : -1);
3315 if (ce_info
->num_multiple_test_blocks
> 0)
3316 fprintf (dump_file
, ", %d %s block%s last test %d [%d]",
3317 ce_info
->num_multiple_test_blocks
,
3318 (ce_info
->and_and_p
) ? "&&" : "||",
3319 (ce_info
->num_multiple_test_blocks
== 1) ? "" : "s",
3320 ce_info
->last_test_bb
->index
,
3321 ((BB_HEAD (ce_info
->last_test_bb
))
3322 ? (int)INSN_UID (BB_HEAD (ce_info
->last_test_bb
))
3325 fputc ('\n', dump_file
);
3328 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
3329 first condition for free, since we've already asserted that there's a
3330 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
3331 we checked the FALLTHRU flag, those are already adjacent to the last IF
3333 /* ??? As an enhancement, move the ELSE block. Have to deal with
3334 BLOCK notes, if by no other means than backing out the merge if they
3335 exist. Sticky enough I don't want to think about it now. */
3337 if (else_bb
&& (next
= next
->next_bb
) != else_bb
)
3339 if ((next
= next
->next_bb
) != join_bb
&& join_bb
!= EXIT_BLOCK_PTR
)
3347 /* Do the real work. */
3349 ce_info
->else_bb
= else_bb
;
3350 ce_info
->join_bb
= join_bb
;
3352 /* If we have && and || tests, try to first handle combining the && and ||
3353 tests into the conditional code, and if that fails, go back and handle
3354 it without the && and ||, which at present handles the && case if there
3355 was no ELSE block. */
3356 if (cond_exec_process_if_block (ce_info
, TRUE
))
3359 if (ce_info
->num_multiple_test_blocks
)
3363 if (cond_exec_process_if_block (ce_info
, FALSE
))
3370 /* Convert a branch over a trap, or a branch
3371 to a trap, into a conditional trap. */
3374 find_cond_trap (basic_block test_bb
, edge then_edge
, edge else_edge
)
3376 basic_block then_bb
= then_edge
->dest
;
3377 basic_block else_bb
= else_edge
->dest
;
3378 basic_block other_bb
, trap_bb
;
3379 rtx trap
, jump
, cond
, cond_earliest
, seq
;
3382 /* Locate the block with the trap instruction. */
3383 /* ??? While we look for no successors, we really ought to allow
3384 EH successors. Need to fix merge_if_block for that to work. */
3385 if ((trap
= block_has_only_trap (then_bb
)) != NULL
)
3386 trap_bb
= then_bb
, other_bb
= else_bb
;
3387 else if ((trap
= block_has_only_trap (else_bb
)) != NULL
)
3388 trap_bb
= else_bb
, other_bb
= then_bb
;
3394 fprintf (dump_file
, "\nTRAP-IF block found, start %d, trap %d\n",
3395 test_bb
->index
, trap_bb
->index
);
3398 /* If this is not a standard conditional jump, we can't parse it. */
3399 jump
= BB_END (test_bb
);
3400 cond
= noce_get_condition (jump
, &cond_earliest
, false);
3404 /* If the conditional jump is more than just a conditional jump, then
3405 we can not do if-conversion on this block. */
3406 if (! onlyjump_p (jump
))
3409 /* We must be comparing objects whose modes imply the size. */
3410 if (GET_MODE (XEXP (cond
, 0)) == BLKmode
)
3413 /* Reverse the comparison code, if necessary. */
3414 code
= GET_CODE (cond
);
3415 if (then_bb
== trap_bb
)
3417 code
= reversed_comparison_code (cond
, jump
);
3418 if (code
== UNKNOWN
)
3422 /* Attempt to generate the conditional trap. */
3423 seq
= gen_cond_trap (code
, copy_rtx (XEXP (cond
, 0)),
3424 copy_rtx (XEXP (cond
, 1)),
3425 TRAP_CODE (PATTERN (trap
)));
3429 /* Emit the new insns before cond_earliest. */
3430 emit_insn_before_setloc (seq
, cond_earliest
, INSN_LOCATOR (trap
));
3432 /* Delete the trap block if possible. */
3433 remove_edge (trap_bb
== then_bb
? then_edge
: else_edge
);
3434 df_set_bb_dirty (test_bb
);
3435 df_set_bb_dirty (then_bb
);
3436 df_set_bb_dirty (else_bb
);
3438 if (EDGE_COUNT (trap_bb
->preds
) == 0)
3440 delete_basic_block (trap_bb
);
3444 /* Wire together the blocks again. */
3445 if (current_ir_type () == IR_RTL_CFGLAYOUT
)
3446 single_succ_edge (test_bb
)->flags
|= EDGE_FALLTHRU
;
3451 lab
= JUMP_LABEL (jump
);
3452 newjump
= emit_jump_insn_after (gen_jump (lab
), jump
);
3453 LABEL_NUSES (lab
) += 1;
3454 JUMP_LABEL (newjump
) = lab
;
3455 emit_barrier_after (newjump
);
3459 if (can_merge_blocks_p (test_bb
, other_bb
))
3461 merge_blocks (test_bb
, other_bb
);
3465 num_updated_if_blocks
++;
3469 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
3473 block_has_only_trap (basic_block bb
)
3477 /* We're not the exit block. */
3478 if (bb
== EXIT_BLOCK_PTR
)
3481 /* The block must have no successors. */
3482 if (EDGE_COUNT (bb
->succs
) > 0)
3485 /* The only instruction in the THEN block must be the trap. */
3486 trap
= first_active_insn (bb
);
3487 if (! (trap
== BB_END (bb
)
3488 && GET_CODE (PATTERN (trap
)) == TRAP_IF
3489 && TRAP_CONDITION (PATTERN (trap
)) == const_true_rtx
))
3495 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
3496 transformable, but not necessarily the other. There need be no
3499 Return TRUE if we were successful at converting the block.
3501 Cases we'd like to look at:
3504 if (test) goto over; // x not live
3512 if (! test) goto label;
3515 if (test) goto E; // x not live
3529 (3) // This one's really only interesting for targets that can do
3530 // multiway branching, e.g. IA-64 BBB bundles. For other targets
3531 // it results in multiple branches on a cache line, which often
3532 // does not sit well with predictors.
3534 if (test1) goto E; // predicted not taken
3550 (A) Don't do (2) if the branch is predicted against the block we're
3551 eliminating. Do it anyway if we can eliminate a branch; this requires
3552 that the sole successor of the eliminated block postdominate the other
3555 (B) With CE, on (3) we can steal from both sides of the if, creating
3564 Again, this is most useful if J postdominates.
3566 (C) CE substitutes for helpful life information.
3568 (D) These heuristics need a lot of work. */
3570 /* Tests for case 1 above. */
3573 find_if_case_1 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3575 basic_block then_bb
= then_edge
->dest
;
3576 basic_block else_bb
= else_edge
->dest
;
3580 /* If we are partitioning hot/cold basic blocks, we don't want to
3581 mess up unconditional or indirect jumps that cross between hot
3584 Basic block partitioning may result in some jumps that appear to
3585 be optimizable (or blocks that appear to be mergeable), but which really
3586 must be left untouched (they are required to make it safely across
3587 partition boundaries). See the comments at the top of
3588 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3590 if ((BB_END (then_bb
)
3591 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3592 || (BB_END (test_bb
)
3593 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3594 || (BB_END (else_bb
)
3595 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3599 /* THEN has one successor. */
3600 if (!single_succ_p (then_bb
))
3603 /* THEN does not fall through, but is not strange either. */
3604 if (single_succ_edge (then_bb
)->flags
& (EDGE_COMPLEX
| EDGE_FALLTHRU
))
3607 /* THEN has one predecessor. */
3608 if (!single_pred_p (then_bb
))
3611 /* THEN must do something. */
3612 if (forwarder_block_p (then_bb
))
3615 num_possible_if_blocks
++;
3618 "\nIF-CASE-1 found, start %d, then %d\n",
3619 test_bb
->index
, then_bb
->index
);
3621 /* THEN is small. */
3622 if (! cheap_bb_rtx_cost_p (then_bb
,
3623 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge
->src
),
3624 predictable_edge_p (then_edge
)))))
3627 /* Registers set are dead, or are predicable. */
3628 if (! dead_or_predicable (test_bb
, then_bb
, else_bb
,
3629 single_succ (then_bb
), 1))
3632 /* Conversion went ok, including moving the insns and fixing up the
3633 jump. Adjust the CFG to match. */
3635 /* We can avoid creating a new basic block if then_bb is immediately
3636 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
3639 if (then_bb
->next_bb
== else_bb
3640 && then_bb
->prev_bb
== test_bb
3641 && else_bb
!= EXIT_BLOCK_PTR
)
3643 redirect_edge_succ (FALLTHRU_EDGE (test_bb
), else_bb
);
3647 new_bb
= redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb
),
3650 df_set_bb_dirty (test_bb
);
3651 df_set_bb_dirty (else_bb
);
3653 then_bb_index
= then_bb
->index
;
3654 delete_basic_block (then_bb
);
3656 /* Make rest of code believe that the newly created block is the THEN_BB
3657 block we removed. */
3660 df_bb_replace (then_bb_index
, new_bb
);
3661 /* Since the fallthru edge was redirected from test_bb to new_bb,
3662 we need to ensure that new_bb is in the same partition as
3663 test bb (you can not fall through across section boundaries). */
3664 BB_COPY_PARTITION (new_bb
, test_bb
);
3668 num_updated_if_blocks
++;
3673 /* Test for case 2 above. */
3676 find_if_case_2 (basic_block test_bb
, edge then_edge
, edge else_edge
)
3678 basic_block then_bb
= then_edge
->dest
;
3679 basic_block else_bb
= else_edge
->dest
;
3683 /* If we are partitioning hot/cold basic blocks, we don't want to
3684 mess up unconditional or indirect jumps that cross between hot
3687 Basic block partitioning may result in some jumps that appear to
3688 be optimizable (or blocks that appear to be mergeable), but which really
3689 must be left untouched (they are required to make it safely across
3690 partition boundaries). See the comments at the top of
3691 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3693 if ((BB_END (then_bb
)
3694 && find_reg_note (BB_END (then_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3695 || (BB_END (test_bb
)
3696 && find_reg_note (BB_END (test_bb
), REG_CROSSING_JUMP
, NULL_RTX
))
3697 || (BB_END (else_bb
)
3698 && find_reg_note (BB_END (else_bb
), REG_CROSSING_JUMP
,
3702 /* ELSE has one successor. */
3703 if (!single_succ_p (else_bb
))
3706 else_succ
= single_succ_edge (else_bb
);
3708 /* ELSE outgoing edge is not complex. */
3709 if (else_succ
->flags
& EDGE_COMPLEX
)
3712 /* ELSE has one predecessor. */
3713 if (!single_pred_p (else_bb
))
3716 /* THEN is not EXIT. */
3717 if (then_bb
->index
< NUM_FIXED_BLOCKS
)
3720 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
3721 note
= find_reg_note (BB_END (test_bb
), REG_BR_PROB
, NULL_RTX
);
3722 if (note
&& INTVAL (XEXP (note
, 0)) >= REG_BR_PROB_BASE
/ 2)
3724 else if (else_succ
->dest
->index
< NUM_FIXED_BLOCKS
3725 || dominated_by_p (CDI_POST_DOMINATORS
, then_bb
,
3731 num_possible_if_blocks
++;
3734 "\nIF-CASE-2 found, start %d, else %d\n",
3735 test_bb
->index
, else_bb
->index
);
3737 /* ELSE is small. */
3738 if (! cheap_bb_rtx_cost_p (else_bb
,
3739 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge
->src
),
3740 predictable_edge_p (else_edge
)))))
3743 /* Registers set are dead, or are predicable. */
3744 if (! dead_or_predicable (test_bb
, else_bb
, then_bb
, else_succ
->dest
, 0))
3747 /* Conversion went ok, including moving the insns and fixing up the
3748 jump. Adjust the CFG to match. */
3750 df_set_bb_dirty (test_bb
);
3751 df_set_bb_dirty (then_bb
);
3752 delete_basic_block (else_bb
);
3755 num_updated_if_blocks
++;
3757 /* ??? We may now fallthru from one of THEN's successors into a join
3758 block. Rerun cleanup_cfg? Examine things manually? Wait? */
3763 /* A subroutine of dead_or_predicable called through for_each_rtx.
3764 Return 1 if a memory is found. */
3767 find_memory (rtx
*px
, void *data ATTRIBUTE_UNUSED
)
3772 /* Used by the code above to perform the actual rtl transformations.
3773 Return TRUE if successful.
3775 TEST_BB is the block containing the conditional branch. MERGE_BB
3776 is the block containing the code to manipulate. NEW_DEST is the
3777 label TEST_BB should be branching to after the conversion.
3778 REVERSEP is true if the sense of the branch should be reversed. */
3781 dead_or_predicable (basic_block test_bb
, basic_block merge_bb
,
3782 basic_block other_bb
, basic_block new_dest
, int reversep
)
3784 rtx head
, end
, jump
, earliest
= NULL_RTX
, old_dest
, new_label
= NULL_RTX
;
3786 jump
= BB_END (test_bb
);
3788 /* Find the extent of the real code in the merge block. */
3789 head
= BB_HEAD (merge_bb
);
3790 end
= BB_END (merge_bb
);
3792 /* If merge_bb ends with a tablejump, predicating/moving insn's
3793 into test_bb and then deleting merge_bb will result in the jumptable
3794 that follows merge_bb being removed along with merge_bb and then we
3795 get an unresolved reference to the jumptable. */
3796 if (tablejump_p (end
, NULL
, NULL
))
3800 head
= NEXT_INSN (head
);
3805 head
= end
= NULL_RTX
;
3808 head
= NEXT_INSN (head
);
3815 head
= end
= NULL_RTX
;
3818 end
= PREV_INSN (end
);
3821 /* Disable handling dead code by conditional execution if the machine needs
3822 to do anything funny with the tests, etc. */
3823 #ifndef IFCVT_MODIFY_TESTS
3824 if (HAVE_conditional_execution
)
3826 /* In the conditional execution case, we have things easy. We know
3827 the condition is reversible. We don't have to check life info
3828 because we're going to conditionally execute the code anyway.
3829 All that's left is making sure the insns involved can actually
3834 cond
= cond_exec_get_condition (jump
);
3838 prob_val
= find_reg_note (jump
, REG_BR_PROB
, NULL_RTX
);
3840 prob_val
= XEXP (prob_val
, 0);
3844 enum rtx_code rev
= reversed_comparison_code (cond
, jump
);
3847 cond
= gen_rtx_fmt_ee (rev
, GET_MODE (cond
), XEXP (cond
, 0),
3850 prob_val
= GEN_INT (REG_BR_PROB_BASE
- INTVAL (prob_val
));
3853 if (! cond_exec_process_insns ((ce_if_block_t
*)0, head
, end
, cond
,
3862 /* In the non-conditional execution case, we have to verify that there
3863 are no trapping operations, no calls, no references to memory, and
3864 that any registers modified are dead at the branch site. */
3866 rtx insn
, cond
, prev
;
3867 bitmap merge_set
, test_live
, test_set
;
3868 unsigned i
, fail
= 0;
3871 /* Check for no calls or trapping operations. */
3872 for (insn
= head
; ; insn
= NEXT_INSN (insn
))
3878 if (may_trap_p (PATTERN (insn
)))
3881 /* ??? Even non-trapping memories such as stack frame
3882 references must be avoided. For stores, we collect
3883 no lifetime info; for reads, we'd have to assert
3884 true_dependence false against every store in the
3886 if (for_each_rtx (&PATTERN (insn
), find_memory
, NULL
))
3893 if (! any_condjump_p (jump
))
3896 /* Find the extent of the conditional. */
3897 cond
= noce_get_condition (jump
, &earliest
, false);
3902 MERGE_SET = set of registers set in MERGE_BB
3903 TEST_LIVE = set of registers live at EARLIEST
3904 TEST_SET = set of registers set between EARLIEST and the
3905 end of the block. */
3907 merge_set
= BITMAP_ALLOC (®_obstack
);
3908 test_live
= BITMAP_ALLOC (®_obstack
);
3909 test_set
= BITMAP_ALLOC (®_obstack
);
3911 /* ??? bb->local_set is only valid during calculate_global_regs_live,
3912 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
3913 since we've already asserted that MERGE_BB is small. */
3914 /* If we allocated new pseudos (e.g. in the conditional move
3915 expander called from noce_emit_cmove), we must resize the
3917 if (max_regno
< max_reg_num ())
3918 max_regno
= max_reg_num ();
3920 FOR_BB_INSNS (merge_bb
, insn
)
3924 unsigned int uid
= INSN_UID (insn
);
3926 for (def_rec
= DF_INSN_UID_DEFS (uid
); *def_rec
; def_rec
++)
3928 df_ref def
= *def_rec
;
3929 bitmap_set_bit (merge_set
, DF_REF_REGNO (def
));
3934 /* For small register class machines, don't lengthen lifetimes of
3935 hard registers before reload. */
3936 if (SMALL_REGISTER_CLASSES
&& ! reload_completed
)
3938 EXECUTE_IF_SET_IN_BITMAP (merge_set
, 0, i
, bi
)
3940 if (i
< FIRST_PSEUDO_REGISTER
3942 && ! global_regs
[i
])
3947 /* For TEST, we're interested in a range of insns, not a whole block.
3948 Moreover, we're interested in the insns live from OTHER_BB. */
3950 /* The loop below takes the set of live registers
3951 after JUMP, and calculates the live set before EARLIEST. */
3952 bitmap_copy (test_live
, df_get_live_in (other_bb
));
3953 df_simulate_artificial_refs_at_end (test_bb
, test_live
);
3954 for (insn
= jump
; ; insn
= prev
)
3958 df_simulate_find_defs (insn
, test_set
);
3959 df_simulate_one_insn (test_bb
, insn
, test_live
);
3961 prev
= PREV_INSN (insn
);
3962 if (insn
== earliest
)
3966 /* We can perform the transformation if
3967 MERGE_SET & (TEST_SET | TEST_LIVE)
3969 TEST_SET & DF_LIVE_IN (merge_bb)
3972 if (bitmap_intersect_p (test_set
, merge_set
)
3973 || bitmap_intersect_p (test_live
, merge_set
)
3974 || bitmap_intersect_p (test_set
, df_get_live_in (merge_bb
)))
3977 BITMAP_FREE (merge_set
);
3978 BITMAP_FREE (test_live
);
3979 BITMAP_FREE (test_set
);
3986 /* We don't want to use normal invert_jump or redirect_jump because
3987 we don't want to delete_insn called. Also, we want to do our own
3988 change group management. */
3990 old_dest
= JUMP_LABEL (jump
);
3991 if (other_bb
!= new_dest
)
3993 new_label
= block_label (new_dest
);
3995 ? ! invert_jump_1 (jump
, new_label
)
3996 : ! redirect_jump_1 (jump
, new_label
))
4000 if (! apply_change_group ())
4003 if (other_bb
!= new_dest
)
4005 redirect_jump_2 (jump
, old_dest
, new_label
, 0, reversep
);
4007 redirect_edge_succ (BRANCH_EDGE (test_bb
), new_dest
);
4010 gcov_type count
, probability
;
4011 count
= BRANCH_EDGE (test_bb
)->count
;
4012 BRANCH_EDGE (test_bb
)->count
= FALLTHRU_EDGE (test_bb
)->count
;
4013 FALLTHRU_EDGE (test_bb
)->count
= count
;
4014 probability
= BRANCH_EDGE (test_bb
)->probability
;
4015 BRANCH_EDGE (test_bb
)->probability
4016 = FALLTHRU_EDGE (test_bb
)->probability
;
4017 FALLTHRU_EDGE (test_bb
)->probability
= probability
;
4018 update_br_prob_note (test_bb
);
4022 /* Move the insns out of MERGE_BB to before the branch. */
4027 if (end
== BB_END (merge_bb
))
4028 BB_END (merge_bb
) = PREV_INSN (head
);
4030 /* PR 21767: When moving insns above a conditional branch, REG_EQUAL
4031 notes might become invalid. */
4037 if (! INSN_P (insn
))
4039 note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
);
4042 set
= single_set (insn
);
4043 if (!set
|| !function_invariant_p (SET_SRC (set
)))
4044 remove_note (insn
, note
);
4045 } while (insn
!= end
&& (insn
= NEXT_INSN (insn
)));
4047 reorder_insns (head
, end
, PREV_INSN (earliest
));
4050 /* Remove the jump and edge if we can. */
4051 if (other_bb
== new_dest
)
4054 remove_edge (BRANCH_EDGE (test_bb
));
4055 /* ??? Can't merge blocks here, as then_bb is still in use.
4056 At minimum, the merge will get done just before bb-reorder. */
4066 /* Main entry point for all if-conversion. */
4076 df_live_add_problem ();
4077 df_live_set_all_dirty ();
4080 num_possible_if_blocks
= 0;
4081 num_updated_if_blocks
= 0;
4082 num_true_changes
= 0;
4084 loop_optimizer_init (AVOID_CFG_MODIFICATIONS
);
4085 mark_loop_exit_edges ();
4086 loop_optimizer_finalize ();
4087 free_dominance_info (CDI_DOMINATORS
);
4089 /* Compute postdominators. */
4090 calculate_dominance_info (CDI_POST_DOMINATORS
);
4092 df_set_flags (DF_LR_RUN_DCE
);
4094 /* Go through each of the basic blocks looking for things to convert. If we
4095 have conditional execution, we make multiple passes to allow us to handle
4096 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
4101 /* Only need to do dce on the first pass. */
4102 df_clear_flags (DF_LR_RUN_DCE
);
4103 cond_exec_changed_p
= FALSE
;
4106 #ifdef IFCVT_MULTIPLE_DUMPS
4107 if (dump_file
&& pass
> 1)
4108 fprintf (dump_file
, "\n\n========== Pass %d ==========\n", pass
);
4114 while (!df_get_bb_dirty (bb
)
4115 && (new_bb
= find_if_header (bb
, pass
)) != NULL
)
4119 #ifdef IFCVT_MULTIPLE_DUMPS
4120 if (dump_file
&& cond_exec_changed_p
)
4121 print_rtl_with_bb (dump_file
, get_insns ());
4124 while (cond_exec_changed_p
);
4126 #ifdef IFCVT_MULTIPLE_DUMPS
4128 fprintf (dump_file
, "\n\n========== no more changes\n");
4131 free_dominance_info (CDI_POST_DOMINATORS
);
4136 clear_aux_for_blocks ();
4138 /* If we allocated new pseudos, we must resize the array for sched1. */
4139 if (max_regno
< max_reg_num ())
4140 max_regno
= max_reg_num ();
4142 /* Write the final stats. */
4143 if (dump_file
&& num_possible_if_blocks
> 0)
4146 "\n%d possible IF blocks searched.\n",
4147 num_possible_if_blocks
);
4149 "%d IF blocks converted.\n",
4150 num_updated_if_blocks
);
4152 "%d true changes made.\n\n\n",
4157 df_remove_problem (df_live
);
4159 #ifdef ENABLE_CHECKING
4160 verify_flow_info ();
4165 gate_handle_if_conversion (void)
4167 return (optimize
> 0)
4168 && dbg_cnt (if_conversion
);
4171 /* If-conversion and CFG cleanup. */
4173 rest_of_handle_if_conversion (void)
4175 if (flag_if_conversion
)
4178 dump_flow_info (dump_file
, dump_flags
);
4179 cleanup_cfg (CLEANUP_EXPENSIVE
);
4187 struct rtl_opt_pass pass_rtl_ifcvt
=
4192 gate_handle_if_conversion
, /* gate */
4193 rest_of_handle_if_conversion
, /* execute */
4196 0, /* static_pass_number */
4197 TV_IFCVT
, /* tv_id */
4198 0, /* properties_required */
4199 0, /* properties_provided */
4200 0, /* properties_destroyed */
4201 0, /* todo_flags_start */
4202 TODO_df_finish
| TODO_verify_rtl_sharing
|
4203 TODO_dump_func
/* todo_flags_finish */
4208 gate_handle_if_after_combine (void)
4210 return optimize
> 0 && flag_if_conversion
4211 && dbg_cnt (if_after_combine
);
4215 /* Rerun if-conversion, as combine may have simplified things enough
4216 to now meet sequence length restrictions. */
4218 rest_of_handle_if_after_combine (void)
4224 struct rtl_opt_pass pass_if_after_combine
=
4229 gate_handle_if_after_combine
, /* gate */
4230 rest_of_handle_if_after_combine
, /* execute */
4233 0, /* static_pass_number */
4234 TV_IFCVT
, /* tv_id */
4235 0, /* properties_required */
4236 0, /* properties_provided */
4237 0, /* properties_destroyed */
4238 0, /* todo_flags_start */
4239 TODO_df_finish
| TODO_verify_rtl_sharing
|
4241 TODO_ggc_collect
/* todo_flags_finish */
4247 gate_handle_if_after_reload (void)
4249 return optimize
> 0 && flag_if_conversion2
4250 && dbg_cnt (if_after_reload
);
4254 rest_of_handle_if_after_reload (void)
4261 struct rtl_opt_pass pass_if_after_reload
=
4266 gate_handle_if_after_reload
, /* gate */
4267 rest_of_handle_if_after_reload
, /* execute */
4270 0, /* static_pass_number */
4271 TV_IFCVT2
, /* tv_id */
4272 0, /* properties_required */
4273 0, /* properties_provided */
4274 0, /* properties_destroyed */
4275 0, /* todo_flags_start */
4276 TODO_df_finish
| TODO_verify_rtl_sharing
|
4278 TODO_ggc_collect
/* todo_flags_finish */