[ARM] Fix CLZ_DEFINED_VALUE_AT_ZERO for vector modes
[official-gcc.git] / gcc / ifcvt.c
blob772b1841584350b65aa61566cada4e5002606ec1
1 /* If-conversion support.
2 Copyright (C) 2000-2014 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 3, 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
25 #include "rtl.h"
26 #include "regs.h"
27 #include "hashtab.h"
28 #include "hash-set.h"
29 #include "vec.h"
30 #include "machmode.h"
31 #include "hard-reg-set.h"
32 #include "input.h"
33 #include "function.h"
34 #include "flags.h"
35 #include "insn-config.h"
36 #include "recog.h"
37 #include "except.h"
38 #include "predict.h"
39 #include "dominance.h"
40 #include "cfg.h"
41 #include "cfgrtl.h"
42 #include "cfganal.h"
43 #include "cfgcleanup.h"
44 #include "basic-block.h"
45 #include "expr.h"
46 #include "output.h"
47 #include "insn-codes.h"
48 #include "optabs.h"
49 #include "diagnostic-core.h"
50 #include "tm_p.h"
51 #include "cfgloop.h"
52 #include "target.h"
53 #include "tree-pass.h"
54 #include "df.h"
55 #include "dbgcnt.h"
56 #include "shrink-wrap.h"
57 #include "ifcvt.h"
59 #ifndef HAVE_conditional_move
60 #define HAVE_conditional_move 0
61 #endif
62 #ifndef HAVE_incscc
63 #define HAVE_incscc 0
64 #endif
65 #ifndef HAVE_decscc
66 #define HAVE_decscc 0
67 #endif
68 #ifndef HAVE_trap
69 #define HAVE_trap 0
70 #endif
72 #ifndef MAX_CONDITIONAL_EXECUTE
73 #define MAX_CONDITIONAL_EXECUTE \
74 (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
75 + 1)
76 #endif
78 #define IFCVT_MULTIPLE_DUMPS 1
80 #define NULL_BLOCK ((basic_block) NULL)
82 /* True if after combine pass. */
83 static bool ifcvt_after_combine;
85 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
86 static int num_possible_if_blocks;
88 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
89 execution. */
90 static int num_updated_if_blocks;
92 /* # of changes made. */
93 static int num_true_changes;
95 /* Whether conditional execution changes were made. */
96 static int cond_exec_changed_p;
98 /* Forward references. */
99 static int count_bb_insns (const_basic_block);
100 static bool cheap_bb_rtx_cost_p (const_basic_block, int, int);
101 static rtx_insn *first_active_insn (basic_block);
102 static rtx_insn *last_active_insn (basic_block, int);
103 static rtx_insn *find_active_insn_before (basic_block, rtx_insn *);
104 static rtx_insn *find_active_insn_after (basic_block, rtx_insn *);
105 static basic_block block_fallthru (basic_block);
106 static int cond_exec_process_insns (ce_if_block *, rtx_insn *, rtx, rtx, int,
107 int);
108 static rtx cond_exec_get_condition (rtx_insn *);
109 static rtx noce_get_condition (rtx_insn *, rtx_insn **, bool);
110 static int noce_operand_ok (const_rtx);
111 static void merge_if_block (ce_if_block *);
112 static int find_cond_trap (basic_block, edge, edge);
113 static basic_block find_if_header (basic_block, int);
114 static int block_jumps_and_fallthru_p (basic_block, basic_block);
115 static int noce_find_if_block (basic_block, edge, edge, int);
116 static int cond_exec_find_if_block (ce_if_block *);
117 static int find_if_case_1 (basic_block, edge, edge);
118 static int find_if_case_2 (basic_block, edge, edge);
119 static int dead_or_predicable (basic_block, basic_block, basic_block,
120 edge, int);
121 static void noce_emit_move_insn (rtx, rtx);
122 static rtx_insn *block_has_only_trap (basic_block);
124 /* Count the number of non-jump active insns in BB. */
126 static int
127 count_bb_insns (const_basic_block bb)
129 int count = 0;
130 rtx_insn *insn = BB_HEAD (bb);
132 while (1)
134 if (active_insn_p (insn) && !JUMP_P (insn))
135 count++;
137 if (insn == BB_END (bb))
138 break;
139 insn = NEXT_INSN (insn);
142 return count;
145 /* Determine whether the total insn_rtx_cost on non-jump insns in
146 basic block BB is less than MAX_COST. This function returns
147 false if the cost of any instruction could not be estimated.
149 The cost of the non-jump insns in BB is scaled by REG_BR_PROB_BASE
150 as those insns are being speculated. MAX_COST is scaled with SCALE
151 plus a small fudge factor. */
153 static bool
154 cheap_bb_rtx_cost_p (const_basic_block bb, int scale, int max_cost)
156 int count = 0;
157 rtx_insn *insn = BB_HEAD (bb);
158 bool speed = optimize_bb_for_speed_p (bb);
160 /* Set scale to REG_BR_PROB_BASE to void the identical scaling
161 applied to insn_rtx_cost when optimizing for size. Only do
162 this after combine because if-conversion might interfere with
163 passes before combine.
165 Use optimize_function_for_speed_p instead of the pre-defined
166 variable speed to make sure it is set to same value for all
167 basic blocks in one if-conversion transformation. */
168 if (!optimize_function_for_speed_p (cfun) && ifcvt_after_combine)
169 scale = REG_BR_PROB_BASE;
170 /* Our branch probability/scaling factors are just estimates and don't
171 account for cases where we can get speculation for free and other
172 secondary benefits. So we fudge the scale factor to make speculating
173 appear a little more profitable when optimizing for performance. */
174 else
175 scale += REG_BR_PROB_BASE / 8;
178 max_cost *= scale;
180 while (1)
182 if (NONJUMP_INSN_P (insn))
184 int cost = insn_rtx_cost (PATTERN (insn), speed) * REG_BR_PROB_BASE;
185 if (cost == 0)
186 return false;
188 /* If this instruction is the load or set of a "stack" register,
189 such as a floating point register on x87, then the cost of
190 speculatively executing this insn may need to include
191 the additional cost of popping its result off of the
192 register stack. Unfortunately, correctly recognizing and
193 accounting for this additional overhead is tricky, so for
194 now we simply prohibit such speculative execution. */
195 #ifdef STACK_REGS
197 rtx set = single_set (insn);
198 if (set && STACK_REG_P (SET_DEST (set)))
199 return false;
201 #endif
203 count += cost;
204 if (count >= max_cost)
205 return false;
207 else if (CALL_P (insn))
208 return false;
210 if (insn == BB_END (bb))
211 break;
212 insn = NEXT_INSN (insn);
215 return true;
218 /* Return the first non-jump active insn in the basic block. */
220 static rtx_insn *
221 first_active_insn (basic_block bb)
223 rtx_insn *insn = BB_HEAD (bb);
225 if (LABEL_P (insn))
227 if (insn == BB_END (bb))
228 return NULL;
229 insn = NEXT_INSN (insn);
232 while (NOTE_P (insn) || DEBUG_INSN_P (insn))
234 if (insn == BB_END (bb))
235 return NULL;
236 insn = NEXT_INSN (insn);
239 if (JUMP_P (insn))
240 return NULL;
242 return insn;
245 /* Return the last non-jump active (non-jump) insn in the basic block. */
247 static rtx_insn *
248 last_active_insn (basic_block bb, int skip_use_p)
250 rtx_insn *insn = BB_END (bb);
251 rtx_insn *head = BB_HEAD (bb);
253 while (NOTE_P (insn)
254 || JUMP_P (insn)
255 || DEBUG_INSN_P (insn)
256 || (skip_use_p
257 && NONJUMP_INSN_P (insn)
258 && GET_CODE (PATTERN (insn)) == USE))
260 if (insn == head)
261 return NULL;
262 insn = PREV_INSN (insn);
265 if (LABEL_P (insn))
266 return NULL;
268 return insn;
271 /* Return the active insn before INSN inside basic block CURR_BB. */
273 static rtx_insn *
274 find_active_insn_before (basic_block curr_bb, rtx_insn *insn)
276 if (!insn || insn == BB_HEAD (curr_bb))
277 return NULL;
279 while ((insn = PREV_INSN (insn)) != NULL_RTX)
281 if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
282 break;
284 /* No other active insn all the way to the start of the basic block. */
285 if (insn == BB_HEAD (curr_bb))
286 return NULL;
289 return insn;
292 /* Return the active insn after INSN inside basic block CURR_BB. */
294 static rtx_insn *
295 find_active_insn_after (basic_block curr_bb, rtx_insn *insn)
297 if (!insn || insn == BB_END (curr_bb))
298 return NULL;
300 while ((insn = NEXT_INSN (insn)) != NULL_RTX)
302 if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
303 break;
305 /* No other active insn all the way to the end of the basic block. */
306 if (insn == BB_END (curr_bb))
307 return NULL;
310 return insn;
313 /* Return the basic block reached by falling though the basic block BB. */
315 static basic_block
316 block_fallthru (basic_block bb)
318 edge e = find_fallthru_edge (bb->succs);
320 return (e) ? e->dest : NULL_BLOCK;
323 /* Return true if RTXs A and B can be safely interchanged. */
325 static bool
326 rtx_interchangeable_p (const_rtx a, const_rtx b)
328 if (!rtx_equal_p (a, b))
329 return false;
331 if (GET_CODE (a) != MEM)
332 return true;
334 /* A dead type-unsafe memory reference is legal, but a live type-unsafe memory
335 reference is not. Interchanging a dead type-unsafe memory reference with
336 a live type-safe one creates a live type-unsafe memory reference, in other
337 words, it makes the program illegal.
338 We check here conservatively whether the two memory references have equal
339 memory attributes. */
341 return mem_attrs_eq_p (get_mem_attrs (a), get_mem_attrs (b));
345 /* Go through a bunch of insns, converting them to conditional
346 execution format if possible. Return TRUE if all of the non-note
347 insns were processed. */
349 static int
350 cond_exec_process_insns (ce_if_block *ce_info ATTRIBUTE_UNUSED,
351 /* if block information */rtx_insn *start,
352 /* first insn to look at */rtx end,
353 /* last insn to look at */rtx test,
354 /* conditional execution test */int prob_val,
355 /* probability of branch taken. */int mod_ok)
357 int must_be_last = FALSE;
358 rtx_insn *insn;
359 rtx xtest;
360 rtx pattern;
362 if (!start || !end)
363 return FALSE;
365 for (insn = start; ; insn = NEXT_INSN (insn))
367 /* dwarf2out can't cope with conditional prologues. */
368 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
369 return FALSE;
371 if (NOTE_P (insn) || DEBUG_INSN_P (insn))
372 goto insn_done;
374 gcc_assert (NONJUMP_INSN_P (insn) || CALL_P (insn));
376 /* dwarf2out can't cope with conditional unwind info. */
377 if (RTX_FRAME_RELATED_P (insn))
378 return FALSE;
380 /* Remove USE insns that get in the way. */
381 if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
383 /* ??? Ug. Actually unlinking the thing is problematic,
384 given what we'd have to coordinate with our callers. */
385 SET_INSN_DELETED (insn);
386 goto insn_done;
389 /* Last insn wasn't last? */
390 if (must_be_last)
391 return FALSE;
393 if (modified_in_p (test, insn))
395 if (!mod_ok)
396 return FALSE;
397 must_be_last = TRUE;
400 /* Now build the conditional form of the instruction. */
401 pattern = PATTERN (insn);
402 xtest = copy_rtx (test);
404 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
405 two conditions. */
406 if (GET_CODE (pattern) == COND_EXEC)
408 if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
409 return FALSE;
411 xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
412 COND_EXEC_TEST (pattern));
413 pattern = COND_EXEC_CODE (pattern);
416 pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
418 /* If the machine needs to modify the insn being conditionally executed,
419 say for example to force a constant integer operand into a temp
420 register, do so here. */
421 #ifdef IFCVT_MODIFY_INSN
422 IFCVT_MODIFY_INSN (ce_info, pattern, insn);
423 if (! pattern)
424 return FALSE;
425 #endif
427 validate_change (insn, &PATTERN (insn), pattern, 1);
429 if (CALL_P (insn) && prob_val >= 0)
430 validate_change (insn, &REG_NOTES (insn),
431 gen_rtx_INT_LIST ((machine_mode) REG_BR_PROB,
432 prob_val, REG_NOTES (insn)), 1);
434 insn_done:
435 if (insn == end)
436 break;
439 return TRUE;
442 /* Return the condition for a jump. Do not do any special processing. */
444 static rtx
445 cond_exec_get_condition (rtx_insn *jump)
447 rtx test_if, cond;
449 if (any_condjump_p (jump))
450 test_if = SET_SRC (pc_set (jump));
451 else
452 return NULL_RTX;
453 cond = XEXP (test_if, 0);
455 /* If this branches to JUMP_LABEL when the condition is false,
456 reverse the condition. */
457 if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
458 && LABEL_REF_LABEL (XEXP (test_if, 2)) == JUMP_LABEL (jump))
460 enum rtx_code rev = reversed_comparison_code (cond, jump);
461 if (rev == UNKNOWN)
462 return NULL_RTX;
464 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
465 XEXP (cond, 1));
468 return cond;
471 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
472 to conditional execution. Return TRUE if we were successful at
473 converting the block. */
475 static int
476 cond_exec_process_if_block (ce_if_block * ce_info,
477 /* if block information */int do_multiple_p)
479 basic_block test_bb = ce_info->test_bb; /* last test block */
480 basic_block then_bb = ce_info->then_bb; /* THEN */
481 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
482 rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
483 rtx_insn *then_start; /* first insn in THEN block */
484 rtx_insn *then_end; /* last insn + 1 in THEN block */
485 rtx_insn *else_start = NULL; /* first insn in ELSE block or NULL */
486 rtx_insn *else_end = NULL; /* last insn + 1 in ELSE block */
487 int max; /* max # of insns to convert. */
488 int then_mod_ok; /* whether conditional mods are ok in THEN */
489 rtx true_expr; /* test for else block insns */
490 rtx false_expr; /* test for then block insns */
491 int true_prob_val; /* probability of else block */
492 int false_prob_val; /* probability of then block */
493 rtx_insn *then_last_head = NULL; /* Last match at the head of THEN */
494 rtx_insn *else_last_head = NULL; /* Last match at the head of ELSE */
495 rtx_insn *then_first_tail = NULL; /* First match at the tail of THEN */
496 rtx_insn *else_first_tail = NULL; /* First match at the tail of ELSE */
497 int then_n_insns, else_n_insns, n_insns;
498 enum rtx_code false_code;
499 rtx note;
501 /* If test is comprised of && or || elements, and we've failed at handling
502 all of them together, just use the last test if it is the special case of
503 && elements without an ELSE block. */
504 if (!do_multiple_p && ce_info->num_multiple_test_blocks)
506 if (else_bb || ! ce_info->and_and_p)
507 return FALSE;
509 ce_info->test_bb = test_bb = ce_info->last_test_bb;
510 ce_info->num_multiple_test_blocks = 0;
511 ce_info->num_and_and_blocks = 0;
512 ce_info->num_or_or_blocks = 0;
515 /* Find the conditional jump to the ELSE or JOIN part, and isolate
516 the test. */
517 test_expr = cond_exec_get_condition (BB_END (test_bb));
518 if (! test_expr)
519 return FALSE;
521 /* If the conditional jump is more than just a conditional jump,
522 then we can not do conditional execution conversion on this block. */
523 if (! onlyjump_p (BB_END (test_bb)))
524 return FALSE;
526 /* Collect the bounds of where we're to search, skipping any labels, jumps
527 and notes at the beginning and end of the block. Then count the total
528 number of insns and see if it is small enough to convert. */
529 then_start = first_active_insn (then_bb);
530 then_end = last_active_insn (then_bb, TRUE);
531 then_n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
532 n_insns = then_n_insns;
533 max = MAX_CONDITIONAL_EXECUTE;
535 if (else_bb)
537 int n_matching;
539 max *= 2;
540 else_start = first_active_insn (else_bb);
541 else_end = last_active_insn (else_bb, TRUE);
542 else_n_insns = ce_info->num_else_insns = count_bb_insns (else_bb);
543 n_insns += else_n_insns;
545 /* Look for matching sequences at the head and tail of the two blocks,
546 and limit the range of insns to be converted if possible. */
547 n_matching = flow_find_cross_jump (then_bb, else_bb,
548 &then_first_tail, &else_first_tail,
549 NULL);
550 if (then_first_tail == BB_HEAD (then_bb))
551 then_start = then_end = NULL;
552 if (else_first_tail == BB_HEAD (else_bb))
553 else_start = else_end = NULL;
555 if (n_matching > 0)
557 if (then_end)
558 then_end = find_active_insn_before (then_bb, then_first_tail);
559 if (else_end)
560 else_end = find_active_insn_before (else_bb, else_first_tail);
561 n_insns -= 2 * n_matching;
564 if (then_start
565 && else_start
566 && then_n_insns > n_matching
567 && else_n_insns > n_matching)
569 int longest_match = MIN (then_n_insns - n_matching,
570 else_n_insns - n_matching);
571 n_matching
572 = flow_find_head_matching_sequence (then_bb, else_bb,
573 &then_last_head,
574 &else_last_head,
575 longest_match);
577 if (n_matching > 0)
579 rtx_insn *insn;
581 /* We won't pass the insns in the head sequence to
582 cond_exec_process_insns, so we need to test them here
583 to make sure that they don't clobber the condition. */
584 for (insn = BB_HEAD (then_bb);
585 insn != NEXT_INSN (then_last_head);
586 insn = NEXT_INSN (insn))
587 if (!LABEL_P (insn) && !NOTE_P (insn)
588 && !DEBUG_INSN_P (insn)
589 && modified_in_p (test_expr, insn))
590 return FALSE;
593 if (then_last_head == then_end)
594 then_start = then_end = NULL;
595 if (else_last_head == else_end)
596 else_start = else_end = NULL;
598 if (n_matching > 0)
600 if (then_start)
601 then_start = find_active_insn_after (then_bb, then_last_head);
602 if (else_start)
603 else_start = find_active_insn_after (else_bb, else_last_head);
604 n_insns -= 2 * n_matching;
609 if (n_insns > max)
610 return FALSE;
612 /* Map test_expr/test_jump into the appropriate MD tests to use on
613 the conditionally executed code. */
615 true_expr = test_expr;
617 false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
618 if (false_code != UNKNOWN)
619 false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
620 XEXP (true_expr, 0), XEXP (true_expr, 1));
621 else
622 false_expr = NULL_RTX;
624 #ifdef IFCVT_MODIFY_TESTS
625 /* If the machine description needs to modify the tests, such as setting a
626 conditional execution register from a comparison, it can do so here. */
627 IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
629 /* See if the conversion failed. */
630 if (!true_expr || !false_expr)
631 goto fail;
632 #endif
634 note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
635 if (note)
637 true_prob_val = XINT (note, 0);
638 false_prob_val = REG_BR_PROB_BASE - true_prob_val;
640 else
642 true_prob_val = -1;
643 false_prob_val = -1;
646 /* If we have && or || tests, do them here. These tests are in the adjacent
647 blocks after the first block containing the test. */
648 if (ce_info->num_multiple_test_blocks > 0)
650 basic_block bb = test_bb;
651 basic_block last_test_bb = ce_info->last_test_bb;
653 if (! false_expr)
654 goto fail;
658 rtx_insn *start, *end;
659 rtx t, f;
660 enum rtx_code f_code;
662 bb = block_fallthru (bb);
663 start = first_active_insn (bb);
664 end = last_active_insn (bb, TRUE);
665 if (start
666 && ! cond_exec_process_insns (ce_info, start, end, false_expr,
667 false_prob_val, FALSE))
668 goto fail;
670 /* If the conditional jump is more than just a conditional jump, then
671 we can not do conditional execution conversion on this block. */
672 if (! onlyjump_p (BB_END (bb)))
673 goto fail;
675 /* Find the conditional jump and isolate the test. */
676 t = cond_exec_get_condition (BB_END (bb));
677 if (! t)
678 goto fail;
680 f_code = reversed_comparison_code (t, BB_END (bb));
681 if (f_code == UNKNOWN)
682 goto fail;
684 f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
685 if (ce_info->and_and_p)
687 t = gen_rtx_AND (GET_MODE (t), true_expr, t);
688 f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
690 else
692 t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
693 f = gen_rtx_AND (GET_MODE (t), false_expr, f);
696 /* If the machine description needs to modify the tests, such as
697 setting a conditional execution register from a comparison, it can
698 do so here. */
699 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
700 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
702 /* See if the conversion failed. */
703 if (!t || !f)
704 goto fail;
705 #endif
707 true_expr = t;
708 false_expr = f;
710 while (bb != last_test_bb);
713 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
714 on then THEN block. */
715 then_mod_ok = (else_bb == NULL_BLOCK);
717 /* Go through the THEN and ELSE blocks converting the insns if possible
718 to conditional execution. */
720 if (then_end
721 && (! false_expr
722 || ! cond_exec_process_insns (ce_info, then_start, then_end,
723 false_expr, false_prob_val,
724 then_mod_ok)))
725 goto fail;
727 if (else_bb && else_end
728 && ! cond_exec_process_insns (ce_info, else_start, else_end,
729 true_expr, true_prob_val, TRUE))
730 goto fail;
732 /* If we cannot apply the changes, fail. Do not go through the normal fail
733 processing, since apply_change_group will call cancel_changes. */
734 if (! apply_change_group ())
736 #ifdef IFCVT_MODIFY_CANCEL
737 /* Cancel any machine dependent changes. */
738 IFCVT_MODIFY_CANCEL (ce_info);
739 #endif
740 return FALSE;
743 #ifdef IFCVT_MODIFY_FINAL
744 /* Do any machine dependent final modifications. */
745 IFCVT_MODIFY_FINAL (ce_info);
746 #endif
748 /* Conversion succeeded. */
749 if (dump_file)
750 fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
751 n_insns, (n_insns == 1) ? " was" : "s were");
753 /* Merge the blocks! If we had matching sequences, make sure to delete one
754 copy at the appropriate location first: delete the copy in the THEN branch
755 for a tail sequence so that the remaining one is executed last for both
756 branches, and delete the copy in the ELSE branch for a head sequence so
757 that the remaining one is executed first for both branches. */
758 if (then_first_tail)
760 rtx_insn *from = then_first_tail;
761 if (!INSN_P (from))
762 from = find_active_insn_after (then_bb, from);
763 delete_insn_chain (from, BB_END (then_bb), false);
765 if (else_last_head)
766 delete_insn_chain (first_active_insn (else_bb), else_last_head, false);
768 merge_if_block (ce_info);
769 cond_exec_changed_p = TRUE;
770 return TRUE;
772 fail:
773 #ifdef IFCVT_MODIFY_CANCEL
774 /* Cancel any machine dependent changes. */
775 IFCVT_MODIFY_CANCEL (ce_info);
776 #endif
778 cancel_changes (0);
779 return FALSE;
782 /* Used by noce_process_if_block to communicate with its subroutines.
784 The subroutines know that A and B may be evaluated freely. They
785 know that X is a register. They should insert new instructions
786 before cond_earliest. */
788 struct noce_if_info
790 /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block. */
791 basic_block test_bb, then_bb, else_bb, join_bb;
793 /* The jump that ends TEST_BB. */
794 rtx_insn *jump;
796 /* The jump condition. */
797 rtx cond;
799 /* New insns should be inserted before this one. */
800 rtx_insn *cond_earliest;
802 /* Insns in the THEN and ELSE block. There is always just this
803 one insns in those blocks. The insns are single_set insns.
804 If there was no ELSE block, INSN_B is the last insn before
805 COND_EARLIEST, or NULL_RTX. In the former case, the insn
806 operands are still valid, as if INSN_B was moved down below
807 the jump. */
808 rtx_insn *insn_a, *insn_b;
810 /* The SET_SRC of INSN_A and INSN_B. */
811 rtx a, b;
813 /* The SET_DEST of INSN_A. */
814 rtx x;
816 /* True if this if block is not canonical. In the canonical form of
817 if blocks, the THEN_BB is the block reached via the fallthru edge
818 from TEST_BB. For the noce transformations, we allow the symmetric
819 form as well. */
820 bool then_else_reversed;
822 /* Estimated cost of the particular branch instruction. */
823 int branch_cost;
826 static rtx noce_emit_store_flag (struct noce_if_info *, rtx, int, int);
827 static int noce_try_move (struct noce_if_info *);
828 static int noce_try_store_flag (struct noce_if_info *);
829 static int noce_try_addcc (struct noce_if_info *);
830 static int noce_try_store_flag_constants (struct noce_if_info *);
831 static int noce_try_store_flag_mask (struct noce_if_info *);
832 static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
833 rtx, rtx, rtx);
834 static int noce_try_cmove (struct noce_if_info *);
835 static int noce_try_cmove_arith (struct noce_if_info *);
836 static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx_insn **);
837 static int noce_try_minmax (struct noce_if_info *);
838 static int noce_try_abs (struct noce_if_info *);
839 static int noce_try_sign_mask (struct noce_if_info *);
841 /* Helper function for noce_try_store_flag*. */
843 static rtx
844 noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
845 int normalize)
847 rtx cond = if_info->cond;
848 int cond_complex;
849 enum rtx_code code;
851 cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
852 || ! general_operand (XEXP (cond, 1), VOIDmode));
854 /* If earliest == jump, or when the condition is complex, try to
855 build the store_flag insn directly. */
857 if (cond_complex)
859 rtx set = pc_set (if_info->jump);
860 cond = XEXP (SET_SRC (set), 0);
861 if (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
862 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump))
863 reversep = !reversep;
864 if (if_info->then_else_reversed)
865 reversep = !reversep;
868 if (reversep)
869 code = reversed_comparison_code (cond, if_info->jump);
870 else
871 code = GET_CODE (cond);
873 if ((if_info->cond_earliest == if_info->jump || cond_complex)
874 && (normalize == 0 || STORE_FLAG_VALUE == normalize))
876 rtx src = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
877 XEXP (cond, 1));
878 rtx set = gen_rtx_SET (VOIDmode, x, src);
880 start_sequence ();
881 rtx_insn *insn = emit_insn (set);
883 if (recog_memoized (insn) >= 0)
885 rtx_insn *seq = get_insns ();
886 end_sequence ();
887 emit_insn (seq);
889 if_info->cond_earliest = if_info->jump;
891 return x;
894 end_sequence ();
897 /* Don't even try if the comparison operands or the mode of X are weird. */
898 if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
899 return NULL_RTX;
901 return emit_store_flag (x, code, XEXP (cond, 0),
902 XEXP (cond, 1), VOIDmode,
903 (code == LTU || code == LEU
904 || code == GEU || code == GTU), normalize);
907 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
908 X is the destination/target and Y is the value to copy. */
910 static void
911 noce_emit_move_insn (rtx x, rtx y)
913 machine_mode outmode;
914 rtx outer, inner;
915 int bitpos;
917 if (GET_CODE (x) != STRICT_LOW_PART)
919 rtx_insn *seq, *insn;
920 rtx target;
921 optab ot;
923 start_sequence ();
924 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
925 otherwise construct a suitable SET pattern ourselves. */
926 insn = (OBJECT_P (y) || CONSTANT_P (y) || GET_CODE (y) == SUBREG)
927 ? emit_move_insn (x, y)
928 : emit_insn (gen_rtx_SET (VOIDmode, x, y));
929 seq = get_insns ();
930 end_sequence ();
932 if (recog_memoized (insn) <= 0)
934 if (GET_CODE (x) == ZERO_EXTRACT)
936 rtx op = XEXP (x, 0);
937 unsigned HOST_WIDE_INT size = INTVAL (XEXP (x, 1));
938 unsigned HOST_WIDE_INT start = INTVAL (XEXP (x, 2));
940 /* store_bit_field expects START to be relative to
941 BYTES_BIG_ENDIAN and adjusts this value for machines with
942 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
943 invoke store_bit_field again it is necessary to have the START
944 value from the first call. */
945 if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
947 if (MEM_P (op))
948 start = BITS_PER_UNIT - start - size;
949 else
951 gcc_assert (REG_P (op));
952 start = BITS_PER_WORD - start - size;
956 gcc_assert (start < (MEM_P (op) ? BITS_PER_UNIT : BITS_PER_WORD));
957 store_bit_field (op, size, start, 0, 0, GET_MODE (x), y);
958 return;
961 switch (GET_RTX_CLASS (GET_CODE (y)))
963 case RTX_UNARY:
964 ot = code_to_optab (GET_CODE (y));
965 if (ot)
967 start_sequence ();
968 target = expand_unop (GET_MODE (y), ot, XEXP (y, 0), x, 0);
969 if (target != NULL_RTX)
971 if (target != x)
972 emit_move_insn (x, target);
973 seq = get_insns ();
975 end_sequence ();
977 break;
979 case RTX_BIN_ARITH:
980 case RTX_COMM_ARITH:
981 ot = code_to_optab (GET_CODE (y));
982 if (ot)
984 start_sequence ();
985 target = expand_binop (GET_MODE (y), ot,
986 XEXP (y, 0), XEXP (y, 1),
987 x, 0, OPTAB_DIRECT);
988 if (target != NULL_RTX)
990 if (target != x)
991 emit_move_insn (x, target);
992 seq = get_insns ();
994 end_sequence ();
996 break;
998 default:
999 break;
1003 emit_insn (seq);
1004 return;
1007 outer = XEXP (x, 0);
1008 inner = XEXP (outer, 0);
1009 outmode = GET_MODE (outer);
1010 bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
1011 store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos,
1012 0, 0, outmode, y);
1015 /* Return sequence of instructions generated by if conversion. This
1016 function calls end_sequence() to end the current stream, ensures
1017 that are instructions are unshared, recognizable non-jump insns.
1018 On failure, this function returns a NULL_RTX. */
1020 static rtx_insn *
1021 end_ifcvt_sequence (struct noce_if_info *if_info)
1023 rtx_insn *insn;
1024 rtx_insn *seq = get_insns ();
1026 set_used_flags (if_info->x);
1027 set_used_flags (if_info->cond);
1028 set_used_flags (if_info->a);
1029 set_used_flags (if_info->b);
1030 unshare_all_rtl_in_chain (seq);
1031 end_sequence ();
1033 /* Make sure that all of the instructions emitted are recognizable,
1034 and that we haven't introduced a new jump instruction.
1035 As an exercise for the reader, build a general mechanism that
1036 allows proper placement of required clobbers. */
1037 for (insn = seq; insn; insn = NEXT_INSN (insn))
1038 if (JUMP_P (insn)
1039 || recog_memoized (insn) == -1)
1040 return NULL;
1042 return seq;
1045 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
1046 "if (a == b) x = a; else x = b" into "x = b". */
1048 static int
1049 noce_try_move (struct noce_if_info *if_info)
1051 rtx cond = if_info->cond;
1052 enum rtx_code code = GET_CODE (cond);
1053 rtx y;
1054 rtx_insn *seq;
1056 if (code != NE && code != EQ)
1057 return FALSE;
1059 /* This optimization isn't valid if either A or B could be a NaN
1060 or a signed zero. */
1061 if (HONOR_NANS (GET_MODE (if_info->x))
1062 || HONOR_SIGNED_ZEROS (GET_MODE (if_info->x)))
1063 return FALSE;
1065 /* Check whether the operands of the comparison are A and in
1066 either order. */
1067 if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
1068 && rtx_equal_p (if_info->b, XEXP (cond, 1)))
1069 || (rtx_equal_p (if_info->a, XEXP (cond, 1))
1070 && rtx_equal_p (if_info->b, XEXP (cond, 0))))
1072 if (!rtx_interchangeable_p (if_info->a, if_info->b))
1073 return FALSE;
1075 y = (code == EQ) ? if_info->a : if_info->b;
1077 /* Avoid generating the move if the source is the destination. */
1078 if (! rtx_equal_p (if_info->x, y))
1080 start_sequence ();
1081 noce_emit_move_insn (if_info->x, y);
1082 seq = end_ifcvt_sequence (if_info);
1083 if (!seq)
1084 return FALSE;
1086 emit_insn_before_setloc (seq, if_info->jump,
1087 INSN_LOCATION (if_info->insn_a));
1089 return TRUE;
1091 return FALSE;
1094 /* Convert "if (test) x = 1; else x = 0".
1096 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
1097 tried in noce_try_store_flag_constants after noce_try_cmove has had
1098 a go at the conversion. */
1100 static int
1101 noce_try_store_flag (struct noce_if_info *if_info)
1103 int reversep;
1104 rtx target;
1105 rtx_insn *seq;
1107 if (CONST_INT_P (if_info->b)
1108 && INTVAL (if_info->b) == STORE_FLAG_VALUE
1109 && if_info->a == const0_rtx)
1110 reversep = 0;
1111 else if (if_info->b == const0_rtx
1112 && CONST_INT_P (if_info->a)
1113 && INTVAL (if_info->a) == STORE_FLAG_VALUE
1114 && (reversed_comparison_code (if_info->cond, if_info->jump)
1115 != UNKNOWN))
1116 reversep = 1;
1117 else
1118 return FALSE;
1120 start_sequence ();
1122 target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
1123 if (target)
1125 if (target != if_info->x)
1126 noce_emit_move_insn (if_info->x, target);
1128 seq = end_ifcvt_sequence (if_info);
1129 if (! seq)
1130 return FALSE;
1132 emit_insn_before_setloc (seq, if_info->jump,
1133 INSN_LOCATION (if_info->insn_a));
1134 return TRUE;
1136 else
1138 end_sequence ();
1139 return FALSE;
1143 /* Convert "if (test) x = a; else x = b", for A and B constant. */
1145 static int
1146 noce_try_store_flag_constants (struct noce_if_info *if_info)
1148 rtx target;
1149 rtx_insn *seq;
1150 int reversep;
1151 HOST_WIDE_INT itrue, ifalse, diff, tmp;
1152 int normalize, can_reverse;
1153 machine_mode mode;
1155 if (CONST_INT_P (if_info->a)
1156 && CONST_INT_P (if_info->b))
1158 mode = GET_MODE (if_info->x);
1159 ifalse = INTVAL (if_info->a);
1160 itrue = INTVAL (if_info->b);
1162 diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
1163 /* Make sure we can represent the difference between the two values. */
1164 if ((diff > 0)
1165 != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
1166 return FALSE;
1168 diff = trunc_int_for_mode (diff, mode);
1170 can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
1171 != UNKNOWN);
1173 reversep = 0;
1174 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1175 normalize = 0;
1176 else if (ifalse == 0 && exact_log2 (itrue) >= 0
1177 && (STORE_FLAG_VALUE == 1
1178 || if_info->branch_cost >= 2))
1179 normalize = 1;
1180 else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
1181 && (STORE_FLAG_VALUE == 1 || if_info->branch_cost >= 2))
1182 normalize = 1, reversep = 1;
1183 else if (itrue == -1
1184 && (STORE_FLAG_VALUE == -1
1185 || if_info->branch_cost >= 2))
1186 normalize = -1;
1187 else if (ifalse == -1 && can_reverse
1188 && (STORE_FLAG_VALUE == -1 || if_info->branch_cost >= 2))
1189 normalize = -1, reversep = 1;
1190 else if ((if_info->branch_cost >= 2 && STORE_FLAG_VALUE == -1)
1191 || if_info->branch_cost >= 3)
1192 normalize = -1;
1193 else
1194 return FALSE;
1196 if (reversep)
1198 tmp = itrue; itrue = ifalse; ifalse = tmp;
1199 diff = trunc_int_for_mode (-(unsigned HOST_WIDE_INT) diff, mode);
1202 start_sequence ();
1203 target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
1204 if (! target)
1206 end_sequence ();
1207 return FALSE;
1210 /* if (test) x = 3; else x = 4;
1211 => x = 3 + (test == 0); */
1212 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1214 target = expand_simple_binop (mode,
1215 (diff == STORE_FLAG_VALUE
1216 ? PLUS : MINUS),
1217 gen_int_mode (ifalse, mode), target,
1218 if_info->x, 0, OPTAB_WIDEN);
1221 /* if (test) x = 8; else x = 0;
1222 => x = (test != 0) << 3; */
1223 else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
1225 target = expand_simple_binop (mode, ASHIFT,
1226 target, GEN_INT (tmp), if_info->x, 0,
1227 OPTAB_WIDEN);
1230 /* if (test) x = -1; else x = b;
1231 => x = -(test != 0) | b; */
1232 else if (itrue == -1)
1234 target = expand_simple_binop (mode, IOR,
1235 target, gen_int_mode (ifalse, mode),
1236 if_info->x, 0, OPTAB_WIDEN);
1239 /* if (test) x = a; else x = b;
1240 => x = (-(test != 0) & (b - a)) + a; */
1241 else
1243 target = expand_simple_binop (mode, AND,
1244 target, gen_int_mode (diff, mode),
1245 if_info->x, 0, OPTAB_WIDEN);
1246 if (target)
1247 target = expand_simple_binop (mode, PLUS,
1248 target, gen_int_mode (ifalse, mode),
1249 if_info->x, 0, OPTAB_WIDEN);
1252 if (! target)
1254 end_sequence ();
1255 return FALSE;
1258 if (target != if_info->x)
1259 noce_emit_move_insn (if_info->x, target);
1261 seq = end_ifcvt_sequence (if_info);
1262 if (!seq)
1263 return FALSE;
1265 emit_insn_before_setloc (seq, if_info->jump,
1266 INSN_LOCATION (if_info->insn_a));
1267 return TRUE;
1270 return FALSE;
1273 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1274 similarly for "foo--". */
1276 static int
1277 noce_try_addcc (struct noce_if_info *if_info)
1279 rtx target;
1280 rtx_insn *seq;
1281 int subtract, normalize;
1283 if (GET_CODE (if_info->a) == PLUS
1284 && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
1285 && (reversed_comparison_code (if_info->cond, if_info->jump)
1286 != UNKNOWN))
1288 rtx cond = if_info->cond;
1289 enum rtx_code code = reversed_comparison_code (cond, if_info->jump);
1291 /* First try to use addcc pattern. */
1292 if (general_operand (XEXP (cond, 0), VOIDmode)
1293 && general_operand (XEXP (cond, 1), VOIDmode))
1295 start_sequence ();
1296 target = emit_conditional_add (if_info->x, code,
1297 XEXP (cond, 0),
1298 XEXP (cond, 1),
1299 VOIDmode,
1300 if_info->b,
1301 XEXP (if_info->a, 1),
1302 GET_MODE (if_info->x),
1303 (code == LTU || code == GEU
1304 || code == LEU || code == GTU));
1305 if (target)
1307 if (target != if_info->x)
1308 noce_emit_move_insn (if_info->x, target);
1310 seq = end_ifcvt_sequence (if_info);
1311 if (!seq)
1312 return FALSE;
1314 emit_insn_before_setloc (seq, if_info->jump,
1315 INSN_LOCATION (if_info->insn_a));
1316 return TRUE;
1318 end_sequence ();
1321 /* If that fails, construct conditional increment or decrement using
1322 setcc. */
1323 if (if_info->branch_cost >= 2
1324 && (XEXP (if_info->a, 1) == const1_rtx
1325 || XEXP (if_info->a, 1) == constm1_rtx))
1327 start_sequence ();
1328 if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1329 subtract = 0, normalize = 0;
1330 else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1331 subtract = 1, normalize = 0;
1332 else
1333 subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
1336 target = noce_emit_store_flag (if_info,
1337 gen_reg_rtx (GET_MODE (if_info->x)),
1338 1, normalize);
1340 if (target)
1341 target = expand_simple_binop (GET_MODE (if_info->x),
1342 subtract ? MINUS : PLUS,
1343 if_info->b, target, if_info->x,
1344 0, OPTAB_WIDEN);
1345 if (target)
1347 if (target != if_info->x)
1348 noce_emit_move_insn (if_info->x, target);
1350 seq = end_ifcvt_sequence (if_info);
1351 if (!seq)
1352 return FALSE;
1354 emit_insn_before_setloc (seq, if_info->jump,
1355 INSN_LOCATION (if_info->insn_a));
1356 return TRUE;
1358 end_sequence ();
1362 return FALSE;
1365 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1367 static int
1368 noce_try_store_flag_mask (struct noce_if_info *if_info)
1370 rtx target;
1371 rtx_insn *seq;
1372 int reversep;
1374 reversep = 0;
1375 if ((if_info->branch_cost >= 2
1376 || STORE_FLAG_VALUE == -1)
1377 && ((if_info->a == const0_rtx
1378 && rtx_equal_p (if_info->b, if_info->x))
1379 || ((reversep = (reversed_comparison_code (if_info->cond,
1380 if_info->jump)
1381 != UNKNOWN))
1382 && if_info->b == const0_rtx
1383 && rtx_equal_p (if_info->a, if_info->x))))
1385 start_sequence ();
1386 target = noce_emit_store_flag (if_info,
1387 gen_reg_rtx (GET_MODE (if_info->x)),
1388 reversep, -1);
1389 if (target)
1390 target = expand_simple_binop (GET_MODE (if_info->x), AND,
1391 if_info->x,
1392 target, if_info->x, 0,
1393 OPTAB_WIDEN);
1395 if (target)
1397 if (target != if_info->x)
1398 noce_emit_move_insn (if_info->x, target);
1400 seq = end_ifcvt_sequence (if_info);
1401 if (!seq)
1402 return FALSE;
1404 emit_insn_before_setloc (seq, if_info->jump,
1405 INSN_LOCATION (if_info->insn_a));
1406 return TRUE;
1409 end_sequence ();
1412 return FALSE;
1415 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1417 static rtx
1418 noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1419 rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue)
1421 rtx target ATTRIBUTE_UNUSED;
1422 int unsignedp ATTRIBUTE_UNUSED;
1424 /* If earliest == jump, try to build the cmove insn directly.
1425 This is helpful when combine has created some complex condition
1426 (like for alpha's cmovlbs) that we can't hope to regenerate
1427 through the normal interface. */
1429 if (if_info->cond_earliest == if_info->jump)
1431 rtx cond = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1432 rtx if_then_else = gen_rtx_IF_THEN_ELSE (GET_MODE (x),
1433 cond, vtrue, vfalse);
1434 rtx set = gen_rtx_SET (VOIDmode, x, if_then_else);
1436 start_sequence ();
1437 rtx_insn *insn = emit_insn (set);
1439 if (recog_memoized (insn) >= 0)
1441 rtx_insn *seq = get_insns ();
1442 end_sequence ();
1443 emit_insn (seq);
1445 return x;
1448 end_sequence ();
1451 /* Don't even try if the comparison operands are weird. */
1452 if (! general_operand (cmp_a, GET_MODE (cmp_a))
1453 || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1454 return NULL_RTX;
1456 #if HAVE_conditional_move
1457 unsignedp = (code == LTU || code == GEU
1458 || code == LEU || code == GTU);
1460 target = emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
1461 vtrue, vfalse, GET_MODE (x),
1462 unsignedp);
1463 if (target)
1464 return target;
1466 /* We might be faced with a situation like:
1468 x = (reg:M TARGET)
1469 vtrue = (subreg:M (reg:N VTRUE) BYTE)
1470 vfalse = (subreg:M (reg:N VFALSE) BYTE)
1472 We can't do a conditional move in mode M, but it's possible that we
1473 could do a conditional move in mode N instead and take a subreg of
1474 the result.
1476 If we can't create new pseudos, though, don't bother. */
1477 if (reload_completed)
1478 return NULL_RTX;
1480 if (GET_CODE (vtrue) == SUBREG && GET_CODE (vfalse) == SUBREG)
1482 rtx reg_vtrue = SUBREG_REG (vtrue);
1483 rtx reg_vfalse = SUBREG_REG (vfalse);
1484 unsigned int byte_vtrue = SUBREG_BYTE (vtrue);
1485 unsigned int byte_vfalse = SUBREG_BYTE (vfalse);
1486 rtx promoted_target;
1488 if (GET_MODE (reg_vtrue) != GET_MODE (reg_vfalse)
1489 || byte_vtrue != byte_vfalse
1490 || (SUBREG_PROMOTED_VAR_P (vtrue)
1491 != SUBREG_PROMOTED_VAR_P (vfalse))
1492 || (SUBREG_PROMOTED_GET (vtrue)
1493 != SUBREG_PROMOTED_GET (vfalse)))
1494 return NULL_RTX;
1496 promoted_target = gen_reg_rtx (GET_MODE (reg_vtrue));
1498 target = emit_conditional_move (promoted_target, code, cmp_a, cmp_b,
1499 VOIDmode, reg_vtrue, reg_vfalse,
1500 GET_MODE (reg_vtrue), unsignedp);
1501 /* Nope, couldn't do it in that mode either. */
1502 if (!target)
1503 return NULL_RTX;
1505 target = gen_rtx_SUBREG (GET_MODE (vtrue), promoted_target, byte_vtrue);
1506 SUBREG_PROMOTED_VAR_P (target) = SUBREG_PROMOTED_VAR_P (vtrue);
1507 SUBREG_PROMOTED_SET (target, SUBREG_PROMOTED_GET (vtrue));
1508 emit_move_insn (x, target);
1509 return x;
1511 else
1512 return NULL_RTX;
1513 #else
1514 /* We'll never get here, as noce_process_if_block doesn't call the
1515 functions involved. Ifdef code, however, should be discouraged
1516 because it leads to typos in the code not selected. However,
1517 emit_conditional_move won't exist either. */
1518 return NULL_RTX;
1519 #endif
1522 /* Try only simple constants and registers here. More complex cases
1523 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1524 has had a go at it. */
1526 static int
1527 noce_try_cmove (struct noce_if_info *if_info)
1529 enum rtx_code code;
1530 rtx target;
1531 rtx_insn *seq;
1533 if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1534 && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1536 start_sequence ();
1538 code = GET_CODE (if_info->cond);
1539 target = noce_emit_cmove (if_info, if_info->x, code,
1540 XEXP (if_info->cond, 0),
1541 XEXP (if_info->cond, 1),
1542 if_info->a, if_info->b);
1544 if (target)
1546 if (target != if_info->x)
1547 noce_emit_move_insn (if_info->x, target);
1549 seq = end_ifcvt_sequence (if_info);
1550 if (!seq)
1551 return FALSE;
1553 emit_insn_before_setloc (seq, if_info->jump,
1554 INSN_LOCATION (if_info->insn_a));
1555 return TRUE;
1557 else
1559 end_sequence ();
1560 return FALSE;
1564 return FALSE;
1567 /* Try more complex cases involving conditional_move. */
1569 static int
1570 noce_try_cmove_arith (struct noce_if_info *if_info)
1572 rtx a = if_info->a;
1573 rtx b = if_info->b;
1574 rtx x = if_info->x;
1575 rtx orig_a, orig_b;
1576 rtx_insn *insn_a, *insn_b;
1577 rtx target;
1578 int is_mem = 0;
1579 int insn_cost;
1580 enum rtx_code code;
1581 rtx_insn *ifcvt_seq;
1583 /* A conditional move from two memory sources is equivalent to a
1584 conditional on their addresses followed by a load. Don't do this
1585 early because it'll screw alias analysis. Note that we've
1586 already checked for no side effects. */
1587 /* ??? FIXME: Magic number 5. */
1588 if (cse_not_expected
1589 && MEM_P (a) && MEM_P (b)
1590 && MEM_ADDR_SPACE (a) == MEM_ADDR_SPACE (b)
1591 && if_info->branch_cost >= 5)
1593 machine_mode address_mode = get_address_mode (a);
1595 a = XEXP (a, 0);
1596 b = XEXP (b, 0);
1597 x = gen_reg_rtx (address_mode);
1598 is_mem = 1;
1601 /* ??? We could handle this if we knew that a load from A or B could
1602 not trap or fault. This is also true if we've already loaded
1603 from the address along the path from ENTRY. */
1604 else if (may_trap_or_fault_p (a) || may_trap_or_fault_p (b))
1605 return FALSE;
1607 /* if (test) x = a + b; else x = c - d;
1608 => y = a + b;
1609 x = c - d;
1610 if (test)
1611 x = y;
1614 code = GET_CODE (if_info->cond);
1615 insn_a = if_info->insn_a;
1616 insn_b = if_info->insn_b;
1618 /* Total insn_rtx_cost should be smaller than branch cost. Exit
1619 if insn_rtx_cost can't be estimated. */
1620 if (insn_a)
1622 insn_cost
1623 = insn_rtx_cost (PATTERN (insn_a),
1624 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_a)));
1625 if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (if_info->branch_cost))
1626 return FALSE;
1628 else
1629 insn_cost = 0;
1631 if (insn_b)
1633 insn_cost
1634 += insn_rtx_cost (PATTERN (insn_b),
1635 optimize_bb_for_speed_p (BLOCK_FOR_INSN (insn_b)));
1636 if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (if_info->branch_cost))
1637 return FALSE;
1640 /* Possibly rearrange operands to make things come out more natural. */
1641 if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
1643 int reversep = 0;
1644 if (rtx_equal_p (b, x))
1645 reversep = 1;
1646 else if (general_operand (b, GET_MODE (b)))
1647 reversep = 1;
1649 if (reversep)
1651 rtx tmp;
1652 rtx_insn *tmp_insn;
1653 code = reversed_comparison_code (if_info->cond, if_info->jump);
1654 tmp = a, a = b, b = tmp;
1655 tmp_insn = insn_a, insn_a = insn_b, insn_b = tmp_insn;
1659 start_sequence ();
1661 orig_a = a;
1662 orig_b = b;
1664 /* If either operand is complex, load it into a register first.
1665 The best way to do this is to copy the original insn. In this
1666 way we preserve any clobbers etc that the insn may have had.
1667 This is of course not possible in the IS_MEM case. */
1668 if (! general_operand (a, GET_MODE (a)))
1670 rtx_insn *insn;
1672 if (is_mem)
1674 rtx reg = gen_reg_rtx (GET_MODE (a));
1675 insn = emit_insn (gen_rtx_SET (VOIDmode, reg, a));
1677 else if (! insn_a)
1678 goto end_seq_and_fail;
1679 else
1681 a = gen_reg_rtx (GET_MODE (a));
1682 rtx_insn *copy_of_a = as_a <rtx_insn *> (copy_rtx (insn_a));
1683 rtx set = single_set (copy_of_a);
1684 SET_DEST (set) = a;
1685 insn = emit_insn (PATTERN (copy_of_a));
1687 if (recog_memoized (insn) < 0)
1688 goto end_seq_and_fail;
1690 if (! general_operand (b, GET_MODE (b)))
1692 rtx pat;
1693 rtx_insn *last;
1694 rtx_insn *new_insn;
1696 if (is_mem)
1698 rtx reg = gen_reg_rtx (GET_MODE (b));
1699 pat = gen_rtx_SET (VOIDmode, reg, b);
1701 else if (! insn_b)
1702 goto end_seq_and_fail;
1703 else
1705 b = gen_reg_rtx (GET_MODE (b));
1706 rtx_insn *copy_of_insn_b = as_a <rtx_insn *> (copy_rtx (insn_b));
1707 rtx set = single_set (copy_of_insn_b);
1708 SET_DEST (set) = b;
1709 pat = PATTERN (copy_of_insn_b);
1712 /* If insn to set up A clobbers any registers B depends on, try to
1713 swap insn that sets up A with the one that sets up B. If even
1714 that doesn't help, punt. */
1715 last = get_last_insn ();
1716 if (last && modified_in_p (orig_b, last))
1718 new_insn = emit_insn_before (pat, get_insns ());
1719 if (modified_in_p (orig_a, new_insn))
1720 goto end_seq_and_fail;
1722 else
1723 new_insn = emit_insn (pat);
1725 if (recog_memoized (new_insn) < 0)
1726 goto end_seq_and_fail;
1729 target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
1730 XEXP (if_info->cond, 1), a, b);
1732 if (! target)
1733 goto end_seq_and_fail;
1735 /* If we're handling a memory for above, emit the load now. */
1736 if (is_mem)
1738 rtx mem = gen_rtx_MEM (GET_MODE (if_info->x), target);
1740 /* Copy over flags as appropriate. */
1741 if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
1742 MEM_VOLATILE_P (mem) = 1;
1743 if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
1744 set_mem_alias_set (mem, MEM_ALIAS_SET (if_info->a));
1745 set_mem_align (mem,
1746 MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
1748 gcc_assert (MEM_ADDR_SPACE (if_info->a) == MEM_ADDR_SPACE (if_info->b));
1749 set_mem_addr_space (mem, MEM_ADDR_SPACE (if_info->a));
1751 noce_emit_move_insn (if_info->x, mem);
1753 else if (target != x)
1754 noce_emit_move_insn (x, target);
1756 ifcvt_seq = end_ifcvt_sequence (if_info);
1757 if (!ifcvt_seq)
1758 return FALSE;
1760 emit_insn_before_setloc (ifcvt_seq, if_info->jump,
1761 INSN_LOCATION (if_info->insn_a));
1762 return TRUE;
1764 end_seq_and_fail:
1765 end_sequence ();
1766 return FALSE;
1769 /* For most cases, the simplified condition we found is the best
1770 choice, but this is not the case for the min/max/abs transforms.
1771 For these we wish to know that it is A or B in the condition. */
1773 static rtx
1774 noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
1775 rtx_insn **earliest)
1777 rtx cond, set;
1778 rtx_insn *insn;
1779 int reverse;
1781 /* If target is already mentioned in the known condition, return it. */
1782 if (reg_mentioned_p (target, if_info->cond))
1784 *earliest = if_info->cond_earliest;
1785 return if_info->cond;
1788 set = pc_set (if_info->jump);
1789 cond = XEXP (SET_SRC (set), 0);
1790 reverse
1791 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1792 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump);
1793 if (if_info->then_else_reversed)
1794 reverse = !reverse;
1796 /* If we're looking for a constant, try to make the conditional
1797 have that constant in it. There are two reasons why it may
1798 not have the constant we want:
1800 1. GCC may have needed to put the constant in a register, because
1801 the target can't compare directly against that constant. For
1802 this case, we look for a SET immediately before the comparison
1803 that puts a constant in that register.
1805 2. GCC may have canonicalized the conditional, for example
1806 replacing "if x < 4" with "if x <= 3". We can undo that (or
1807 make equivalent types of changes) to get the constants we need
1808 if they're off by one in the right direction. */
1810 if (CONST_INT_P (target))
1812 enum rtx_code code = GET_CODE (if_info->cond);
1813 rtx op_a = XEXP (if_info->cond, 0);
1814 rtx op_b = XEXP (if_info->cond, 1);
1815 rtx prev_insn;
1817 /* First, look to see if we put a constant in a register. */
1818 prev_insn = prev_nonnote_insn (if_info->cond_earliest);
1819 if (prev_insn
1820 && BLOCK_FOR_INSN (prev_insn)
1821 == BLOCK_FOR_INSN (if_info->cond_earliest)
1822 && INSN_P (prev_insn)
1823 && GET_CODE (PATTERN (prev_insn)) == SET)
1825 rtx src = find_reg_equal_equiv_note (prev_insn);
1826 if (!src)
1827 src = SET_SRC (PATTERN (prev_insn));
1828 if (CONST_INT_P (src))
1830 if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
1831 op_a = src;
1832 else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
1833 op_b = src;
1835 if (CONST_INT_P (op_a))
1837 rtx tmp = op_a;
1838 op_a = op_b;
1839 op_b = tmp;
1840 code = swap_condition (code);
1845 /* Now, look to see if we can get the right constant by
1846 adjusting the conditional. */
1847 if (CONST_INT_P (op_b))
1849 HOST_WIDE_INT desired_val = INTVAL (target);
1850 HOST_WIDE_INT actual_val = INTVAL (op_b);
1852 switch (code)
1854 case LT:
1855 if (actual_val == desired_val + 1)
1857 code = LE;
1858 op_b = GEN_INT (desired_val);
1860 break;
1861 case LE:
1862 if (actual_val == desired_val - 1)
1864 code = LT;
1865 op_b = GEN_INT (desired_val);
1867 break;
1868 case GT:
1869 if (actual_val == desired_val - 1)
1871 code = GE;
1872 op_b = GEN_INT (desired_val);
1874 break;
1875 case GE:
1876 if (actual_val == desired_val + 1)
1878 code = GT;
1879 op_b = GEN_INT (desired_val);
1881 break;
1882 default:
1883 break;
1887 /* If we made any changes, generate a new conditional that is
1888 equivalent to what we started with, but has the right
1889 constants in it. */
1890 if (code != GET_CODE (if_info->cond)
1891 || op_a != XEXP (if_info->cond, 0)
1892 || op_b != XEXP (if_info->cond, 1))
1894 cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
1895 *earliest = if_info->cond_earliest;
1896 return cond;
1900 cond = canonicalize_condition (if_info->jump, cond, reverse,
1901 earliest, target, false, true);
1902 if (! cond || ! reg_mentioned_p (target, cond))
1903 return NULL;
1905 /* We almost certainly searched back to a different place.
1906 Need to re-verify correct lifetimes. */
1908 /* X may not be mentioned in the range (cond_earliest, jump]. */
1909 for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
1910 if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
1911 return NULL;
1913 /* A and B may not be modified in the range [cond_earliest, jump). */
1914 for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
1915 if (INSN_P (insn)
1916 && (modified_in_p (if_info->a, insn)
1917 || modified_in_p (if_info->b, insn)))
1918 return NULL;
1920 return cond;
1923 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1925 static int
1926 noce_try_minmax (struct noce_if_info *if_info)
1928 rtx cond, target;
1929 rtx_insn *earliest, *seq;
1930 enum rtx_code code, op;
1931 int unsignedp;
1933 /* ??? Reject modes with NaNs or signed zeros since we don't know how
1934 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
1935 to get the target to tell us... */
1936 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x))
1937 || HONOR_NANS (GET_MODE (if_info->x)))
1938 return FALSE;
1940 cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
1941 if (!cond)
1942 return FALSE;
1944 /* Verify the condition is of the form we expect, and canonicalize
1945 the comparison code. */
1946 code = GET_CODE (cond);
1947 if (rtx_equal_p (XEXP (cond, 0), if_info->a))
1949 if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
1950 return FALSE;
1952 else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
1954 if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
1955 return FALSE;
1956 code = swap_condition (code);
1958 else
1959 return FALSE;
1961 /* Determine what sort of operation this is. Note that the code is for
1962 a taken branch, so the code->operation mapping appears backwards. */
1963 switch (code)
1965 case LT:
1966 case LE:
1967 case UNLT:
1968 case UNLE:
1969 op = SMAX;
1970 unsignedp = 0;
1971 break;
1972 case GT:
1973 case GE:
1974 case UNGT:
1975 case UNGE:
1976 op = SMIN;
1977 unsignedp = 0;
1978 break;
1979 case LTU:
1980 case LEU:
1981 op = UMAX;
1982 unsignedp = 1;
1983 break;
1984 case GTU:
1985 case GEU:
1986 op = UMIN;
1987 unsignedp = 1;
1988 break;
1989 default:
1990 return FALSE;
1993 start_sequence ();
1995 target = expand_simple_binop (GET_MODE (if_info->x), op,
1996 if_info->a, if_info->b,
1997 if_info->x, unsignedp, OPTAB_WIDEN);
1998 if (! target)
2000 end_sequence ();
2001 return FALSE;
2003 if (target != if_info->x)
2004 noce_emit_move_insn (if_info->x, target);
2006 seq = end_ifcvt_sequence (if_info);
2007 if (!seq)
2008 return FALSE;
2010 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2011 if_info->cond = cond;
2012 if_info->cond_earliest = earliest;
2014 return TRUE;
2017 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
2018 "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
2019 etc. */
2021 static int
2022 noce_try_abs (struct noce_if_info *if_info)
2024 rtx cond, target, a, b, c;
2025 rtx_insn *earliest, *seq;
2026 int negate;
2027 bool one_cmpl = false;
2029 /* Reject modes with signed zeros. */
2030 if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x)))
2031 return FALSE;
2033 /* Recognize A and B as constituting an ABS or NABS. The canonical
2034 form is a branch around the negation, taken when the object is the
2035 first operand of a comparison against 0 that evaluates to true. */
2036 a = if_info->a;
2037 b = if_info->b;
2038 if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
2039 negate = 0;
2040 else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
2042 c = a; a = b; b = c;
2043 negate = 1;
2045 else if (GET_CODE (a) == NOT && rtx_equal_p (XEXP (a, 0), b))
2047 negate = 0;
2048 one_cmpl = true;
2050 else if (GET_CODE (b) == NOT && rtx_equal_p (XEXP (b, 0), a))
2052 c = a; a = b; b = c;
2053 negate = 1;
2054 one_cmpl = true;
2056 else
2057 return FALSE;
2059 cond = noce_get_alt_condition (if_info, b, &earliest);
2060 if (!cond)
2061 return FALSE;
2063 /* Verify the condition is of the form we expect. */
2064 if (rtx_equal_p (XEXP (cond, 0), b))
2065 c = XEXP (cond, 1);
2066 else if (rtx_equal_p (XEXP (cond, 1), b))
2068 c = XEXP (cond, 0);
2069 negate = !negate;
2071 else
2072 return FALSE;
2074 /* Verify that C is zero. Search one step backward for a
2075 REG_EQUAL note or a simple source if necessary. */
2076 if (REG_P (c))
2078 rtx set;
2079 rtx_insn *insn = prev_nonnote_insn (earliest);
2080 if (insn
2081 && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (earliest)
2082 && (set = single_set (insn))
2083 && rtx_equal_p (SET_DEST (set), c))
2085 rtx note = find_reg_equal_equiv_note (insn);
2086 if (note)
2087 c = XEXP (note, 0);
2088 else
2089 c = SET_SRC (set);
2091 else
2092 return FALSE;
2094 if (MEM_P (c)
2095 && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
2096 && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
2097 c = get_pool_constant (XEXP (c, 0));
2099 /* Work around funny ideas get_condition has wrt canonicalization.
2100 Note that these rtx constants are known to be CONST_INT, and
2101 therefore imply integer comparisons. */
2102 if (c == constm1_rtx && GET_CODE (cond) == GT)
2104 else if (c == const1_rtx && GET_CODE (cond) == LT)
2106 else if (c != CONST0_RTX (GET_MODE (b)))
2107 return FALSE;
2109 /* Determine what sort of operation this is. */
2110 switch (GET_CODE (cond))
2112 case LT:
2113 case LE:
2114 case UNLT:
2115 case UNLE:
2116 negate = !negate;
2117 break;
2118 case GT:
2119 case GE:
2120 case UNGT:
2121 case UNGE:
2122 break;
2123 default:
2124 return FALSE;
2127 start_sequence ();
2128 if (one_cmpl)
2129 target = expand_one_cmpl_abs_nojump (GET_MODE (if_info->x), b,
2130 if_info->x);
2131 else
2132 target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
2134 /* ??? It's a quandary whether cmove would be better here, especially
2135 for integers. Perhaps combine will clean things up. */
2136 if (target && negate)
2138 if (one_cmpl)
2139 target = expand_simple_unop (GET_MODE (target), NOT, target,
2140 if_info->x, 0);
2141 else
2142 target = expand_simple_unop (GET_MODE (target), NEG, target,
2143 if_info->x, 0);
2146 if (! target)
2148 end_sequence ();
2149 return FALSE;
2152 if (target != if_info->x)
2153 noce_emit_move_insn (if_info->x, target);
2155 seq = end_ifcvt_sequence (if_info);
2156 if (!seq)
2157 return FALSE;
2159 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2160 if_info->cond = cond;
2161 if_info->cond_earliest = earliest;
2163 return TRUE;
2166 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
2168 static int
2169 noce_try_sign_mask (struct noce_if_info *if_info)
2171 rtx cond, t, m, c;
2172 rtx_insn *seq;
2173 machine_mode mode;
2174 enum rtx_code code;
2175 bool t_unconditional;
2177 cond = if_info->cond;
2178 code = GET_CODE (cond);
2179 m = XEXP (cond, 0);
2180 c = XEXP (cond, 1);
2182 t = NULL_RTX;
2183 if (if_info->a == const0_rtx)
2185 if ((code == LT && c == const0_rtx)
2186 || (code == LE && c == constm1_rtx))
2187 t = if_info->b;
2189 else if (if_info->b == const0_rtx)
2191 if ((code == GE && c == const0_rtx)
2192 || (code == GT && c == constm1_rtx))
2193 t = if_info->a;
2196 if (! t || side_effects_p (t))
2197 return FALSE;
2199 /* We currently don't handle different modes. */
2200 mode = GET_MODE (t);
2201 if (GET_MODE (m) != mode)
2202 return FALSE;
2204 /* This is only profitable if T is unconditionally executed/evaluated in the
2205 original insn sequence or T is cheap. The former happens if B is the
2206 non-zero (T) value and if INSN_B was taken from TEST_BB, or there was no
2207 INSN_B which can happen for e.g. conditional stores to memory. For the
2208 cost computation use the block TEST_BB where the evaluation will end up
2209 after the transformation. */
2210 t_unconditional =
2211 (t == if_info->b
2212 && (if_info->insn_b == NULL_RTX
2213 || BLOCK_FOR_INSN (if_info->insn_b) == if_info->test_bb));
2214 if (!(t_unconditional
2215 || (set_src_cost (t, optimize_bb_for_speed_p (if_info->test_bb))
2216 < COSTS_N_INSNS (2))))
2217 return FALSE;
2219 start_sequence ();
2220 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
2221 "(signed) m >> 31" directly. This benefits targets with specialized
2222 insns to obtain the signmask, but still uses ashr_optab otherwise. */
2223 m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
2224 t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
2225 : NULL_RTX;
2227 if (!t)
2229 end_sequence ();
2230 return FALSE;
2233 noce_emit_move_insn (if_info->x, t);
2235 seq = end_ifcvt_sequence (if_info);
2236 if (!seq)
2237 return FALSE;
2239 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2240 return TRUE;
2244 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
2245 transformations. */
2247 static int
2248 noce_try_bitop (struct noce_if_info *if_info)
2250 rtx cond, x, a, result;
2251 rtx_insn *seq;
2252 machine_mode mode;
2253 enum rtx_code code;
2254 int bitnum;
2256 x = if_info->x;
2257 cond = if_info->cond;
2258 code = GET_CODE (cond);
2260 /* Check for no else condition. */
2261 if (! rtx_equal_p (x, if_info->b))
2262 return FALSE;
2264 /* Check for a suitable condition. */
2265 if (code != NE && code != EQ)
2266 return FALSE;
2267 if (XEXP (cond, 1) != const0_rtx)
2268 return FALSE;
2269 cond = XEXP (cond, 0);
2271 /* ??? We could also handle AND here. */
2272 if (GET_CODE (cond) == ZERO_EXTRACT)
2274 if (XEXP (cond, 1) != const1_rtx
2275 || !CONST_INT_P (XEXP (cond, 2))
2276 || ! rtx_equal_p (x, XEXP (cond, 0)))
2277 return FALSE;
2278 bitnum = INTVAL (XEXP (cond, 2));
2279 mode = GET_MODE (x);
2280 if (BITS_BIG_ENDIAN)
2281 bitnum = GET_MODE_BITSIZE (mode) - 1 - bitnum;
2282 if (bitnum < 0 || bitnum >= HOST_BITS_PER_WIDE_INT)
2283 return FALSE;
2285 else
2286 return FALSE;
2288 a = if_info->a;
2289 if (GET_CODE (a) == IOR || GET_CODE (a) == XOR)
2291 /* Check for "if (X & C) x = x op C". */
2292 if (! rtx_equal_p (x, XEXP (a, 0))
2293 || !CONST_INT_P (XEXP (a, 1))
2294 || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
2295 != (unsigned HOST_WIDE_INT) 1 << bitnum)
2296 return FALSE;
2298 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
2299 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
2300 if (GET_CODE (a) == IOR)
2301 result = (code == NE) ? a : NULL_RTX;
2302 else if (code == NE)
2304 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
2305 result = gen_int_mode ((HOST_WIDE_INT) 1 << bitnum, mode);
2306 result = simplify_gen_binary (IOR, mode, x, result);
2308 else
2310 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
2311 result = gen_int_mode (~((HOST_WIDE_INT) 1 << bitnum), mode);
2312 result = simplify_gen_binary (AND, mode, x, result);
2315 else if (GET_CODE (a) == AND)
2317 /* Check for "if (X & C) x &= ~C". */
2318 if (! rtx_equal_p (x, XEXP (a, 0))
2319 || !CONST_INT_P (XEXP (a, 1))
2320 || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
2321 != (~((HOST_WIDE_INT) 1 << bitnum) & GET_MODE_MASK (mode)))
2322 return FALSE;
2324 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
2325 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
2326 result = (code == EQ) ? a : NULL_RTX;
2328 else
2329 return FALSE;
2331 if (result)
2333 start_sequence ();
2334 noce_emit_move_insn (x, result);
2335 seq = end_ifcvt_sequence (if_info);
2336 if (!seq)
2337 return FALSE;
2339 emit_insn_before_setloc (seq, if_info->jump,
2340 INSN_LOCATION (if_info->insn_a));
2342 return TRUE;
2346 /* Similar to get_condition, only the resulting condition must be
2347 valid at JUMP, instead of at EARLIEST.
2349 If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2350 THEN block of the caller, and we have to reverse the condition. */
2352 static rtx
2353 noce_get_condition (rtx_insn *jump, rtx_insn **earliest, bool then_else_reversed)
2355 rtx cond, set, tmp;
2356 bool reverse;
2358 if (! any_condjump_p (jump))
2359 return NULL_RTX;
2361 set = pc_set (jump);
2363 /* If this branches to JUMP_LABEL when the condition is false,
2364 reverse the condition. */
2365 reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
2366 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (jump));
2368 /* We may have to reverse because the caller's if block is not canonical,
2369 i.e. the THEN block isn't the fallthrough block for the TEST block
2370 (see find_if_header). */
2371 if (then_else_reversed)
2372 reverse = !reverse;
2374 /* If the condition variable is a register and is MODE_INT, accept it. */
2376 cond = XEXP (SET_SRC (set), 0);
2377 tmp = XEXP (cond, 0);
2378 if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT
2379 && (GET_MODE (tmp) != BImode
2380 || !targetm.small_register_classes_for_mode_p (BImode)))
2382 *earliest = jump;
2384 if (reverse)
2385 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
2386 GET_MODE (cond), tmp, XEXP (cond, 1));
2387 return cond;
2390 /* Otherwise, fall back on canonicalize_condition to do the dirty
2391 work of manipulating MODE_CC values and COMPARE rtx codes. */
2392 tmp = canonicalize_condition (jump, cond, reverse, earliest,
2393 NULL_RTX, false, true);
2395 /* We don't handle side-effects in the condition, like handling
2396 REG_INC notes and making sure no duplicate conditions are emitted. */
2397 if (tmp != NULL_RTX && side_effects_p (tmp))
2398 return NULL_RTX;
2400 return tmp;
2403 /* Return true if OP is ok for if-then-else processing. */
2405 static int
2406 noce_operand_ok (const_rtx op)
2408 if (side_effects_p (op))
2409 return FALSE;
2411 /* We special-case memories, so handle any of them with
2412 no address side effects. */
2413 if (MEM_P (op))
2414 return ! side_effects_p (XEXP (op, 0));
2416 return ! may_trap_p (op);
2419 /* Return true if a write into MEM may trap or fault. */
2421 static bool
2422 noce_mem_write_may_trap_or_fault_p (const_rtx mem)
2424 rtx addr;
2426 if (MEM_READONLY_P (mem))
2427 return true;
2429 if (may_trap_or_fault_p (mem))
2430 return true;
2432 addr = XEXP (mem, 0);
2434 /* Call target hook to avoid the effects of -fpic etc.... */
2435 addr = targetm.delegitimize_address (addr);
2437 while (addr)
2438 switch (GET_CODE (addr))
2440 case CONST:
2441 case PRE_DEC:
2442 case PRE_INC:
2443 case POST_DEC:
2444 case POST_INC:
2445 case POST_MODIFY:
2446 addr = XEXP (addr, 0);
2447 break;
2448 case LO_SUM:
2449 case PRE_MODIFY:
2450 addr = XEXP (addr, 1);
2451 break;
2452 case PLUS:
2453 if (CONST_INT_P (XEXP (addr, 1)))
2454 addr = XEXP (addr, 0);
2455 else
2456 return false;
2457 break;
2458 case LABEL_REF:
2459 return true;
2460 case SYMBOL_REF:
2461 if (SYMBOL_REF_DECL (addr)
2462 && decl_readonly_section (SYMBOL_REF_DECL (addr), 0))
2463 return true;
2464 return false;
2465 default:
2466 return false;
2469 return false;
2472 /* Return whether we can use store speculation for MEM. TOP_BB is the
2473 basic block above the conditional block where we are considering
2474 doing the speculative store. We look for whether MEM is set
2475 unconditionally later in the function. */
2477 static bool
2478 noce_can_store_speculate_p (basic_block top_bb, const_rtx mem)
2480 basic_block dominator;
2482 for (dominator = get_immediate_dominator (CDI_POST_DOMINATORS, top_bb);
2483 dominator != NULL;
2484 dominator = get_immediate_dominator (CDI_POST_DOMINATORS, dominator))
2486 rtx_insn *insn;
2488 FOR_BB_INSNS (dominator, insn)
2490 /* If we see something that might be a memory barrier, we
2491 have to stop looking. Even if the MEM is set later in
2492 the function, we still don't want to set it
2493 unconditionally before the barrier. */
2494 if (INSN_P (insn)
2495 && (volatile_insn_p (PATTERN (insn))
2496 || (CALL_P (insn) && (!RTL_CONST_CALL_P (insn)))))
2497 return false;
2499 if (memory_must_be_modified_in_insn_p (mem, insn))
2500 return true;
2501 if (modified_in_p (XEXP (mem, 0), insn))
2502 return false;
2507 return false;
2510 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2511 it without using conditional execution. Return TRUE if we were successful
2512 at converting the block. */
2514 static int
2515 noce_process_if_block (struct noce_if_info *if_info)
2517 basic_block test_bb = if_info->test_bb; /* test block */
2518 basic_block then_bb = if_info->then_bb; /* THEN */
2519 basic_block else_bb = if_info->else_bb; /* ELSE or NULL */
2520 basic_block join_bb = if_info->join_bb; /* JOIN */
2521 rtx_insn *jump = if_info->jump;
2522 rtx cond = if_info->cond;
2523 rtx_insn *insn_a, *insn_b;
2524 rtx set_a, set_b;
2525 rtx orig_x, x, a, b;
2527 /* We're looking for patterns of the form
2529 (1) if (...) x = a; else x = b;
2530 (2) x = b; if (...) x = a;
2531 (3) if (...) x = a; // as if with an initial x = x.
2533 The later patterns require jumps to be more expensive.
2535 ??? For future expansion, look for multiple X in such patterns. */
2537 /* Look for one of the potential sets. */
2538 insn_a = first_active_insn (then_bb);
2539 if (! insn_a
2540 || insn_a != last_active_insn (then_bb, FALSE)
2541 || (set_a = single_set (insn_a)) == NULL_RTX)
2542 return FALSE;
2544 x = SET_DEST (set_a);
2545 a = SET_SRC (set_a);
2547 /* Look for the other potential set. Make sure we've got equivalent
2548 destinations. */
2549 /* ??? This is overconservative. Storing to two different mems is
2550 as easy as conditionally computing the address. Storing to a
2551 single mem merely requires a scratch memory to use as one of the
2552 destination addresses; often the memory immediately below the
2553 stack pointer is available for this. */
2554 set_b = NULL_RTX;
2555 if (else_bb)
2557 insn_b = first_active_insn (else_bb);
2558 if (! insn_b
2559 || insn_b != last_active_insn (else_bb, FALSE)
2560 || (set_b = single_set (insn_b)) == NULL_RTX
2561 || ! rtx_interchangeable_p (x, SET_DEST (set_b)))
2562 return FALSE;
2564 else
2566 insn_b = prev_nonnote_nondebug_insn (if_info->cond_earliest);
2567 /* We're going to be moving the evaluation of B down from above
2568 COND_EARLIEST to JUMP. Make sure the relevant data is still
2569 intact. */
2570 if (! insn_b
2571 || BLOCK_FOR_INSN (insn_b) != BLOCK_FOR_INSN (if_info->cond_earliest)
2572 || !NONJUMP_INSN_P (insn_b)
2573 || (set_b = single_set (insn_b)) == NULL_RTX
2574 || ! rtx_interchangeable_p (x, SET_DEST (set_b))
2575 || ! noce_operand_ok (SET_SRC (set_b))
2576 || reg_overlap_mentioned_p (x, SET_SRC (set_b))
2577 || modified_between_p (SET_SRC (set_b), insn_b, jump)
2578 /* Avoid extending the lifetime of hard registers on small
2579 register class machines. */
2580 || (REG_P (SET_SRC (set_b))
2581 && HARD_REGISTER_P (SET_SRC (set_b))
2582 && targetm.small_register_classes_for_mode_p
2583 (GET_MODE (SET_SRC (set_b))))
2584 /* Likewise with X. In particular this can happen when
2585 noce_get_condition looks farther back in the instruction
2586 stream than one might expect. */
2587 || reg_overlap_mentioned_p (x, cond)
2588 || reg_overlap_mentioned_p (x, a)
2589 || modified_between_p (x, insn_b, jump))
2591 insn_b = NULL;
2592 set_b = NULL_RTX;
2596 /* If x has side effects then only the if-then-else form is safe to
2597 convert. But even in that case we would need to restore any notes
2598 (such as REG_INC) at then end. That can be tricky if
2599 noce_emit_move_insn expands to more than one insn, so disable the
2600 optimization entirely for now if there are side effects. */
2601 if (side_effects_p (x))
2602 return FALSE;
2604 b = (set_b ? SET_SRC (set_b) : x);
2606 /* Only operate on register destinations, and even then avoid extending
2607 the lifetime of hard registers on small register class machines. */
2608 orig_x = x;
2609 if (!REG_P (x)
2610 || (HARD_REGISTER_P (x)
2611 && targetm.small_register_classes_for_mode_p (GET_MODE (x))))
2613 if (GET_MODE (x) == BLKmode)
2614 return FALSE;
2616 if (GET_CODE (x) == ZERO_EXTRACT
2617 && (!CONST_INT_P (XEXP (x, 1))
2618 || !CONST_INT_P (XEXP (x, 2))))
2619 return FALSE;
2621 x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
2622 ? XEXP (x, 0) : x));
2625 /* Don't operate on sources that may trap or are volatile. */
2626 if (! noce_operand_ok (a) || ! noce_operand_ok (b))
2627 return FALSE;
2629 retry:
2630 /* Set up the info block for our subroutines. */
2631 if_info->insn_a = insn_a;
2632 if_info->insn_b = insn_b;
2633 if_info->x = x;
2634 if_info->a = a;
2635 if_info->b = b;
2637 /* Try optimizations in some approximation of a useful order. */
2638 /* ??? Should first look to see if X is live incoming at all. If it
2639 isn't, we don't need anything but an unconditional set. */
2641 /* Look and see if A and B are really the same. Avoid creating silly
2642 cmove constructs that no one will fix up later. */
2643 if (rtx_interchangeable_p (a, b))
2645 /* If we have an INSN_B, we don't have to create any new rtl. Just
2646 move the instruction that we already have. If we don't have an
2647 INSN_B, that means that A == X, and we've got a noop move. In
2648 that case don't do anything and let the code below delete INSN_A. */
2649 if (insn_b && else_bb)
2651 rtx note;
2653 if (else_bb && insn_b == BB_END (else_bb))
2654 BB_END (else_bb) = PREV_INSN (insn_b);
2655 reorder_insns (insn_b, insn_b, PREV_INSN (jump));
2657 /* If there was a REG_EQUAL note, delete it since it may have been
2658 true due to this insn being after a jump. */
2659 if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
2660 remove_note (insn_b, note);
2662 insn_b = NULL;
2664 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2665 x must be executed twice. */
2666 else if (insn_b && side_effects_p (orig_x))
2667 return FALSE;
2669 x = orig_x;
2670 goto success;
2673 if (!set_b && MEM_P (orig_x))
2675 /* Disallow the "if (...) x = a;" form (implicit "else x = x;")
2676 for optimizations if writing to x may trap or fault,
2677 i.e. it's a memory other than a static var or a stack slot,
2678 is misaligned on strict aligned machines or is read-only. If
2679 x is a read-only memory, then the program is valid only if we
2680 avoid the store into it. If there are stores on both the
2681 THEN and ELSE arms, then we can go ahead with the conversion;
2682 either the program is broken, or the condition is always
2683 false such that the other memory is selected. */
2684 if (noce_mem_write_may_trap_or_fault_p (orig_x))
2685 return FALSE;
2687 /* Avoid store speculation: given "if (...) x = a" where x is a
2688 MEM, we only want to do the store if x is always set
2689 somewhere in the function. This avoids cases like
2690 if (pthread_mutex_trylock(mutex))
2691 ++global_variable;
2692 where we only want global_variable to be changed if the mutex
2693 is held. FIXME: This should ideally be expressed directly in
2694 RTL somehow. */
2695 if (!noce_can_store_speculate_p (test_bb, orig_x))
2696 return FALSE;
2699 if (noce_try_move (if_info))
2700 goto success;
2701 if (noce_try_store_flag (if_info))
2702 goto success;
2703 if (noce_try_bitop (if_info))
2704 goto success;
2705 if (noce_try_minmax (if_info))
2706 goto success;
2707 if (noce_try_abs (if_info))
2708 goto success;
2709 if (HAVE_conditional_move
2710 && noce_try_cmove (if_info))
2711 goto success;
2712 if (! targetm.have_conditional_execution ())
2714 if (noce_try_store_flag_constants (if_info))
2715 goto success;
2716 if (noce_try_addcc (if_info))
2717 goto success;
2718 if (noce_try_store_flag_mask (if_info))
2719 goto success;
2720 if (HAVE_conditional_move
2721 && noce_try_cmove_arith (if_info))
2722 goto success;
2723 if (noce_try_sign_mask (if_info))
2724 goto success;
2727 if (!else_bb && set_b)
2729 insn_b = NULL;
2730 set_b = NULL_RTX;
2731 b = orig_x;
2732 goto retry;
2735 return FALSE;
2737 success:
2739 /* If we used a temporary, fix it up now. */
2740 if (orig_x != x)
2742 rtx_insn *seq;
2744 start_sequence ();
2745 noce_emit_move_insn (orig_x, x);
2746 seq = get_insns ();
2747 set_used_flags (orig_x);
2748 unshare_all_rtl_in_chain (seq);
2749 end_sequence ();
2751 emit_insn_before_setloc (seq, BB_END (test_bb), INSN_LOCATION (insn_a));
2754 /* The original THEN and ELSE blocks may now be removed. The test block
2755 must now jump to the join block. If the test block and the join block
2756 can be merged, do so. */
2757 if (else_bb)
2759 delete_basic_block (else_bb);
2760 num_true_changes++;
2762 else
2763 remove_edge (find_edge (test_bb, join_bb));
2765 remove_edge (find_edge (then_bb, join_bb));
2766 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
2767 delete_basic_block (then_bb);
2768 num_true_changes++;
2770 if (can_merge_blocks_p (test_bb, join_bb))
2772 merge_blocks (test_bb, join_bb);
2773 num_true_changes++;
2776 num_updated_if_blocks++;
2777 return TRUE;
2780 /* Check whether a block is suitable for conditional move conversion.
2781 Every insn must be a simple set of a register to a constant or a
2782 register. For each assignment, store the value in the pointer map
2783 VALS, keyed indexed by register pointer, then store the register
2784 pointer in REGS. COND is the condition we will test. */
2786 static int
2787 check_cond_move_block (basic_block bb,
2788 hash_map<rtx, rtx> *vals,
2789 vec<rtx> *regs,
2790 rtx cond)
2792 rtx_insn *insn;
2794 /* We can only handle simple jumps at the end of the basic block.
2795 It is almost impossible to update the CFG otherwise. */
2796 insn = BB_END (bb);
2797 if (JUMP_P (insn) && !onlyjump_p (insn))
2798 return FALSE;
2800 FOR_BB_INSNS (bb, insn)
2802 rtx set, dest, src;
2804 if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
2805 continue;
2806 set = single_set (insn);
2807 if (!set)
2808 return FALSE;
2810 dest = SET_DEST (set);
2811 src = SET_SRC (set);
2812 if (!REG_P (dest)
2813 || (HARD_REGISTER_P (dest)
2814 && targetm.small_register_classes_for_mode_p (GET_MODE (dest))))
2815 return FALSE;
2817 if (!CONSTANT_P (src) && !register_operand (src, VOIDmode))
2818 return FALSE;
2820 if (side_effects_p (src) || side_effects_p (dest))
2821 return FALSE;
2823 if (may_trap_p (src) || may_trap_p (dest))
2824 return FALSE;
2826 /* Don't try to handle this if the source register was
2827 modified earlier in the block. */
2828 if ((REG_P (src)
2829 && vals->get (src))
2830 || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
2831 && vals->get (SUBREG_REG (src))))
2832 return FALSE;
2834 /* Don't try to handle this if the destination register was
2835 modified earlier in the block. */
2836 if (vals->get (dest))
2837 return FALSE;
2839 /* Don't try to handle this if the condition uses the
2840 destination register. */
2841 if (reg_overlap_mentioned_p (dest, cond))
2842 return FALSE;
2844 /* Don't try to handle this if the source register is modified
2845 later in the block. */
2846 if (!CONSTANT_P (src)
2847 && modified_between_p (src, insn, NEXT_INSN (BB_END (bb))))
2848 return FALSE;
2850 vals->put (dest, src);
2852 regs->safe_push (dest);
2855 return TRUE;
2858 /* Given a basic block BB suitable for conditional move conversion,
2859 a condition COND, and pointer maps THEN_VALS and ELSE_VALS containing
2860 the register values depending on COND, emit the insns in the block as
2861 conditional moves. If ELSE_BLOCK is true, THEN_BB was already
2862 processed. The caller has started a sequence for the conversion.
2863 Return true if successful, false if something goes wrong. */
2865 static bool
2866 cond_move_convert_if_block (struct noce_if_info *if_infop,
2867 basic_block bb, rtx cond,
2868 hash_map<rtx, rtx> *then_vals,
2869 hash_map<rtx, rtx> *else_vals,
2870 bool else_block_p)
2872 enum rtx_code code;
2873 rtx_insn *insn;
2874 rtx cond_arg0, cond_arg1;
2876 code = GET_CODE (cond);
2877 cond_arg0 = XEXP (cond, 0);
2878 cond_arg1 = XEXP (cond, 1);
2880 FOR_BB_INSNS (bb, insn)
2882 rtx set, target, dest, t, e;
2884 /* ??? Maybe emit conditional debug insn? */
2885 if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
2886 continue;
2887 set = single_set (insn);
2888 gcc_assert (set && REG_P (SET_DEST (set)));
2890 dest = SET_DEST (set);
2892 rtx *then_slot = then_vals->get (dest);
2893 rtx *else_slot = else_vals->get (dest);
2894 t = then_slot ? *then_slot : NULL_RTX;
2895 e = else_slot ? *else_slot : NULL_RTX;
2897 if (else_block_p)
2899 /* If this register was set in the then block, we already
2900 handled this case there. */
2901 if (t)
2902 continue;
2903 t = dest;
2904 gcc_assert (e);
2906 else
2908 gcc_assert (t);
2909 if (!e)
2910 e = dest;
2913 target = noce_emit_cmove (if_infop, dest, code, cond_arg0, cond_arg1,
2914 t, e);
2915 if (!target)
2916 return false;
2918 if (target != dest)
2919 noce_emit_move_insn (dest, target);
2922 return true;
2925 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2926 it using only conditional moves. Return TRUE if we were successful at
2927 converting the block. */
2929 static int
2930 cond_move_process_if_block (struct noce_if_info *if_info)
2932 basic_block test_bb = if_info->test_bb;
2933 basic_block then_bb = if_info->then_bb;
2934 basic_block else_bb = if_info->else_bb;
2935 basic_block join_bb = if_info->join_bb;
2936 rtx_insn *jump = if_info->jump;
2937 rtx cond = if_info->cond;
2938 rtx_insn *seq, *loc_insn;
2939 rtx reg;
2940 int c;
2941 vec<rtx> then_regs = vNULL;
2942 vec<rtx> else_regs = vNULL;
2943 unsigned int i;
2944 int success_p = FALSE;
2946 /* Build a mapping for each block to the value used for each
2947 register. */
2948 hash_map<rtx, rtx> then_vals;
2949 hash_map<rtx, rtx> else_vals;
2951 /* Make sure the blocks are suitable. */
2952 if (!check_cond_move_block (then_bb, &then_vals, &then_regs, cond)
2953 || (else_bb
2954 && !check_cond_move_block (else_bb, &else_vals, &else_regs, cond)))
2955 goto done;
2957 /* Make sure the blocks can be used together. If the same register
2958 is set in both blocks, and is not set to a constant in both
2959 cases, then both blocks must set it to the same register. We
2960 have already verified that if it is set to a register, that the
2961 source register does not change after the assignment. Also count
2962 the number of registers set in only one of the blocks. */
2963 c = 0;
2964 FOR_EACH_VEC_ELT (then_regs, i, reg)
2966 rtx *then_slot = then_vals.get (reg);
2967 rtx *else_slot = else_vals.get (reg);
2969 gcc_checking_assert (then_slot);
2970 if (!else_slot)
2971 ++c;
2972 else
2974 rtx then_val = *then_slot;
2975 rtx else_val = *else_slot;
2976 if (!CONSTANT_P (then_val) && !CONSTANT_P (else_val)
2977 && !rtx_equal_p (then_val, else_val))
2978 goto done;
2982 /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
2983 FOR_EACH_VEC_ELT (else_regs, i, reg)
2985 gcc_checking_assert (else_vals.get (reg));
2986 if (!then_vals.get (reg))
2987 ++c;
2990 /* Make sure it is reasonable to convert this block. What matters
2991 is the number of assignments currently made in only one of the
2992 branches, since if we convert we are going to always execute
2993 them. */
2994 if (c > MAX_CONDITIONAL_EXECUTE)
2995 goto done;
2997 /* Try to emit the conditional moves. First do the then block,
2998 then do anything left in the else blocks. */
2999 start_sequence ();
3000 if (!cond_move_convert_if_block (if_info, then_bb, cond,
3001 &then_vals, &else_vals, false)
3002 || (else_bb
3003 && !cond_move_convert_if_block (if_info, else_bb, cond,
3004 &then_vals, &else_vals, true)))
3006 end_sequence ();
3007 goto done;
3009 seq = end_ifcvt_sequence (if_info);
3010 if (!seq)
3011 goto done;
3013 loc_insn = first_active_insn (then_bb);
3014 if (!loc_insn)
3016 loc_insn = first_active_insn (else_bb);
3017 gcc_assert (loc_insn);
3019 emit_insn_before_setloc (seq, jump, INSN_LOCATION (loc_insn));
3021 if (else_bb)
3023 delete_basic_block (else_bb);
3024 num_true_changes++;
3026 else
3027 remove_edge (find_edge (test_bb, join_bb));
3029 remove_edge (find_edge (then_bb, join_bb));
3030 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3031 delete_basic_block (then_bb);
3032 num_true_changes++;
3034 if (can_merge_blocks_p (test_bb, join_bb))
3036 merge_blocks (test_bb, join_bb);
3037 num_true_changes++;
3040 num_updated_if_blocks++;
3042 success_p = TRUE;
3044 done:
3045 then_regs.release ();
3046 else_regs.release ();
3047 return success_p;
3051 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
3052 IF-THEN-ELSE-JOIN block.
3054 If so, we'll try to convert the insns to not require the branch,
3055 using only transformations that do not require conditional execution.
3057 Return TRUE if we were successful at converting the block. */
3059 static int
3060 noce_find_if_block (basic_block test_bb, edge then_edge, edge else_edge,
3061 int pass)
3063 basic_block then_bb, else_bb, join_bb;
3064 bool then_else_reversed = false;
3065 rtx_insn *jump;
3066 rtx cond;
3067 rtx_insn *cond_earliest;
3068 struct noce_if_info if_info;
3070 /* We only ever should get here before reload. */
3071 gcc_assert (!reload_completed);
3073 /* Recognize an IF-THEN-ELSE-JOIN block. */
3074 if (single_pred_p (then_edge->dest)
3075 && single_succ_p (then_edge->dest)
3076 && single_pred_p (else_edge->dest)
3077 && single_succ_p (else_edge->dest)
3078 && single_succ (then_edge->dest) == single_succ (else_edge->dest))
3080 then_bb = then_edge->dest;
3081 else_bb = else_edge->dest;
3082 join_bb = single_succ (then_bb);
3084 /* Recognize an IF-THEN-JOIN block. */
3085 else if (single_pred_p (then_edge->dest)
3086 && single_succ_p (then_edge->dest)
3087 && single_succ (then_edge->dest) == else_edge->dest)
3089 then_bb = then_edge->dest;
3090 else_bb = NULL_BLOCK;
3091 join_bb = else_edge->dest;
3093 /* Recognize an IF-ELSE-JOIN block. We can have those because the order
3094 of basic blocks in cfglayout mode does not matter, so the fallthrough
3095 edge can go to any basic block (and not just to bb->next_bb, like in
3096 cfgrtl mode). */
3097 else if (single_pred_p (else_edge->dest)
3098 && single_succ_p (else_edge->dest)
3099 && single_succ (else_edge->dest) == then_edge->dest)
3101 /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
3102 To make this work, we have to invert the THEN and ELSE blocks
3103 and reverse the jump condition. */
3104 then_bb = else_edge->dest;
3105 else_bb = NULL_BLOCK;
3106 join_bb = single_succ (then_bb);
3107 then_else_reversed = true;
3109 else
3110 /* Not a form we can handle. */
3111 return FALSE;
3113 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3114 if (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
3115 return FALSE;
3116 if (else_bb
3117 && single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
3118 return FALSE;
3120 num_possible_if_blocks++;
3122 if (dump_file)
3124 fprintf (dump_file,
3125 "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
3126 (else_bb) ? "-ELSE" : "",
3127 pass, test_bb->index, then_bb->index);
3129 if (else_bb)
3130 fprintf (dump_file, ", else %d", else_bb->index);
3132 fprintf (dump_file, ", join %d\n", join_bb->index);
3135 /* If the conditional jump is more than just a conditional
3136 jump, then we can not do if-conversion on this block. */
3137 jump = BB_END (test_bb);
3138 if (! onlyjump_p (jump))
3139 return FALSE;
3141 /* If this is not a standard conditional jump, we can't parse it. */
3142 cond = noce_get_condition (jump, &cond_earliest, then_else_reversed);
3143 if (!cond)
3144 return FALSE;
3146 /* We must be comparing objects whose modes imply the size. */
3147 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
3148 return FALSE;
3150 /* Initialize an IF_INFO struct to pass around. */
3151 memset (&if_info, 0, sizeof if_info);
3152 if_info.test_bb = test_bb;
3153 if_info.then_bb = then_bb;
3154 if_info.else_bb = else_bb;
3155 if_info.join_bb = join_bb;
3156 if_info.cond = cond;
3157 if_info.cond_earliest = cond_earliest;
3158 if_info.jump = jump;
3159 if_info.then_else_reversed = then_else_reversed;
3160 if_info.branch_cost = BRANCH_COST (optimize_bb_for_speed_p (test_bb),
3161 predictable_edge_p (then_edge));
3163 /* Do the real work. */
3165 if (noce_process_if_block (&if_info))
3166 return TRUE;
3168 if (HAVE_conditional_move
3169 && cond_move_process_if_block (&if_info))
3170 return TRUE;
3172 return FALSE;
3176 /* Merge the blocks and mark for local life update. */
3178 static void
3179 merge_if_block (struct ce_if_block * ce_info)
3181 basic_block test_bb = ce_info->test_bb; /* last test block */
3182 basic_block then_bb = ce_info->then_bb; /* THEN */
3183 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
3184 basic_block join_bb = ce_info->join_bb; /* join block */
3185 basic_block combo_bb;
3187 /* All block merging is done into the lower block numbers. */
3189 combo_bb = test_bb;
3190 df_set_bb_dirty (test_bb);
3192 /* Merge any basic blocks to handle && and || subtests. Each of
3193 the blocks are on the fallthru path from the predecessor block. */
3194 if (ce_info->num_multiple_test_blocks > 0)
3196 basic_block bb = test_bb;
3197 basic_block last_test_bb = ce_info->last_test_bb;
3198 basic_block fallthru = block_fallthru (bb);
3202 bb = fallthru;
3203 fallthru = block_fallthru (bb);
3204 merge_blocks (combo_bb, bb);
3205 num_true_changes++;
3207 while (bb != last_test_bb);
3210 /* Merge TEST block into THEN block. Normally the THEN block won't have a
3211 label, but it might if there were || tests. That label's count should be
3212 zero, and it normally should be removed. */
3214 if (then_bb)
3216 /* If THEN_BB has no successors, then there's a BARRIER after it.
3217 If COMBO_BB has more than one successor (THEN_BB), then that BARRIER
3218 is no longer needed, and in fact it is incorrect to leave it in
3219 the insn stream. */
3220 if (EDGE_COUNT (then_bb->succs) == 0
3221 && EDGE_COUNT (combo_bb->succs) > 1)
3223 rtx_insn *end = NEXT_INSN (BB_END (then_bb));
3224 while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
3225 end = NEXT_INSN (end);
3227 if (end && BARRIER_P (end))
3228 delete_insn (end);
3230 merge_blocks (combo_bb, then_bb);
3231 num_true_changes++;
3234 /* The ELSE block, if it existed, had a label. That label count
3235 will almost always be zero, but odd things can happen when labels
3236 get their addresses taken. */
3237 if (else_bb)
3239 /* If ELSE_BB has no successors, then there's a BARRIER after it.
3240 If COMBO_BB has more than one successor (ELSE_BB), then that BARRIER
3241 is no longer needed, and in fact it is incorrect to leave it in
3242 the insn stream. */
3243 if (EDGE_COUNT (else_bb->succs) == 0
3244 && EDGE_COUNT (combo_bb->succs) > 1)
3246 rtx_insn *end = NEXT_INSN (BB_END (else_bb));
3247 while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
3248 end = NEXT_INSN (end);
3250 if (end && BARRIER_P (end))
3251 delete_insn (end);
3253 merge_blocks (combo_bb, else_bb);
3254 num_true_changes++;
3257 /* If there was no join block reported, that means it was not adjacent
3258 to the others, and so we cannot merge them. */
3260 if (! join_bb)
3262 rtx_insn *last = BB_END (combo_bb);
3264 /* The outgoing edge for the current COMBO block should already
3265 be correct. Verify this. */
3266 if (EDGE_COUNT (combo_bb->succs) == 0)
3267 gcc_assert (find_reg_note (last, REG_NORETURN, NULL)
3268 || (NONJUMP_INSN_P (last)
3269 && GET_CODE (PATTERN (last)) == TRAP_IF
3270 && (TRAP_CONDITION (PATTERN (last))
3271 == const_true_rtx)));
3273 else
3274 /* There should still be something at the end of the THEN or ELSE
3275 blocks taking us to our final destination. */
3276 gcc_assert (JUMP_P (last)
3277 || (EDGE_SUCC (combo_bb, 0)->dest
3278 == EXIT_BLOCK_PTR_FOR_FN (cfun)
3279 && CALL_P (last)
3280 && SIBLING_CALL_P (last))
3281 || ((EDGE_SUCC (combo_bb, 0)->flags & EDGE_EH)
3282 && can_throw_internal (last)));
3285 /* The JOIN block may have had quite a number of other predecessors too.
3286 Since we've already merged the TEST, THEN and ELSE blocks, we should
3287 have only one remaining edge from our if-then-else diamond. If there
3288 is more than one remaining edge, it must come from elsewhere. There
3289 may be zero incoming edges if the THEN block didn't actually join
3290 back up (as with a call to a non-return function). */
3291 else if (EDGE_COUNT (join_bb->preds) < 2
3292 && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
3294 /* We can merge the JOIN cleanly and update the dataflow try
3295 again on this pass.*/
3296 merge_blocks (combo_bb, join_bb);
3297 num_true_changes++;
3299 else
3301 /* We cannot merge the JOIN. */
3303 /* The outgoing edge for the current COMBO block should already
3304 be correct. Verify this. */
3305 gcc_assert (single_succ_p (combo_bb)
3306 && single_succ (combo_bb) == join_bb);
3308 /* Remove the jump and cruft from the end of the COMBO block. */
3309 if (join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
3310 tidy_fallthru_edge (single_succ_edge (combo_bb));
3313 num_updated_if_blocks++;
3316 /* Find a block ending in a simple IF condition and try to transform it
3317 in some way. When converting a multi-block condition, put the new code
3318 in the first such block and delete the rest. Return a pointer to this
3319 first block if some transformation was done. Return NULL otherwise. */
3321 static basic_block
3322 find_if_header (basic_block test_bb, int pass)
3324 ce_if_block ce_info;
3325 edge then_edge;
3326 edge else_edge;
3328 /* The kind of block we're looking for has exactly two successors. */
3329 if (EDGE_COUNT (test_bb->succs) != 2)
3330 return NULL;
3332 then_edge = EDGE_SUCC (test_bb, 0);
3333 else_edge = EDGE_SUCC (test_bb, 1);
3335 if (df_get_bb_dirty (then_edge->dest))
3336 return NULL;
3337 if (df_get_bb_dirty (else_edge->dest))
3338 return NULL;
3340 /* Neither edge should be abnormal. */
3341 if ((then_edge->flags & EDGE_COMPLEX)
3342 || (else_edge->flags & EDGE_COMPLEX))
3343 return NULL;
3345 /* Nor exit the loop. */
3346 if ((then_edge->flags & EDGE_LOOP_EXIT)
3347 || (else_edge->flags & EDGE_LOOP_EXIT))
3348 return NULL;
3350 /* The THEN edge is canonically the one that falls through. */
3351 if (then_edge->flags & EDGE_FALLTHRU)
3353 else if (else_edge->flags & EDGE_FALLTHRU)
3355 edge e = else_edge;
3356 else_edge = then_edge;
3357 then_edge = e;
3359 else
3360 /* Otherwise this must be a multiway branch of some sort. */
3361 return NULL;
3363 memset (&ce_info, 0, sizeof (ce_info));
3364 ce_info.test_bb = test_bb;
3365 ce_info.then_bb = then_edge->dest;
3366 ce_info.else_bb = else_edge->dest;
3367 ce_info.pass = pass;
3369 #ifdef IFCVT_MACHDEP_INIT
3370 IFCVT_MACHDEP_INIT (&ce_info);
3371 #endif
3373 if (!reload_completed
3374 && noce_find_if_block (test_bb, then_edge, else_edge, pass))
3375 goto success;
3377 if (reload_completed
3378 && targetm.have_conditional_execution ()
3379 && cond_exec_find_if_block (&ce_info))
3380 goto success;
3382 if (HAVE_trap
3383 && optab_handler (ctrap_optab, word_mode) != CODE_FOR_nothing
3384 && find_cond_trap (test_bb, then_edge, else_edge))
3385 goto success;
3387 if (dom_info_state (CDI_POST_DOMINATORS) >= DOM_NO_FAST_QUERY
3388 && (reload_completed || !targetm.have_conditional_execution ()))
3390 if (find_if_case_1 (test_bb, then_edge, else_edge))
3391 goto success;
3392 if (find_if_case_2 (test_bb, then_edge, else_edge))
3393 goto success;
3396 return NULL;
3398 success:
3399 if (dump_file)
3400 fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
3401 /* Set this so we continue looking. */
3402 cond_exec_changed_p = TRUE;
3403 return ce_info.test_bb;
3406 /* Return true if a block has two edges, one of which falls through to the next
3407 block, and the other jumps to a specific block, so that we can tell if the
3408 block is part of an && test or an || test. Returns either -1 or the number
3409 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
3411 static int
3412 block_jumps_and_fallthru_p (basic_block cur_bb, basic_block target_bb)
3414 edge cur_edge;
3415 int fallthru_p = FALSE;
3416 int jump_p = FALSE;
3417 rtx_insn *insn;
3418 rtx_insn *end;
3419 int n_insns = 0;
3420 edge_iterator ei;
3422 if (!cur_bb || !target_bb)
3423 return -1;
3425 /* If no edges, obviously it doesn't jump or fallthru. */
3426 if (EDGE_COUNT (cur_bb->succs) == 0)
3427 return FALSE;
3429 FOR_EACH_EDGE (cur_edge, ei, cur_bb->succs)
3431 if (cur_edge->flags & EDGE_COMPLEX)
3432 /* Anything complex isn't what we want. */
3433 return -1;
3435 else if (cur_edge->flags & EDGE_FALLTHRU)
3436 fallthru_p = TRUE;
3438 else if (cur_edge->dest == target_bb)
3439 jump_p = TRUE;
3441 else
3442 return -1;
3445 if ((jump_p & fallthru_p) == 0)
3446 return -1;
3448 /* Don't allow calls in the block, since this is used to group && and ||
3449 together for conditional execution support. ??? we should support
3450 conditional execution support across calls for IA-64 some day, but
3451 for now it makes the code simpler. */
3452 end = BB_END (cur_bb);
3453 insn = BB_HEAD (cur_bb);
3455 while (insn != NULL_RTX)
3457 if (CALL_P (insn))
3458 return -1;
3460 if (INSN_P (insn)
3461 && !JUMP_P (insn)
3462 && !DEBUG_INSN_P (insn)
3463 && GET_CODE (PATTERN (insn)) != USE
3464 && GET_CODE (PATTERN (insn)) != CLOBBER)
3465 n_insns++;
3467 if (insn == end)
3468 break;
3470 insn = NEXT_INSN (insn);
3473 return n_insns;
3476 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
3477 block. If so, we'll try to convert the insns to not require the branch.
3478 Return TRUE if we were successful at converting the block. */
3480 static int
3481 cond_exec_find_if_block (struct ce_if_block * ce_info)
3483 basic_block test_bb = ce_info->test_bb;
3484 basic_block then_bb = ce_info->then_bb;
3485 basic_block else_bb = ce_info->else_bb;
3486 basic_block join_bb = NULL_BLOCK;
3487 edge cur_edge;
3488 basic_block next;
3489 edge_iterator ei;
3491 ce_info->last_test_bb = test_bb;
3493 /* We only ever should get here after reload,
3494 and if we have conditional execution. */
3495 gcc_assert (reload_completed && targetm.have_conditional_execution ());
3497 /* Discover if any fall through predecessors of the current test basic block
3498 were && tests (which jump to the else block) or || tests (which jump to
3499 the then block). */
3500 if (single_pred_p (test_bb)
3501 && single_pred_edge (test_bb)->flags == EDGE_FALLTHRU)
3503 basic_block bb = single_pred (test_bb);
3504 basic_block target_bb;
3505 int max_insns = MAX_CONDITIONAL_EXECUTE;
3506 int n_insns;
3508 /* Determine if the preceding block is an && or || block. */
3509 if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0)
3511 ce_info->and_and_p = TRUE;
3512 target_bb = else_bb;
3514 else if ((n_insns = block_jumps_and_fallthru_p (bb, then_bb)) >= 0)
3516 ce_info->and_and_p = FALSE;
3517 target_bb = then_bb;
3519 else
3520 target_bb = NULL_BLOCK;
3522 if (target_bb && n_insns <= max_insns)
3524 int total_insns = 0;
3525 int blocks = 0;
3527 ce_info->last_test_bb = test_bb;
3529 /* Found at least one && or || block, look for more. */
3532 ce_info->test_bb = test_bb = bb;
3533 total_insns += n_insns;
3534 blocks++;
3536 if (!single_pred_p (bb))
3537 break;
3539 bb = single_pred (bb);
3540 n_insns = block_jumps_and_fallthru_p (bb, target_bb);
3542 while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
3544 ce_info->num_multiple_test_blocks = blocks;
3545 ce_info->num_multiple_test_insns = total_insns;
3547 if (ce_info->and_and_p)
3548 ce_info->num_and_and_blocks = blocks;
3549 else
3550 ce_info->num_or_or_blocks = blocks;
3554 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
3555 other than any || blocks which jump to the THEN block. */
3556 if ((EDGE_COUNT (then_bb->preds) - ce_info->num_or_or_blocks) != 1)
3557 return FALSE;
3559 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3560 FOR_EACH_EDGE (cur_edge, ei, then_bb->preds)
3562 if (cur_edge->flags & EDGE_COMPLEX)
3563 return FALSE;
3566 FOR_EACH_EDGE (cur_edge, ei, else_bb->preds)
3568 if (cur_edge->flags & EDGE_COMPLEX)
3569 return FALSE;
3572 /* The THEN block of an IF-THEN combo must have zero or one successors. */
3573 if (EDGE_COUNT (then_bb->succs) > 0
3574 && (!single_succ_p (then_bb)
3575 || (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
3576 || (epilogue_completed
3577 && tablejump_p (BB_END (then_bb), NULL, NULL))))
3578 return FALSE;
3580 /* If the THEN block has no successors, conditional execution can still
3581 make a conditional call. Don't do this unless the ELSE block has
3582 only one incoming edge -- the CFG manipulation is too ugly otherwise.
3583 Check for the last insn of the THEN block being an indirect jump, which
3584 is listed as not having any successors, but confuses the rest of the CE
3585 code processing. ??? we should fix this in the future. */
3586 if (EDGE_COUNT (then_bb->succs) == 0)
3588 if (single_pred_p (else_bb) && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
3590 rtx_insn *last_insn = BB_END (then_bb);
3592 while (last_insn
3593 && NOTE_P (last_insn)
3594 && last_insn != BB_HEAD (then_bb))
3595 last_insn = PREV_INSN (last_insn);
3597 if (last_insn
3598 && JUMP_P (last_insn)
3599 && ! simplejump_p (last_insn))
3600 return FALSE;
3602 join_bb = else_bb;
3603 else_bb = NULL_BLOCK;
3605 else
3606 return FALSE;
3609 /* If the THEN block's successor is the other edge out of the TEST block,
3610 then we have an IF-THEN combo without an ELSE. */
3611 else if (single_succ (then_bb) == else_bb)
3613 join_bb = else_bb;
3614 else_bb = NULL_BLOCK;
3617 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
3618 has exactly one predecessor and one successor, and the outgoing edge
3619 is not complex, then we have an IF-THEN-ELSE combo. */
3620 else if (single_succ_p (else_bb)
3621 && single_succ (then_bb) == single_succ (else_bb)
3622 && single_pred_p (else_bb)
3623 && !(single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
3624 && !(epilogue_completed
3625 && tablejump_p (BB_END (else_bb), NULL, NULL)))
3626 join_bb = single_succ (else_bb);
3628 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
3629 else
3630 return FALSE;
3632 num_possible_if_blocks++;
3634 if (dump_file)
3636 fprintf (dump_file,
3637 "\nIF-THEN%s block found, pass %d, start block %d "
3638 "[insn %d], then %d [%d]",
3639 (else_bb) ? "-ELSE" : "",
3640 ce_info->pass,
3641 test_bb->index,
3642 BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
3643 then_bb->index,
3644 BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
3646 if (else_bb)
3647 fprintf (dump_file, ", else %d [%d]",
3648 else_bb->index,
3649 BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
3651 fprintf (dump_file, ", join %d [%d]",
3652 join_bb->index,
3653 BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
3655 if (ce_info->num_multiple_test_blocks > 0)
3656 fprintf (dump_file, ", %d %s block%s last test %d [%d]",
3657 ce_info->num_multiple_test_blocks,
3658 (ce_info->and_and_p) ? "&&" : "||",
3659 (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
3660 ce_info->last_test_bb->index,
3661 ((BB_HEAD (ce_info->last_test_bb))
3662 ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
3663 : -1));
3665 fputc ('\n', dump_file);
3668 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
3669 first condition for free, since we've already asserted that there's a
3670 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
3671 we checked the FALLTHRU flag, those are already adjacent to the last IF
3672 block. */
3673 /* ??? As an enhancement, move the ELSE block. Have to deal with
3674 BLOCK notes, if by no other means than backing out the merge if they
3675 exist. Sticky enough I don't want to think about it now. */
3676 next = then_bb;
3677 if (else_bb && (next = next->next_bb) != else_bb)
3678 return FALSE;
3679 if ((next = next->next_bb) != join_bb
3680 && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
3682 if (else_bb)
3683 join_bb = NULL;
3684 else
3685 return FALSE;
3688 /* Do the real work. */
3690 ce_info->else_bb = else_bb;
3691 ce_info->join_bb = join_bb;
3693 /* If we have && and || tests, try to first handle combining the && and ||
3694 tests into the conditional code, and if that fails, go back and handle
3695 it without the && and ||, which at present handles the && case if there
3696 was no ELSE block. */
3697 if (cond_exec_process_if_block (ce_info, TRUE))
3698 return TRUE;
3700 if (ce_info->num_multiple_test_blocks)
3702 cancel_changes (0);
3704 if (cond_exec_process_if_block (ce_info, FALSE))
3705 return TRUE;
3708 return FALSE;
3711 /* Convert a branch over a trap, or a branch
3712 to a trap, into a conditional trap. */
3714 static int
3715 find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
3717 basic_block then_bb = then_edge->dest;
3718 basic_block else_bb = else_edge->dest;
3719 basic_block other_bb, trap_bb;
3720 rtx_insn *trap, *jump;
3721 rtx cond, seq;
3722 rtx_insn *cond_earliest;
3723 enum rtx_code code;
3725 /* Locate the block with the trap instruction. */
3726 /* ??? While we look for no successors, we really ought to allow
3727 EH successors. Need to fix merge_if_block for that to work. */
3728 if ((trap = block_has_only_trap (then_bb)) != NULL)
3729 trap_bb = then_bb, other_bb = else_bb;
3730 else if ((trap = block_has_only_trap (else_bb)) != NULL)
3731 trap_bb = else_bb, other_bb = then_bb;
3732 else
3733 return FALSE;
3735 if (dump_file)
3737 fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
3738 test_bb->index, trap_bb->index);
3741 /* If this is not a standard conditional jump, we can't parse it. */
3742 jump = BB_END (test_bb);
3743 cond = noce_get_condition (jump, &cond_earliest, false);
3744 if (! cond)
3745 return FALSE;
3747 /* If the conditional jump is more than just a conditional jump, then
3748 we can not do if-conversion on this block. */
3749 if (! onlyjump_p (jump))
3750 return FALSE;
3752 /* We must be comparing objects whose modes imply the size. */
3753 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
3754 return FALSE;
3756 /* Reverse the comparison code, if necessary. */
3757 code = GET_CODE (cond);
3758 if (then_bb == trap_bb)
3760 code = reversed_comparison_code (cond, jump);
3761 if (code == UNKNOWN)
3762 return FALSE;
3765 /* Attempt to generate the conditional trap. */
3766 seq = gen_cond_trap (code, copy_rtx (XEXP (cond, 0)),
3767 copy_rtx (XEXP (cond, 1)),
3768 TRAP_CODE (PATTERN (trap)));
3769 if (seq == NULL)
3770 return FALSE;
3772 /* Emit the new insns before cond_earliest. */
3773 emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATION (trap));
3775 /* Delete the trap block if possible. */
3776 remove_edge (trap_bb == then_bb ? then_edge : else_edge);
3777 df_set_bb_dirty (test_bb);
3778 df_set_bb_dirty (then_bb);
3779 df_set_bb_dirty (else_bb);
3781 if (EDGE_COUNT (trap_bb->preds) == 0)
3783 delete_basic_block (trap_bb);
3784 num_true_changes++;
3787 /* Wire together the blocks again. */
3788 if (current_ir_type () == IR_RTL_CFGLAYOUT)
3789 single_succ_edge (test_bb)->flags |= EDGE_FALLTHRU;
3790 else if (trap_bb == then_bb)
3792 rtx lab;
3793 rtx_insn *newjump;
3795 lab = JUMP_LABEL (jump);
3796 newjump = emit_jump_insn_after (gen_jump (lab), jump);
3797 LABEL_NUSES (lab) += 1;
3798 JUMP_LABEL (newjump) = lab;
3799 emit_barrier_after (newjump);
3801 delete_insn (jump);
3803 if (can_merge_blocks_p (test_bb, other_bb))
3805 merge_blocks (test_bb, other_bb);
3806 num_true_changes++;
3809 num_updated_if_blocks++;
3810 return TRUE;
3813 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
3814 return it. */
3816 static rtx_insn *
3817 block_has_only_trap (basic_block bb)
3819 rtx_insn *trap;
3821 /* We're not the exit block. */
3822 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
3823 return NULL;
3825 /* The block must have no successors. */
3826 if (EDGE_COUNT (bb->succs) > 0)
3827 return NULL;
3829 /* The only instruction in the THEN block must be the trap. */
3830 trap = first_active_insn (bb);
3831 if (! (trap == BB_END (bb)
3832 && GET_CODE (PATTERN (trap)) == TRAP_IF
3833 && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
3834 return NULL;
3836 return trap;
3839 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
3840 transformable, but not necessarily the other. There need be no
3841 JOIN block.
3843 Return TRUE if we were successful at converting the block.
3845 Cases we'd like to look at:
3848 if (test) goto over; // x not live
3849 x = a;
3850 goto label;
3851 over:
3853 becomes
3855 x = a;
3856 if (! test) goto label;
3859 if (test) goto E; // x not live
3860 x = big();
3861 goto L;
3863 x = b;
3864 goto M;
3866 becomes
3868 x = b;
3869 if (test) goto M;
3870 x = big();
3871 goto L;
3873 (3) // This one's really only interesting for targets that can do
3874 // multiway branching, e.g. IA-64 BBB bundles. For other targets
3875 // it results in multiple branches on a cache line, which often
3876 // does not sit well with predictors.
3878 if (test1) goto E; // predicted not taken
3879 x = a;
3880 if (test2) goto F;
3883 x = b;
3886 becomes
3888 x = a;
3889 if (test1) goto E;
3890 if (test2) goto F;
3892 Notes:
3894 (A) Don't do (2) if the branch is predicted against the block we're
3895 eliminating. Do it anyway if we can eliminate a branch; this requires
3896 that the sole successor of the eliminated block postdominate the other
3897 side of the if.
3899 (B) With CE, on (3) we can steal from both sides of the if, creating
3901 if (test1) x = a;
3902 if (!test1) x = b;
3903 if (test1) goto J;
3904 if (test2) goto F;
3908 Again, this is most useful if J postdominates.
3910 (C) CE substitutes for helpful life information.
3912 (D) These heuristics need a lot of work. */
3914 /* Tests for case 1 above. */
3916 static int
3917 find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
3919 basic_block then_bb = then_edge->dest;
3920 basic_block else_bb = else_edge->dest;
3921 basic_block new_bb;
3922 int then_bb_index, then_prob;
3923 rtx else_target = NULL_RTX;
3925 /* If we are partitioning hot/cold basic blocks, we don't want to
3926 mess up unconditional or indirect jumps that cross between hot
3927 and cold sections.
3929 Basic block partitioning may result in some jumps that appear to
3930 be optimizable (or blocks that appear to be mergeable), but which really
3931 must be left untouched (they are required to make it safely across
3932 partition boundaries). See the comments at the top of
3933 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
3935 if ((BB_END (then_bb)
3936 && JUMP_P (BB_END (then_bb))
3937 && CROSSING_JUMP_P (BB_END (then_bb)))
3938 || (BB_END (test_bb)
3939 && JUMP_P (BB_END (test_bb))
3940 && CROSSING_JUMP_P (BB_END (test_bb)))
3941 || (BB_END (else_bb)
3942 && JUMP_P (BB_END (else_bb))
3943 && CROSSING_JUMP_P (BB_END (else_bb))))
3944 return FALSE;
3946 /* THEN has one successor. */
3947 if (!single_succ_p (then_bb))
3948 return FALSE;
3950 /* THEN does not fall through, but is not strange either. */
3951 if (single_succ_edge (then_bb)->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
3952 return FALSE;
3954 /* THEN has one predecessor. */
3955 if (!single_pred_p (then_bb))
3956 return FALSE;
3958 /* THEN must do something. */
3959 if (forwarder_block_p (then_bb))
3960 return FALSE;
3962 num_possible_if_blocks++;
3963 if (dump_file)
3964 fprintf (dump_file,
3965 "\nIF-CASE-1 found, start %d, then %d\n",
3966 test_bb->index, then_bb->index);
3968 if (then_edge->probability)
3969 then_prob = REG_BR_PROB_BASE - then_edge->probability;
3970 else
3971 then_prob = REG_BR_PROB_BASE / 2;
3973 /* We're speculating from the THEN path, we want to make sure the cost
3974 of speculation is within reason. */
3975 if (! cheap_bb_rtx_cost_p (then_bb, then_prob,
3976 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge->src),
3977 predictable_edge_p (then_edge)))))
3978 return FALSE;
3980 if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
3982 rtx_insn *jump = BB_END (else_edge->src);
3983 gcc_assert (JUMP_P (jump));
3984 else_target = JUMP_LABEL (jump);
3987 /* Registers set are dead, or are predicable. */
3988 if (! dead_or_predicable (test_bb, then_bb, else_bb,
3989 single_succ_edge (then_bb), 1))
3990 return FALSE;
3992 /* Conversion went ok, including moving the insns and fixing up the
3993 jump. Adjust the CFG to match. */
3995 /* We can avoid creating a new basic block if then_bb is immediately
3996 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
3997 through to else_bb. */
3999 if (then_bb->next_bb == else_bb
4000 && then_bb->prev_bb == test_bb
4001 && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4003 redirect_edge_succ (FALLTHRU_EDGE (test_bb), else_bb);
4004 new_bb = 0;
4006 else if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
4007 new_bb = force_nonfallthru_and_redirect (FALLTHRU_EDGE (test_bb),
4008 else_bb, else_target);
4009 else
4010 new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb),
4011 else_bb);
4013 df_set_bb_dirty (test_bb);
4014 df_set_bb_dirty (else_bb);
4016 then_bb_index = then_bb->index;
4017 delete_basic_block (then_bb);
4019 /* Make rest of code believe that the newly created block is the THEN_BB
4020 block we removed. */
4021 if (new_bb)
4023 df_bb_replace (then_bb_index, new_bb);
4024 /* This should have been done above via force_nonfallthru_and_redirect
4025 (possibly called from redirect_edge_and_branch_force). */
4026 gcc_checking_assert (BB_PARTITION (new_bb) == BB_PARTITION (test_bb));
4029 num_true_changes++;
4030 num_updated_if_blocks++;
4032 return TRUE;
4035 /* Test for case 2 above. */
4037 static int
4038 find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
4040 basic_block then_bb = then_edge->dest;
4041 basic_block else_bb = else_edge->dest;
4042 edge else_succ;
4043 int then_prob, else_prob;
4045 /* We do not want to speculate (empty) loop latches. */
4046 if (current_loops
4047 && else_bb->loop_father->latch == else_bb)
4048 return FALSE;
4050 /* If we are partitioning hot/cold basic blocks, we don't want to
4051 mess up unconditional or indirect jumps that cross between hot
4052 and cold sections.
4054 Basic block partitioning may result in some jumps that appear to
4055 be optimizable (or blocks that appear to be mergeable), but which really
4056 must be left untouched (they are required to make it safely across
4057 partition boundaries). See the comments at the top of
4058 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4060 if ((BB_END (then_bb)
4061 && JUMP_P (BB_END (then_bb))
4062 && CROSSING_JUMP_P (BB_END (then_bb)))
4063 || (BB_END (test_bb)
4064 && JUMP_P (BB_END (test_bb))
4065 && CROSSING_JUMP_P (BB_END (test_bb)))
4066 || (BB_END (else_bb)
4067 && JUMP_P (BB_END (else_bb))
4068 && CROSSING_JUMP_P (BB_END (else_bb))))
4069 return FALSE;
4071 /* ELSE has one successor. */
4072 if (!single_succ_p (else_bb))
4073 return FALSE;
4074 else
4075 else_succ = single_succ_edge (else_bb);
4077 /* ELSE outgoing edge is not complex. */
4078 if (else_succ->flags & EDGE_COMPLEX)
4079 return FALSE;
4081 /* ELSE has one predecessor. */
4082 if (!single_pred_p (else_bb))
4083 return FALSE;
4085 /* THEN is not EXIT. */
4086 if (then_bb->index < NUM_FIXED_BLOCKS)
4087 return FALSE;
4089 if (else_edge->probability)
4091 else_prob = else_edge->probability;
4092 then_prob = REG_BR_PROB_BASE - else_prob;
4094 else
4096 else_prob = REG_BR_PROB_BASE / 2;
4097 then_prob = REG_BR_PROB_BASE / 2;
4100 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
4101 if (else_prob > then_prob)
4103 else if (else_succ->dest->index < NUM_FIXED_BLOCKS
4104 || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
4105 else_succ->dest))
4107 else
4108 return FALSE;
4110 num_possible_if_blocks++;
4111 if (dump_file)
4112 fprintf (dump_file,
4113 "\nIF-CASE-2 found, start %d, else %d\n",
4114 test_bb->index, else_bb->index);
4116 /* We're speculating from the ELSE path, we want to make sure the cost
4117 of speculation is within reason. */
4118 if (! cheap_bb_rtx_cost_p (else_bb, else_prob,
4119 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge->src),
4120 predictable_edge_p (else_edge)))))
4121 return FALSE;
4123 /* Registers set are dead, or are predicable. */
4124 if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ, 0))
4125 return FALSE;
4127 /* Conversion went ok, including moving the insns and fixing up the
4128 jump. Adjust the CFG to match. */
4130 df_set_bb_dirty (test_bb);
4131 df_set_bb_dirty (then_bb);
4132 delete_basic_block (else_bb);
4134 num_true_changes++;
4135 num_updated_if_blocks++;
4137 /* ??? We may now fallthru from one of THEN's successors into a join
4138 block. Rerun cleanup_cfg? Examine things manually? Wait? */
4140 return TRUE;
4143 /* Used by the code above to perform the actual rtl transformations.
4144 Return TRUE if successful.
4146 TEST_BB is the block containing the conditional branch. MERGE_BB
4147 is the block containing the code to manipulate. DEST_EDGE is an
4148 edge representing a jump to the join block; after the conversion,
4149 TEST_BB should be branching to its destination.
4150 REVERSEP is true if the sense of the branch should be reversed. */
4152 static int
4153 dead_or_predicable (basic_block test_bb, basic_block merge_bb,
4154 basic_block other_bb, edge dest_edge, int reversep)
4156 basic_block new_dest = dest_edge->dest;
4157 rtx_insn *head, *end, *jump;
4158 rtx_insn *earliest = NULL;
4159 rtx old_dest;
4160 bitmap merge_set = NULL;
4161 /* Number of pending changes. */
4162 int n_validated_changes = 0;
4163 rtx new_dest_label = NULL_RTX;
4165 jump = BB_END (test_bb);
4167 /* Find the extent of the real code in the merge block. */
4168 head = BB_HEAD (merge_bb);
4169 end = BB_END (merge_bb);
4171 while (DEBUG_INSN_P (end) && end != head)
4172 end = PREV_INSN (end);
4174 /* If merge_bb ends with a tablejump, predicating/moving insn's
4175 into test_bb and then deleting merge_bb will result in the jumptable
4176 that follows merge_bb being removed along with merge_bb and then we
4177 get an unresolved reference to the jumptable. */
4178 if (tablejump_p (end, NULL, NULL))
4179 return FALSE;
4181 if (LABEL_P (head))
4182 head = NEXT_INSN (head);
4183 while (DEBUG_INSN_P (head) && head != end)
4184 head = NEXT_INSN (head);
4185 if (NOTE_P (head))
4187 if (head == end)
4189 head = end = NULL;
4190 goto no_body;
4192 head = NEXT_INSN (head);
4193 while (DEBUG_INSN_P (head) && head != end)
4194 head = NEXT_INSN (head);
4197 if (JUMP_P (end))
4199 if (!onlyjump_p (end))
4200 return FALSE;
4201 if (head == end)
4203 head = end = NULL;
4204 goto no_body;
4206 end = PREV_INSN (end);
4207 while (DEBUG_INSN_P (end) && end != head)
4208 end = PREV_INSN (end);
4211 /* Don't move frame-related insn across the conditional branch. This
4212 can lead to one of the paths of the branch having wrong unwind info. */
4213 if (epilogue_completed)
4215 rtx_insn *insn = head;
4216 while (1)
4218 if (INSN_P (insn) && RTX_FRAME_RELATED_P (insn))
4219 return FALSE;
4220 if (insn == end)
4221 break;
4222 insn = NEXT_INSN (insn);
4226 /* Disable handling dead code by conditional execution if the machine needs
4227 to do anything funny with the tests, etc. */
4228 #ifndef IFCVT_MODIFY_TESTS
4229 if (targetm.have_conditional_execution ())
4231 /* In the conditional execution case, we have things easy. We know
4232 the condition is reversible. We don't have to check life info
4233 because we're going to conditionally execute the code anyway.
4234 All that's left is making sure the insns involved can actually
4235 be predicated. */
4237 rtx cond;
4239 cond = cond_exec_get_condition (jump);
4240 if (! cond)
4241 return FALSE;
4243 rtx note = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
4244 int prob_val = (note ? XINT (note, 0) : -1);
4246 if (reversep)
4248 enum rtx_code rev = reversed_comparison_code (cond, jump);
4249 if (rev == UNKNOWN)
4250 return FALSE;
4251 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
4252 XEXP (cond, 1));
4253 if (prob_val >= 0)
4254 prob_val = REG_BR_PROB_BASE - prob_val;
4257 if (cond_exec_process_insns (NULL, head, end, cond, prob_val, 0)
4258 && verify_changes (0))
4259 n_validated_changes = num_validated_changes ();
4260 else
4261 cancel_changes (0);
4263 earliest = jump;
4265 #endif
4267 /* If we allocated new pseudos (e.g. in the conditional move
4268 expander called from noce_emit_cmove), we must resize the
4269 array first. */
4270 if (max_regno < max_reg_num ())
4271 max_regno = max_reg_num ();
4273 /* Try the NCE path if the CE path did not result in any changes. */
4274 if (n_validated_changes == 0)
4276 rtx cond;
4277 rtx_insn *insn;
4278 regset live;
4279 bool success;
4281 /* In the non-conditional execution case, we have to verify that there
4282 are no trapping operations, no calls, no references to memory, and
4283 that any registers modified are dead at the branch site. */
4285 if (!any_condjump_p (jump))
4286 return FALSE;
4288 /* Find the extent of the conditional. */
4289 cond = noce_get_condition (jump, &earliest, false);
4290 if (!cond)
4291 return FALSE;
4293 live = BITMAP_ALLOC (&reg_obstack);
4294 simulate_backwards_to_point (merge_bb, live, end);
4295 success = can_move_insns_across (head, end, earliest, jump,
4296 merge_bb, live,
4297 df_get_live_in (other_bb), NULL);
4298 BITMAP_FREE (live);
4299 if (!success)
4300 return FALSE;
4302 /* Collect the set of registers set in MERGE_BB. */
4303 merge_set = BITMAP_ALLOC (&reg_obstack);
4305 FOR_BB_INSNS (merge_bb, insn)
4306 if (NONDEBUG_INSN_P (insn))
4307 df_simulate_find_defs (insn, merge_set);
4309 /* If shrink-wrapping, disable this optimization when test_bb is
4310 the first basic block and merge_bb exits. The idea is to not
4311 move code setting up a return register as that may clobber a
4312 register used to pass function parameters, which then must be
4313 saved in caller-saved regs. A caller-saved reg requires the
4314 prologue, killing a shrink-wrap opportunity. */
4315 if ((SHRINK_WRAPPING_ENABLED && !epilogue_completed)
4316 && ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == test_bb
4317 && single_succ_p (new_dest)
4318 && single_succ (new_dest) == EXIT_BLOCK_PTR_FOR_FN (cfun)
4319 && bitmap_intersect_p (df_get_live_in (new_dest), merge_set))
4321 regset return_regs;
4322 unsigned int i;
4324 return_regs = BITMAP_ALLOC (&reg_obstack);
4326 /* Start off with the intersection of regs used to pass
4327 params and regs used to return values. */
4328 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4329 if (FUNCTION_ARG_REGNO_P (i)
4330 && targetm.calls.function_value_regno_p (i))
4331 bitmap_set_bit (return_regs, INCOMING_REGNO (i));
4333 bitmap_and_into (return_regs,
4334 df_get_live_out (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
4335 bitmap_and_into (return_regs,
4336 df_get_live_in (EXIT_BLOCK_PTR_FOR_FN (cfun)));
4337 if (!bitmap_empty_p (return_regs))
4339 FOR_BB_INSNS_REVERSE (new_dest, insn)
4340 if (NONDEBUG_INSN_P (insn))
4342 df_ref def;
4344 /* If this insn sets any reg in return_regs, add all
4345 reg uses to the set of regs we're interested in. */
4346 FOR_EACH_INSN_DEF (def, insn)
4347 if (bitmap_bit_p (return_regs, DF_REF_REGNO (def)))
4349 df_simulate_uses (insn, return_regs);
4350 break;
4353 if (bitmap_intersect_p (merge_set, return_regs))
4355 BITMAP_FREE (return_regs);
4356 BITMAP_FREE (merge_set);
4357 return FALSE;
4360 BITMAP_FREE (return_regs);
4364 no_body:
4365 /* We don't want to use normal invert_jump or redirect_jump because
4366 we don't want to delete_insn called. Also, we want to do our own
4367 change group management. */
4369 old_dest = JUMP_LABEL (jump);
4370 if (other_bb != new_dest)
4372 if (!any_condjump_p (jump))
4373 goto cancel;
4375 if (JUMP_P (BB_END (dest_edge->src)))
4376 new_dest_label = JUMP_LABEL (BB_END (dest_edge->src));
4377 else if (new_dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
4378 new_dest_label = ret_rtx;
4379 else
4380 new_dest_label = block_label (new_dest);
4382 if (reversep
4383 ? ! invert_jump_1 (jump, new_dest_label)
4384 : ! redirect_jump_1 (jump, new_dest_label))
4385 goto cancel;
4388 if (verify_changes (n_validated_changes))
4389 confirm_change_group ();
4390 else
4391 goto cancel;
4393 if (other_bb != new_dest)
4395 redirect_jump_2 (jump, old_dest, new_dest_label, 0, reversep);
4397 redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
4398 if (reversep)
4400 gcov_type count, probability;
4401 count = BRANCH_EDGE (test_bb)->count;
4402 BRANCH_EDGE (test_bb)->count = FALLTHRU_EDGE (test_bb)->count;
4403 FALLTHRU_EDGE (test_bb)->count = count;
4404 probability = BRANCH_EDGE (test_bb)->probability;
4405 BRANCH_EDGE (test_bb)->probability
4406 = FALLTHRU_EDGE (test_bb)->probability;
4407 FALLTHRU_EDGE (test_bb)->probability = probability;
4408 update_br_prob_note (test_bb);
4412 /* Move the insns out of MERGE_BB to before the branch. */
4413 if (head != NULL)
4415 rtx_insn *insn;
4417 if (end == BB_END (merge_bb))
4418 BB_END (merge_bb) = PREV_INSN (head);
4420 /* PR 21767: when moving insns above a conditional branch, the REG_EQUAL
4421 notes being moved might become invalid. */
4422 insn = head;
4425 rtx note;
4427 if (! INSN_P (insn))
4428 continue;
4429 note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
4430 if (! note)
4431 continue;
4432 remove_note (insn, note);
4433 } while (insn != end && (insn = NEXT_INSN (insn)));
4435 /* PR46315: when moving insns above a conditional branch, the REG_EQUAL
4436 notes referring to the registers being set might become invalid. */
4437 if (merge_set)
4439 unsigned i;
4440 bitmap_iterator bi;
4442 EXECUTE_IF_SET_IN_BITMAP (merge_set, 0, i, bi)
4443 remove_reg_equal_equiv_notes_for_regno (i);
4445 BITMAP_FREE (merge_set);
4448 reorder_insns (head, end, PREV_INSN (earliest));
4451 /* Remove the jump and edge if we can. */
4452 if (other_bb == new_dest)
4454 delete_insn (jump);
4455 remove_edge (BRANCH_EDGE (test_bb));
4456 /* ??? Can't merge blocks here, as then_bb is still in use.
4457 At minimum, the merge will get done just before bb-reorder. */
4460 return TRUE;
4462 cancel:
4463 cancel_changes (0);
4465 if (merge_set)
4466 BITMAP_FREE (merge_set);
4468 return FALSE;
4471 /* Main entry point for all if-conversion. AFTER_COMBINE is true if
4472 we are after combine pass. */
4474 static void
4475 if_convert (bool after_combine)
4477 basic_block bb;
4478 int pass;
4480 if (optimize == 1)
4482 df_live_add_problem ();
4483 df_live_set_all_dirty ();
4486 /* Record whether we are after combine pass. */
4487 ifcvt_after_combine = after_combine;
4488 num_possible_if_blocks = 0;
4489 num_updated_if_blocks = 0;
4490 num_true_changes = 0;
4492 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
4493 mark_loop_exit_edges ();
4494 loop_optimizer_finalize ();
4495 free_dominance_info (CDI_DOMINATORS);
4497 /* Compute postdominators. */
4498 calculate_dominance_info (CDI_POST_DOMINATORS);
4500 df_set_flags (DF_LR_RUN_DCE);
4502 /* Go through each of the basic blocks looking for things to convert. If we
4503 have conditional execution, we make multiple passes to allow us to handle
4504 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
4505 pass = 0;
4508 df_analyze ();
4509 /* Only need to do dce on the first pass. */
4510 df_clear_flags (DF_LR_RUN_DCE);
4511 cond_exec_changed_p = FALSE;
4512 pass++;
4514 #ifdef IFCVT_MULTIPLE_DUMPS
4515 if (dump_file && pass > 1)
4516 fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
4517 #endif
4519 FOR_EACH_BB_FN (bb, cfun)
4521 basic_block new_bb;
4522 while (!df_get_bb_dirty (bb)
4523 && (new_bb = find_if_header (bb, pass)) != NULL)
4524 bb = new_bb;
4527 #ifdef IFCVT_MULTIPLE_DUMPS
4528 if (dump_file && cond_exec_changed_p)
4529 print_rtl_with_bb (dump_file, get_insns (), dump_flags);
4530 #endif
4532 while (cond_exec_changed_p);
4534 #ifdef IFCVT_MULTIPLE_DUMPS
4535 if (dump_file)
4536 fprintf (dump_file, "\n\n========== no more changes\n");
4537 #endif
4539 free_dominance_info (CDI_POST_DOMINATORS);
4541 if (dump_file)
4542 fflush (dump_file);
4544 clear_aux_for_blocks ();
4546 /* If we allocated new pseudos, we must resize the array for sched1. */
4547 if (max_regno < max_reg_num ())
4548 max_regno = max_reg_num ();
4550 /* Write the final stats. */
4551 if (dump_file && num_possible_if_blocks > 0)
4553 fprintf (dump_file,
4554 "\n%d possible IF blocks searched.\n",
4555 num_possible_if_blocks);
4556 fprintf (dump_file,
4557 "%d IF blocks converted.\n",
4558 num_updated_if_blocks);
4559 fprintf (dump_file,
4560 "%d true changes made.\n\n\n",
4561 num_true_changes);
4564 if (optimize == 1)
4565 df_remove_problem (df_live);
4567 #ifdef ENABLE_CHECKING
4568 verify_flow_info ();
4569 #endif
4572 /* If-conversion and CFG cleanup. */
4573 static unsigned int
4574 rest_of_handle_if_conversion (void)
4576 if (flag_if_conversion)
4578 if (dump_file)
4580 dump_reg_info (dump_file);
4581 dump_flow_info (dump_file, dump_flags);
4583 cleanup_cfg (CLEANUP_EXPENSIVE);
4584 if_convert (false);
4587 cleanup_cfg (0);
4588 return 0;
4591 namespace {
4593 const pass_data pass_data_rtl_ifcvt =
4595 RTL_PASS, /* type */
4596 "ce1", /* name */
4597 OPTGROUP_NONE, /* optinfo_flags */
4598 TV_IFCVT, /* tv_id */
4599 0, /* properties_required */
4600 0, /* properties_provided */
4601 0, /* properties_destroyed */
4602 0, /* todo_flags_start */
4603 TODO_df_finish, /* todo_flags_finish */
4606 class pass_rtl_ifcvt : public rtl_opt_pass
4608 public:
4609 pass_rtl_ifcvt (gcc::context *ctxt)
4610 : rtl_opt_pass (pass_data_rtl_ifcvt, ctxt)
4613 /* opt_pass methods: */
4614 virtual bool gate (function *)
4616 return (optimize > 0) && dbg_cnt (if_conversion);
4619 virtual unsigned int execute (function *)
4621 return rest_of_handle_if_conversion ();
4624 }; // class pass_rtl_ifcvt
4626 } // anon namespace
4628 rtl_opt_pass *
4629 make_pass_rtl_ifcvt (gcc::context *ctxt)
4631 return new pass_rtl_ifcvt (ctxt);
4635 /* Rerun if-conversion, as combine may have simplified things enough
4636 to now meet sequence length restrictions. */
4638 namespace {
4640 const pass_data pass_data_if_after_combine =
4642 RTL_PASS, /* type */
4643 "ce2", /* name */
4644 OPTGROUP_NONE, /* optinfo_flags */
4645 TV_IFCVT, /* tv_id */
4646 0, /* properties_required */
4647 0, /* properties_provided */
4648 0, /* properties_destroyed */
4649 0, /* todo_flags_start */
4650 TODO_df_finish, /* todo_flags_finish */
4653 class pass_if_after_combine : public rtl_opt_pass
4655 public:
4656 pass_if_after_combine (gcc::context *ctxt)
4657 : rtl_opt_pass (pass_data_if_after_combine, ctxt)
4660 /* opt_pass methods: */
4661 virtual bool gate (function *)
4663 return optimize > 0 && flag_if_conversion
4664 && dbg_cnt (if_after_combine);
4667 virtual unsigned int execute (function *)
4669 if_convert (true);
4670 return 0;
4673 }; // class pass_if_after_combine
4675 } // anon namespace
4677 rtl_opt_pass *
4678 make_pass_if_after_combine (gcc::context *ctxt)
4680 return new pass_if_after_combine (ctxt);
4684 namespace {
4686 const pass_data pass_data_if_after_reload =
4688 RTL_PASS, /* type */
4689 "ce3", /* name */
4690 OPTGROUP_NONE, /* optinfo_flags */
4691 TV_IFCVT2, /* tv_id */
4692 0, /* properties_required */
4693 0, /* properties_provided */
4694 0, /* properties_destroyed */
4695 0, /* todo_flags_start */
4696 TODO_df_finish, /* todo_flags_finish */
4699 class pass_if_after_reload : public rtl_opt_pass
4701 public:
4702 pass_if_after_reload (gcc::context *ctxt)
4703 : rtl_opt_pass (pass_data_if_after_reload, ctxt)
4706 /* opt_pass methods: */
4707 virtual bool gate (function *)
4709 return optimize > 0 && flag_if_conversion2
4710 && dbg_cnt (if_after_reload);
4713 virtual unsigned int execute (function *)
4715 if_convert (true);
4716 return 0;
4719 }; // class pass_if_after_reload
4721 } // anon namespace
4723 rtl_opt_pass *
4724 make_pass_if_after_reload (gcc::context *ctxt)
4726 return new pass_if_after_reload (ctxt);