2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / ifcvt.c
blob24c8fd8ef73beaae5f7a67b5a3aa6aebe94437ca
1 /* If-conversion support.
2 Copyright (C) 2000, 2001, 2002, 2003 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 /* The post-dominator relation on the original block numbers. */
88 static dominance_info post_dominators;
90 /* Forward references. */
91 static int count_bb_insns (basic_block);
92 static rtx first_active_insn (basic_block);
93 static rtx last_active_insn (basic_block, int);
94 static int seq_contains_jump (rtx);
95 static basic_block block_fallthru (basic_block);
96 static int cond_exec_process_insns (ce_if_block_t *, rtx, rtx, rtx, rtx, int);
97 static rtx cond_exec_get_condition (rtx);
98 static int cond_exec_process_if_block (ce_if_block_t *, int);
99 static rtx noce_get_condition (rtx, rtx *);
100 static int noce_operand_ok (rtx);
101 static int noce_process_if_block (ce_if_block_t *);
102 static int process_if_block (ce_if_block_t *);
103 static void merge_if_block (ce_if_block_t *);
104 static int find_cond_trap (basic_block, edge, edge);
105 static basic_block find_if_header (basic_block, int);
106 static int block_jumps_and_fallthru_p (basic_block, basic_block);
107 static int find_if_block (ce_if_block_t *);
108 static int find_if_case_1 (basic_block, edge, edge);
109 static int find_if_case_2 (basic_block, edge, edge);
110 static int find_memory (rtx *, void *);
111 static int dead_or_predicable (basic_block, basic_block, basic_block,
112 basic_block, int);
113 static void noce_emit_move_insn (rtx, rtx);
114 static rtx block_has_only_trap (basic_block);
115 static void mark_loop_exit_edges (void);
117 /* Sets EDGE_LOOP_EXIT flag for all loop exits. */
118 static void
119 mark_loop_exit_edges (void)
121 struct loops loops;
122 basic_block bb;
123 edge e;
125 flow_loops_find (&loops, LOOP_TREE);
127 if (loops.num > 1)
129 FOR_EACH_BB (bb)
131 for (e = bb->succ; e; e = e->succ_next)
133 if (find_common_loop (bb->loop_father, e->dest->loop_father)
134 != bb->loop_father)
135 e->flags |= EDGE_LOOP_EXIT;
136 else
137 e->flags &= ~EDGE_LOOP_EXIT;
142 flow_loops_free (&loops);
145 /* Count the number of non-jump active insns in BB. */
147 static int
148 count_bb_insns (basic_block bb)
150 int count = 0;
151 rtx insn = BB_HEAD (bb);
153 while (1)
155 if (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == INSN)
156 count++;
158 if (insn == BB_END (bb))
159 break;
160 insn = NEXT_INSN (insn);
163 return count;
166 /* Return the first non-jump active insn in the basic block. */
168 static rtx
169 first_active_insn (basic_block bb)
171 rtx insn = BB_HEAD (bb);
173 if (GET_CODE (insn) == CODE_LABEL)
175 if (insn == BB_END (bb))
176 return NULL_RTX;
177 insn = NEXT_INSN (insn);
180 while (GET_CODE (insn) == NOTE)
182 if (insn == BB_END (bb))
183 return NULL_RTX;
184 insn = NEXT_INSN (insn);
187 if (GET_CODE (insn) == JUMP_INSN)
188 return NULL_RTX;
190 return insn;
193 /* Return the last non-jump active (non-jump) insn in the basic block. */
195 static rtx
196 last_active_insn (basic_block bb, int skip_use_p)
198 rtx insn = BB_END (bb);
199 rtx head = BB_HEAD (bb);
201 while (GET_CODE (insn) == NOTE
202 || GET_CODE (insn) == JUMP_INSN
203 || (skip_use_p
204 && GET_CODE (insn) == INSN
205 && GET_CODE (PATTERN (insn)) == USE))
207 if (insn == head)
208 return NULL_RTX;
209 insn = PREV_INSN (insn);
212 if (GET_CODE (insn) == CODE_LABEL)
213 return NULL_RTX;
215 return insn;
218 /* It is possible, especially when having dealt with multi-word
219 arithmetic, for the expanders to have emitted jumps. Search
220 through the sequence and return TRUE if a jump exists so that
221 we can abort the conversion. */
223 static int
224 seq_contains_jump (rtx insn)
226 while (insn)
228 if (GET_CODE (insn) == JUMP_INSN)
229 return 1;
230 insn = NEXT_INSN (insn);
232 return 0;
235 static basic_block
236 block_fallthru (basic_block bb)
238 edge e;
240 for (e = bb->succ;
241 e != NULL_EDGE && (e->flags & EDGE_FALLTHRU) == 0;
242 e = e->succ_next)
245 return (e) ? e->dest : NULL_BLOCK;
248 /* Go through a bunch of insns, converting them to conditional
249 execution format if possible. Return TRUE if all of the non-note
250 insns were processed. */
252 static int
253 cond_exec_process_insns (ce_if_block_t *ce_info ATTRIBUTE_UNUSED,
254 /* if block information */rtx start,
255 /* first insn to look at */rtx end,
256 /* last insn to look at */rtx test,
257 /* conditional execution test */rtx prob_val,
258 /* probability of branch taken. */int mod_ok)
260 int must_be_last = FALSE;
261 rtx insn;
262 rtx xtest;
263 rtx pattern;
265 if (!start || !end)
266 return FALSE;
268 for (insn = start; ; insn = NEXT_INSN (insn))
270 if (GET_CODE (insn) == NOTE)
271 goto insn_done;
273 if (GET_CODE (insn) != INSN && GET_CODE (insn) != CALL_INSN)
274 abort ();
276 /* Remove USE insns that get in the way. */
277 if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
279 /* ??? Ug. Actually unlinking the thing is problematic,
280 given what we'd have to coordinate with our callers. */
281 PUT_CODE (insn, NOTE);
282 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
283 NOTE_SOURCE_FILE (insn) = 0;
284 goto insn_done;
287 /* Last insn wasn't last? */
288 if (must_be_last)
289 return FALSE;
291 if (modified_in_p (test, insn))
293 if (!mod_ok)
294 return FALSE;
295 must_be_last = TRUE;
298 /* Now build the conditional form of the instruction. */
299 pattern = PATTERN (insn);
300 xtest = copy_rtx (test);
302 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
303 two conditions. */
304 if (GET_CODE (pattern) == COND_EXEC)
306 if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
307 return FALSE;
309 xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
310 COND_EXEC_TEST (pattern));
311 pattern = COND_EXEC_CODE (pattern);
314 pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
316 /* If the machine needs to modify the insn being conditionally executed,
317 say for example to force a constant integer operand into a temp
318 register, do so here. */
319 #ifdef IFCVT_MODIFY_INSN
320 IFCVT_MODIFY_INSN (ce_info, pattern, insn);
321 if (! pattern)
322 return FALSE;
323 #endif
325 validate_change (insn, &PATTERN (insn), pattern, 1);
327 if (GET_CODE (insn) == CALL_INSN && prob_val)
328 validate_change (insn, &REG_NOTES (insn),
329 alloc_EXPR_LIST (REG_BR_PROB, prob_val,
330 REG_NOTES (insn)), 1);
332 insn_done:
333 if (insn == end)
334 break;
337 return TRUE;
340 /* Return the condition for a jump. Do not do any special processing. */
342 static rtx
343 cond_exec_get_condition (rtx jump)
345 rtx test_if, cond;
347 if (any_condjump_p (jump))
348 test_if = SET_SRC (pc_set (jump));
349 else
350 return NULL_RTX;
351 cond = XEXP (test_if, 0);
353 /* If this branches to JUMP_LABEL when the condition is false,
354 reverse the condition. */
355 if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
356 && XEXP (XEXP (test_if, 2), 0) == JUMP_LABEL (jump))
358 enum rtx_code rev = reversed_comparison_code (cond, jump);
359 if (rev == UNKNOWN)
360 return NULL_RTX;
362 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
363 XEXP (cond, 1));
366 return cond;
369 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
370 to conditional execution. Return TRUE if we were successful at
371 converting the block. */
373 static int
374 cond_exec_process_if_block (ce_if_block_t * ce_info,
375 /* if block information */int do_multiple_p)
377 basic_block test_bb = ce_info->test_bb; /* last test block */
378 basic_block then_bb = ce_info->then_bb; /* THEN */
379 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
380 rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
381 rtx then_start; /* first insn in THEN block */
382 rtx then_end; /* last insn + 1 in THEN block */
383 rtx else_start = NULL_RTX; /* first insn in ELSE block or NULL */
384 rtx else_end = NULL_RTX; /* last insn + 1 in ELSE block */
385 int max; /* max # of insns to convert. */
386 int then_mod_ok; /* whether conditional mods are ok in THEN */
387 rtx true_expr; /* test for else block insns */
388 rtx false_expr; /* test for then block insns */
389 rtx true_prob_val; /* probability of else block */
390 rtx false_prob_val; /* probability of then block */
391 int n_insns;
392 enum rtx_code false_code;
394 /* If test is comprised of && or || elements, and we've failed at handling
395 all of them together, just use the last test if it is the special case of
396 && elements without an ELSE block. */
397 if (!do_multiple_p && ce_info->num_multiple_test_blocks)
399 if (else_bb || ! ce_info->and_and_p)
400 return FALSE;
402 ce_info->test_bb = test_bb = ce_info->last_test_bb;
403 ce_info->num_multiple_test_blocks = 0;
404 ce_info->num_and_and_blocks = 0;
405 ce_info->num_or_or_blocks = 0;
408 /* Find the conditional jump to the ELSE or JOIN part, and isolate
409 the test. */
410 test_expr = cond_exec_get_condition (BB_END (test_bb));
411 if (! test_expr)
412 return FALSE;
414 /* If the conditional jump is more than just a conditional jump,
415 then we can not do conditional execution conversion on this block. */
416 if (! onlyjump_p (BB_END (test_bb)))
417 return FALSE;
419 /* Collect the bounds of where we're to search, skipping any labels, jumps
420 and notes at the beginning and end of the block. Then count the total
421 number of insns and see if it is small enough to convert. */
422 then_start = first_active_insn (then_bb);
423 then_end = last_active_insn (then_bb, TRUE);
424 n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
425 max = MAX_CONDITIONAL_EXECUTE;
427 if (else_bb)
429 max *= 2;
430 else_start = first_active_insn (else_bb);
431 else_end = last_active_insn (else_bb, TRUE);
432 n_insns += ce_info->num_else_insns = count_bb_insns (else_bb);
435 if (n_insns > max)
436 return FALSE;
438 /* Map test_expr/test_jump into the appropriate MD tests to use on
439 the conditionally executed code. */
441 true_expr = test_expr;
443 false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
444 if (false_code != UNKNOWN)
445 false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
446 XEXP (true_expr, 0), XEXP (true_expr, 1));
447 else
448 false_expr = NULL_RTX;
450 #ifdef IFCVT_MODIFY_TESTS
451 /* If the machine description needs to modify the tests, such as setting a
452 conditional execution register from a comparison, it can do so here. */
453 IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
455 /* See if the conversion failed. */
456 if (!true_expr || !false_expr)
457 goto fail;
458 #endif
460 true_prob_val = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
461 if (true_prob_val)
463 true_prob_val = XEXP (true_prob_val, 0);
464 false_prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (true_prob_val));
466 else
467 false_prob_val = NULL_RTX;
469 /* If we have && or || tests, do them here. These tests are in the adjacent
470 blocks after the first block containing the test. */
471 if (ce_info->num_multiple_test_blocks > 0)
473 basic_block bb = test_bb;
474 basic_block last_test_bb = ce_info->last_test_bb;
476 if (! false_expr)
477 goto fail;
481 rtx start, end;
482 rtx t, f;
484 bb = block_fallthru (bb);
485 start = first_active_insn (bb);
486 end = last_active_insn (bb, TRUE);
487 if (start
488 && ! cond_exec_process_insns (ce_info, start, end, false_expr,
489 false_prob_val, FALSE))
490 goto fail;
492 /* If the conditional jump is more than just a conditional jump, then
493 we can not do conditional execution conversion on this block. */
494 if (! onlyjump_p (BB_END (bb)))
495 goto fail;
497 /* Find the conditional jump and isolate the test. */
498 t = cond_exec_get_condition (BB_END (bb));
499 if (! t)
500 goto fail;
502 f = gen_rtx_fmt_ee (reverse_condition (GET_CODE (t)),
503 GET_MODE (t),
504 XEXP (t, 0),
505 XEXP (t, 1));
507 if (ce_info->and_and_p)
509 t = gen_rtx_AND (GET_MODE (t), true_expr, t);
510 f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
512 else
514 t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
515 f = gen_rtx_AND (GET_MODE (t), false_expr, f);
518 /* If the machine description needs to modify the tests, such as
519 setting a conditional execution register from a comparison, it can
520 do so here. */
521 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
522 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
524 /* See if the conversion failed. */
525 if (!t || !f)
526 goto fail;
527 #endif
529 true_expr = t;
530 false_expr = f;
532 while (bb != last_test_bb);
535 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
536 on then THEN block. */
537 then_mod_ok = (else_bb == NULL_BLOCK);
539 /* Go through the THEN and ELSE blocks converting the insns if possible
540 to conditional execution. */
542 if (then_end
543 && (! false_expr
544 || ! cond_exec_process_insns (ce_info, then_start, then_end,
545 false_expr, false_prob_val,
546 then_mod_ok)))
547 goto fail;
549 if (else_bb && else_end
550 && ! cond_exec_process_insns (ce_info, else_start, else_end,
551 true_expr, true_prob_val, TRUE))
552 goto fail;
554 /* If we cannot apply the changes, fail. Do not go through the normal fail
555 processing, since apply_change_group will call cancel_changes. */
556 if (! apply_change_group ())
558 #ifdef IFCVT_MODIFY_CANCEL
559 /* Cancel any machine dependent changes. */
560 IFCVT_MODIFY_CANCEL (ce_info);
561 #endif
562 return FALSE;
565 #ifdef IFCVT_MODIFY_FINAL
566 /* Do any machine dependent final modifications. */
567 IFCVT_MODIFY_FINAL (ce_info);
568 #endif
570 /* Conversion succeeded. */
571 if (rtl_dump_file)
572 fprintf (rtl_dump_file, "%d insn%s converted to conditional execution.\n",
573 n_insns, (n_insns == 1) ? " was" : "s were");
575 /* Merge the blocks! */
576 merge_if_block (ce_info);
577 cond_exec_changed_p = TRUE;
578 return TRUE;
580 fail:
581 #ifdef IFCVT_MODIFY_CANCEL
582 /* Cancel any machine dependent changes. */
583 IFCVT_MODIFY_CANCEL (ce_info);
584 #endif
586 cancel_changes (0);
587 return FALSE;
590 /* Used by noce_process_if_block to communicate with its subroutines.
592 The subroutines know that A and B may be evaluated freely. They
593 know that X is a register. They should insert new instructions
594 before cond_earliest. */
596 struct noce_if_info
598 basic_block test_bb;
599 rtx insn_a, insn_b;
600 rtx x, a, b;
601 rtx jump, cond, cond_earliest;
604 static rtx noce_emit_store_flag (struct noce_if_info *, rtx, int, int);
605 static int noce_try_move (struct noce_if_info *);
606 static int noce_try_store_flag (struct noce_if_info *);
607 static int noce_try_addcc (struct noce_if_info *);
608 static int noce_try_store_flag_constants (struct noce_if_info *);
609 static int noce_try_store_flag_mask (struct noce_if_info *);
610 static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
611 rtx, rtx, rtx);
612 static int noce_try_cmove (struct noce_if_info *);
613 static int noce_try_cmove_arith (struct noce_if_info *);
614 static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx *);
615 static int noce_try_minmax (struct noce_if_info *);
616 static int noce_try_abs (struct noce_if_info *);
618 /* Helper function for noce_try_store_flag*. */
620 static rtx
621 noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
622 int normalize)
624 rtx cond = if_info->cond;
625 int cond_complex;
626 enum rtx_code code;
628 cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
629 || ! general_operand (XEXP (cond, 1), VOIDmode));
631 /* If earliest == jump, or when the condition is complex, try to
632 build the store_flag insn directly. */
634 if (cond_complex)
635 cond = XEXP (SET_SRC (pc_set (if_info->jump)), 0);
637 if (reversep)
638 code = reversed_comparison_code (cond, if_info->jump);
639 else
640 code = GET_CODE (cond);
642 if ((if_info->cond_earliest == if_info->jump || cond_complex)
643 && (normalize == 0 || STORE_FLAG_VALUE == normalize))
645 rtx tmp;
647 tmp = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
648 XEXP (cond, 1));
649 tmp = gen_rtx_SET (VOIDmode, x, tmp);
651 start_sequence ();
652 tmp = emit_insn (tmp);
654 if (recog_memoized (tmp) >= 0)
656 tmp = get_insns ();
657 end_sequence ();
658 emit_insn (tmp);
660 if_info->cond_earliest = if_info->jump;
662 return x;
665 end_sequence ();
668 /* Don't even try if the comparison operands or the mode of X are weird. */
669 if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
670 return NULL_RTX;
672 return emit_store_flag (x, code, XEXP (cond, 0),
673 XEXP (cond, 1), VOIDmode,
674 (code == LTU || code == LEU
675 || code == GEU || code == GTU), normalize);
678 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
679 X is the destination/target and Y is the value to copy. */
681 static void
682 noce_emit_move_insn (rtx x, rtx y)
684 enum machine_mode outmode, inmode;
685 rtx outer, inner;
686 int bitpos;
688 if (GET_CODE (x) != STRICT_LOW_PART)
690 emit_move_insn (x, y);
691 return;
694 outer = XEXP (x, 0);
695 inner = XEXP (outer, 0);
696 outmode = GET_MODE (outer);
697 inmode = GET_MODE (inner);
698 bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
699 store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos, outmode, y,
700 GET_MODE_BITSIZE (inmode));
703 /* Unshare sequence SEQ produced by if conversion. We care to mark
704 all arguments that may be shared with outer instruction stream. */
705 static void
706 unshare_ifcvt_sequence (struct noce_if_info *if_info, rtx seq)
708 set_used_flags (if_info->x);
709 set_used_flags (if_info->cond);
710 unshare_all_rtl_in_chain (seq);
713 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
714 "if (a == b) x = a; else x = b" into "x = b". */
716 static int
717 noce_try_move (struct noce_if_info *if_info)
719 rtx cond = if_info->cond;
720 enum rtx_code code = GET_CODE (cond);
721 rtx y, seq;
723 if (code != NE && code != EQ)
724 return FALSE;
726 /* This optimization isn't valid if either A or B could be a NaN
727 or a signed zero. */
728 if (HONOR_NANS (GET_MODE (if_info->x))
729 || HONOR_SIGNED_ZEROS (GET_MODE (if_info->x)))
730 return FALSE;
732 /* Check whether the operands of the comparison are A and in
733 either order. */
734 if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
735 && rtx_equal_p (if_info->b, XEXP (cond, 1)))
736 || (rtx_equal_p (if_info->a, XEXP (cond, 1))
737 && rtx_equal_p (if_info->b, XEXP (cond, 0))))
739 y = (code == EQ) ? if_info->a : if_info->b;
741 /* Avoid generating the move if the source is the destination. */
742 if (! rtx_equal_p (if_info->x, y))
744 start_sequence ();
745 noce_emit_move_insn (if_info->x, y);
746 seq = get_insns ();
747 unshare_ifcvt_sequence (if_info, seq);
748 end_sequence ();
749 emit_insn_before_setloc (seq, if_info->jump,
750 INSN_LOCATOR (if_info->insn_a));
752 return TRUE;
754 return FALSE;
757 /* Convert "if (test) x = 1; else x = 0".
759 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
760 tried in noce_try_store_flag_constants after noce_try_cmove has had
761 a go at the conversion. */
763 static int
764 noce_try_store_flag (struct noce_if_info *if_info)
766 int reversep;
767 rtx target, seq;
769 if (GET_CODE (if_info->b) == CONST_INT
770 && INTVAL (if_info->b) == STORE_FLAG_VALUE
771 && if_info->a == const0_rtx)
772 reversep = 0;
773 else if (if_info->b == const0_rtx
774 && GET_CODE (if_info->a) == CONST_INT
775 && INTVAL (if_info->a) == STORE_FLAG_VALUE
776 && (reversed_comparison_code (if_info->cond, if_info->jump)
777 != UNKNOWN))
778 reversep = 1;
779 else
780 return FALSE;
782 start_sequence ();
784 target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
785 if (target)
787 if (target != if_info->x)
788 noce_emit_move_insn (if_info->x, target);
790 seq = get_insns ();
791 unshare_ifcvt_sequence (if_info, seq);
792 end_sequence ();
793 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
795 return TRUE;
797 else
799 end_sequence ();
800 return FALSE;
804 /* Convert "if (test) x = a; else x = b", for A and B constant. */
806 static int
807 noce_try_store_flag_constants (struct noce_if_info *if_info)
809 rtx target, seq;
810 int reversep;
811 HOST_WIDE_INT itrue, ifalse, diff, tmp;
812 int normalize, can_reverse;
813 enum machine_mode mode;
815 if (! no_new_pseudos
816 && GET_CODE (if_info->a) == CONST_INT
817 && GET_CODE (if_info->b) == CONST_INT)
819 mode = GET_MODE (if_info->x);
820 ifalse = INTVAL (if_info->a);
821 itrue = INTVAL (if_info->b);
823 /* Make sure we can represent the difference between the two values. */
824 if ((itrue - ifalse > 0)
825 != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
826 return FALSE;
828 diff = trunc_int_for_mode (itrue - ifalse, mode);
830 can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
831 != UNKNOWN);
833 reversep = 0;
834 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
835 normalize = 0;
836 else if (ifalse == 0 && exact_log2 (itrue) >= 0
837 && (STORE_FLAG_VALUE == 1
838 || BRANCH_COST >= 2))
839 normalize = 1;
840 else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
841 && (STORE_FLAG_VALUE == 1 || BRANCH_COST >= 2))
842 normalize = 1, reversep = 1;
843 else if (itrue == -1
844 && (STORE_FLAG_VALUE == -1
845 || BRANCH_COST >= 2))
846 normalize = -1;
847 else if (ifalse == -1 && can_reverse
848 && (STORE_FLAG_VALUE == -1 || BRANCH_COST >= 2))
849 normalize = -1, reversep = 1;
850 else if ((BRANCH_COST >= 2 && STORE_FLAG_VALUE == -1)
851 || BRANCH_COST >= 3)
852 normalize = -1;
853 else
854 return FALSE;
856 if (reversep)
858 tmp = itrue; itrue = ifalse; ifalse = tmp;
859 diff = trunc_int_for_mode (-diff, mode);
862 start_sequence ();
863 target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
864 if (! target)
866 end_sequence ();
867 return FALSE;
870 /* if (test) x = 3; else x = 4;
871 => x = 3 + (test == 0); */
872 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
874 target = expand_simple_binop (mode,
875 (diff == STORE_FLAG_VALUE
876 ? PLUS : MINUS),
877 GEN_INT (ifalse), target, if_info->x, 0,
878 OPTAB_WIDEN);
881 /* if (test) x = 8; else x = 0;
882 => x = (test != 0) << 3; */
883 else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
885 target = expand_simple_binop (mode, ASHIFT,
886 target, GEN_INT (tmp), if_info->x, 0,
887 OPTAB_WIDEN);
890 /* if (test) x = -1; else x = b;
891 => x = -(test != 0) | b; */
892 else if (itrue == -1)
894 target = expand_simple_binop (mode, IOR,
895 target, GEN_INT (ifalse), if_info->x, 0,
896 OPTAB_WIDEN);
899 /* if (test) x = a; else x = b;
900 => x = (-(test != 0) & (b - a)) + a; */
901 else
903 target = expand_simple_binop (mode, AND,
904 target, GEN_INT (diff), if_info->x, 0,
905 OPTAB_WIDEN);
906 if (target)
907 target = expand_simple_binop (mode, PLUS,
908 target, GEN_INT (ifalse),
909 if_info->x, 0, OPTAB_WIDEN);
912 if (! target)
914 end_sequence ();
915 return FALSE;
918 if (target != if_info->x)
919 noce_emit_move_insn (if_info->x, target);
921 seq = get_insns ();
922 unshare_ifcvt_sequence (if_info, seq);
923 end_sequence ();
925 if (seq_contains_jump (seq))
926 return FALSE;
928 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
930 return TRUE;
933 return FALSE;
936 /* Convert "if (test) foo++" into "foo += (test != 0)", and
937 similarly for "foo--". */
939 static int
940 noce_try_addcc (struct noce_if_info *if_info)
942 rtx target, seq;
943 int subtract, normalize;
945 if (! no_new_pseudos
946 && GET_CODE (if_info->a) == PLUS
947 && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
948 && (reversed_comparison_code (if_info->cond, if_info->jump)
949 != UNKNOWN))
951 rtx cond = if_info->cond;
952 enum rtx_code code = reversed_comparison_code (cond, if_info->jump);
954 /* First try to use addcc pattern. */
955 if (general_operand (XEXP (cond, 0), VOIDmode)
956 && general_operand (XEXP (cond, 1), VOIDmode))
958 start_sequence ();
959 target = emit_conditional_add (if_info->x, code,
960 XEXP (cond, 0),
961 XEXP (cond, 1),
962 VOIDmode,
963 if_info->b,
964 XEXP (if_info->a, 1),
965 GET_MODE (if_info->x),
966 (code == LTU || code == GEU
967 || code == LEU || code == GTU));
968 if (target)
970 if (target != if_info->x)
971 noce_emit_move_insn (if_info->x, target);
973 seq = get_insns ();
974 unshare_ifcvt_sequence (if_info, seq);
975 end_sequence ();
976 emit_insn_before_setloc (seq, if_info->jump,
977 INSN_LOCATOR (if_info->insn_a));
978 return TRUE;
980 end_sequence ();
983 /* If that fails, construct conditional increment or decrement using
984 setcc. */
985 if (BRANCH_COST >= 2
986 && (XEXP (if_info->a, 1) == const1_rtx
987 || XEXP (if_info->a, 1) == constm1_rtx))
989 start_sequence ();
990 if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
991 subtract = 0, normalize = 0;
992 else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
993 subtract = 1, normalize = 0;
994 else
995 subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
998 target = noce_emit_store_flag (if_info,
999 gen_reg_rtx (GET_MODE (if_info->x)),
1000 1, normalize);
1002 if (target)
1003 target = expand_simple_binop (GET_MODE (if_info->x),
1004 subtract ? MINUS : PLUS,
1005 if_info->b, target, if_info->x,
1006 0, OPTAB_WIDEN);
1007 if (target)
1009 if (target != if_info->x)
1010 noce_emit_move_insn (if_info->x, target);
1012 seq = get_insns ();
1013 unshare_ifcvt_sequence (if_info, seq);
1014 end_sequence ();
1016 if (seq_contains_jump (seq))
1017 return FALSE;
1019 emit_insn_before_setloc (seq, if_info->jump,
1020 INSN_LOCATOR (if_info->insn_a));
1022 return TRUE;
1024 end_sequence ();
1028 return FALSE;
1031 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1033 static int
1034 noce_try_store_flag_mask (struct noce_if_info *if_info)
1036 rtx target, seq;
1037 int reversep;
1039 reversep = 0;
1040 if (! no_new_pseudos
1041 && (BRANCH_COST >= 2
1042 || STORE_FLAG_VALUE == -1)
1043 && ((if_info->a == const0_rtx
1044 && rtx_equal_p (if_info->b, if_info->x))
1045 || ((reversep = (reversed_comparison_code (if_info->cond,
1046 if_info->jump)
1047 != UNKNOWN))
1048 && if_info->b == const0_rtx
1049 && rtx_equal_p (if_info->a, if_info->x))))
1051 start_sequence ();
1052 target = noce_emit_store_flag (if_info,
1053 gen_reg_rtx (GET_MODE (if_info->x)),
1054 reversep, -1);
1055 if (target)
1056 target = expand_simple_binop (GET_MODE (if_info->x), AND,
1057 if_info->x,
1058 target, if_info->x, 0,
1059 OPTAB_WIDEN);
1061 if (target)
1063 if (target != if_info->x)
1064 noce_emit_move_insn (if_info->x, target);
1066 seq = get_insns ();
1067 unshare_ifcvt_sequence (if_info, seq);
1068 end_sequence ();
1070 if (seq_contains_jump (seq))
1071 return FALSE;
1073 emit_insn_before_setloc (seq, if_info->jump,
1074 INSN_LOCATOR (if_info->insn_a));
1076 return TRUE;
1079 end_sequence ();
1082 return FALSE;
1085 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1087 static rtx
1088 noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1089 rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue)
1091 /* If earliest == jump, try to build the cmove insn directly.
1092 This is helpful when combine has created some complex condition
1093 (like for alpha's cmovlbs) that we can't hope to regenerate
1094 through the normal interface. */
1096 if (if_info->cond_earliest == if_info->jump)
1098 rtx tmp;
1100 tmp = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1101 tmp = gen_rtx_IF_THEN_ELSE (GET_MODE (x), tmp, vtrue, vfalse);
1102 tmp = gen_rtx_SET (VOIDmode, x, tmp);
1104 start_sequence ();
1105 tmp = emit_insn (tmp);
1107 if (recog_memoized (tmp) >= 0)
1109 tmp = get_insns ();
1110 end_sequence ();
1111 emit_insn (tmp);
1113 return x;
1116 end_sequence ();
1119 /* Don't even try if the comparison operands are weird. */
1120 if (! general_operand (cmp_a, GET_MODE (cmp_a))
1121 || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1122 return NULL_RTX;
1124 #if HAVE_conditional_move
1125 return emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
1126 vtrue, vfalse, GET_MODE (x),
1127 (code == LTU || code == GEU
1128 || code == LEU || code == GTU));
1129 #else
1130 /* We'll never get here, as noce_process_if_block doesn't call the
1131 functions involved. Ifdef code, however, should be discouraged
1132 because it leads to typos in the code not selected. However,
1133 emit_conditional_move won't exist either. */
1134 return NULL_RTX;
1135 #endif
1138 /* Try only simple constants and registers here. More complex cases
1139 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1140 has had a go at it. */
1142 static int
1143 noce_try_cmove (struct noce_if_info *if_info)
1145 enum rtx_code code;
1146 rtx target, seq;
1148 if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1149 && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1151 start_sequence ();
1153 code = GET_CODE (if_info->cond);
1154 target = noce_emit_cmove (if_info, if_info->x, code,
1155 XEXP (if_info->cond, 0),
1156 XEXP (if_info->cond, 1),
1157 if_info->a, if_info->b);
1159 if (target)
1161 if (target != if_info->x)
1162 noce_emit_move_insn (if_info->x, target);
1164 seq = get_insns ();
1165 unshare_ifcvt_sequence (if_info, seq);
1166 end_sequence ();
1167 emit_insn_before_setloc (seq, if_info->jump,
1168 INSN_LOCATOR (if_info->insn_a));
1169 return TRUE;
1171 else
1173 end_sequence ();
1174 return FALSE;
1178 return FALSE;
1181 /* Try more complex cases involving conditional_move. */
1183 static int
1184 noce_try_cmove_arith (struct noce_if_info *if_info)
1186 rtx a = if_info->a;
1187 rtx b = if_info->b;
1188 rtx x = if_info->x;
1189 rtx insn_a, insn_b;
1190 rtx tmp, target;
1191 int is_mem = 0;
1192 enum rtx_code code;
1194 /* A conditional move from two memory sources is equivalent to a
1195 conditional on their addresses followed by a load. Don't do this
1196 early because it'll screw alias analysis. Note that we've
1197 already checked for no side effects. */
1198 if (! no_new_pseudos && cse_not_expected
1199 && GET_CODE (a) == MEM && GET_CODE (b) == MEM
1200 && BRANCH_COST >= 5)
1202 a = XEXP (a, 0);
1203 b = XEXP (b, 0);
1204 x = gen_reg_rtx (Pmode);
1205 is_mem = 1;
1208 /* ??? We could handle this if we knew that a load from A or B could
1209 not fault. This is also true if we've already loaded
1210 from the address along the path from ENTRY. */
1211 else if (may_trap_p (a) || may_trap_p (b))
1212 return FALSE;
1214 /* if (test) x = a + b; else x = c - d;
1215 => y = a + b;
1216 x = c - d;
1217 if (test)
1218 x = y;
1221 code = GET_CODE (if_info->cond);
1222 insn_a = if_info->insn_a;
1223 insn_b = if_info->insn_b;
1225 /* Possibly rearrange operands to make things come out more natural. */
1226 if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
1228 int reversep = 0;
1229 if (rtx_equal_p (b, x))
1230 reversep = 1;
1231 else if (general_operand (b, GET_MODE (b)))
1232 reversep = 1;
1234 if (reversep)
1236 code = reversed_comparison_code (if_info->cond, if_info->jump);
1237 tmp = a, a = b, b = tmp;
1238 tmp = insn_a, insn_a = insn_b, insn_b = tmp;
1242 start_sequence ();
1244 /* If either operand is complex, load it into a register first.
1245 The best way to do this is to copy the original insn. In this
1246 way we preserve any clobbers etc that the insn may have had.
1247 This is of course not possible in the IS_MEM case. */
1248 if (! general_operand (a, GET_MODE (a)))
1250 rtx set;
1252 if (no_new_pseudos)
1253 goto end_seq_and_fail;
1255 if (is_mem)
1257 tmp = gen_reg_rtx (GET_MODE (a));
1258 tmp = emit_insn (gen_rtx_SET (VOIDmode, tmp, a));
1260 else if (! insn_a)
1261 goto end_seq_and_fail;
1262 else
1264 a = gen_reg_rtx (GET_MODE (a));
1265 tmp = copy_rtx (insn_a);
1266 set = single_set (tmp);
1267 SET_DEST (set) = a;
1268 tmp = emit_insn (PATTERN (tmp));
1270 if (recog_memoized (tmp) < 0)
1271 goto end_seq_and_fail;
1273 if (! general_operand (b, GET_MODE (b)))
1275 rtx set;
1277 if (no_new_pseudos)
1278 goto end_seq_and_fail;
1280 if (is_mem)
1282 tmp = gen_reg_rtx (GET_MODE (b));
1283 tmp = emit_insn (gen_rtx_SET (VOIDmode,
1284 tmp,
1285 b));
1287 else if (! insn_b)
1288 goto end_seq_and_fail;
1289 else
1291 b = gen_reg_rtx (GET_MODE (b));
1292 tmp = copy_rtx (insn_b);
1293 set = single_set (tmp);
1294 SET_DEST (set) = b;
1295 tmp = emit_insn (PATTERN (tmp));
1297 if (recog_memoized (tmp) < 0)
1298 goto end_seq_and_fail;
1301 target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
1302 XEXP (if_info->cond, 1), a, b);
1304 if (! target)
1305 goto end_seq_and_fail;
1307 /* If we're handling a memory for above, emit the load now. */
1308 if (is_mem)
1310 tmp = gen_rtx_MEM (GET_MODE (if_info->x), target);
1312 /* Copy over flags as appropriate. */
1313 if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
1314 MEM_VOLATILE_P (tmp) = 1;
1315 if (MEM_IN_STRUCT_P (if_info->a) && MEM_IN_STRUCT_P (if_info->b))
1316 MEM_IN_STRUCT_P (tmp) = 1;
1317 if (MEM_SCALAR_P (if_info->a) && MEM_SCALAR_P (if_info->b))
1318 MEM_SCALAR_P (tmp) = 1;
1319 if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
1320 set_mem_alias_set (tmp, MEM_ALIAS_SET (if_info->a));
1321 set_mem_align (tmp,
1322 MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
1324 noce_emit_move_insn (if_info->x, tmp);
1326 else if (target != x)
1327 noce_emit_move_insn (x, target);
1329 tmp = get_insns ();
1330 unshare_ifcvt_sequence (if_info, tmp);
1331 end_sequence ();
1332 emit_insn_before_setloc (tmp, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1333 return TRUE;
1335 end_seq_and_fail:
1336 end_sequence ();
1337 return FALSE;
1340 /* For most cases, the simplified condition we found is the best
1341 choice, but this is not the case for the min/max/abs transforms.
1342 For these we wish to know that it is A or B in the condition. */
1344 static rtx
1345 noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
1346 rtx *earliest)
1348 rtx cond, set, insn;
1349 int reverse;
1351 /* If target is already mentioned in the known condition, return it. */
1352 if (reg_mentioned_p (target, if_info->cond))
1354 *earliest = if_info->cond_earliest;
1355 return if_info->cond;
1358 set = pc_set (if_info->jump);
1359 cond = XEXP (SET_SRC (set), 0);
1360 reverse
1361 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1362 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (if_info->jump);
1364 /* If we're looking for a constant, try to make the conditional
1365 have that constant in it. There are two reasons why it may
1366 not have the constant we want:
1368 1. GCC may have needed to put the constant in a register, because
1369 the target can't compare directly against that constant. For
1370 this case, we look for a SET immediately before the comparison
1371 that puts a constant in that register.
1373 2. GCC may have canonicalized the conditional, for example
1374 replacing "if x < 4" with "if x <= 3". We can undo that (or
1375 make equivalent types of changes) to get the constants we need
1376 if they're off by one in the right direction. */
1378 if (GET_CODE (target) == CONST_INT)
1380 enum rtx_code code = GET_CODE (if_info->cond);
1381 rtx op_a = XEXP (if_info->cond, 0);
1382 rtx op_b = XEXP (if_info->cond, 1);
1383 rtx prev_insn;
1385 /* First, look to see if we put a constant in a register. */
1386 prev_insn = PREV_INSN (if_info->cond_earliest);
1387 if (prev_insn
1388 && INSN_P (prev_insn)
1389 && GET_CODE (PATTERN (prev_insn)) == SET)
1391 rtx src = find_reg_equal_equiv_note (prev_insn);
1392 if (!src)
1393 src = SET_SRC (PATTERN (prev_insn));
1394 if (GET_CODE (src) == CONST_INT)
1396 if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
1397 op_a = src;
1398 else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
1399 op_b = src;
1401 if (GET_CODE (op_a) == CONST_INT)
1403 rtx tmp = op_a;
1404 op_a = op_b;
1405 op_b = tmp;
1406 code = swap_condition (code);
1411 /* Now, look to see if we can get the right constant by
1412 adjusting the conditional. */
1413 if (GET_CODE (op_b) == CONST_INT)
1415 HOST_WIDE_INT desired_val = INTVAL (target);
1416 HOST_WIDE_INT actual_val = INTVAL (op_b);
1418 switch (code)
1420 case LT:
1421 if (actual_val == desired_val + 1)
1423 code = LE;
1424 op_b = GEN_INT (desired_val);
1426 break;
1427 case LE:
1428 if (actual_val == desired_val - 1)
1430 code = LT;
1431 op_b = GEN_INT (desired_val);
1433 break;
1434 case GT:
1435 if (actual_val == desired_val - 1)
1437 code = GE;
1438 op_b = GEN_INT (desired_val);
1440 break;
1441 case GE:
1442 if (actual_val == desired_val + 1)
1444 code = GT;
1445 op_b = GEN_INT (desired_val);
1447 break;
1448 default:
1449 break;
1453 /* If we made any changes, generate a new conditional that is
1454 equivalent to what we started with, but has the right
1455 constants in it. */
1456 if (code != GET_CODE (if_info->cond)
1457 || op_a != XEXP (if_info->cond, 0)
1458 || op_b != XEXP (if_info->cond, 1))
1460 cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
1461 *earliest = if_info->cond_earliest;
1462 return cond;
1466 cond = canonicalize_condition (if_info->jump, cond, reverse,
1467 earliest, target, false);
1468 if (! cond || ! reg_mentioned_p (target, cond))
1469 return NULL;
1471 /* We almost certainly searched back to a different place.
1472 Need to re-verify correct lifetimes. */
1474 /* X may not be mentioned in the range (cond_earliest, jump]. */
1475 for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
1476 if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
1477 return NULL;
1479 /* A and B may not be modified in the range [cond_earliest, jump). */
1480 for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
1481 if (INSN_P (insn)
1482 && (modified_in_p (if_info->a, insn)
1483 || modified_in_p (if_info->b, insn)))
1484 return NULL;
1486 return cond;
1489 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1491 static int
1492 noce_try_minmax (struct noce_if_info *if_info)
1494 rtx cond, earliest, target, seq;
1495 enum rtx_code code, op;
1496 int unsignedp;
1498 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1499 if (no_new_pseudos)
1500 return FALSE;
1502 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1503 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1504 to get the target to tell us... */
1505 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x))
1506 || HONOR_NANS (GET_MODE (if_info->x)))
1507 return FALSE;
1509 cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
1510 if (!cond)
1511 return FALSE;
1513 /* Verify the condition is of the form we expect, and canonicalize
1514 the comparison code. */
1515 code = GET_CODE (cond);
1516 if (rtx_equal_p (XEXP (cond, 0), if_info->a))
1518 if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
1519 return FALSE;
1521 else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
1523 if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
1524 return FALSE;
1525 code = swap_condition (code);
1527 else
1528 return FALSE;
1530 /* Determine what sort of operation this is. Note that the code is for
1531 a taken branch, so the code->operation mapping appears backwards. */
1532 switch (code)
1534 case LT:
1535 case LE:
1536 case UNLT:
1537 case UNLE:
1538 op = SMAX;
1539 unsignedp = 0;
1540 break;
1541 case GT:
1542 case GE:
1543 case UNGT:
1544 case UNGE:
1545 op = SMIN;
1546 unsignedp = 0;
1547 break;
1548 case LTU:
1549 case LEU:
1550 op = UMAX;
1551 unsignedp = 1;
1552 break;
1553 case GTU:
1554 case GEU:
1555 op = UMIN;
1556 unsignedp = 1;
1557 break;
1558 default:
1559 return FALSE;
1562 start_sequence ();
1564 target = expand_simple_binop (GET_MODE (if_info->x), op,
1565 if_info->a, if_info->b,
1566 if_info->x, unsignedp, OPTAB_WIDEN);
1567 if (! target)
1569 end_sequence ();
1570 return FALSE;
1572 if (target != if_info->x)
1573 noce_emit_move_insn (if_info->x, target);
1575 seq = get_insns ();
1576 unshare_ifcvt_sequence (if_info, seq);
1577 end_sequence ();
1579 if (seq_contains_jump (seq))
1580 return FALSE;
1582 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1583 if_info->cond = cond;
1584 if_info->cond_earliest = earliest;
1586 return TRUE;
1589 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc. */
1591 static int
1592 noce_try_abs (struct noce_if_info *if_info)
1594 rtx cond, earliest, target, seq, a, b, c;
1595 int negate;
1597 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1598 if (no_new_pseudos)
1599 return FALSE;
1601 /* Recognize A and B as constituting an ABS or NABS. */
1602 a = if_info->a;
1603 b = if_info->b;
1604 if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
1605 negate = 0;
1606 else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
1608 c = a; a = b; b = c;
1609 negate = 1;
1611 else
1612 return FALSE;
1614 cond = noce_get_alt_condition (if_info, b, &earliest);
1615 if (!cond)
1616 return FALSE;
1618 /* Verify the condition is of the form we expect. */
1619 if (rtx_equal_p (XEXP (cond, 0), b))
1620 c = XEXP (cond, 1);
1621 else if (rtx_equal_p (XEXP (cond, 1), b))
1622 c = XEXP (cond, 0);
1623 else
1624 return FALSE;
1626 /* Verify that C is zero. Search backward through the block for
1627 a REG_EQUAL note if necessary. */
1628 if (REG_P (c))
1630 rtx insn, note = NULL;
1631 for (insn = earliest;
1632 insn != BB_HEAD (if_info->test_bb);
1633 insn = PREV_INSN (insn))
1634 if (INSN_P (insn)
1635 && ((note = find_reg_note (insn, REG_EQUAL, c))
1636 || (note = find_reg_note (insn, REG_EQUIV, c))))
1637 break;
1638 if (! note)
1639 return FALSE;
1640 c = XEXP (note, 0);
1642 if (GET_CODE (c) == MEM
1643 && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
1644 && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
1645 c = get_pool_constant (XEXP (c, 0));
1647 /* Work around funny ideas get_condition has wrt canonicalization.
1648 Note that these rtx constants are known to be CONST_INT, and
1649 therefore imply integer comparisons. */
1650 if (c == constm1_rtx && GET_CODE (cond) == GT)
1652 else if (c == const1_rtx && GET_CODE (cond) == LT)
1654 else if (c != CONST0_RTX (GET_MODE (b)))
1655 return FALSE;
1657 /* Determine what sort of operation this is. */
1658 switch (GET_CODE (cond))
1660 case LT:
1661 case LE:
1662 case UNLT:
1663 case UNLE:
1664 negate = !negate;
1665 break;
1666 case GT:
1667 case GE:
1668 case UNGT:
1669 case UNGE:
1670 break;
1671 default:
1672 return FALSE;
1675 start_sequence ();
1677 target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
1679 /* ??? It's a quandary whether cmove would be better here, especially
1680 for integers. Perhaps combine will clean things up. */
1681 if (target && negate)
1682 target = expand_simple_unop (GET_MODE (target), NEG, target, if_info->x, 0);
1684 if (! target)
1686 end_sequence ();
1687 return FALSE;
1690 if (target != if_info->x)
1691 noce_emit_move_insn (if_info->x, target);
1693 seq = get_insns ();
1694 unshare_ifcvt_sequence (if_info, seq);
1695 end_sequence ();
1697 if (seq_contains_jump (seq))
1698 return FALSE;
1700 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1701 if_info->cond = cond;
1702 if_info->cond_earliest = earliest;
1704 return TRUE;
1707 /* Similar to get_condition, only the resulting condition must be
1708 valid at JUMP, instead of at EARLIEST. */
1710 static rtx
1711 noce_get_condition (rtx jump, rtx *earliest)
1713 rtx cond, set, tmp, insn;
1714 bool reverse;
1716 if (! any_condjump_p (jump))
1717 return NULL_RTX;
1719 set = pc_set (jump);
1721 /* If this branches to JUMP_LABEL when the condition is false,
1722 reverse the condition. */
1723 reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1724 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump));
1726 /* If the condition variable is a register and is MODE_INT, accept it. */
1728 cond = XEXP (SET_SRC (set), 0);
1729 tmp = XEXP (cond, 0);
1730 if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT)
1732 *earliest = jump;
1734 if (reverse)
1735 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
1736 GET_MODE (cond), tmp, XEXP (cond, 1));
1737 return cond;
1740 /* Otherwise, fall back on canonicalize_condition to do the dirty
1741 work of manipulating MODE_CC values and COMPARE rtx codes. */
1743 tmp = canonicalize_condition (jump, cond, reverse, earliest, NULL_RTX,
1744 false);
1745 if (!tmp)
1746 return NULL_RTX;
1748 /* We are going to insert code before JUMP, not before EARLIEST.
1749 We must therefore be certain that the given condition is valid
1750 at JUMP by virtue of not having been modified since. */
1751 for (insn = *earliest; insn != jump; insn = NEXT_INSN (insn))
1752 if (INSN_P (insn) && modified_in_p (tmp, insn))
1753 break;
1754 if (insn == jump)
1755 return tmp;
1757 /* The condition was modified. See if we can get a partial result
1758 that doesn't follow all the reversals. Perhaps combine can fold
1759 them together later. */
1760 tmp = XEXP (tmp, 0);
1761 if (!REG_P (tmp) || GET_MODE_CLASS (GET_MODE (tmp)) != MODE_INT)
1762 return NULL_RTX;
1763 tmp = canonicalize_condition (jump, cond, reverse, earliest, tmp,
1764 false);
1765 if (!tmp)
1766 return NULL_RTX;
1768 /* For sanity's sake, re-validate the new result. */
1769 for (insn = *earliest; insn != jump; insn = NEXT_INSN (insn))
1770 if (INSN_P (insn) && modified_in_p (tmp, insn))
1771 return NULL_RTX;
1773 return tmp;
1776 /* Return true if OP is ok for if-then-else processing. */
1778 static int
1779 noce_operand_ok (rtx op)
1781 /* We special-case memories, so handle any of them with
1782 no address side effects. */
1783 if (GET_CODE (op) == MEM)
1784 return ! side_effects_p (XEXP (op, 0));
1786 if (side_effects_p (op))
1787 return FALSE;
1789 return ! may_trap_p (op);
1792 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
1793 without using conditional execution. Return TRUE if we were
1794 successful at converting the block. */
1796 static int
1797 noce_process_if_block (struct ce_if_block * ce_info)
1799 basic_block test_bb = ce_info->test_bb; /* test block */
1800 basic_block then_bb = ce_info->then_bb; /* THEN */
1801 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
1802 struct noce_if_info if_info;
1803 rtx insn_a, insn_b;
1804 rtx set_a, set_b;
1805 rtx orig_x, x, a, b;
1806 rtx jump, cond;
1808 /* We're looking for patterns of the form
1810 (1) if (...) x = a; else x = b;
1811 (2) x = b; if (...) x = a;
1812 (3) if (...) x = a; // as if with an initial x = x.
1814 The later patterns require jumps to be more expensive.
1816 ??? For future expansion, look for multiple X in such patterns. */
1818 /* If test is comprised of && or || elements, don't handle it unless it is
1819 the special case of && elements without an ELSE block. */
1820 if (ce_info->num_multiple_test_blocks)
1822 if (else_bb || ! ce_info->and_and_p)
1823 return FALSE;
1825 ce_info->test_bb = test_bb = ce_info->last_test_bb;
1826 ce_info->num_multiple_test_blocks = 0;
1827 ce_info->num_and_and_blocks = 0;
1828 ce_info->num_or_or_blocks = 0;
1831 /* If this is not a standard conditional jump, we can't parse it. */
1832 jump = BB_END (test_bb);
1833 cond = noce_get_condition (jump, &if_info.cond_earliest);
1834 if (! cond)
1835 return FALSE;
1837 /* If the conditional jump is more than just a conditional
1838 jump, then we can not do if-conversion on this block. */
1839 if (! onlyjump_p (jump))
1840 return FALSE;
1842 /* We must be comparing objects whose modes imply the size. */
1843 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
1844 return FALSE;
1846 /* Look for one of the potential sets. */
1847 insn_a = first_active_insn (then_bb);
1848 if (! insn_a
1849 || insn_a != last_active_insn (then_bb, FALSE)
1850 || (set_a = single_set (insn_a)) == NULL_RTX)
1851 return FALSE;
1853 x = SET_DEST (set_a);
1854 a = SET_SRC (set_a);
1856 /* Look for the other potential set. Make sure we've got equivalent
1857 destinations. */
1858 /* ??? This is overconservative. Storing to two different mems is
1859 as easy as conditionally computing the address. Storing to a
1860 single mem merely requires a scratch memory to use as one of the
1861 destination addresses; often the memory immediately below the
1862 stack pointer is available for this. */
1863 set_b = NULL_RTX;
1864 if (else_bb)
1866 insn_b = first_active_insn (else_bb);
1867 if (! insn_b
1868 || insn_b != last_active_insn (else_bb, FALSE)
1869 || (set_b = single_set (insn_b)) == NULL_RTX
1870 || ! rtx_equal_p (x, SET_DEST (set_b)))
1871 return FALSE;
1873 else
1875 insn_b = prev_nonnote_insn (if_info.cond_earliest);
1876 /* We're going to be moving the evaluation of B down from above
1877 COND_EARLIEST to JUMP. Make sure the relevant data is still
1878 intact. */
1879 if (! insn_b
1880 || GET_CODE (insn_b) != INSN
1881 || (set_b = single_set (insn_b)) == NULL_RTX
1882 || ! rtx_equal_p (x, SET_DEST (set_b))
1883 || reg_overlap_mentioned_p (x, SET_SRC (set_b))
1884 || modified_between_p (SET_SRC (set_b),
1885 PREV_INSN (if_info.cond_earliest), jump)
1886 /* Likewise with X. In particular this can happen when
1887 noce_get_condition looks farther back in the instruction
1888 stream than one might expect. */
1889 || reg_overlap_mentioned_p (x, cond)
1890 || reg_overlap_mentioned_p (x, a)
1891 || modified_between_p (x, PREV_INSN (if_info.cond_earliest), jump))
1892 insn_b = set_b = NULL_RTX;
1895 /* If x has side effects then only the if-then-else form is safe to
1896 convert. But even in that case we would need to restore any notes
1897 (such as REG_INC) at then end. That can be tricky if
1898 noce_emit_move_insn expands to more than one insn, so disable the
1899 optimization entirely for now if there are side effects. */
1900 if (side_effects_p (x))
1901 return FALSE;
1903 b = (set_b ? SET_SRC (set_b) : x);
1905 /* Only operate on register destinations, and even then avoid extending
1906 the lifetime of hard registers on small register class machines. */
1907 orig_x = x;
1908 if (GET_CODE (x) != REG
1909 || (SMALL_REGISTER_CLASSES
1910 && REGNO (x) < FIRST_PSEUDO_REGISTER))
1912 if (no_new_pseudos || GET_MODE (x) == BLKmode)
1913 return FALSE;
1914 x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
1915 ? XEXP (x, 0) : x));
1918 /* Don't operate on sources that may trap or are volatile. */
1919 if (! noce_operand_ok (a) || ! noce_operand_ok (b))
1920 return FALSE;
1922 /* Set up the info block for our subroutines. */
1923 if_info.test_bb = test_bb;
1924 if_info.cond = cond;
1925 if_info.jump = jump;
1926 if_info.insn_a = insn_a;
1927 if_info.insn_b = insn_b;
1928 if_info.x = x;
1929 if_info.a = a;
1930 if_info.b = b;
1932 /* Try optimizations in some approximation of a useful order. */
1933 /* ??? Should first look to see if X is live incoming at all. If it
1934 isn't, we don't need anything but an unconditional set. */
1936 /* Look and see if A and B are really the same. Avoid creating silly
1937 cmove constructs that no one will fix up later. */
1938 if (rtx_equal_p (a, b))
1940 /* If we have an INSN_B, we don't have to create any new rtl. Just
1941 move the instruction that we already have. If we don't have an
1942 INSN_B, that means that A == X, and we've got a noop move. In
1943 that case don't do anything and let the code below delete INSN_A. */
1944 if (insn_b && else_bb)
1946 rtx note;
1948 if (else_bb && insn_b == BB_END (else_bb))
1949 BB_END (else_bb) = PREV_INSN (insn_b);
1950 reorder_insns (insn_b, insn_b, PREV_INSN (jump));
1952 /* If there was a REG_EQUAL note, delete it since it may have been
1953 true due to this insn being after a jump. */
1954 if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
1955 remove_note (insn_b, note);
1957 insn_b = NULL_RTX;
1959 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
1960 x must be executed twice. */
1961 else if (insn_b && side_effects_p (orig_x))
1962 return FALSE;
1964 x = orig_x;
1965 goto success;
1968 /* Disallow the "if (...) x = a;" form (with an implicit "else x = x;")
1969 for most optimizations if writing to x may trap, i.e. its a memory
1970 other than a static var or a stack slot. */
1971 if (! set_b
1972 && GET_CODE (orig_x) == MEM
1973 && ! MEM_NOTRAP_P (orig_x)
1974 && rtx_addr_can_trap_p (XEXP (orig_x, 0)))
1976 if (HAVE_conditional_move)
1978 if (noce_try_cmove (&if_info))
1979 goto success;
1980 if (! HAVE_conditional_execution
1981 && noce_try_cmove_arith (&if_info))
1982 goto success;
1984 return FALSE;
1987 if (noce_try_move (&if_info))
1988 goto success;
1989 if (noce_try_store_flag (&if_info))
1990 goto success;
1991 if (noce_try_minmax (&if_info))
1992 goto success;
1993 if (noce_try_abs (&if_info))
1994 goto success;
1995 if (HAVE_conditional_move
1996 && noce_try_cmove (&if_info))
1997 goto success;
1998 if (! HAVE_conditional_execution)
2000 if (noce_try_store_flag_constants (&if_info))
2001 goto success;
2002 if (noce_try_addcc (&if_info))
2003 goto success;
2004 if (noce_try_store_flag_mask (&if_info))
2005 goto success;
2006 if (HAVE_conditional_move
2007 && noce_try_cmove_arith (&if_info))
2008 goto success;
2011 return FALSE;
2013 success:
2014 /* The original sets may now be killed. */
2015 delete_insn (insn_a);
2017 /* Several special cases here: First, we may have reused insn_b above,
2018 in which case insn_b is now NULL. Second, we want to delete insn_b
2019 if it came from the ELSE block, because follows the now correct
2020 write that appears in the TEST block. However, if we got insn_b from
2021 the TEST block, it may in fact be loading data needed for the comparison.
2022 We'll let life_analysis remove the insn if it's really dead. */
2023 if (insn_b && else_bb)
2024 delete_insn (insn_b);
2026 /* The new insns will have been inserted immediately before the jump. We
2027 should be able to remove the jump with impunity, but the condition itself
2028 may have been modified by gcse to be shared across basic blocks. */
2029 delete_insn (jump);
2031 /* If we used a temporary, fix it up now. */
2032 if (orig_x != x)
2034 start_sequence ();
2035 noce_emit_move_insn (orig_x, x);
2036 insn_b = get_insns ();
2037 set_used_flags (orig_x);
2038 unshare_all_rtl_in_chain (insn_b);
2039 end_sequence ();
2041 emit_insn_after_setloc (insn_b, BB_END (test_bb), INSN_LOCATOR (insn_a));
2044 /* Merge the blocks! */
2045 merge_if_block (ce_info);
2047 return TRUE;
2050 /* Attempt to convert an IF-THEN or IF-THEN-ELSE block into
2051 straight line code. Return true if successful. */
2053 static int
2054 process_if_block (struct ce_if_block * ce_info)
2056 if (! reload_completed
2057 && noce_process_if_block (ce_info))
2058 return TRUE;
2060 if (HAVE_conditional_execution && reload_completed)
2062 /* If we have && and || tests, try to first handle combining the && and
2063 || tests into the conditional code, and if that fails, go back and
2064 handle it without the && and ||, which at present handles the && case
2065 if there was no ELSE block. */
2066 if (cond_exec_process_if_block (ce_info, TRUE))
2067 return TRUE;
2069 if (ce_info->num_multiple_test_blocks)
2071 cancel_changes (0);
2073 if (cond_exec_process_if_block (ce_info, FALSE))
2074 return TRUE;
2078 return FALSE;
2081 /* Merge the blocks and mark for local life update. */
2083 static void
2084 merge_if_block (struct ce_if_block * ce_info)
2086 basic_block test_bb = ce_info->test_bb; /* last test block */
2087 basic_block then_bb = ce_info->then_bb; /* THEN */
2088 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
2089 basic_block join_bb = ce_info->join_bb; /* join block */
2090 basic_block combo_bb;
2092 /* All block merging is done into the lower block numbers. */
2094 combo_bb = test_bb;
2096 /* Merge any basic blocks to handle && and || subtests. Each of
2097 the blocks are on the fallthru path from the predecessor block. */
2098 if (ce_info->num_multiple_test_blocks > 0)
2100 basic_block bb = test_bb;
2101 basic_block last_test_bb = ce_info->last_test_bb;
2102 basic_block fallthru = block_fallthru (bb);
2106 bb = fallthru;
2107 fallthru = block_fallthru (bb);
2108 if (post_dominators)
2109 delete_from_dominance_info (post_dominators, bb);
2110 merge_blocks (combo_bb, bb);
2111 num_true_changes++;
2113 while (bb != last_test_bb);
2116 /* Merge TEST block into THEN block. Normally the THEN block won't have a
2117 label, but it might if there were || tests. That label's count should be
2118 zero, and it normally should be removed. */
2120 if (then_bb)
2122 if (combo_bb->global_live_at_end)
2123 COPY_REG_SET (combo_bb->global_live_at_end,
2124 then_bb->global_live_at_end);
2125 if (post_dominators)
2126 delete_from_dominance_info (post_dominators, then_bb);
2127 merge_blocks (combo_bb, then_bb);
2128 num_true_changes++;
2131 /* The ELSE block, if it existed, had a label. That label count
2132 will almost always be zero, but odd things can happen when labels
2133 get their addresses taken. */
2134 if (else_bb)
2136 if (post_dominators)
2137 delete_from_dominance_info (post_dominators, else_bb);
2138 merge_blocks (combo_bb, else_bb);
2139 num_true_changes++;
2142 /* If there was no join block reported, that means it was not adjacent
2143 to the others, and so we cannot merge them. */
2145 if (! join_bb)
2147 rtx last = BB_END (combo_bb);
2149 /* The outgoing edge for the current COMBO block should already
2150 be correct. Verify this. */
2151 if (combo_bb->succ == NULL_EDGE)
2153 if (find_reg_note (last, REG_NORETURN, NULL))
2155 else if (GET_CODE (last) == INSN
2156 && GET_CODE (PATTERN (last)) == TRAP_IF
2157 && TRAP_CONDITION (PATTERN (last)) == const_true_rtx)
2159 else
2160 abort ();
2163 /* There should still be something at the end of the THEN or ELSE
2164 blocks taking us to our final destination. */
2165 else if (GET_CODE (last) == JUMP_INSN)
2167 else if (combo_bb->succ->dest == EXIT_BLOCK_PTR
2168 && GET_CODE (last) == CALL_INSN
2169 && SIBLING_CALL_P (last))
2171 else if ((combo_bb->succ->flags & EDGE_EH)
2172 && can_throw_internal (last))
2174 else
2175 abort ();
2178 /* The JOIN block may have had quite a number of other predecessors too.
2179 Since we've already merged the TEST, THEN and ELSE blocks, we should
2180 have only one remaining edge from our if-then-else diamond. If there
2181 is more than one remaining edge, it must come from elsewhere. There
2182 may be zero incoming edges if the THEN block didn't actually join
2183 back up (as with a call to abort). */
2184 else if ((join_bb->pred == NULL
2185 || join_bb->pred->pred_next == NULL)
2186 && join_bb != EXIT_BLOCK_PTR)
2188 /* We can merge the JOIN. */
2189 if (combo_bb->global_live_at_end)
2190 COPY_REG_SET (combo_bb->global_live_at_end,
2191 join_bb->global_live_at_end);
2193 if (post_dominators)
2194 delete_from_dominance_info (post_dominators, join_bb);
2195 merge_blocks (combo_bb, join_bb);
2196 num_true_changes++;
2198 else
2200 /* We cannot merge the JOIN. */
2202 /* The outgoing edge for the current COMBO block should already
2203 be correct. Verify this. */
2204 if (combo_bb->succ->succ_next != NULL_EDGE
2205 || combo_bb->succ->dest != join_bb)
2206 abort ();
2208 /* Remove the jump and cruft from the end of the COMBO block. */
2209 if (join_bb != EXIT_BLOCK_PTR)
2210 tidy_fallthru_edge (combo_bb->succ, combo_bb, join_bb);
2213 num_updated_if_blocks++;
2216 /* Find a block ending in a simple IF condition and try to transform it
2217 in some way. When converting a multi-block condition, put the new code
2218 in the first such block and delete the rest. Return a pointer to this
2219 first block if some transformation was done. Return NULL otherwise. */
2221 static basic_block
2222 find_if_header (basic_block test_bb, int pass)
2224 ce_if_block_t ce_info;
2225 edge then_edge;
2226 edge else_edge;
2228 /* The kind of block we're looking for has exactly two successors. */
2229 if ((then_edge = test_bb->succ) == NULL_EDGE
2230 || (else_edge = then_edge->succ_next) == NULL_EDGE
2231 || else_edge->succ_next != NULL_EDGE)
2232 return NULL;
2234 /* Neither edge should be abnormal. */
2235 if ((then_edge->flags & EDGE_COMPLEX)
2236 || (else_edge->flags & EDGE_COMPLEX))
2237 return NULL;
2239 /* Nor exit the loop. */
2240 if ((then_edge->flags & EDGE_LOOP_EXIT)
2241 || (else_edge->flags & EDGE_LOOP_EXIT))
2242 return NULL;
2244 /* The THEN edge is canonically the one that falls through. */
2245 if (then_edge->flags & EDGE_FALLTHRU)
2247 else if (else_edge->flags & EDGE_FALLTHRU)
2249 edge e = else_edge;
2250 else_edge = then_edge;
2251 then_edge = e;
2253 else
2254 /* Otherwise this must be a multiway branch of some sort. */
2255 return NULL;
2257 memset (&ce_info, '\0', sizeof (ce_info));
2258 ce_info.test_bb = test_bb;
2259 ce_info.then_bb = then_edge->dest;
2260 ce_info.else_bb = else_edge->dest;
2261 ce_info.pass = pass;
2263 #ifdef IFCVT_INIT_EXTRA_FIELDS
2264 IFCVT_INIT_EXTRA_FIELDS (&ce_info);
2265 #endif
2267 if (find_if_block (&ce_info))
2268 goto success;
2270 if (HAVE_trap && HAVE_conditional_trap
2271 && find_cond_trap (test_bb, then_edge, else_edge))
2272 goto success;
2274 if (post_dominators
2275 && (! HAVE_conditional_execution || reload_completed))
2277 if (find_if_case_1 (test_bb, then_edge, else_edge))
2278 goto success;
2279 if (find_if_case_2 (test_bb, then_edge, else_edge))
2280 goto success;
2283 return NULL;
2285 success:
2286 if (rtl_dump_file)
2287 fprintf (rtl_dump_file, "Conversion succeeded on pass %d.\n", pass);
2288 return ce_info.test_bb;
2291 /* Return true if a block has two edges, one of which falls through to the next
2292 block, and the other jumps to a specific block, so that we can tell if the
2293 block is part of an && test or an || test. Returns either -1 or the number
2294 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
2296 static int
2297 block_jumps_and_fallthru_p (basic_block cur_bb, basic_block target_bb)
2299 edge cur_edge;
2300 int fallthru_p = FALSE;
2301 int jump_p = FALSE;
2302 rtx insn;
2303 rtx end;
2304 int n_insns = 0;
2306 if (!cur_bb || !target_bb)
2307 return -1;
2309 /* If no edges, obviously it doesn't jump or fallthru. */
2310 if (cur_bb->succ == NULL_EDGE)
2311 return FALSE;
2313 for (cur_edge = cur_bb->succ;
2314 cur_edge != NULL_EDGE;
2315 cur_edge = cur_edge->succ_next)
2317 if (cur_edge->flags & EDGE_COMPLEX)
2318 /* Anything complex isn't what we want. */
2319 return -1;
2321 else if (cur_edge->flags & EDGE_FALLTHRU)
2322 fallthru_p = TRUE;
2324 else if (cur_edge->dest == target_bb)
2325 jump_p = TRUE;
2327 else
2328 return -1;
2331 if ((jump_p & fallthru_p) == 0)
2332 return -1;
2334 /* Don't allow calls in the block, since this is used to group && and ||
2335 together for conditional execution support. ??? we should support
2336 conditional execution support across calls for IA-64 some day, but
2337 for now it makes the code simpler. */
2338 end = BB_END (cur_bb);
2339 insn = BB_HEAD (cur_bb);
2341 while (insn != NULL_RTX)
2343 if (GET_CODE (insn) == CALL_INSN)
2344 return -1;
2346 if (INSN_P (insn)
2347 && GET_CODE (insn) != JUMP_INSN
2348 && GET_CODE (PATTERN (insn)) != USE
2349 && GET_CODE (PATTERN (insn)) != CLOBBER)
2350 n_insns++;
2352 if (insn == end)
2353 break;
2355 insn = NEXT_INSN (insn);
2358 return n_insns;
2361 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
2362 block. If so, we'll try to convert the insns to not require the branch.
2363 Return TRUE if we were successful at converting the block. */
2365 static int
2366 find_if_block (struct ce_if_block * ce_info)
2368 basic_block test_bb = ce_info->test_bb;
2369 basic_block then_bb = ce_info->then_bb;
2370 basic_block else_bb = ce_info->else_bb;
2371 basic_block join_bb = NULL_BLOCK;
2372 edge then_succ = then_bb->succ;
2373 edge else_succ = else_bb->succ;
2374 int then_predecessors;
2375 int else_predecessors;
2376 edge cur_edge;
2377 basic_block next;
2379 ce_info->last_test_bb = test_bb;
2381 /* Discover if any fall through predecessors of the current test basic block
2382 were && tests (which jump to the else block) or || tests (which jump to
2383 the then block). */
2384 if (HAVE_conditional_execution && reload_completed
2385 && test_bb->pred != NULL_EDGE
2386 && test_bb->pred->pred_next == NULL_EDGE
2387 && test_bb->pred->flags == EDGE_FALLTHRU)
2389 basic_block bb = test_bb->pred->src;
2390 basic_block target_bb;
2391 int max_insns = MAX_CONDITIONAL_EXECUTE;
2392 int n_insns;
2394 /* Determine if the preceding block is an && or || block. */
2395 if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0)
2397 ce_info->and_and_p = TRUE;
2398 target_bb = else_bb;
2400 else if ((n_insns = block_jumps_and_fallthru_p (bb, then_bb)) >= 0)
2402 ce_info->and_and_p = FALSE;
2403 target_bb = then_bb;
2405 else
2406 target_bb = NULL_BLOCK;
2408 if (target_bb && n_insns <= max_insns)
2410 int total_insns = 0;
2411 int blocks = 0;
2413 ce_info->last_test_bb = test_bb;
2415 /* Found at least one && or || block, look for more. */
2418 ce_info->test_bb = test_bb = bb;
2419 total_insns += n_insns;
2420 blocks++;
2422 if (bb->pred == NULL_EDGE || bb->pred->pred_next != NULL_EDGE)
2423 break;
2425 bb = bb->pred->src;
2426 n_insns = block_jumps_and_fallthru_p (bb, target_bb);
2428 while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
2430 ce_info->num_multiple_test_blocks = blocks;
2431 ce_info->num_multiple_test_insns = total_insns;
2433 if (ce_info->and_and_p)
2434 ce_info->num_and_and_blocks = blocks;
2435 else
2436 ce_info->num_or_or_blocks = blocks;
2440 /* Count the number of edges the THEN and ELSE blocks have. */
2441 then_predecessors = 0;
2442 for (cur_edge = then_bb->pred;
2443 cur_edge != NULL_EDGE;
2444 cur_edge = cur_edge->pred_next)
2446 then_predecessors++;
2447 if (cur_edge->flags & EDGE_COMPLEX)
2448 return FALSE;
2451 else_predecessors = 0;
2452 for (cur_edge = else_bb->pred;
2453 cur_edge != NULL_EDGE;
2454 cur_edge = cur_edge->pred_next)
2456 else_predecessors++;
2457 if (cur_edge->flags & EDGE_COMPLEX)
2458 return FALSE;
2461 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
2462 other than any || blocks which jump to the THEN block. */
2463 if ((then_predecessors - ce_info->num_or_or_blocks) != 1)
2464 return FALSE;
2466 /* The THEN block of an IF-THEN combo must have zero or one successors. */
2467 if (then_succ != NULL_EDGE
2468 && (then_succ->succ_next != NULL_EDGE
2469 || (then_succ->flags & EDGE_COMPLEX)
2470 || (flow2_completed && tablejump_p (BB_END (then_bb), NULL, NULL))))
2471 return FALSE;
2473 /* If the THEN block has no successors, conditional execution can still
2474 make a conditional call. Don't do this unless the ELSE block has
2475 only one incoming edge -- the CFG manipulation is too ugly otherwise.
2476 Check for the last insn of the THEN block being an indirect jump, which
2477 is listed as not having any successors, but confuses the rest of the CE
2478 code processing. ??? we should fix this in the future. */
2479 if (then_succ == NULL)
2481 if (else_bb->pred->pred_next == NULL_EDGE)
2483 rtx last_insn = BB_END (then_bb);
2485 while (last_insn
2486 && GET_CODE (last_insn) == NOTE
2487 && last_insn != BB_HEAD (then_bb))
2488 last_insn = PREV_INSN (last_insn);
2490 if (last_insn
2491 && GET_CODE (last_insn) == JUMP_INSN
2492 && ! simplejump_p (last_insn))
2493 return FALSE;
2495 join_bb = else_bb;
2496 else_bb = NULL_BLOCK;
2498 else
2499 return FALSE;
2502 /* If the THEN block's successor is the other edge out of the TEST block,
2503 then we have an IF-THEN combo without an ELSE. */
2504 else if (then_succ->dest == else_bb)
2506 join_bb = else_bb;
2507 else_bb = NULL_BLOCK;
2510 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
2511 has exactly one predecessor and one successor, and the outgoing edge
2512 is not complex, then we have an IF-THEN-ELSE combo. */
2513 else if (else_succ != NULL_EDGE
2514 && then_succ->dest == else_succ->dest
2515 && else_bb->pred->pred_next == NULL_EDGE
2516 && else_succ->succ_next == NULL_EDGE
2517 && ! (else_succ->flags & EDGE_COMPLEX)
2518 && ! (flow2_completed && tablejump_p (BB_END (else_bb), NULL, NULL)))
2519 join_bb = else_succ->dest;
2521 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
2522 else
2523 return FALSE;
2525 num_possible_if_blocks++;
2527 if (rtl_dump_file)
2529 fprintf (rtl_dump_file, "\nIF-THEN%s block found, pass %d, start block %d [insn %d], then %d [%d]",
2530 (else_bb) ? "-ELSE" : "",
2531 ce_info->pass,
2532 test_bb->index, (BB_HEAD (test_bb)) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
2533 then_bb->index, (BB_HEAD (then_bb)) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
2535 if (else_bb)
2536 fprintf (rtl_dump_file, ", else %d [%d]",
2537 else_bb->index, (BB_HEAD (else_bb)) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
2539 fprintf (rtl_dump_file, ", join %d [%d]",
2540 join_bb->index, (BB_HEAD (join_bb)) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
2542 if (ce_info->num_multiple_test_blocks > 0)
2543 fprintf (rtl_dump_file, ", %d %s block%s last test %d [%d]",
2544 ce_info->num_multiple_test_blocks,
2545 (ce_info->and_and_p) ? "&&" : "||",
2546 (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
2547 ce_info->last_test_bb->index,
2548 ((BB_HEAD (ce_info->last_test_bb))
2549 ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
2550 : -1));
2552 fputc ('\n', rtl_dump_file);
2555 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
2556 first condition for free, since we've already asserted that there's a
2557 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
2558 we checked the FALLTHRU flag, those are already adjacent to the last IF
2559 block. */
2560 /* ??? As an enhancement, move the ELSE block. Have to deal with
2561 BLOCK notes, if by no other means than aborting the merge if they
2562 exist. Sticky enough I don't want to think about it now. */
2563 next = then_bb;
2564 if (else_bb && (next = next->next_bb) != else_bb)
2565 return FALSE;
2566 if ((next = next->next_bb) != join_bb && join_bb != EXIT_BLOCK_PTR)
2568 if (else_bb)
2569 join_bb = NULL;
2570 else
2571 return FALSE;
2574 /* Do the real work. */
2575 ce_info->else_bb = else_bb;
2576 ce_info->join_bb = join_bb;
2578 return process_if_block (ce_info);
2581 /* Convert a branch over a trap, or a branch
2582 to a trap, into a conditional trap. */
2584 static int
2585 find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
2587 basic_block then_bb = then_edge->dest;
2588 basic_block else_bb = else_edge->dest;
2589 basic_block other_bb, trap_bb;
2590 rtx trap, jump, cond, cond_earliest, seq;
2591 enum rtx_code code;
2593 /* Locate the block with the trap instruction. */
2594 /* ??? While we look for no successors, we really ought to allow
2595 EH successors. Need to fix merge_if_block for that to work. */
2596 if ((trap = block_has_only_trap (then_bb)) != NULL)
2597 trap_bb = then_bb, other_bb = else_bb;
2598 else if ((trap = block_has_only_trap (else_bb)) != NULL)
2599 trap_bb = else_bb, other_bb = then_bb;
2600 else
2601 return FALSE;
2603 if (rtl_dump_file)
2605 fprintf (rtl_dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
2606 test_bb->index, trap_bb->index);
2609 /* If this is not a standard conditional jump, we can't parse it. */
2610 jump = BB_END (test_bb);
2611 cond = noce_get_condition (jump, &cond_earliest);
2612 if (! cond)
2613 return FALSE;
2615 /* If the conditional jump is more than just a conditional jump, then
2616 we can not do if-conversion on this block. */
2617 if (! onlyjump_p (jump))
2618 return FALSE;
2620 /* We must be comparing objects whose modes imply the size. */
2621 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
2622 return FALSE;
2624 /* Reverse the comparison code, if necessary. */
2625 code = GET_CODE (cond);
2626 if (then_bb == trap_bb)
2628 code = reversed_comparison_code (cond, jump);
2629 if (code == UNKNOWN)
2630 return FALSE;
2633 /* Attempt to generate the conditional trap. */
2634 seq = gen_cond_trap (code, XEXP (cond, 0),
2635 XEXP (cond, 1),
2636 TRAP_CODE (PATTERN (trap)));
2637 if (seq == NULL)
2638 return FALSE;
2640 num_true_changes++;
2642 /* Emit the new insns before cond_earliest. */
2643 emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATOR (trap));
2645 /* Delete the trap block if possible. */
2646 remove_edge (trap_bb == then_bb ? then_edge : else_edge);
2647 if (trap_bb->pred == NULL)
2649 if (post_dominators)
2650 delete_from_dominance_info (post_dominators, trap_bb);
2651 delete_block (trap_bb);
2654 /* If the non-trap block and the test are now adjacent, merge them.
2655 Otherwise we must insert a direct branch. */
2656 if (test_bb->next_bb == other_bb)
2658 struct ce_if_block new_ce_info;
2659 delete_insn (jump);
2660 memset (&new_ce_info, '\0', sizeof (new_ce_info));
2661 new_ce_info.test_bb = test_bb;
2662 new_ce_info.then_bb = NULL;
2663 new_ce_info.else_bb = NULL;
2664 new_ce_info.join_bb = other_bb;
2665 merge_if_block (&new_ce_info);
2667 else
2669 rtx lab, newjump;
2671 lab = JUMP_LABEL (jump);
2672 newjump = emit_jump_insn_after (gen_jump (lab), jump);
2673 LABEL_NUSES (lab) += 1;
2674 JUMP_LABEL (newjump) = lab;
2675 emit_barrier_after (newjump);
2677 delete_insn (jump);
2680 return TRUE;
2683 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
2684 return it. */
2686 static rtx
2687 block_has_only_trap (basic_block bb)
2689 rtx trap;
2691 /* We're not the exit block. */
2692 if (bb == EXIT_BLOCK_PTR)
2693 return NULL_RTX;
2695 /* The block must have no successors. */
2696 if (bb->succ)
2697 return NULL_RTX;
2699 /* The only instruction in the THEN block must be the trap. */
2700 trap = first_active_insn (bb);
2701 if (! (trap == BB_END (bb)
2702 && GET_CODE (PATTERN (trap)) == TRAP_IF
2703 && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
2704 return NULL_RTX;
2706 return trap;
2709 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
2710 transformable, but not necessarily the other. There need be no
2711 JOIN block.
2713 Return TRUE if we were successful at converting the block.
2715 Cases we'd like to look at:
2718 if (test) goto over; // x not live
2719 x = a;
2720 goto label;
2721 over:
2723 becomes
2725 x = a;
2726 if (! test) goto label;
2729 if (test) goto E; // x not live
2730 x = big();
2731 goto L;
2733 x = b;
2734 goto M;
2736 becomes
2738 x = b;
2739 if (test) goto M;
2740 x = big();
2741 goto L;
2743 (3) // This one's really only interesting for targets that can do
2744 // multiway branching, e.g. IA-64 BBB bundles. For other targets
2745 // it results in multiple branches on a cache line, which often
2746 // does not sit well with predictors.
2748 if (test1) goto E; // predicted not taken
2749 x = a;
2750 if (test2) goto F;
2753 x = b;
2756 becomes
2758 x = a;
2759 if (test1) goto E;
2760 if (test2) goto F;
2762 Notes:
2764 (A) Don't do (2) if the branch is predicted against the block we're
2765 eliminating. Do it anyway if we can eliminate a branch; this requires
2766 that the sole successor of the eliminated block postdominate the other
2767 side of the if.
2769 (B) With CE, on (3) we can steal from both sides of the if, creating
2771 if (test1) x = a;
2772 if (!test1) x = b;
2773 if (test1) goto J;
2774 if (test2) goto F;
2778 Again, this is most useful if J postdominates.
2780 (C) CE substitutes for helpful life information.
2782 (D) These heuristics need a lot of work. */
2784 /* Tests for case 1 above. */
2786 static int
2787 find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
2789 basic_block then_bb = then_edge->dest;
2790 basic_block else_bb = else_edge->dest, new_bb;
2791 edge then_succ = then_bb->succ;
2792 int then_bb_index;
2794 /* THEN has one successor. */
2795 if (!then_succ || then_succ->succ_next != NULL)
2796 return FALSE;
2798 /* THEN does not fall through, but is not strange either. */
2799 if (then_succ->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
2800 return FALSE;
2802 /* THEN has one predecessor. */
2803 if (then_bb->pred->pred_next != NULL)
2804 return FALSE;
2806 /* THEN must do something. */
2807 if (forwarder_block_p (then_bb))
2808 return FALSE;
2810 num_possible_if_blocks++;
2811 if (rtl_dump_file)
2812 fprintf (rtl_dump_file,
2813 "\nIF-CASE-1 found, start %d, then %d\n",
2814 test_bb->index, then_bb->index);
2816 /* THEN is small. */
2817 if (count_bb_insns (then_bb) > BRANCH_COST)
2818 return FALSE;
2820 /* Registers set are dead, or are predicable. */
2821 if (! dead_or_predicable (test_bb, then_bb, else_bb,
2822 then_bb->succ->dest, 1))
2823 return FALSE;
2825 /* Conversion went ok, including moving the insns and fixing up the
2826 jump. Adjust the CFG to match. */
2828 bitmap_operation (test_bb->global_live_at_end,
2829 else_bb->global_live_at_start,
2830 then_bb->global_live_at_end, BITMAP_IOR);
2832 new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb), else_bb);
2833 then_bb_index = then_bb->index;
2834 if (post_dominators)
2835 delete_from_dominance_info (post_dominators, then_bb);
2836 delete_block (then_bb);
2838 /* Make rest of code believe that the newly created block is the THEN_BB
2839 block we removed. */
2840 if (new_bb)
2842 new_bb->index = then_bb_index;
2843 BASIC_BLOCK (then_bb_index) = new_bb;
2844 if (post_dominators)
2845 add_to_dominance_info (post_dominators, new_bb);
2847 /* We've possibly created jump to next insn, cleanup_cfg will solve that
2848 later. */
2850 num_true_changes++;
2851 num_updated_if_blocks++;
2853 return TRUE;
2856 /* Test for case 2 above. */
2858 static int
2859 find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
2861 basic_block then_bb = then_edge->dest;
2862 basic_block else_bb = else_edge->dest;
2863 edge else_succ = else_bb->succ;
2864 rtx note;
2866 /* ELSE has one successor. */
2867 if (!else_succ || else_succ->succ_next != NULL)
2868 return FALSE;
2870 /* ELSE outgoing edge is not complex. */
2871 if (else_succ->flags & EDGE_COMPLEX)
2872 return FALSE;
2874 /* ELSE has one predecessor. */
2875 if (else_bb->pred->pred_next != NULL)
2876 return FALSE;
2878 /* THEN is not EXIT. */
2879 if (then_bb->index < 0)
2880 return FALSE;
2882 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
2883 note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
2884 if (note && INTVAL (XEXP (note, 0)) >= REG_BR_PROB_BASE / 2)
2886 else if (else_succ->dest->index < 0
2887 || dominated_by_p (post_dominators, then_bb,
2888 else_succ->dest))
2890 else
2891 return FALSE;
2893 num_possible_if_blocks++;
2894 if (rtl_dump_file)
2895 fprintf (rtl_dump_file,
2896 "\nIF-CASE-2 found, start %d, else %d\n",
2897 test_bb->index, else_bb->index);
2899 /* ELSE is small. */
2900 if (count_bb_insns (else_bb) > BRANCH_COST)
2901 return FALSE;
2903 /* Registers set are dead, or are predicable. */
2904 if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ->dest, 0))
2905 return FALSE;
2907 /* Conversion went ok, including moving the insns and fixing up the
2908 jump. Adjust the CFG to match. */
2910 bitmap_operation (test_bb->global_live_at_end,
2911 then_bb->global_live_at_start,
2912 else_bb->global_live_at_end, BITMAP_IOR);
2914 if (post_dominators)
2915 delete_from_dominance_info (post_dominators, else_bb);
2916 delete_block (else_bb);
2918 num_true_changes++;
2919 num_updated_if_blocks++;
2921 /* ??? We may now fallthru from one of THEN's successors into a join
2922 block. Rerun cleanup_cfg? Examine things manually? Wait? */
2924 return TRUE;
2927 /* A subroutine of dead_or_predicable called through for_each_rtx.
2928 Return 1 if a memory is found. */
2930 static int
2931 find_memory (rtx *px, void *data ATTRIBUTE_UNUSED)
2933 return GET_CODE (*px) == MEM;
2936 /* Used by the code above to perform the actual rtl transformations.
2937 Return TRUE if successful.
2939 TEST_BB is the block containing the conditional branch. MERGE_BB
2940 is the block containing the code to manipulate. NEW_DEST is the
2941 label TEST_BB should be branching to after the conversion.
2942 REVERSEP is true if the sense of the branch should be reversed. */
2944 static int
2945 dead_or_predicable (basic_block test_bb, basic_block merge_bb,
2946 basic_block other_bb, basic_block new_dest, int reversep)
2948 rtx head, end, jump, earliest, old_dest, new_label = NULL_RTX;
2950 jump = BB_END (test_bb);
2952 /* Find the extent of the real code in the merge block. */
2953 head = BB_HEAD (merge_bb);
2954 end = BB_END (merge_bb);
2956 if (GET_CODE (head) == CODE_LABEL)
2957 head = NEXT_INSN (head);
2958 if (GET_CODE (head) == NOTE)
2960 if (head == end)
2962 head = end = NULL_RTX;
2963 goto no_body;
2965 head = NEXT_INSN (head);
2968 if (GET_CODE (end) == JUMP_INSN)
2970 if (head == end)
2972 head = end = NULL_RTX;
2973 goto no_body;
2975 end = PREV_INSN (end);
2978 /* Disable handling dead code by conditional execution if the machine needs
2979 to do anything funny with the tests, etc. */
2980 #ifndef IFCVT_MODIFY_TESTS
2981 if (HAVE_conditional_execution)
2983 /* In the conditional execution case, we have things easy. We know
2984 the condition is reversible. We don't have to check life info
2985 because we're going to conditionally execute the code anyway.
2986 All that's left is making sure the insns involved can actually
2987 be predicated. */
2989 rtx cond, prob_val;
2991 cond = cond_exec_get_condition (jump);
2992 if (! cond)
2993 return FALSE;
2995 prob_val = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
2996 if (prob_val)
2997 prob_val = XEXP (prob_val, 0);
2999 if (reversep)
3001 enum rtx_code rev = reversed_comparison_code (cond, jump);
3002 if (rev == UNKNOWN)
3003 return FALSE;
3004 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
3005 XEXP (cond, 1));
3006 if (prob_val)
3007 prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (prob_val));
3010 if (! cond_exec_process_insns ((ce_if_block_t *)0, head, end, cond,
3011 prob_val, 0))
3012 goto cancel;
3014 earliest = jump;
3016 else
3017 #endif
3019 /* In the non-conditional execution case, we have to verify that there
3020 are no trapping operations, no calls, no references to memory, and
3021 that any registers modified are dead at the branch site. */
3023 rtx insn, cond, prev;
3024 regset_head merge_set_head, tmp_head, test_live_head, test_set_head;
3025 regset merge_set, tmp, test_live, test_set;
3026 struct propagate_block_info *pbi;
3027 int i, fail = 0;
3029 /* Check for no calls or trapping operations. */
3030 for (insn = head; ; insn = NEXT_INSN (insn))
3032 if (GET_CODE (insn) == CALL_INSN)
3033 return FALSE;
3034 if (INSN_P (insn))
3036 if (may_trap_p (PATTERN (insn)))
3037 return FALSE;
3039 /* ??? Even non-trapping memories such as stack frame
3040 references must be avoided. For stores, we collect
3041 no lifetime info; for reads, we'd have to assert
3042 true_dependence false against every store in the
3043 TEST range. */
3044 if (for_each_rtx (&PATTERN (insn), find_memory, NULL))
3045 return FALSE;
3047 if (insn == end)
3048 break;
3051 if (! any_condjump_p (jump))
3052 return FALSE;
3054 /* Find the extent of the conditional. */
3055 cond = noce_get_condition (jump, &earliest);
3056 if (! cond)
3057 return FALSE;
3059 /* Collect:
3060 MERGE_SET = set of registers set in MERGE_BB
3061 TEST_LIVE = set of registers live at EARLIEST
3062 TEST_SET = set of registers set between EARLIEST and the
3063 end of the block. */
3065 tmp = INITIALIZE_REG_SET (tmp_head);
3066 merge_set = INITIALIZE_REG_SET (merge_set_head);
3067 test_live = INITIALIZE_REG_SET (test_live_head);
3068 test_set = INITIALIZE_REG_SET (test_set_head);
3070 /* ??? bb->local_set is only valid during calculate_global_regs_live,
3071 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
3072 since we've already asserted that MERGE_BB is small. */
3073 propagate_block (merge_bb, tmp, merge_set, merge_set, 0);
3075 /* For small register class machines, don't lengthen lifetimes of
3076 hard registers before reload. */
3077 if (SMALL_REGISTER_CLASSES && ! reload_completed)
3079 EXECUTE_IF_SET_IN_BITMAP
3080 (merge_set, 0, i,
3082 if (i < FIRST_PSEUDO_REGISTER
3083 && ! fixed_regs[i]
3084 && ! global_regs[i])
3085 fail = 1;
3089 /* For TEST, we're interested in a range of insns, not a whole block.
3090 Moreover, we're interested in the insns live from OTHER_BB. */
3092 COPY_REG_SET (test_live, other_bb->global_live_at_start);
3093 pbi = init_propagate_block_info (test_bb, test_live, test_set, test_set,
3096 for (insn = jump; ; insn = prev)
3098 prev = propagate_one_insn (pbi, insn);
3099 if (insn == earliest)
3100 break;
3103 free_propagate_block_info (pbi);
3105 /* We can perform the transformation if
3106 MERGE_SET & (TEST_SET | TEST_LIVE)
3108 TEST_SET & merge_bb->global_live_at_start
3109 are empty. */
3111 bitmap_operation (tmp, test_set, test_live, BITMAP_IOR);
3112 bitmap_operation (tmp, tmp, merge_set, BITMAP_AND);
3113 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
3115 bitmap_operation (tmp, test_set, merge_bb->global_live_at_start,
3116 BITMAP_AND);
3117 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
3119 FREE_REG_SET (tmp);
3120 FREE_REG_SET (merge_set);
3121 FREE_REG_SET (test_live);
3122 FREE_REG_SET (test_set);
3124 if (fail)
3125 return FALSE;
3128 no_body:
3129 /* We don't want to use normal invert_jump or redirect_jump because
3130 we don't want to delete_insn called. Also, we want to do our own
3131 change group management. */
3133 old_dest = JUMP_LABEL (jump);
3134 if (other_bb != new_dest)
3136 new_label = block_label (new_dest);
3137 if (reversep
3138 ? ! invert_jump_1 (jump, new_label)
3139 : ! redirect_jump_1 (jump, new_label))
3140 goto cancel;
3143 if (! apply_change_group ())
3144 return FALSE;
3146 if (other_bb != new_dest)
3148 if (old_dest)
3149 LABEL_NUSES (old_dest) -= 1;
3150 if (new_label)
3151 LABEL_NUSES (new_label) += 1;
3152 JUMP_LABEL (jump) = new_label;
3153 if (reversep)
3154 invert_br_probabilities (jump);
3156 redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
3157 if (reversep)
3159 gcov_type count, probability;
3160 count = BRANCH_EDGE (test_bb)->count;
3161 BRANCH_EDGE (test_bb)->count = FALLTHRU_EDGE (test_bb)->count;
3162 FALLTHRU_EDGE (test_bb)->count = count;
3163 probability = BRANCH_EDGE (test_bb)->probability;
3164 BRANCH_EDGE (test_bb)->probability
3165 = FALLTHRU_EDGE (test_bb)->probability;
3166 FALLTHRU_EDGE (test_bb)->probability = probability;
3167 update_br_prob_note (test_bb);
3171 /* Move the insns out of MERGE_BB to before the branch. */
3172 if (head != NULL)
3174 if (end == BB_END (merge_bb))
3175 BB_END (merge_bb) = PREV_INSN (head);
3177 if (squeeze_notes (&head, &end))
3178 return TRUE;
3180 reorder_insns (head, end, PREV_INSN (earliest));
3183 /* Remove the jump and edge if we can. */
3184 if (other_bb == new_dest)
3186 delete_insn (jump);
3187 remove_edge (BRANCH_EDGE (test_bb));
3188 /* ??? Can't merge blocks here, as then_bb is still in use.
3189 At minimum, the merge will get done just before bb-reorder. */
3192 return TRUE;
3194 cancel:
3195 cancel_changes (0);
3196 return FALSE;
3199 /* Main entry point for all if-conversion. */
3201 void
3202 if_convert (int x_life_data_ok)
3204 basic_block bb;
3205 int pass;
3207 num_possible_if_blocks = 0;
3208 num_updated_if_blocks = 0;
3209 num_true_changes = 0;
3210 life_data_ok = (x_life_data_ok != 0);
3212 if (! (* targetm.cannot_modify_jumps_p) ())
3213 mark_loop_exit_edges ();
3215 /* Free up basic_block_for_insn so that we don't have to keep it
3216 up to date, either here or in merge_blocks. */
3217 free_basic_block_vars (1);
3219 /* Compute postdominators if we think we'll use them. */
3220 post_dominators = NULL;
3221 if (HAVE_conditional_execution || life_data_ok)
3223 post_dominators = calculate_dominance_info (CDI_POST_DOMINATORS);
3225 if (life_data_ok)
3226 clear_bb_flags ();
3228 /* Go through each of the basic blocks looking for things to convert. If we
3229 have conditional execution, we make multiple passes to allow us to handle
3230 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
3231 pass = 0;
3234 cond_exec_changed_p = FALSE;
3235 pass++;
3237 #ifdef IFCVT_MULTIPLE_DUMPS
3238 if (rtl_dump_file && pass > 1)
3239 fprintf (rtl_dump_file, "\n\n========== Pass %d ==========\n", pass);
3240 #endif
3242 FOR_EACH_BB (bb)
3244 basic_block new_bb;
3245 while ((new_bb = find_if_header (bb, pass)))
3246 bb = new_bb;
3249 #ifdef IFCVT_MULTIPLE_DUMPS
3250 if (rtl_dump_file && cond_exec_changed_p)
3251 print_rtl_with_bb (rtl_dump_file, get_insns ());
3252 #endif
3254 while (cond_exec_changed_p);
3256 #ifdef IFCVT_MULTIPLE_DUMPS
3257 if (rtl_dump_file)
3258 fprintf (rtl_dump_file, "\n\n========== no more changes\n");
3259 #endif
3261 if (post_dominators)
3262 free_dominance_info (post_dominators);
3264 if (rtl_dump_file)
3265 fflush (rtl_dump_file);
3267 clear_aux_for_blocks ();
3269 /* Rebuild life info for basic blocks that require it. */
3270 if (num_true_changes && life_data_ok)
3272 /* If we allocated new pseudos, we must resize the array for sched1. */
3273 if (max_regno < max_reg_num ())
3275 max_regno = max_reg_num ();
3276 allocate_reg_info (max_regno, FALSE, FALSE);
3278 update_life_info_in_dirty_blocks (UPDATE_LIFE_GLOBAL_RM_NOTES,
3279 PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE
3280 | PROP_KILL_DEAD_CODE);
3283 /* Write the final stats. */
3284 if (rtl_dump_file && num_possible_if_blocks > 0)
3286 fprintf (rtl_dump_file,
3287 "\n%d possible IF blocks searched.\n",
3288 num_possible_if_blocks);
3289 fprintf (rtl_dump_file,
3290 "%d IF blocks converted.\n",
3291 num_updated_if_blocks);
3292 fprintf (rtl_dump_file,
3293 "%d true changes made.\n\n\n",
3294 num_true_changes);
3297 #ifdef ENABLE_CHECKING
3298 verify_flow_info ();
3299 #endif