* profile.c (compute_branch_probabilities): Use REG_BR_PROB notes
[official-gcc.git] / gcc / ifcvt.c
blob5963158db42f988436757ced24131866fbd46ba9
1 /* If-conversion support.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
26 #include "rtl.h"
27 #include "regs.h"
28 #include "function.h"
29 #include "flags.h"
30 #include "insn-config.h"
31 #include "recog.h"
32 #include "except.h"
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
35 #include "expr.h"
36 #include "real.h"
37 #include "output.h"
38 #include "optabs.h"
39 #include "toplev.h"
40 #include "tm_p.h"
41 #include "cfgloop.h"
42 #include "target.h"
45 #ifndef HAVE_conditional_execution
46 #define HAVE_conditional_execution 0
47 #endif
48 #ifndef HAVE_conditional_move
49 #define HAVE_conditional_move 0
50 #endif
51 #ifndef HAVE_incscc
52 #define HAVE_incscc 0
53 #endif
54 #ifndef HAVE_decscc
55 #define HAVE_decscc 0
56 #endif
57 #ifndef HAVE_trap
58 #define HAVE_trap 0
59 #endif
60 #ifndef HAVE_conditional_trap
61 #define HAVE_conditional_trap 0
62 #endif
64 #ifndef MAX_CONDITIONAL_EXECUTE
65 #define MAX_CONDITIONAL_EXECUTE (BRANCH_COST + 1)
66 #endif
68 #define NULL_EDGE ((struct edge_def *)NULL)
69 #define NULL_BLOCK ((struct basic_block_def *)NULL)
71 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
72 static int num_possible_if_blocks;
74 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
75 execution. */
76 static int num_updated_if_blocks;
78 /* # of changes made which require life information to be updated. */
79 static int num_true_changes;
81 /* Whether conditional execution changes were made. */
82 static int cond_exec_changed_p;
84 /* True if life data ok at present. */
85 static bool life_data_ok;
87 /* Forward references. */
88 static int count_bb_insns (basic_block);
89 static int total_bb_rtx_cost (basic_block);
90 static rtx first_active_insn (basic_block);
91 static rtx last_active_insn (basic_block, int);
92 static basic_block block_fallthru (basic_block);
93 static int cond_exec_process_insns (ce_if_block_t *, rtx, rtx, rtx, rtx, int);
94 static rtx cond_exec_get_condition (rtx);
95 static int cond_exec_process_if_block (ce_if_block_t *, int);
96 static rtx noce_get_condition (rtx, rtx *);
97 static int noce_operand_ok (rtx);
98 static int noce_process_if_block (ce_if_block_t *);
99 static int process_if_block (ce_if_block_t *);
100 static void merge_if_block (ce_if_block_t *);
101 static int find_cond_trap (basic_block, edge, edge);
102 static basic_block find_if_header (basic_block, int);
103 static int block_jumps_and_fallthru_p (basic_block, basic_block);
104 static int find_if_block (ce_if_block_t *);
105 static int find_if_case_1 (basic_block, edge, edge);
106 static int find_if_case_2 (basic_block, edge, edge);
107 static int find_memory (rtx *, void *);
108 static int dead_or_predicable (basic_block, basic_block, basic_block,
109 basic_block, int);
110 static void noce_emit_move_insn (rtx, rtx);
111 static rtx block_has_only_trap (basic_block);
112 static void mark_loop_exit_edges (void);
114 /* Sets EDGE_LOOP_EXIT flag for all loop exits. */
115 static void
116 mark_loop_exit_edges (void)
118 struct loops loops;
119 basic_block bb;
120 edge e;
122 flow_loops_find (&loops, LOOP_TREE);
123 free_dominance_info (CDI_DOMINATORS);
125 if (loops.num > 1)
127 FOR_EACH_BB (bb)
129 for (e = bb->succ; e; e = e->succ_next)
131 if (find_common_loop (bb->loop_father, e->dest->loop_father)
132 != bb->loop_father)
133 e->flags |= EDGE_LOOP_EXIT;
134 else
135 e->flags &= ~EDGE_LOOP_EXIT;
140 flow_loops_free (&loops);
143 /* Count the number of non-jump active insns in BB. */
145 static int
146 count_bb_insns (basic_block bb)
148 int count = 0;
149 rtx insn = BB_HEAD (bb);
151 while (1)
153 if (CALL_P (insn) || NONJUMP_INSN_P (insn))
154 count++;
156 if (insn == BB_END (bb))
157 break;
158 insn = NEXT_INSN (insn);
161 return count;
164 /* Count the total insn_rtx_cost of non-jump active insns in BB.
165 This function returns -1, if the cost of any instruction could
166 not be estimated. */
168 static int
169 total_bb_rtx_cost (basic_block bb)
171 int count = 0;
172 rtx insn = BB_HEAD (bb);
174 while (1)
176 if (NONJUMP_INSN_P (insn))
178 int cost = insn_rtx_cost (PATTERN (insn));
179 if (cost == 0)
180 return -1;
181 count += cost;
183 else if (CALL_P (insn))
184 return -1;
186 if (insn == BB_END (bb))
187 break;
188 insn = NEXT_INSN (insn);
191 return count;
194 /* Return the first non-jump active insn in the basic block. */
196 static rtx
197 first_active_insn (basic_block bb)
199 rtx insn = BB_HEAD (bb);
201 if (LABEL_P (insn))
203 if (insn == BB_END (bb))
204 return NULL_RTX;
205 insn = NEXT_INSN (insn);
208 while (NOTE_P (insn))
210 if (insn == BB_END (bb))
211 return NULL_RTX;
212 insn = NEXT_INSN (insn);
215 if (JUMP_P (insn))
216 return NULL_RTX;
218 return insn;
221 /* Return the last non-jump active (non-jump) insn in the basic block. */
223 static rtx
224 last_active_insn (basic_block bb, int skip_use_p)
226 rtx insn = BB_END (bb);
227 rtx head = BB_HEAD (bb);
229 while (NOTE_P (insn)
230 || JUMP_P (insn)
231 || (skip_use_p
232 && NONJUMP_INSN_P (insn)
233 && GET_CODE (PATTERN (insn)) == USE))
235 if (insn == head)
236 return NULL_RTX;
237 insn = PREV_INSN (insn);
240 if (LABEL_P (insn))
241 return NULL_RTX;
243 return insn;
246 /* Return the basic block reached by falling though the basic block BB. */
248 static basic_block
249 block_fallthru (basic_block bb)
251 edge e;
253 for (e = bb->succ;
254 e != NULL_EDGE && (e->flags & EDGE_FALLTHRU) == 0;
255 e = e->succ_next)
258 return (e) ? e->dest : NULL_BLOCK;
261 /* Go through a bunch of insns, converting them to conditional
262 execution format if possible. Return TRUE if all of the non-note
263 insns were processed. */
265 static int
266 cond_exec_process_insns (ce_if_block_t *ce_info ATTRIBUTE_UNUSED,
267 /* if block information */rtx start,
268 /* first insn to look at */rtx end,
269 /* last insn to look at */rtx test,
270 /* conditional execution test */rtx prob_val,
271 /* probability of branch taken. */int mod_ok)
273 int must_be_last = FALSE;
274 rtx insn;
275 rtx xtest;
276 rtx pattern;
278 if (!start || !end)
279 return FALSE;
281 for (insn = start; ; insn = NEXT_INSN (insn))
283 if (NOTE_P (insn))
284 goto insn_done;
286 if (!NONJUMP_INSN_P (insn) && !CALL_P (insn))
287 abort ();
289 /* Remove USE insns that get in the way. */
290 if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
292 /* ??? Ug. Actually unlinking the thing is problematic,
293 given what we'd have to coordinate with our callers. */
294 SET_INSN_DELETED (insn);
295 goto insn_done;
298 /* Last insn wasn't last? */
299 if (must_be_last)
300 return FALSE;
302 if (modified_in_p (test, insn))
304 if (!mod_ok)
305 return FALSE;
306 must_be_last = TRUE;
309 /* Now build the conditional form of the instruction. */
310 pattern = PATTERN (insn);
311 xtest = copy_rtx (test);
313 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
314 two conditions. */
315 if (GET_CODE (pattern) == COND_EXEC)
317 if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
318 return FALSE;
320 xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
321 COND_EXEC_TEST (pattern));
322 pattern = COND_EXEC_CODE (pattern);
325 pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
327 /* If the machine needs to modify the insn being conditionally executed,
328 say for example to force a constant integer operand into a temp
329 register, do so here. */
330 #ifdef IFCVT_MODIFY_INSN
331 IFCVT_MODIFY_INSN (ce_info, pattern, insn);
332 if (! pattern)
333 return FALSE;
334 #endif
336 validate_change (insn, &PATTERN (insn), pattern, 1);
338 if (CALL_P (insn) && prob_val)
339 validate_change (insn, &REG_NOTES (insn),
340 alloc_EXPR_LIST (REG_BR_PROB, prob_val,
341 REG_NOTES (insn)), 1);
343 insn_done:
344 if (insn == end)
345 break;
348 return TRUE;
351 /* Return the condition for a jump. Do not do any special processing. */
353 static rtx
354 cond_exec_get_condition (rtx jump)
356 rtx test_if, cond;
358 if (any_condjump_p (jump))
359 test_if = SET_SRC (pc_set (jump));
360 else
361 return NULL_RTX;
362 cond = XEXP (test_if, 0);
364 /* If this branches to JUMP_LABEL when the condition is false,
365 reverse the condition. */
366 if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
367 && XEXP (XEXP (test_if, 2), 0) == JUMP_LABEL (jump))
369 enum rtx_code rev = reversed_comparison_code (cond, jump);
370 if (rev == UNKNOWN)
371 return NULL_RTX;
373 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
374 XEXP (cond, 1));
377 return cond;
380 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
381 to conditional execution. Return TRUE if we were successful at
382 converting the block. */
384 static int
385 cond_exec_process_if_block (ce_if_block_t * ce_info,
386 /* if block information */int do_multiple_p)
388 basic_block test_bb = ce_info->test_bb; /* last test block */
389 basic_block then_bb = ce_info->then_bb; /* THEN */
390 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
391 rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
392 rtx then_start; /* first insn in THEN block */
393 rtx then_end; /* last insn + 1 in THEN block */
394 rtx else_start = NULL_RTX; /* first insn in ELSE block or NULL */
395 rtx else_end = NULL_RTX; /* last insn + 1 in ELSE block */
396 int max; /* max # of insns to convert. */
397 int then_mod_ok; /* whether conditional mods are ok in THEN */
398 rtx true_expr; /* test for else block insns */
399 rtx false_expr; /* test for then block insns */
400 rtx true_prob_val; /* probability of else block */
401 rtx false_prob_val; /* probability of then block */
402 int n_insns;
403 enum rtx_code false_code;
405 /* If test is comprised of && or || elements, and we've failed at handling
406 all of them together, just use the last test if it is the special case of
407 && elements without an ELSE block. */
408 if (!do_multiple_p && ce_info->num_multiple_test_blocks)
410 if (else_bb || ! ce_info->and_and_p)
411 return FALSE;
413 ce_info->test_bb = test_bb = ce_info->last_test_bb;
414 ce_info->num_multiple_test_blocks = 0;
415 ce_info->num_and_and_blocks = 0;
416 ce_info->num_or_or_blocks = 0;
419 /* Find the conditional jump to the ELSE or JOIN part, and isolate
420 the test. */
421 test_expr = cond_exec_get_condition (BB_END (test_bb));
422 if (! test_expr)
423 return FALSE;
425 /* If the conditional jump is more than just a conditional jump,
426 then we can not do conditional execution conversion on this block. */
427 if (! onlyjump_p (BB_END (test_bb)))
428 return FALSE;
430 /* Collect the bounds of where we're to search, skipping any labels, jumps
431 and notes at the beginning and end of the block. Then count the total
432 number of insns and see if it is small enough to convert. */
433 then_start = first_active_insn (then_bb);
434 then_end = last_active_insn (then_bb, TRUE);
435 n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
436 max = MAX_CONDITIONAL_EXECUTE;
438 if (else_bb)
440 max *= 2;
441 else_start = first_active_insn (else_bb);
442 else_end = last_active_insn (else_bb, TRUE);
443 n_insns += ce_info->num_else_insns = count_bb_insns (else_bb);
446 if (n_insns > max)
447 return FALSE;
449 /* Map test_expr/test_jump into the appropriate MD tests to use on
450 the conditionally executed code. */
452 true_expr = test_expr;
454 false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
455 if (false_code != UNKNOWN)
456 false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
457 XEXP (true_expr, 0), XEXP (true_expr, 1));
458 else
459 false_expr = NULL_RTX;
461 #ifdef IFCVT_MODIFY_TESTS
462 /* If the machine description needs to modify the tests, such as setting a
463 conditional execution register from a comparison, it can do so here. */
464 IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
466 /* See if the conversion failed. */
467 if (!true_expr || !false_expr)
468 goto fail;
469 #endif
471 true_prob_val = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
472 if (true_prob_val)
474 true_prob_val = XEXP (true_prob_val, 0);
475 false_prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (true_prob_val));
477 else
478 false_prob_val = NULL_RTX;
480 /* If we have && or || tests, do them here. These tests are in the adjacent
481 blocks after the first block containing the test. */
482 if (ce_info->num_multiple_test_blocks > 0)
484 basic_block bb = test_bb;
485 basic_block last_test_bb = ce_info->last_test_bb;
487 if (! false_expr)
488 goto fail;
492 rtx start, end;
493 rtx t, f;
494 enum rtx_code f_code;
496 bb = block_fallthru (bb);
497 start = first_active_insn (bb);
498 end = last_active_insn (bb, TRUE);
499 if (start
500 && ! cond_exec_process_insns (ce_info, start, end, false_expr,
501 false_prob_val, FALSE))
502 goto fail;
504 /* If the conditional jump is more than just a conditional jump, then
505 we can not do conditional execution conversion on this block. */
506 if (! onlyjump_p (BB_END (bb)))
507 goto fail;
509 /* Find the conditional jump and isolate the test. */
510 t = cond_exec_get_condition (BB_END (bb));
511 if (! t)
512 goto fail;
514 f_code = reversed_comparison_code (t, BB_END (bb));
515 if (f_code == UNKNOWN)
516 goto fail;
518 f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
519 if (ce_info->and_and_p)
521 t = gen_rtx_AND (GET_MODE (t), true_expr, t);
522 f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
524 else
526 t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
527 f = gen_rtx_AND (GET_MODE (t), false_expr, f);
530 /* If the machine description needs to modify the tests, such as
531 setting a conditional execution register from a comparison, it can
532 do so here. */
533 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
534 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
536 /* See if the conversion failed. */
537 if (!t || !f)
538 goto fail;
539 #endif
541 true_expr = t;
542 false_expr = f;
544 while (bb != last_test_bb);
547 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
548 on then THEN block. */
549 then_mod_ok = (else_bb == NULL_BLOCK);
551 /* Go through the THEN and ELSE blocks converting the insns if possible
552 to conditional execution. */
554 if (then_end
555 && (! false_expr
556 || ! cond_exec_process_insns (ce_info, then_start, then_end,
557 false_expr, false_prob_val,
558 then_mod_ok)))
559 goto fail;
561 if (else_bb && else_end
562 && ! cond_exec_process_insns (ce_info, else_start, else_end,
563 true_expr, true_prob_val, TRUE))
564 goto fail;
566 /* If we cannot apply the changes, fail. Do not go through the normal fail
567 processing, since apply_change_group will call cancel_changes. */
568 if (! apply_change_group ())
570 #ifdef IFCVT_MODIFY_CANCEL
571 /* Cancel any machine dependent changes. */
572 IFCVT_MODIFY_CANCEL (ce_info);
573 #endif
574 return FALSE;
577 #ifdef IFCVT_MODIFY_FINAL
578 /* Do any machine dependent final modifications. */
579 IFCVT_MODIFY_FINAL (ce_info);
580 #endif
582 /* Conversion succeeded. */
583 if (dump_file)
584 fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
585 n_insns, (n_insns == 1) ? " was" : "s were");
587 /* Merge the blocks! */
588 merge_if_block (ce_info);
589 cond_exec_changed_p = TRUE;
590 return TRUE;
592 fail:
593 #ifdef IFCVT_MODIFY_CANCEL
594 /* Cancel any machine dependent changes. */
595 IFCVT_MODIFY_CANCEL (ce_info);
596 #endif
598 cancel_changes (0);
599 return FALSE;
602 /* Used by noce_process_if_block to communicate with its subroutines.
604 The subroutines know that A and B may be evaluated freely. They
605 know that X is a register. They should insert new instructions
606 before cond_earliest. */
608 struct noce_if_info
610 basic_block test_bb;
611 rtx insn_a, insn_b;
612 rtx x, a, b;
613 rtx jump, cond, cond_earliest;
614 /* True if "b" was originally evaluated unconditionally. */
615 bool b_unconditional;
618 static rtx noce_emit_store_flag (struct noce_if_info *, rtx, int, int);
619 static int noce_try_move (struct noce_if_info *);
620 static int noce_try_store_flag (struct noce_if_info *);
621 static int noce_try_addcc (struct noce_if_info *);
622 static int noce_try_store_flag_constants (struct noce_if_info *);
623 static int noce_try_store_flag_mask (struct noce_if_info *);
624 static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
625 rtx, rtx, rtx);
626 static int noce_try_cmove (struct noce_if_info *);
627 static int noce_try_cmove_arith (struct noce_if_info *);
628 static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx *);
629 static int noce_try_minmax (struct noce_if_info *);
630 static int noce_try_abs (struct noce_if_info *);
631 static int noce_try_sign_mask (struct noce_if_info *);
633 /* Helper function for noce_try_store_flag*. */
635 static rtx
636 noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
637 int normalize)
639 rtx cond = if_info->cond;
640 int cond_complex;
641 enum rtx_code code;
643 cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
644 || ! general_operand (XEXP (cond, 1), VOIDmode));
646 /* If earliest == jump, or when the condition is complex, try to
647 build the store_flag insn directly. */
649 if (cond_complex)
650 cond = XEXP (SET_SRC (pc_set (if_info->jump)), 0);
652 if (reversep)
653 code = reversed_comparison_code (cond, if_info->jump);
654 else
655 code = GET_CODE (cond);
657 if ((if_info->cond_earliest == if_info->jump || cond_complex)
658 && (normalize == 0 || STORE_FLAG_VALUE == normalize))
660 rtx tmp;
662 tmp = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
663 XEXP (cond, 1));
664 tmp = gen_rtx_SET (VOIDmode, x, tmp);
666 start_sequence ();
667 tmp = emit_insn (tmp);
669 if (recog_memoized (tmp) >= 0)
671 tmp = get_insns ();
672 end_sequence ();
673 emit_insn (tmp);
675 if_info->cond_earliest = if_info->jump;
677 return x;
680 end_sequence ();
683 /* Don't even try if the comparison operands or the mode of X are weird. */
684 if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
685 return NULL_RTX;
687 return emit_store_flag (x, code, XEXP (cond, 0),
688 XEXP (cond, 1), VOIDmode,
689 (code == LTU || code == LEU
690 || code == GEU || code == GTU), normalize);
693 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
694 X is the destination/target and Y is the value to copy. */
696 static void
697 noce_emit_move_insn (rtx x, rtx y)
699 enum machine_mode outmode, inmode;
700 rtx outer, inner;
701 int bitpos;
703 if (GET_CODE (x) != STRICT_LOW_PART)
705 emit_move_insn (x, y);
706 return;
709 outer = XEXP (x, 0);
710 inner = XEXP (outer, 0);
711 outmode = GET_MODE (outer);
712 inmode = GET_MODE (inner);
713 bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
714 store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos, outmode, y);
717 /* Return sequence of instructions generated by if conversion. This
718 function calls end_sequence() to end the current stream, ensures
719 that are instructions are unshared, recognizable non-jump insns.
720 On failure, this function returns a NULL_RTX. */
722 static rtx
723 end_ifcvt_sequence (struct noce_if_info *if_info)
725 rtx insn;
726 rtx seq = get_insns ();
728 set_used_flags (if_info->x);
729 set_used_flags (if_info->cond);
730 unshare_all_rtl_in_chain (seq);
731 end_sequence ();
733 /* Make sure that all of the instructions emitted are recognizable,
734 and that we haven't introduced a new jump instruction.
735 As an exercise for the reader, build a general mechanism that
736 allows proper placement of required clobbers. */
737 for (insn = seq; insn; insn = NEXT_INSN (insn))
738 if (JUMP_P (insn)
739 || recog_memoized (insn) == -1)
740 return NULL_RTX;
742 return seq;
745 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
746 "if (a == b) x = a; else x = b" into "x = b". */
748 static int
749 noce_try_move (struct noce_if_info *if_info)
751 rtx cond = if_info->cond;
752 enum rtx_code code = GET_CODE (cond);
753 rtx y, seq;
755 if (code != NE && code != EQ)
756 return FALSE;
758 /* This optimization isn't valid if either A or B could be a NaN
759 or a signed zero. */
760 if (HONOR_NANS (GET_MODE (if_info->x))
761 || HONOR_SIGNED_ZEROS (GET_MODE (if_info->x)))
762 return FALSE;
764 /* Check whether the operands of the comparison are A and in
765 either order. */
766 if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
767 && rtx_equal_p (if_info->b, XEXP (cond, 1)))
768 || (rtx_equal_p (if_info->a, XEXP (cond, 1))
769 && rtx_equal_p (if_info->b, XEXP (cond, 0))))
771 y = (code == EQ) ? if_info->a : if_info->b;
773 /* Avoid generating the move if the source is the destination. */
774 if (! rtx_equal_p (if_info->x, y))
776 start_sequence ();
777 noce_emit_move_insn (if_info->x, y);
778 seq = end_ifcvt_sequence (if_info);
779 if (!seq)
780 return FALSE;
782 emit_insn_before_setloc (seq, if_info->jump,
783 INSN_LOCATOR (if_info->insn_a));
785 return TRUE;
787 return FALSE;
790 /* Convert "if (test) x = 1; else x = 0".
792 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
793 tried in noce_try_store_flag_constants after noce_try_cmove has had
794 a go at the conversion. */
796 static int
797 noce_try_store_flag (struct noce_if_info *if_info)
799 int reversep;
800 rtx target, seq;
802 if (GET_CODE (if_info->b) == CONST_INT
803 && INTVAL (if_info->b) == STORE_FLAG_VALUE
804 && if_info->a == const0_rtx)
805 reversep = 0;
806 else if (if_info->b == const0_rtx
807 && GET_CODE (if_info->a) == CONST_INT
808 && INTVAL (if_info->a) == STORE_FLAG_VALUE
809 && (reversed_comparison_code (if_info->cond, if_info->jump)
810 != UNKNOWN))
811 reversep = 1;
812 else
813 return FALSE;
815 start_sequence ();
817 target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
818 if (target)
820 if (target != if_info->x)
821 noce_emit_move_insn (if_info->x, target);
823 seq = end_ifcvt_sequence (if_info);
824 if (! seq)
825 return FALSE;
827 emit_insn_before_setloc (seq, if_info->jump,
828 INSN_LOCATOR (if_info->insn_a));
829 return TRUE;
831 else
833 end_sequence ();
834 return FALSE;
838 /* Convert "if (test) x = a; else x = b", for A and B constant. */
840 static int
841 noce_try_store_flag_constants (struct noce_if_info *if_info)
843 rtx target, seq;
844 int reversep;
845 HOST_WIDE_INT itrue, ifalse, diff, tmp;
846 int normalize, can_reverse;
847 enum machine_mode mode;
849 if (! no_new_pseudos
850 && GET_CODE (if_info->a) == CONST_INT
851 && GET_CODE (if_info->b) == CONST_INT)
853 mode = GET_MODE (if_info->x);
854 ifalse = INTVAL (if_info->a);
855 itrue = INTVAL (if_info->b);
857 /* Make sure we can represent the difference between the two values. */
858 if ((itrue - ifalse > 0)
859 != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
860 return FALSE;
862 diff = trunc_int_for_mode (itrue - ifalse, mode);
864 can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
865 != UNKNOWN);
867 reversep = 0;
868 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
869 normalize = 0;
870 else if (ifalse == 0 && exact_log2 (itrue) >= 0
871 && (STORE_FLAG_VALUE == 1
872 || BRANCH_COST >= 2))
873 normalize = 1;
874 else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
875 && (STORE_FLAG_VALUE == 1 || BRANCH_COST >= 2))
876 normalize = 1, reversep = 1;
877 else if (itrue == -1
878 && (STORE_FLAG_VALUE == -1
879 || BRANCH_COST >= 2))
880 normalize = -1;
881 else if (ifalse == -1 && can_reverse
882 && (STORE_FLAG_VALUE == -1 || BRANCH_COST >= 2))
883 normalize = -1, reversep = 1;
884 else if ((BRANCH_COST >= 2 && STORE_FLAG_VALUE == -1)
885 || BRANCH_COST >= 3)
886 normalize = -1;
887 else
888 return FALSE;
890 if (reversep)
892 tmp = itrue; itrue = ifalse; ifalse = tmp;
893 diff = trunc_int_for_mode (-diff, mode);
896 start_sequence ();
897 target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
898 if (! target)
900 end_sequence ();
901 return FALSE;
904 /* if (test) x = 3; else x = 4;
905 => x = 3 + (test == 0); */
906 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
908 target = expand_simple_binop (mode,
909 (diff == STORE_FLAG_VALUE
910 ? PLUS : MINUS),
911 GEN_INT (ifalse), target, if_info->x, 0,
912 OPTAB_WIDEN);
915 /* if (test) x = 8; else x = 0;
916 => x = (test != 0) << 3; */
917 else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
919 target = expand_simple_binop (mode, ASHIFT,
920 target, GEN_INT (tmp), if_info->x, 0,
921 OPTAB_WIDEN);
924 /* if (test) x = -1; else x = b;
925 => x = -(test != 0) | b; */
926 else if (itrue == -1)
928 target = expand_simple_binop (mode, IOR,
929 target, GEN_INT (ifalse), if_info->x, 0,
930 OPTAB_WIDEN);
933 /* if (test) x = a; else x = b;
934 => x = (-(test != 0) & (b - a)) + a; */
935 else
937 target = expand_simple_binop (mode, AND,
938 target, GEN_INT (diff), if_info->x, 0,
939 OPTAB_WIDEN);
940 if (target)
941 target = expand_simple_binop (mode, PLUS,
942 target, GEN_INT (ifalse),
943 if_info->x, 0, OPTAB_WIDEN);
946 if (! target)
948 end_sequence ();
949 return FALSE;
952 if (target != if_info->x)
953 noce_emit_move_insn (if_info->x, target);
955 seq = end_ifcvt_sequence (if_info);
956 if (!seq)
957 return FALSE;
959 emit_insn_before_setloc (seq, if_info->jump,
960 INSN_LOCATOR (if_info->insn_a));
961 return TRUE;
964 return FALSE;
967 /* Convert "if (test) foo++" into "foo += (test != 0)", and
968 similarly for "foo--". */
970 static int
971 noce_try_addcc (struct noce_if_info *if_info)
973 rtx target, seq;
974 int subtract, normalize;
976 if (! no_new_pseudos
977 && GET_CODE (if_info->a) == PLUS
978 && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
979 && (reversed_comparison_code (if_info->cond, if_info->jump)
980 != UNKNOWN))
982 rtx cond = if_info->cond;
983 enum rtx_code code = reversed_comparison_code (cond, if_info->jump);
985 /* First try to use addcc pattern. */
986 if (general_operand (XEXP (cond, 0), VOIDmode)
987 && general_operand (XEXP (cond, 1), VOIDmode))
989 start_sequence ();
990 target = emit_conditional_add (if_info->x, code,
991 XEXP (cond, 0),
992 XEXP (cond, 1),
993 VOIDmode,
994 if_info->b,
995 XEXP (if_info->a, 1),
996 GET_MODE (if_info->x),
997 (code == LTU || code == GEU
998 || code == LEU || code == GTU));
999 if (target)
1001 if (target != if_info->x)
1002 noce_emit_move_insn (if_info->x, target);
1004 seq = end_ifcvt_sequence (if_info);
1005 if (!seq)
1006 return FALSE;
1008 emit_insn_before_setloc (seq, if_info->jump,
1009 INSN_LOCATOR (if_info->insn_a));
1010 return TRUE;
1012 end_sequence ();
1015 /* If that fails, construct conditional increment or decrement using
1016 setcc. */
1017 if (BRANCH_COST >= 2
1018 && (XEXP (if_info->a, 1) == const1_rtx
1019 || XEXP (if_info->a, 1) == constm1_rtx))
1021 start_sequence ();
1022 if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1023 subtract = 0, normalize = 0;
1024 else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1025 subtract = 1, normalize = 0;
1026 else
1027 subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
1030 target = noce_emit_store_flag (if_info,
1031 gen_reg_rtx (GET_MODE (if_info->x)),
1032 1, normalize);
1034 if (target)
1035 target = expand_simple_binop (GET_MODE (if_info->x),
1036 subtract ? MINUS : PLUS,
1037 if_info->b, target, if_info->x,
1038 0, OPTAB_WIDEN);
1039 if (target)
1041 if (target != if_info->x)
1042 noce_emit_move_insn (if_info->x, target);
1044 seq = end_ifcvt_sequence (if_info);
1045 if (!seq)
1046 return FALSE;
1048 emit_insn_before_setloc (seq, if_info->jump,
1049 INSN_LOCATOR (if_info->insn_a));
1050 return TRUE;
1052 end_sequence ();
1056 return FALSE;
1059 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1061 static int
1062 noce_try_store_flag_mask (struct noce_if_info *if_info)
1064 rtx target, seq;
1065 int reversep;
1067 reversep = 0;
1068 if (! no_new_pseudos
1069 && (BRANCH_COST >= 2
1070 || STORE_FLAG_VALUE == -1)
1071 && ((if_info->a == const0_rtx
1072 && rtx_equal_p (if_info->b, if_info->x))
1073 || ((reversep = (reversed_comparison_code (if_info->cond,
1074 if_info->jump)
1075 != UNKNOWN))
1076 && if_info->b == const0_rtx
1077 && rtx_equal_p (if_info->a, if_info->x))))
1079 start_sequence ();
1080 target = noce_emit_store_flag (if_info,
1081 gen_reg_rtx (GET_MODE (if_info->x)),
1082 reversep, -1);
1083 if (target)
1084 target = expand_simple_binop (GET_MODE (if_info->x), AND,
1085 if_info->x,
1086 target, if_info->x, 0,
1087 OPTAB_WIDEN);
1089 if (target)
1091 if (target != if_info->x)
1092 noce_emit_move_insn (if_info->x, target);
1094 seq = end_ifcvt_sequence (if_info);
1095 if (!seq)
1096 return FALSE;
1098 emit_insn_before_setloc (seq, if_info->jump,
1099 INSN_LOCATOR (if_info->insn_a));
1100 return TRUE;
1103 end_sequence ();
1106 return FALSE;
1109 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1111 static rtx
1112 noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1113 rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue)
1115 /* If earliest == jump, try to build the cmove insn directly.
1116 This is helpful when combine has created some complex condition
1117 (like for alpha's cmovlbs) that we can't hope to regenerate
1118 through the normal interface. */
1120 if (if_info->cond_earliest == if_info->jump)
1122 rtx tmp;
1124 tmp = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1125 tmp = gen_rtx_IF_THEN_ELSE (GET_MODE (x), tmp, vtrue, vfalse);
1126 tmp = gen_rtx_SET (VOIDmode, x, tmp);
1128 start_sequence ();
1129 tmp = emit_insn (tmp);
1131 if (recog_memoized (tmp) >= 0)
1133 tmp = get_insns ();
1134 end_sequence ();
1135 emit_insn (tmp);
1137 return x;
1140 end_sequence ();
1143 /* Don't even try if the comparison operands are weird. */
1144 if (! general_operand (cmp_a, GET_MODE (cmp_a))
1145 || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1146 return NULL_RTX;
1148 #if HAVE_conditional_move
1149 return emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
1150 vtrue, vfalse, GET_MODE (x),
1151 (code == LTU || code == GEU
1152 || code == LEU || code == GTU));
1153 #else
1154 /* We'll never get here, as noce_process_if_block doesn't call the
1155 functions involved. Ifdef code, however, should be discouraged
1156 because it leads to typos in the code not selected. However,
1157 emit_conditional_move won't exist either. */
1158 return NULL_RTX;
1159 #endif
1162 /* Try only simple constants and registers here. More complex cases
1163 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1164 has had a go at it. */
1166 static int
1167 noce_try_cmove (struct noce_if_info *if_info)
1169 enum rtx_code code;
1170 rtx target, seq;
1172 if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1173 && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1175 start_sequence ();
1177 code = GET_CODE (if_info->cond);
1178 target = noce_emit_cmove (if_info, if_info->x, code,
1179 XEXP (if_info->cond, 0),
1180 XEXP (if_info->cond, 1),
1181 if_info->a, if_info->b);
1183 if (target)
1185 if (target != if_info->x)
1186 noce_emit_move_insn (if_info->x, target);
1188 seq = end_ifcvt_sequence (if_info);
1189 if (!seq)
1190 return FALSE;
1192 emit_insn_before_setloc (seq, if_info->jump,
1193 INSN_LOCATOR (if_info->insn_a));
1194 return TRUE;
1196 else
1198 end_sequence ();
1199 return FALSE;
1203 return FALSE;
1206 /* Try more complex cases involving conditional_move. */
1208 static int
1209 noce_try_cmove_arith (struct noce_if_info *if_info)
1211 rtx a = if_info->a;
1212 rtx b = if_info->b;
1213 rtx x = if_info->x;
1214 rtx insn_a, insn_b;
1215 rtx tmp, target;
1216 int is_mem = 0;
1217 int insn_cost;
1218 enum rtx_code code;
1220 /* A conditional move from two memory sources is equivalent to a
1221 conditional on their addresses followed by a load. Don't do this
1222 early because it'll screw alias analysis. Note that we've
1223 already checked for no side effects. */
1224 if (! no_new_pseudos && cse_not_expected
1225 && MEM_P (a) && MEM_P (b)
1226 && BRANCH_COST >= 5)
1228 a = XEXP (a, 0);
1229 b = XEXP (b, 0);
1230 x = gen_reg_rtx (Pmode);
1231 is_mem = 1;
1234 /* ??? We could handle this if we knew that a load from A or B could
1235 not fault. This is also true if we've already loaded
1236 from the address along the path from ENTRY. */
1237 else if (may_trap_p (a) || may_trap_p (b))
1238 return FALSE;
1240 /* if (test) x = a + b; else x = c - d;
1241 => y = a + b;
1242 x = c - d;
1243 if (test)
1244 x = y;
1247 code = GET_CODE (if_info->cond);
1248 insn_a = if_info->insn_a;
1249 insn_b = if_info->insn_b;
1251 /* Total insn_rtx_cost should be smaller than branch cost. Exit
1252 if insn_rtx_cost can't be estimated. */
1253 if (insn_a)
1255 insn_cost = insn_rtx_cost (PATTERN (insn_a));
1256 if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (BRANCH_COST))
1257 return FALSE;
1259 else
1261 insn_cost = 0;
1264 if (insn_b) {
1265 insn_cost += insn_rtx_cost (PATTERN (insn_b));
1266 if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (BRANCH_COST))
1267 return FALSE;
1270 /* Possibly rearrange operands to make things come out more natural. */
1271 if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
1273 int reversep = 0;
1274 if (rtx_equal_p (b, x))
1275 reversep = 1;
1276 else if (general_operand (b, GET_MODE (b)))
1277 reversep = 1;
1279 if (reversep)
1281 code = reversed_comparison_code (if_info->cond, if_info->jump);
1282 tmp = a, a = b, b = tmp;
1283 tmp = insn_a, insn_a = insn_b, insn_b = tmp;
1287 start_sequence ();
1289 /* If either operand is complex, load it into a register first.
1290 The best way to do this is to copy the original insn. In this
1291 way we preserve any clobbers etc that the insn may have had.
1292 This is of course not possible in the IS_MEM case. */
1293 if (! general_operand (a, GET_MODE (a)))
1295 rtx set;
1297 if (no_new_pseudos)
1298 goto end_seq_and_fail;
1300 if (is_mem)
1302 tmp = gen_reg_rtx (GET_MODE (a));
1303 tmp = emit_insn (gen_rtx_SET (VOIDmode, tmp, a));
1305 else if (! insn_a)
1306 goto end_seq_and_fail;
1307 else
1309 a = gen_reg_rtx (GET_MODE (a));
1310 tmp = copy_rtx (insn_a);
1311 set = single_set (tmp);
1312 SET_DEST (set) = a;
1313 tmp = emit_insn (PATTERN (tmp));
1315 if (recog_memoized (tmp) < 0)
1316 goto end_seq_and_fail;
1318 if (! general_operand (b, GET_MODE (b)))
1320 rtx set;
1322 if (no_new_pseudos)
1323 goto end_seq_and_fail;
1325 if (is_mem)
1327 tmp = gen_reg_rtx (GET_MODE (b));
1328 tmp = emit_insn (gen_rtx_SET (VOIDmode,
1329 tmp,
1330 b));
1332 else if (! insn_b)
1333 goto end_seq_and_fail;
1334 else
1336 b = gen_reg_rtx (GET_MODE (b));
1337 tmp = copy_rtx (insn_b);
1338 set = single_set (tmp);
1339 SET_DEST (set) = b;
1340 tmp = emit_insn (PATTERN (tmp));
1342 if (recog_memoized (tmp) < 0)
1343 goto end_seq_and_fail;
1346 target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
1347 XEXP (if_info->cond, 1), a, b);
1349 if (! target)
1350 goto end_seq_and_fail;
1352 /* If we're handling a memory for above, emit the load now. */
1353 if (is_mem)
1355 tmp = gen_rtx_MEM (GET_MODE (if_info->x), target);
1357 /* Copy over flags as appropriate. */
1358 if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
1359 MEM_VOLATILE_P (tmp) = 1;
1360 if (MEM_IN_STRUCT_P (if_info->a) && MEM_IN_STRUCT_P (if_info->b))
1361 MEM_IN_STRUCT_P (tmp) = 1;
1362 if (MEM_SCALAR_P (if_info->a) && MEM_SCALAR_P (if_info->b))
1363 MEM_SCALAR_P (tmp) = 1;
1364 if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
1365 set_mem_alias_set (tmp, MEM_ALIAS_SET (if_info->a));
1366 set_mem_align (tmp,
1367 MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
1369 noce_emit_move_insn (if_info->x, tmp);
1371 else if (target != x)
1372 noce_emit_move_insn (x, target);
1374 tmp = end_ifcvt_sequence (if_info);
1375 if (!tmp)
1376 return FALSE;
1378 emit_insn_before_setloc (tmp, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1379 return TRUE;
1381 end_seq_and_fail:
1382 end_sequence ();
1383 return FALSE;
1386 /* For most cases, the simplified condition we found is the best
1387 choice, but this is not the case for the min/max/abs transforms.
1388 For these we wish to know that it is A or B in the condition. */
1390 static rtx
1391 noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
1392 rtx *earliest)
1394 rtx cond, set, insn;
1395 int reverse;
1397 /* If target is already mentioned in the known condition, return it. */
1398 if (reg_mentioned_p (target, if_info->cond))
1400 *earliest = if_info->cond_earliest;
1401 return if_info->cond;
1404 set = pc_set (if_info->jump);
1405 cond = XEXP (SET_SRC (set), 0);
1406 reverse
1407 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1408 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (if_info->jump);
1410 /* If we're looking for a constant, try to make the conditional
1411 have that constant in it. There are two reasons why it may
1412 not have the constant we want:
1414 1. GCC may have needed to put the constant in a register, because
1415 the target can't compare directly against that constant. For
1416 this case, we look for a SET immediately before the comparison
1417 that puts a constant in that register.
1419 2. GCC may have canonicalized the conditional, for example
1420 replacing "if x < 4" with "if x <= 3". We can undo that (or
1421 make equivalent types of changes) to get the constants we need
1422 if they're off by one in the right direction. */
1424 if (GET_CODE (target) == CONST_INT)
1426 enum rtx_code code = GET_CODE (if_info->cond);
1427 rtx op_a = XEXP (if_info->cond, 0);
1428 rtx op_b = XEXP (if_info->cond, 1);
1429 rtx prev_insn;
1431 /* First, look to see if we put a constant in a register. */
1432 prev_insn = PREV_INSN (if_info->cond_earliest);
1433 if (prev_insn
1434 && INSN_P (prev_insn)
1435 && GET_CODE (PATTERN (prev_insn)) == SET)
1437 rtx src = find_reg_equal_equiv_note (prev_insn);
1438 if (!src)
1439 src = SET_SRC (PATTERN (prev_insn));
1440 if (GET_CODE (src) == CONST_INT)
1442 if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
1443 op_a = src;
1444 else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
1445 op_b = src;
1447 if (GET_CODE (op_a) == CONST_INT)
1449 rtx tmp = op_a;
1450 op_a = op_b;
1451 op_b = tmp;
1452 code = swap_condition (code);
1457 /* Now, look to see if we can get the right constant by
1458 adjusting the conditional. */
1459 if (GET_CODE (op_b) == CONST_INT)
1461 HOST_WIDE_INT desired_val = INTVAL (target);
1462 HOST_WIDE_INT actual_val = INTVAL (op_b);
1464 switch (code)
1466 case LT:
1467 if (actual_val == desired_val + 1)
1469 code = LE;
1470 op_b = GEN_INT (desired_val);
1472 break;
1473 case LE:
1474 if (actual_val == desired_val - 1)
1476 code = LT;
1477 op_b = GEN_INT (desired_val);
1479 break;
1480 case GT:
1481 if (actual_val == desired_val - 1)
1483 code = GE;
1484 op_b = GEN_INT (desired_val);
1486 break;
1487 case GE:
1488 if (actual_val == desired_val + 1)
1490 code = GT;
1491 op_b = GEN_INT (desired_val);
1493 break;
1494 default:
1495 break;
1499 /* If we made any changes, generate a new conditional that is
1500 equivalent to what we started with, but has the right
1501 constants in it. */
1502 if (code != GET_CODE (if_info->cond)
1503 || op_a != XEXP (if_info->cond, 0)
1504 || op_b != XEXP (if_info->cond, 1))
1506 cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
1507 *earliest = if_info->cond_earliest;
1508 return cond;
1512 cond = canonicalize_condition (if_info->jump, cond, reverse,
1513 earliest, target, false, true);
1514 if (! cond || ! reg_mentioned_p (target, cond))
1515 return NULL;
1517 /* We almost certainly searched back to a different place.
1518 Need to re-verify correct lifetimes. */
1520 /* X may not be mentioned in the range (cond_earliest, jump]. */
1521 for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
1522 if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
1523 return NULL;
1525 /* A and B may not be modified in the range [cond_earliest, jump). */
1526 for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
1527 if (INSN_P (insn)
1528 && (modified_in_p (if_info->a, insn)
1529 || modified_in_p (if_info->b, insn)))
1530 return NULL;
1532 return cond;
1535 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1537 static int
1538 noce_try_minmax (struct noce_if_info *if_info)
1540 rtx cond, earliest, target, seq;
1541 enum rtx_code code, op;
1542 int unsignedp;
1544 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1545 if (no_new_pseudos)
1546 return FALSE;
1548 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1549 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1550 to get the target to tell us... */
1551 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x))
1552 || HONOR_NANS (GET_MODE (if_info->x)))
1553 return FALSE;
1555 cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
1556 if (!cond)
1557 return FALSE;
1559 /* Verify the condition is of the form we expect, and canonicalize
1560 the comparison code. */
1561 code = GET_CODE (cond);
1562 if (rtx_equal_p (XEXP (cond, 0), if_info->a))
1564 if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
1565 return FALSE;
1567 else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
1569 if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
1570 return FALSE;
1571 code = swap_condition (code);
1573 else
1574 return FALSE;
1576 /* Determine what sort of operation this is. Note that the code is for
1577 a taken branch, so the code->operation mapping appears backwards. */
1578 switch (code)
1580 case LT:
1581 case LE:
1582 case UNLT:
1583 case UNLE:
1584 op = SMAX;
1585 unsignedp = 0;
1586 break;
1587 case GT:
1588 case GE:
1589 case UNGT:
1590 case UNGE:
1591 op = SMIN;
1592 unsignedp = 0;
1593 break;
1594 case LTU:
1595 case LEU:
1596 op = UMAX;
1597 unsignedp = 1;
1598 break;
1599 case GTU:
1600 case GEU:
1601 op = UMIN;
1602 unsignedp = 1;
1603 break;
1604 default:
1605 return FALSE;
1608 start_sequence ();
1610 target = expand_simple_binop (GET_MODE (if_info->x), op,
1611 if_info->a, if_info->b,
1612 if_info->x, unsignedp, OPTAB_WIDEN);
1613 if (! target)
1615 end_sequence ();
1616 return FALSE;
1618 if (target != if_info->x)
1619 noce_emit_move_insn (if_info->x, target);
1621 seq = end_ifcvt_sequence (if_info);
1622 if (!seq)
1623 return FALSE;
1625 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1626 if_info->cond = cond;
1627 if_info->cond_earliest = earliest;
1629 return TRUE;
1632 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc. */
1634 static int
1635 noce_try_abs (struct noce_if_info *if_info)
1637 rtx cond, earliest, target, seq, a, b, c;
1638 int negate;
1640 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1641 if (no_new_pseudos)
1642 return FALSE;
1644 /* Recognize A and B as constituting an ABS or NABS. */
1645 a = if_info->a;
1646 b = if_info->b;
1647 if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
1648 negate = 0;
1649 else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
1651 c = a; a = b; b = c;
1652 negate = 1;
1654 else
1655 return FALSE;
1657 cond = noce_get_alt_condition (if_info, b, &earliest);
1658 if (!cond)
1659 return FALSE;
1661 /* Verify the condition is of the form we expect. */
1662 if (rtx_equal_p (XEXP (cond, 0), b))
1663 c = XEXP (cond, 1);
1664 else if (rtx_equal_p (XEXP (cond, 1), b))
1665 c = XEXP (cond, 0);
1666 else
1667 return FALSE;
1669 /* Verify that C is zero. Search backward through the block for
1670 a REG_EQUAL note if necessary. */
1671 if (REG_P (c))
1673 rtx insn, note = NULL;
1674 for (insn = earliest;
1675 insn != BB_HEAD (if_info->test_bb);
1676 insn = PREV_INSN (insn))
1677 if (INSN_P (insn)
1678 && ((note = find_reg_note (insn, REG_EQUAL, c))
1679 || (note = find_reg_note (insn, REG_EQUIV, c))))
1680 break;
1681 if (! note)
1682 return FALSE;
1683 c = XEXP (note, 0);
1685 if (MEM_P (c)
1686 && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
1687 && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
1688 c = get_pool_constant (XEXP (c, 0));
1690 /* Work around funny ideas get_condition has wrt canonicalization.
1691 Note that these rtx constants are known to be CONST_INT, and
1692 therefore imply integer comparisons. */
1693 if (c == constm1_rtx && GET_CODE (cond) == GT)
1695 else if (c == const1_rtx && GET_CODE (cond) == LT)
1697 else if (c != CONST0_RTX (GET_MODE (b)))
1698 return FALSE;
1700 /* Determine what sort of operation this is. */
1701 switch (GET_CODE (cond))
1703 case LT:
1704 case LE:
1705 case UNLT:
1706 case UNLE:
1707 negate = !negate;
1708 break;
1709 case GT:
1710 case GE:
1711 case UNGT:
1712 case UNGE:
1713 break;
1714 default:
1715 return FALSE;
1718 start_sequence ();
1720 target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
1722 /* ??? It's a quandary whether cmove would be better here, especially
1723 for integers. Perhaps combine will clean things up. */
1724 if (target && negate)
1725 target = expand_simple_unop (GET_MODE (target), NEG, target, if_info->x, 0);
1727 if (! target)
1729 end_sequence ();
1730 return FALSE;
1733 if (target != if_info->x)
1734 noce_emit_move_insn (if_info->x, target);
1736 seq = end_ifcvt_sequence (if_info);
1737 if (!seq)
1738 return FALSE;
1740 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1741 if_info->cond = cond;
1742 if_info->cond_earliest = earliest;
1744 return TRUE;
1747 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
1749 static int
1750 noce_try_sign_mask (struct noce_if_info *if_info)
1752 rtx cond, t, m, c, seq;
1753 enum machine_mode mode;
1754 enum rtx_code code;
1756 if (no_new_pseudos)
1757 return FALSE;
1759 cond = if_info->cond;
1760 code = GET_CODE (cond);
1761 m = XEXP (cond, 0);
1762 c = XEXP (cond, 1);
1764 t = NULL_RTX;
1765 if (if_info->a == const0_rtx)
1767 if ((code == LT && c == const0_rtx)
1768 || (code == LE && c == constm1_rtx))
1769 t = if_info->b;
1771 else if (if_info->b == const0_rtx)
1773 if ((code == GE && c == const0_rtx)
1774 || (code == GT && c == constm1_rtx))
1775 t = if_info->a;
1778 if (! t || side_effects_p (t))
1779 return FALSE;
1781 /* We currently don't handle different modes. */
1782 mode = GET_MODE (t);
1783 if (GET_MODE (m) != mode)
1784 return FALSE;
1786 /* This is only profitable if T is cheap, or T is unconditionally
1787 executed/evaluated in the original insn sequence. */
1788 if (rtx_cost (t, SET) >= COSTS_N_INSNS (2)
1789 && (!if_info->b_unconditional
1790 || t != if_info->b))
1791 return FALSE;
1793 start_sequence ();
1794 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
1795 "(signed) m >> 31" directly. This benefits targets with specialized
1796 insns to obtain the signmask, but still uses ashr_optab otherwise. */
1797 m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
1798 t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
1799 : NULL_RTX;
1801 if (!t)
1803 end_sequence ();
1804 return FALSE;
1807 noce_emit_move_insn (if_info->x, t);
1809 seq = end_ifcvt_sequence (if_info);
1810 if (!seq)
1811 return FALSE;
1813 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1814 return TRUE;
1818 /* Similar to get_condition, only the resulting condition must be
1819 valid at JUMP, instead of at EARLIEST. */
1821 static rtx
1822 noce_get_condition (rtx jump, rtx *earliest)
1824 rtx cond, set, tmp;
1825 bool reverse;
1827 if (! any_condjump_p (jump))
1828 return NULL_RTX;
1830 set = pc_set (jump);
1832 /* If this branches to JUMP_LABEL when the condition is false,
1833 reverse the condition. */
1834 reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1835 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump));
1837 /* If the condition variable is a register and is MODE_INT, accept it. */
1839 cond = XEXP (SET_SRC (set), 0);
1840 tmp = XEXP (cond, 0);
1841 if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT)
1843 *earliest = jump;
1845 if (reverse)
1846 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
1847 GET_MODE (cond), tmp, XEXP (cond, 1));
1848 return cond;
1851 /* Otherwise, fall back on canonicalize_condition to do the dirty
1852 work of manipulating MODE_CC values and COMPARE rtx codes. */
1853 return canonicalize_condition (jump, cond, reverse, earliest,
1854 NULL_RTX, false, true);
1857 /* Return true if OP is ok for if-then-else processing. */
1859 static int
1860 noce_operand_ok (rtx op)
1862 /* We special-case memories, so handle any of them with
1863 no address side effects. */
1864 if (MEM_P (op))
1865 return ! side_effects_p (XEXP (op, 0));
1867 if (side_effects_p (op))
1868 return FALSE;
1870 return ! may_trap_p (op);
1873 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
1874 without using conditional execution. Return TRUE if we were
1875 successful at converting the block. */
1877 static int
1878 noce_process_if_block (struct ce_if_block * ce_info)
1880 basic_block test_bb = ce_info->test_bb; /* test block */
1881 basic_block then_bb = ce_info->then_bb; /* THEN */
1882 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
1883 struct noce_if_info if_info;
1884 rtx insn_a, insn_b;
1885 rtx set_a, set_b;
1886 rtx orig_x, x, a, b;
1887 rtx jump, cond;
1889 /* We're looking for patterns of the form
1891 (1) if (...) x = a; else x = b;
1892 (2) x = b; if (...) x = a;
1893 (3) if (...) x = a; // as if with an initial x = x.
1895 The later patterns require jumps to be more expensive.
1897 ??? For future expansion, look for multiple X in such patterns. */
1899 /* If test is comprised of && or || elements, don't handle it unless it is
1900 the special case of && elements without an ELSE block. */
1901 if (ce_info->num_multiple_test_blocks)
1903 if (else_bb || ! ce_info->and_and_p)
1904 return FALSE;
1906 ce_info->test_bb = test_bb = ce_info->last_test_bb;
1907 ce_info->num_multiple_test_blocks = 0;
1908 ce_info->num_and_and_blocks = 0;
1909 ce_info->num_or_or_blocks = 0;
1912 /* If this is not a standard conditional jump, we can't parse it. */
1913 jump = BB_END (test_bb);
1914 cond = noce_get_condition (jump, &if_info.cond_earliest);
1915 if (! cond)
1916 return FALSE;
1918 /* If the conditional jump is more than just a conditional
1919 jump, then we can not do if-conversion on this block. */
1920 if (! onlyjump_p (jump))
1921 return FALSE;
1923 /* We must be comparing objects whose modes imply the size. */
1924 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
1925 return FALSE;
1927 /* Look for one of the potential sets. */
1928 insn_a = first_active_insn (then_bb);
1929 if (! insn_a
1930 || insn_a != last_active_insn (then_bb, FALSE)
1931 || (set_a = single_set (insn_a)) == NULL_RTX)
1932 return FALSE;
1934 x = SET_DEST (set_a);
1935 a = SET_SRC (set_a);
1937 /* Look for the other potential set. Make sure we've got equivalent
1938 destinations. */
1939 /* ??? This is overconservative. Storing to two different mems is
1940 as easy as conditionally computing the address. Storing to a
1941 single mem merely requires a scratch memory to use as one of the
1942 destination addresses; often the memory immediately below the
1943 stack pointer is available for this. */
1944 set_b = NULL_RTX;
1945 if (else_bb)
1947 insn_b = first_active_insn (else_bb);
1948 if (! insn_b
1949 || insn_b != last_active_insn (else_bb, FALSE)
1950 || (set_b = single_set (insn_b)) == NULL_RTX
1951 || ! rtx_equal_p (x, SET_DEST (set_b)))
1952 return FALSE;
1954 else
1956 insn_b = prev_nonnote_insn (if_info.cond_earliest);
1957 /* We're going to be moving the evaluation of B down from above
1958 COND_EARLIEST to JUMP. Make sure the relevant data is still
1959 intact. */
1960 if (! insn_b
1961 || !NONJUMP_INSN_P (insn_b)
1962 || (set_b = single_set (insn_b)) == NULL_RTX
1963 || ! rtx_equal_p (x, SET_DEST (set_b))
1964 || reg_overlap_mentioned_p (x, SET_SRC (set_b))
1965 || modified_between_p (SET_SRC (set_b),
1966 PREV_INSN (if_info.cond_earliest), jump)
1967 /* Likewise with X. In particular this can happen when
1968 noce_get_condition looks farther back in the instruction
1969 stream than one might expect. */
1970 || reg_overlap_mentioned_p (x, cond)
1971 || reg_overlap_mentioned_p (x, a)
1972 || modified_between_p (x, PREV_INSN (if_info.cond_earliest), jump))
1973 insn_b = set_b = NULL_RTX;
1976 /* If x has side effects then only the if-then-else form is safe to
1977 convert. But even in that case we would need to restore any notes
1978 (such as REG_INC) at then end. That can be tricky if
1979 noce_emit_move_insn expands to more than one insn, so disable the
1980 optimization entirely for now if there are side effects. */
1981 if (side_effects_p (x))
1982 return FALSE;
1984 b = (set_b ? SET_SRC (set_b) : x);
1986 /* Only operate on register destinations, and even then avoid extending
1987 the lifetime of hard registers on small register class machines. */
1988 orig_x = x;
1989 if (!REG_P (x)
1990 || (SMALL_REGISTER_CLASSES
1991 && REGNO (x) < FIRST_PSEUDO_REGISTER))
1993 if (no_new_pseudos || GET_MODE (x) == BLKmode)
1994 return FALSE;
1995 x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
1996 ? XEXP (x, 0) : x));
1999 /* Don't operate on sources that may trap or are volatile. */
2000 if (! noce_operand_ok (a) || ! noce_operand_ok (b))
2001 return FALSE;
2003 /* Set up the info block for our subroutines. */
2004 if_info.test_bb = test_bb;
2005 if_info.cond = cond;
2006 if_info.jump = jump;
2007 if_info.insn_a = insn_a;
2008 if_info.insn_b = insn_b;
2009 if_info.x = x;
2010 if_info.a = a;
2011 if_info.b = b;
2012 if_info.b_unconditional = else_bb == 0;
2014 /* Try optimizations in some approximation of a useful order. */
2015 /* ??? Should first look to see if X is live incoming at all. If it
2016 isn't, we don't need anything but an unconditional set. */
2018 /* Look and see if A and B are really the same. Avoid creating silly
2019 cmove constructs that no one will fix up later. */
2020 if (rtx_equal_p (a, b))
2022 /* If we have an INSN_B, we don't have to create any new rtl. Just
2023 move the instruction that we already have. If we don't have an
2024 INSN_B, that means that A == X, and we've got a noop move. In
2025 that case don't do anything and let the code below delete INSN_A. */
2026 if (insn_b && else_bb)
2028 rtx note;
2030 if (else_bb && insn_b == BB_END (else_bb))
2031 BB_END (else_bb) = PREV_INSN (insn_b);
2032 reorder_insns (insn_b, insn_b, PREV_INSN (jump));
2034 /* If there was a REG_EQUAL note, delete it since it may have been
2035 true due to this insn being after a jump. */
2036 if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
2037 remove_note (insn_b, note);
2039 insn_b = NULL_RTX;
2041 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2042 x must be executed twice. */
2043 else if (insn_b && side_effects_p (orig_x))
2044 return FALSE;
2046 x = orig_x;
2047 goto success;
2050 /* Disallow the "if (...) x = a;" form (with an implicit "else x = x;")
2051 for most optimizations if writing to x may trap, i.e. it's a memory
2052 other than a static var or a stack slot. */
2053 if (! set_b
2054 && MEM_P (orig_x)
2055 && ! MEM_NOTRAP_P (orig_x)
2056 && rtx_addr_can_trap_p (XEXP (orig_x, 0)))
2058 if (HAVE_conditional_move)
2060 if (noce_try_cmove (&if_info))
2061 goto success;
2062 if (! HAVE_conditional_execution
2063 && noce_try_cmove_arith (&if_info))
2064 goto success;
2066 return FALSE;
2069 if (noce_try_move (&if_info))
2070 goto success;
2071 if (noce_try_store_flag (&if_info))
2072 goto success;
2073 if (noce_try_minmax (&if_info))
2074 goto success;
2075 if (noce_try_abs (&if_info))
2076 goto success;
2077 if (HAVE_conditional_move
2078 && noce_try_cmove (&if_info))
2079 goto success;
2080 if (! HAVE_conditional_execution)
2082 if (noce_try_store_flag_constants (&if_info))
2083 goto success;
2084 if (noce_try_addcc (&if_info))
2085 goto success;
2086 if (noce_try_store_flag_mask (&if_info))
2087 goto success;
2088 if (HAVE_conditional_move
2089 && noce_try_cmove_arith (&if_info))
2090 goto success;
2091 if (noce_try_sign_mask (&if_info))
2092 goto success;
2095 return FALSE;
2097 success:
2098 /* The original sets may now be killed. */
2099 delete_insn (insn_a);
2101 /* Several special cases here: First, we may have reused insn_b above,
2102 in which case insn_b is now NULL. Second, we want to delete insn_b
2103 if it came from the ELSE block, because follows the now correct
2104 write that appears in the TEST block. However, if we got insn_b from
2105 the TEST block, it may in fact be loading data needed for the comparison.
2106 We'll let life_analysis remove the insn if it's really dead. */
2107 if (insn_b && else_bb)
2108 delete_insn (insn_b);
2110 /* The new insns will have been inserted immediately before the jump. We
2111 should be able to remove the jump with impunity, but the condition itself
2112 may have been modified by gcse to be shared across basic blocks. */
2113 delete_insn (jump);
2115 /* If we used a temporary, fix it up now. */
2116 if (orig_x != x)
2118 start_sequence ();
2119 noce_emit_move_insn (orig_x, x);
2120 insn_b = get_insns ();
2121 set_used_flags (orig_x);
2122 unshare_all_rtl_in_chain (insn_b);
2123 end_sequence ();
2125 emit_insn_after_setloc (insn_b, BB_END (test_bb), INSN_LOCATOR (insn_a));
2128 /* Merge the blocks! */
2129 merge_if_block (ce_info);
2131 return TRUE;
2134 /* Attempt to convert an IF-THEN or IF-THEN-ELSE block into
2135 straight line code. Return true if successful. */
2137 static int
2138 process_if_block (struct ce_if_block * ce_info)
2140 if (! reload_completed
2141 && noce_process_if_block (ce_info))
2142 return TRUE;
2144 if (HAVE_conditional_execution && reload_completed)
2146 /* If we have && and || tests, try to first handle combining the && and
2147 || tests into the conditional code, and if that fails, go back and
2148 handle it without the && and ||, which at present handles the && case
2149 if there was no ELSE block. */
2150 if (cond_exec_process_if_block (ce_info, TRUE))
2151 return TRUE;
2153 if (ce_info->num_multiple_test_blocks)
2155 cancel_changes (0);
2157 if (cond_exec_process_if_block (ce_info, FALSE))
2158 return TRUE;
2162 return FALSE;
2165 /* Merge the blocks and mark for local life update. */
2167 static void
2168 merge_if_block (struct ce_if_block * ce_info)
2170 basic_block test_bb = ce_info->test_bb; /* last test block */
2171 basic_block then_bb = ce_info->then_bb; /* THEN */
2172 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
2173 basic_block join_bb = ce_info->join_bb; /* join block */
2174 basic_block combo_bb;
2176 /* All block merging is done into the lower block numbers. */
2178 combo_bb = test_bb;
2180 /* Merge any basic blocks to handle && and || subtests. Each of
2181 the blocks are on the fallthru path from the predecessor block. */
2182 if (ce_info->num_multiple_test_blocks > 0)
2184 basic_block bb = test_bb;
2185 basic_block last_test_bb = ce_info->last_test_bb;
2186 basic_block fallthru = block_fallthru (bb);
2190 bb = fallthru;
2191 fallthru = block_fallthru (bb);
2192 merge_blocks (combo_bb, bb);
2193 num_true_changes++;
2195 while (bb != last_test_bb);
2198 /* Merge TEST block into THEN block. Normally the THEN block won't have a
2199 label, but it might if there were || tests. That label's count should be
2200 zero, and it normally should be removed. */
2202 if (then_bb)
2204 if (combo_bb->global_live_at_end)
2205 COPY_REG_SET (combo_bb->global_live_at_end,
2206 then_bb->global_live_at_end);
2207 merge_blocks (combo_bb, then_bb);
2208 num_true_changes++;
2211 /* The ELSE block, if it existed, had a label. That label count
2212 will almost always be zero, but odd things can happen when labels
2213 get their addresses taken. */
2214 if (else_bb)
2216 merge_blocks (combo_bb, else_bb);
2217 num_true_changes++;
2220 /* If there was no join block reported, that means it was not adjacent
2221 to the others, and so we cannot merge them. */
2223 if (! join_bb)
2225 rtx last = BB_END (combo_bb);
2227 /* The outgoing edge for the current COMBO block should already
2228 be correct. Verify this. */
2229 if (combo_bb->succ == NULL_EDGE)
2231 if (find_reg_note (last, REG_NORETURN, NULL))
2233 else if (NONJUMP_INSN_P (last)
2234 && GET_CODE (PATTERN (last)) == TRAP_IF
2235 && TRAP_CONDITION (PATTERN (last)) == const_true_rtx)
2237 else
2238 abort ();
2241 /* There should still be something at the end of the THEN or ELSE
2242 blocks taking us to our final destination. */
2243 else if (JUMP_P (last))
2245 else if (combo_bb->succ->dest == EXIT_BLOCK_PTR
2246 && CALL_P (last)
2247 && SIBLING_CALL_P (last))
2249 else if ((combo_bb->succ->flags & EDGE_EH)
2250 && can_throw_internal (last))
2252 else
2253 abort ();
2256 /* The JOIN block may have had quite a number of other predecessors too.
2257 Since we've already merged the TEST, THEN and ELSE blocks, we should
2258 have only one remaining edge from our if-then-else diamond. If there
2259 is more than one remaining edge, it must come from elsewhere. There
2260 may be zero incoming edges if the THEN block didn't actually join
2261 back up (as with a call to abort). */
2262 else if ((join_bb->pred == NULL
2263 || join_bb->pred->pred_next == NULL)
2264 && join_bb != EXIT_BLOCK_PTR)
2266 /* We can merge the JOIN. */
2267 if (combo_bb->global_live_at_end)
2268 COPY_REG_SET (combo_bb->global_live_at_end,
2269 join_bb->global_live_at_end);
2271 merge_blocks (combo_bb, join_bb);
2272 num_true_changes++;
2274 else
2276 /* We cannot merge the JOIN. */
2278 /* The outgoing edge for the current COMBO block should already
2279 be correct. Verify this. */
2280 if (combo_bb->succ->succ_next != NULL_EDGE
2281 || combo_bb->succ->dest != join_bb)
2282 abort ();
2284 /* Remove the jump and cruft from the end of the COMBO block. */
2285 if (join_bb != EXIT_BLOCK_PTR)
2286 tidy_fallthru_edge (combo_bb->succ);
2289 num_updated_if_blocks++;
2292 /* Find a block ending in a simple IF condition and try to transform it
2293 in some way. When converting a multi-block condition, put the new code
2294 in the first such block and delete the rest. Return a pointer to this
2295 first block if some transformation was done. Return NULL otherwise. */
2297 static basic_block
2298 find_if_header (basic_block test_bb, int pass)
2300 ce_if_block_t ce_info;
2301 edge then_edge;
2302 edge else_edge;
2304 /* The kind of block we're looking for has exactly two successors. */
2305 if ((then_edge = test_bb->succ) == NULL_EDGE
2306 || (else_edge = then_edge->succ_next) == NULL_EDGE
2307 || else_edge->succ_next != NULL_EDGE)
2308 return NULL;
2310 /* Neither edge should be abnormal. */
2311 if ((then_edge->flags & EDGE_COMPLEX)
2312 || (else_edge->flags & EDGE_COMPLEX))
2313 return NULL;
2315 /* Nor exit the loop. */
2316 if ((then_edge->flags & EDGE_LOOP_EXIT)
2317 || (else_edge->flags & EDGE_LOOP_EXIT))
2318 return NULL;
2320 /* The THEN edge is canonically the one that falls through. */
2321 if (then_edge->flags & EDGE_FALLTHRU)
2323 else if (else_edge->flags & EDGE_FALLTHRU)
2325 edge e = else_edge;
2326 else_edge = then_edge;
2327 then_edge = e;
2329 else
2330 /* Otherwise this must be a multiway branch of some sort. */
2331 return NULL;
2333 memset (&ce_info, '\0', sizeof (ce_info));
2334 ce_info.test_bb = test_bb;
2335 ce_info.then_bb = then_edge->dest;
2336 ce_info.else_bb = else_edge->dest;
2337 ce_info.pass = pass;
2339 #ifdef IFCVT_INIT_EXTRA_FIELDS
2340 IFCVT_INIT_EXTRA_FIELDS (&ce_info);
2341 #endif
2343 if (find_if_block (&ce_info))
2344 goto success;
2346 if (HAVE_trap && HAVE_conditional_trap
2347 && find_cond_trap (test_bb, then_edge, else_edge))
2348 goto success;
2350 if (dom_computed[CDI_POST_DOMINATORS] >= DOM_NO_FAST_QUERY
2351 && (! HAVE_conditional_execution || reload_completed))
2353 if (find_if_case_1 (test_bb, then_edge, else_edge))
2354 goto success;
2355 if (find_if_case_2 (test_bb, then_edge, else_edge))
2356 goto success;
2359 return NULL;
2361 success:
2362 if (dump_file)
2363 fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
2364 return ce_info.test_bb;
2367 /* Return true if a block has two edges, one of which falls through to the next
2368 block, and the other jumps to a specific block, so that we can tell if the
2369 block is part of an && test or an || test. Returns either -1 or the number
2370 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
2372 static int
2373 block_jumps_and_fallthru_p (basic_block cur_bb, basic_block target_bb)
2375 edge cur_edge;
2376 int fallthru_p = FALSE;
2377 int jump_p = FALSE;
2378 rtx insn;
2379 rtx end;
2380 int n_insns = 0;
2382 if (!cur_bb || !target_bb)
2383 return -1;
2385 /* If no edges, obviously it doesn't jump or fallthru. */
2386 if (cur_bb->succ == NULL_EDGE)
2387 return FALSE;
2389 for (cur_edge = cur_bb->succ;
2390 cur_edge != NULL_EDGE;
2391 cur_edge = cur_edge->succ_next)
2393 if (cur_edge->flags & EDGE_COMPLEX)
2394 /* Anything complex isn't what we want. */
2395 return -1;
2397 else if (cur_edge->flags & EDGE_FALLTHRU)
2398 fallthru_p = TRUE;
2400 else if (cur_edge->dest == target_bb)
2401 jump_p = TRUE;
2403 else
2404 return -1;
2407 if ((jump_p & fallthru_p) == 0)
2408 return -1;
2410 /* Don't allow calls in the block, since this is used to group && and ||
2411 together for conditional execution support. ??? we should support
2412 conditional execution support across calls for IA-64 some day, but
2413 for now it makes the code simpler. */
2414 end = BB_END (cur_bb);
2415 insn = BB_HEAD (cur_bb);
2417 while (insn != NULL_RTX)
2419 if (CALL_P (insn))
2420 return -1;
2422 if (INSN_P (insn)
2423 && !JUMP_P (insn)
2424 && GET_CODE (PATTERN (insn)) != USE
2425 && GET_CODE (PATTERN (insn)) != CLOBBER)
2426 n_insns++;
2428 if (insn == end)
2429 break;
2431 insn = NEXT_INSN (insn);
2434 return n_insns;
2437 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
2438 block. If so, we'll try to convert the insns to not require the branch.
2439 Return TRUE if we were successful at converting the block. */
2441 static int
2442 find_if_block (struct ce_if_block * ce_info)
2444 basic_block test_bb = ce_info->test_bb;
2445 basic_block then_bb = ce_info->then_bb;
2446 basic_block else_bb = ce_info->else_bb;
2447 basic_block join_bb = NULL_BLOCK;
2448 edge then_succ = then_bb->succ;
2449 edge else_succ = else_bb->succ;
2450 int then_predecessors;
2451 int else_predecessors;
2452 edge cur_edge;
2453 basic_block next;
2455 ce_info->last_test_bb = test_bb;
2457 /* Discover if any fall through predecessors of the current test basic block
2458 were && tests (which jump to the else block) or || tests (which jump to
2459 the then block). */
2460 if (HAVE_conditional_execution && reload_completed
2461 && test_bb->pred != NULL_EDGE
2462 && test_bb->pred->pred_next == NULL_EDGE
2463 && test_bb->pred->flags == EDGE_FALLTHRU)
2465 basic_block bb = test_bb->pred->src;
2466 basic_block target_bb;
2467 int max_insns = MAX_CONDITIONAL_EXECUTE;
2468 int n_insns;
2470 /* Determine if the preceding block is an && or || block. */
2471 if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0)
2473 ce_info->and_and_p = TRUE;
2474 target_bb = else_bb;
2476 else if ((n_insns = block_jumps_and_fallthru_p (bb, then_bb)) >= 0)
2478 ce_info->and_and_p = FALSE;
2479 target_bb = then_bb;
2481 else
2482 target_bb = NULL_BLOCK;
2484 if (target_bb && n_insns <= max_insns)
2486 int total_insns = 0;
2487 int blocks = 0;
2489 ce_info->last_test_bb = test_bb;
2491 /* Found at least one && or || block, look for more. */
2494 ce_info->test_bb = test_bb = bb;
2495 total_insns += n_insns;
2496 blocks++;
2498 if (bb->pred == NULL_EDGE || bb->pred->pred_next != NULL_EDGE)
2499 break;
2501 bb = bb->pred->src;
2502 n_insns = block_jumps_and_fallthru_p (bb, target_bb);
2504 while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
2506 ce_info->num_multiple_test_blocks = blocks;
2507 ce_info->num_multiple_test_insns = total_insns;
2509 if (ce_info->and_and_p)
2510 ce_info->num_and_and_blocks = blocks;
2511 else
2512 ce_info->num_or_or_blocks = blocks;
2516 /* Count the number of edges the THEN and ELSE blocks have. */
2517 then_predecessors = 0;
2518 for (cur_edge = then_bb->pred;
2519 cur_edge != NULL_EDGE;
2520 cur_edge = cur_edge->pred_next)
2522 then_predecessors++;
2523 if (cur_edge->flags & EDGE_COMPLEX)
2524 return FALSE;
2527 else_predecessors = 0;
2528 for (cur_edge = else_bb->pred;
2529 cur_edge != NULL_EDGE;
2530 cur_edge = cur_edge->pred_next)
2532 else_predecessors++;
2533 if (cur_edge->flags & EDGE_COMPLEX)
2534 return FALSE;
2537 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
2538 other than any || blocks which jump to the THEN block. */
2539 if ((then_predecessors - ce_info->num_or_or_blocks) != 1)
2540 return FALSE;
2542 /* The THEN block of an IF-THEN combo must have zero or one successors. */
2543 if (then_succ != NULL_EDGE
2544 && (then_succ->succ_next != NULL_EDGE
2545 || (then_succ->flags & EDGE_COMPLEX)
2546 || (flow2_completed && tablejump_p (BB_END (then_bb), NULL, NULL))))
2547 return FALSE;
2549 /* If the THEN block has no successors, conditional execution can still
2550 make a conditional call. Don't do this unless the ELSE block has
2551 only one incoming edge -- the CFG manipulation is too ugly otherwise.
2552 Check for the last insn of the THEN block being an indirect jump, which
2553 is listed as not having any successors, but confuses the rest of the CE
2554 code processing. ??? we should fix this in the future. */
2555 if (then_succ == NULL)
2557 if (else_bb->pred->pred_next == NULL_EDGE)
2559 rtx last_insn = BB_END (then_bb);
2561 while (last_insn
2562 && NOTE_P (last_insn)
2563 && last_insn != BB_HEAD (then_bb))
2564 last_insn = PREV_INSN (last_insn);
2566 if (last_insn
2567 && JUMP_P (last_insn)
2568 && ! simplejump_p (last_insn))
2569 return FALSE;
2571 join_bb = else_bb;
2572 else_bb = NULL_BLOCK;
2574 else
2575 return FALSE;
2578 /* If the THEN block's successor is the other edge out of the TEST block,
2579 then we have an IF-THEN combo without an ELSE. */
2580 else if (then_succ->dest == else_bb)
2582 join_bb = else_bb;
2583 else_bb = NULL_BLOCK;
2586 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
2587 has exactly one predecessor and one successor, and the outgoing edge
2588 is not complex, then we have an IF-THEN-ELSE combo. */
2589 else if (else_succ != NULL_EDGE
2590 && then_succ->dest == else_succ->dest
2591 && else_bb->pred->pred_next == NULL_EDGE
2592 && else_succ->succ_next == NULL_EDGE
2593 && ! (else_succ->flags & EDGE_COMPLEX)
2594 && ! (flow2_completed && tablejump_p (BB_END (else_bb), NULL, NULL)))
2595 join_bb = else_succ->dest;
2597 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
2598 else
2599 return FALSE;
2601 num_possible_if_blocks++;
2603 if (dump_file)
2605 fprintf (dump_file,
2606 "\nIF-THEN%s block found, pass %d, start block %d "
2607 "[insn %d], then %d [%d]",
2608 (else_bb) ? "-ELSE" : "",
2609 ce_info->pass,
2610 test_bb->index,
2611 BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
2612 then_bb->index,
2613 BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
2615 if (else_bb)
2616 fprintf (dump_file, ", else %d [%d]",
2617 else_bb->index,
2618 BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
2620 fprintf (dump_file, ", join %d [%d]",
2621 join_bb->index,
2622 BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
2624 if (ce_info->num_multiple_test_blocks > 0)
2625 fprintf (dump_file, ", %d %s block%s last test %d [%d]",
2626 ce_info->num_multiple_test_blocks,
2627 (ce_info->and_and_p) ? "&&" : "||",
2628 (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
2629 ce_info->last_test_bb->index,
2630 ((BB_HEAD (ce_info->last_test_bb))
2631 ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
2632 : -1));
2634 fputc ('\n', dump_file);
2637 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
2638 first condition for free, since we've already asserted that there's a
2639 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
2640 we checked the FALLTHRU flag, those are already adjacent to the last IF
2641 block. */
2642 /* ??? As an enhancement, move the ELSE block. Have to deal with
2643 BLOCK notes, if by no other means than aborting the merge if they
2644 exist. Sticky enough I don't want to think about it now. */
2645 next = then_bb;
2646 if (else_bb && (next = next->next_bb) != else_bb)
2647 return FALSE;
2648 if ((next = next->next_bb) != join_bb && join_bb != EXIT_BLOCK_PTR)
2650 if (else_bb)
2651 join_bb = NULL;
2652 else
2653 return FALSE;
2656 /* Do the real work. */
2657 ce_info->else_bb = else_bb;
2658 ce_info->join_bb = join_bb;
2660 return process_if_block (ce_info);
2663 /* Convert a branch over a trap, or a branch
2664 to a trap, into a conditional trap. */
2666 static int
2667 find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
2669 basic_block then_bb = then_edge->dest;
2670 basic_block else_bb = else_edge->dest;
2671 basic_block other_bb, trap_bb;
2672 rtx trap, jump, cond, cond_earliest, seq;
2673 enum rtx_code code;
2675 /* Locate the block with the trap instruction. */
2676 /* ??? While we look for no successors, we really ought to allow
2677 EH successors. Need to fix merge_if_block for that to work. */
2678 if ((trap = block_has_only_trap (then_bb)) != NULL)
2679 trap_bb = then_bb, other_bb = else_bb;
2680 else if ((trap = block_has_only_trap (else_bb)) != NULL)
2681 trap_bb = else_bb, other_bb = then_bb;
2682 else
2683 return FALSE;
2685 if (dump_file)
2687 fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
2688 test_bb->index, trap_bb->index);
2691 /* If this is not a standard conditional jump, we can't parse it. */
2692 jump = BB_END (test_bb);
2693 cond = noce_get_condition (jump, &cond_earliest);
2694 if (! cond)
2695 return FALSE;
2697 /* If the conditional jump is more than just a conditional jump, then
2698 we can not do if-conversion on this block. */
2699 if (! onlyjump_p (jump))
2700 return FALSE;
2702 /* We must be comparing objects whose modes imply the size. */
2703 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
2704 return FALSE;
2706 /* Reverse the comparison code, if necessary. */
2707 code = GET_CODE (cond);
2708 if (then_bb == trap_bb)
2710 code = reversed_comparison_code (cond, jump);
2711 if (code == UNKNOWN)
2712 return FALSE;
2715 /* Attempt to generate the conditional trap. */
2716 seq = gen_cond_trap (code, XEXP (cond, 0),
2717 XEXP (cond, 1),
2718 TRAP_CODE (PATTERN (trap)));
2719 if (seq == NULL)
2720 return FALSE;
2722 num_true_changes++;
2724 /* Emit the new insns before cond_earliest. */
2725 emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATOR (trap));
2727 /* Delete the trap block if possible. */
2728 remove_edge (trap_bb == then_bb ? then_edge : else_edge);
2729 if (trap_bb->pred == NULL)
2730 delete_basic_block (trap_bb);
2732 /* If the non-trap block and the test are now adjacent, merge them.
2733 Otherwise we must insert a direct branch. */
2734 if (test_bb->next_bb == other_bb)
2736 struct ce_if_block new_ce_info;
2737 delete_insn (jump);
2738 memset (&new_ce_info, '\0', sizeof (new_ce_info));
2739 new_ce_info.test_bb = test_bb;
2740 new_ce_info.then_bb = NULL;
2741 new_ce_info.else_bb = NULL;
2742 new_ce_info.join_bb = other_bb;
2743 merge_if_block (&new_ce_info);
2745 else
2747 rtx lab, newjump;
2749 lab = JUMP_LABEL (jump);
2750 newjump = emit_jump_insn_after (gen_jump (lab), jump);
2751 LABEL_NUSES (lab) += 1;
2752 JUMP_LABEL (newjump) = lab;
2753 emit_barrier_after (newjump);
2755 delete_insn (jump);
2758 return TRUE;
2761 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
2762 return it. */
2764 static rtx
2765 block_has_only_trap (basic_block bb)
2767 rtx trap;
2769 /* We're not the exit block. */
2770 if (bb == EXIT_BLOCK_PTR)
2771 return NULL_RTX;
2773 /* The block must have no successors. */
2774 if (bb->succ)
2775 return NULL_RTX;
2777 /* The only instruction in the THEN block must be the trap. */
2778 trap = first_active_insn (bb);
2779 if (! (trap == BB_END (bb)
2780 && GET_CODE (PATTERN (trap)) == TRAP_IF
2781 && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
2782 return NULL_RTX;
2784 return trap;
2787 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
2788 transformable, but not necessarily the other. There need be no
2789 JOIN block.
2791 Return TRUE if we were successful at converting the block.
2793 Cases we'd like to look at:
2796 if (test) goto over; // x not live
2797 x = a;
2798 goto label;
2799 over:
2801 becomes
2803 x = a;
2804 if (! test) goto label;
2807 if (test) goto E; // x not live
2808 x = big();
2809 goto L;
2811 x = b;
2812 goto M;
2814 becomes
2816 x = b;
2817 if (test) goto M;
2818 x = big();
2819 goto L;
2821 (3) // This one's really only interesting for targets that can do
2822 // multiway branching, e.g. IA-64 BBB bundles. For other targets
2823 // it results in multiple branches on a cache line, which often
2824 // does not sit well with predictors.
2826 if (test1) goto E; // predicted not taken
2827 x = a;
2828 if (test2) goto F;
2831 x = b;
2834 becomes
2836 x = a;
2837 if (test1) goto E;
2838 if (test2) goto F;
2840 Notes:
2842 (A) Don't do (2) if the branch is predicted against the block we're
2843 eliminating. Do it anyway if we can eliminate a branch; this requires
2844 that the sole successor of the eliminated block postdominate the other
2845 side of the if.
2847 (B) With CE, on (3) we can steal from both sides of the if, creating
2849 if (test1) x = a;
2850 if (!test1) x = b;
2851 if (test1) goto J;
2852 if (test2) goto F;
2856 Again, this is most useful if J postdominates.
2858 (C) CE substitutes for helpful life information.
2860 (D) These heuristics need a lot of work. */
2862 /* Tests for case 1 above. */
2864 static int
2865 find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
2867 basic_block then_bb = then_edge->dest;
2868 basic_block else_bb = else_edge->dest, new_bb;
2869 edge then_succ = then_bb->succ;
2870 int then_bb_index, bb_cost;
2872 /* If we are partitioning hot/cold basic blocks, we don't want to
2873 mess up unconditional or indirect jumps that cross between hot
2874 and cold sections.
2876 Basic block partitioning may result in some jumps that appear to
2877 be optimizable (or blocks that appear to be mergeable), but which really
2878 must be left untouched (they are required to make it safely across
2879 partition boundaries). See the comments at the top of
2880 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
2882 if (flag_reorder_blocks_and_partition
2883 && ((BB_END (then_bb)
2884 && find_reg_note (BB_END (then_bb), REG_CROSSING_JUMP, NULL_RTX))
2885 || (BB_END (else_bb)
2886 && find_reg_note (BB_END (else_bb), REG_CROSSING_JUMP,
2887 NULL_RTX))))
2888 return FALSE;
2890 /* THEN has one successor. */
2891 if (!then_succ || then_succ->succ_next != NULL)
2892 return FALSE;
2894 /* THEN does not fall through, but is not strange either. */
2895 if (then_succ->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
2896 return FALSE;
2898 /* THEN has one predecessor. */
2899 if (then_bb->pred->pred_next != NULL)
2900 return FALSE;
2902 /* THEN must do something. */
2903 if (forwarder_block_p (then_bb))
2904 return FALSE;
2906 num_possible_if_blocks++;
2907 if (dump_file)
2908 fprintf (dump_file,
2909 "\nIF-CASE-1 found, start %d, then %d\n",
2910 test_bb->index, then_bb->index);
2912 /* THEN is small. */
2913 bb_cost = total_bb_rtx_cost (then_bb);
2914 if (bb_cost < 0 || bb_cost >= COSTS_N_INSNS (BRANCH_COST))
2915 return FALSE;
2917 /* Registers set are dead, or are predicable. */
2918 if (! dead_or_predicable (test_bb, then_bb, else_bb,
2919 then_bb->succ->dest, 1))
2920 return FALSE;
2922 /* Conversion went ok, including moving the insns and fixing up the
2923 jump. Adjust the CFG to match. */
2925 bitmap_operation (test_bb->global_live_at_end,
2926 else_bb->global_live_at_start,
2927 then_bb->global_live_at_end, BITMAP_IOR);
2929 new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb), else_bb);
2930 then_bb_index = then_bb->index;
2931 delete_basic_block (then_bb);
2933 /* Make rest of code believe that the newly created block is the THEN_BB
2934 block we removed. */
2935 if (new_bb)
2937 new_bb->index = then_bb_index;
2938 BASIC_BLOCK (then_bb_index) = new_bb;
2939 /* Since the fallthru edge was redirected from test_bb to new_bb,
2940 we need to ensure that new_bb is in the same partition as
2941 test bb (you can not fall through across section boundaries). */
2942 BB_COPY_PARTITION (new_bb, test_bb);
2944 /* We've possibly created jump to next insn, cleanup_cfg will solve that
2945 later. */
2947 num_true_changes++;
2948 num_updated_if_blocks++;
2950 return TRUE;
2953 /* Test for case 2 above. */
2955 static int
2956 find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
2958 basic_block then_bb = then_edge->dest;
2959 basic_block else_bb = else_edge->dest;
2960 edge else_succ = else_bb->succ;
2961 int bb_cost;
2962 rtx note;
2964 /* If we are partitioning hot/cold basic blocks, we don't want to
2965 mess up unconditional or indirect jumps that cross between hot
2966 and cold sections.
2968 Basic block partitioning may result in some jumps that appear to
2969 be optimizable (or blocks that appear to be mergeable), but which really
2970 must be left untouched (they are required to make it safely across
2971 partition boundaries). See the comments at the top of
2972 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
2974 if (flag_reorder_blocks_and_partition
2975 && ((BB_END (then_bb)
2976 && find_reg_note (BB_END (then_bb), REG_CROSSING_JUMP, NULL_RTX))
2977 || (BB_END (else_bb)
2978 && find_reg_note (BB_END (else_bb), REG_CROSSING_JUMP,
2979 NULL_RTX))))
2980 return FALSE;
2982 /* ELSE has one successor. */
2983 if (!else_succ || else_succ->succ_next != NULL)
2984 return FALSE;
2986 /* ELSE outgoing edge is not complex. */
2987 if (else_succ->flags & EDGE_COMPLEX)
2988 return FALSE;
2990 /* ELSE has one predecessor. */
2991 if (else_bb->pred->pred_next != NULL)
2992 return FALSE;
2994 /* THEN is not EXIT. */
2995 if (then_bb->index < 0)
2996 return FALSE;
2998 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
2999 note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
3000 if (note && INTVAL (XEXP (note, 0)) >= REG_BR_PROB_BASE / 2)
3002 else if (else_succ->dest->index < 0
3003 || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
3004 else_succ->dest))
3006 else
3007 return FALSE;
3009 num_possible_if_blocks++;
3010 if (dump_file)
3011 fprintf (dump_file,
3012 "\nIF-CASE-2 found, start %d, else %d\n",
3013 test_bb->index, else_bb->index);
3015 /* ELSE is small. */
3016 bb_cost = total_bb_rtx_cost (else_bb);
3017 if (bb_cost < 0 || bb_cost >= COSTS_N_INSNS (BRANCH_COST))
3018 return FALSE;
3020 /* Registers set are dead, or are predicable. */
3021 if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ->dest, 0))
3022 return FALSE;
3024 /* Conversion went ok, including moving the insns and fixing up the
3025 jump. Adjust the CFG to match. */
3027 bitmap_operation (test_bb->global_live_at_end,
3028 then_bb->global_live_at_start,
3029 else_bb->global_live_at_end, BITMAP_IOR);
3031 delete_basic_block (else_bb);
3033 num_true_changes++;
3034 num_updated_if_blocks++;
3036 /* ??? We may now fallthru from one of THEN's successors into a join
3037 block. Rerun cleanup_cfg? Examine things manually? Wait? */
3039 return TRUE;
3042 /* A subroutine of dead_or_predicable called through for_each_rtx.
3043 Return 1 if a memory is found. */
3045 static int
3046 find_memory (rtx *px, void *data ATTRIBUTE_UNUSED)
3048 return MEM_P (*px);
3051 /* Used by the code above to perform the actual rtl transformations.
3052 Return TRUE if successful.
3054 TEST_BB is the block containing the conditional branch. MERGE_BB
3055 is the block containing the code to manipulate. NEW_DEST is the
3056 label TEST_BB should be branching to after the conversion.
3057 REVERSEP is true if the sense of the branch should be reversed. */
3059 static int
3060 dead_or_predicable (basic_block test_bb, basic_block merge_bb,
3061 basic_block other_bb, basic_block new_dest, int reversep)
3063 rtx head, end, jump, earliest = NULL_RTX, old_dest, new_label = NULL_RTX;
3065 jump = BB_END (test_bb);
3067 /* Find the extent of the real code in the merge block. */
3068 head = BB_HEAD (merge_bb);
3069 end = BB_END (merge_bb);
3071 if (LABEL_P (head))
3072 head = NEXT_INSN (head);
3073 if (NOTE_P (head))
3075 if (head == end)
3077 head = end = NULL_RTX;
3078 goto no_body;
3080 head = NEXT_INSN (head);
3083 if (JUMP_P (end))
3085 if (head == end)
3087 head = end = NULL_RTX;
3088 goto no_body;
3090 end = PREV_INSN (end);
3093 /* Disable handling dead code by conditional execution if the machine needs
3094 to do anything funny with the tests, etc. */
3095 #ifndef IFCVT_MODIFY_TESTS
3096 if (HAVE_conditional_execution)
3098 /* In the conditional execution case, we have things easy. We know
3099 the condition is reversible. We don't have to check life info
3100 because we're going to conditionally execute the code anyway.
3101 All that's left is making sure the insns involved can actually
3102 be predicated. */
3104 rtx cond, prob_val;
3106 cond = cond_exec_get_condition (jump);
3107 if (! cond)
3108 return FALSE;
3110 prob_val = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
3111 if (prob_val)
3112 prob_val = XEXP (prob_val, 0);
3114 if (reversep)
3116 enum rtx_code rev = reversed_comparison_code (cond, jump);
3117 if (rev == UNKNOWN)
3118 return FALSE;
3119 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
3120 XEXP (cond, 1));
3121 if (prob_val)
3122 prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (prob_val));
3125 if (! cond_exec_process_insns ((ce_if_block_t *)0, head, end, cond,
3126 prob_val, 0))
3127 goto cancel;
3129 earliest = jump;
3131 else
3132 #endif
3134 /* In the non-conditional execution case, we have to verify that there
3135 are no trapping operations, no calls, no references to memory, and
3136 that any registers modified are dead at the branch site. */
3138 rtx insn, cond, prev;
3139 regset_head merge_set_head, tmp_head, test_live_head, test_set_head;
3140 regset merge_set, tmp, test_live, test_set;
3141 struct propagate_block_info *pbi;
3142 int i, fail = 0;
3144 /* Check for no calls or trapping operations. */
3145 for (insn = head; ; insn = NEXT_INSN (insn))
3147 if (CALL_P (insn))
3148 return FALSE;
3149 if (INSN_P (insn))
3151 if (may_trap_p (PATTERN (insn)))
3152 return FALSE;
3154 /* ??? Even non-trapping memories such as stack frame
3155 references must be avoided. For stores, we collect
3156 no lifetime info; for reads, we'd have to assert
3157 true_dependence false against every store in the
3158 TEST range. */
3159 if (for_each_rtx (&PATTERN (insn), find_memory, NULL))
3160 return FALSE;
3162 if (insn == end)
3163 break;
3166 if (! any_condjump_p (jump))
3167 return FALSE;
3169 /* Find the extent of the conditional. */
3170 cond = noce_get_condition (jump, &earliest);
3171 if (! cond)
3172 return FALSE;
3174 /* Collect:
3175 MERGE_SET = set of registers set in MERGE_BB
3176 TEST_LIVE = set of registers live at EARLIEST
3177 TEST_SET = set of registers set between EARLIEST and the
3178 end of the block. */
3180 tmp = INITIALIZE_REG_SET (tmp_head);
3181 merge_set = INITIALIZE_REG_SET (merge_set_head);
3182 test_live = INITIALIZE_REG_SET (test_live_head);
3183 test_set = INITIALIZE_REG_SET (test_set_head);
3185 /* ??? bb->local_set is only valid during calculate_global_regs_live,
3186 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
3187 since we've already asserted that MERGE_BB is small. */
3188 propagate_block (merge_bb, tmp, merge_set, merge_set, 0);
3190 /* For small register class machines, don't lengthen lifetimes of
3191 hard registers before reload. */
3192 if (SMALL_REGISTER_CLASSES && ! reload_completed)
3194 EXECUTE_IF_SET_IN_BITMAP
3195 (merge_set, 0, i,
3197 if (i < FIRST_PSEUDO_REGISTER
3198 && ! fixed_regs[i]
3199 && ! global_regs[i])
3200 fail = 1;
3204 /* For TEST, we're interested in a range of insns, not a whole block.
3205 Moreover, we're interested in the insns live from OTHER_BB. */
3207 COPY_REG_SET (test_live, other_bb->global_live_at_start);
3208 pbi = init_propagate_block_info (test_bb, test_live, test_set, test_set,
3211 for (insn = jump; ; insn = prev)
3213 prev = propagate_one_insn (pbi, insn);
3214 if (insn == earliest)
3215 break;
3218 free_propagate_block_info (pbi);
3220 /* We can perform the transformation if
3221 MERGE_SET & (TEST_SET | TEST_LIVE)
3223 TEST_SET & merge_bb->global_live_at_start
3224 are empty. */
3226 bitmap_operation (tmp, test_set, test_live, BITMAP_IOR);
3227 bitmap_operation (tmp, tmp, merge_set, BITMAP_AND);
3228 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
3230 bitmap_operation (tmp, test_set, merge_bb->global_live_at_start,
3231 BITMAP_AND);
3232 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
3234 FREE_REG_SET (tmp);
3235 FREE_REG_SET (merge_set);
3236 FREE_REG_SET (test_live);
3237 FREE_REG_SET (test_set);
3239 if (fail)
3240 return FALSE;
3243 no_body:
3244 /* We don't want to use normal invert_jump or redirect_jump because
3245 we don't want to delete_insn called. Also, we want to do our own
3246 change group management. */
3248 old_dest = JUMP_LABEL (jump);
3249 if (other_bb != new_dest)
3251 new_label = block_label (new_dest);
3252 if (reversep
3253 ? ! invert_jump_1 (jump, new_label)
3254 : ! redirect_jump_1 (jump, new_label))
3255 goto cancel;
3258 if (! apply_change_group ())
3259 return FALSE;
3261 if (other_bb != new_dest)
3263 if (old_dest)
3264 LABEL_NUSES (old_dest) -= 1;
3265 if (new_label)
3266 LABEL_NUSES (new_label) += 1;
3267 JUMP_LABEL (jump) = new_label;
3268 if (reversep)
3269 invert_br_probabilities (jump);
3271 redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
3272 if (reversep)
3274 gcov_type count, probability;
3275 count = BRANCH_EDGE (test_bb)->count;
3276 BRANCH_EDGE (test_bb)->count = FALLTHRU_EDGE (test_bb)->count;
3277 FALLTHRU_EDGE (test_bb)->count = count;
3278 probability = BRANCH_EDGE (test_bb)->probability;
3279 BRANCH_EDGE (test_bb)->probability
3280 = FALLTHRU_EDGE (test_bb)->probability;
3281 FALLTHRU_EDGE (test_bb)->probability = probability;
3282 update_br_prob_note (test_bb);
3286 /* Move the insns out of MERGE_BB to before the branch. */
3287 if (head != NULL)
3289 if (end == BB_END (merge_bb))
3290 BB_END (merge_bb) = PREV_INSN (head);
3292 if (squeeze_notes (&head, &end))
3293 return TRUE;
3295 reorder_insns (head, end, PREV_INSN (earliest));
3298 /* Remove the jump and edge if we can. */
3299 if (other_bb == new_dest)
3301 delete_insn (jump);
3302 remove_edge (BRANCH_EDGE (test_bb));
3303 /* ??? Can't merge blocks here, as then_bb is still in use.
3304 At minimum, the merge will get done just before bb-reorder. */
3307 return TRUE;
3309 cancel:
3310 cancel_changes (0);
3311 return FALSE;
3314 /* Main entry point for all if-conversion. */
3316 void
3317 if_convert (int x_life_data_ok)
3319 basic_block bb;
3320 int pass;
3322 num_possible_if_blocks = 0;
3323 num_updated_if_blocks = 0;
3324 num_true_changes = 0;
3325 life_data_ok = (x_life_data_ok != 0);
3327 if ((! targetm.cannot_modify_jumps_p ())
3328 && (!flag_reorder_blocks_and_partition || !no_new_pseudos
3329 || !targetm.have_named_sections))
3330 mark_loop_exit_edges ();
3332 /* Compute postdominators if we think we'll use them. */
3333 if (HAVE_conditional_execution || life_data_ok)
3334 calculate_dominance_info (CDI_POST_DOMINATORS);
3336 if (life_data_ok)
3337 clear_bb_flags ();
3339 /* Go through each of the basic blocks looking for things to convert. If we
3340 have conditional execution, we make multiple passes to allow us to handle
3341 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
3342 pass = 0;
3345 cond_exec_changed_p = FALSE;
3346 pass++;
3348 #ifdef IFCVT_MULTIPLE_DUMPS
3349 if (dump_file && pass > 1)
3350 fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
3351 #endif
3353 FOR_EACH_BB (bb)
3355 basic_block new_bb;
3356 while ((new_bb = find_if_header (bb, pass)))
3357 bb = new_bb;
3360 #ifdef IFCVT_MULTIPLE_DUMPS
3361 if (dump_file && cond_exec_changed_p)
3362 print_rtl_with_bb (dump_file, get_insns ());
3363 #endif
3365 while (cond_exec_changed_p);
3367 #ifdef IFCVT_MULTIPLE_DUMPS
3368 if (dump_file)
3369 fprintf (dump_file, "\n\n========== no more changes\n");
3370 #endif
3372 free_dominance_info (CDI_POST_DOMINATORS);
3374 if (dump_file)
3375 fflush (dump_file);
3377 clear_aux_for_blocks ();
3379 /* Rebuild life info for basic blocks that require it. */
3380 if (num_true_changes && life_data_ok)
3382 /* If we allocated new pseudos, we must resize the array for sched1. */
3383 if (max_regno < max_reg_num ())
3385 max_regno = max_reg_num ();
3386 allocate_reg_info (max_regno, FALSE, FALSE);
3388 update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES,
3389 PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE
3390 | PROP_KILL_DEAD_CODE);
3393 /* Write the final stats. */
3394 if (dump_file && num_possible_if_blocks > 0)
3396 fprintf (dump_file,
3397 "\n%d possible IF blocks searched.\n",
3398 num_possible_if_blocks);
3399 fprintf (dump_file,
3400 "%d IF blocks converted.\n",
3401 num_updated_if_blocks);
3402 fprintf (dump_file,
3403 "%d true changes made.\n\n\n",
3404 num_true_changes);
3407 #ifdef ENABLE_CHECKING
3408 verify_flow_info ();
3409 #endif