PR c/70883 - inconsistent error message for calls to __builtin_add_overflow
[official-gcc.git] / gcc / ifcvt.c
blob4a277db7dcc4cd467299419b21bae0f2a2b42926
1 /* If-conversion support.
2 Copyright (C) 2000-2016 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 "backend.h"
24 #include "target.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "cfghooks.h"
28 #include "df.h"
29 #include "tm_p.h"
30 #include "expmed.h"
31 #include "optabs.h"
32 #include "regs.h"
33 #include "emit-rtl.h"
34 #include "recog.h"
36 #include "cfgrtl.h"
37 #include "cfganal.h"
38 #include "cfgcleanup.h"
39 #include "expr.h"
40 #include "output.h"
41 #include "cfgloop.h"
42 #include "tree-pass.h"
43 #include "dbgcnt.h"
44 #include "shrink-wrap.h"
45 #include "rtl-iter.h"
46 #include "ifcvt.h"
47 #include "params.h"
49 #ifndef MAX_CONDITIONAL_EXECUTE
50 #define MAX_CONDITIONAL_EXECUTE \
51 (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
52 + 1)
53 #endif
55 #define IFCVT_MULTIPLE_DUMPS 1
57 #define NULL_BLOCK ((basic_block) NULL)
59 /* True if after combine pass. */
60 static bool ifcvt_after_combine;
62 /* True if the target has the cbranchcc4 optab. */
63 static bool have_cbranchcc4;
65 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
66 static int num_possible_if_blocks;
68 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
69 execution. */
70 static int num_updated_if_blocks;
72 /* # of changes made. */
73 static int num_true_changes;
75 /* Whether conditional execution changes were made. */
76 static int cond_exec_changed_p;
78 /* Forward references. */
79 static int count_bb_insns (const_basic_block);
80 static bool cheap_bb_rtx_cost_p (const_basic_block, int, int);
81 static rtx_insn *first_active_insn (basic_block);
82 static rtx_insn *last_active_insn (basic_block, int);
83 static rtx_insn *find_active_insn_before (basic_block, rtx_insn *);
84 static rtx_insn *find_active_insn_after (basic_block, rtx_insn *);
85 static basic_block block_fallthru (basic_block);
86 static int cond_exec_process_insns (ce_if_block *, rtx_insn *, rtx, rtx, int,
87 int);
88 static rtx cond_exec_get_condition (rtx_insn *);
89 static rtx noce_get_condition (rtx_insn *, rtx_insn **, bool);
90 static int noce_operand_ok (const_rtx);
91 static void merge_if_block (ce_if_block *);
92 static int find_cond_trap (basic_block, edge, edge);
93 static basic_block find_if_header (basic_block, int);
94 static int block_jumps_and_fallthru_p (basic_block, basic_block);
95 static int noce_find_if_block (basic_block, edge, edge, int);
96 static int cond_exec_find_if_block (ce_if_block *);
97 static int find_if_case_1 (basic_block, edge, edge);
98 static int find_if_case_2 (basic_block, edge, edge);
99 static int dead_or_predicable (basic_block, basic_block, basic_block,
100 edge, int);
101 static void noce_emit_move_insn (rtx, rtx);
102 static rtx_insn *block_has_only_trap (basic_block);
104 /* Count the number of non-jump active insns in BB. */
106 static int
107 count_bb_insns (const_basic_block bb)
109 int count = 0;
110 rtx_insn *insn = BB_HEAD (bb);
112 while (1)
114 if (active_insn_p (insn) && !JUMP_P (insn))
115 count++;
117 if (insn == BB_END (bb))
118 break;
119 insn = NEXT_INSN (insn);
122 return count;
125 /* Determine whether the total insn_rtx_cost on non-jump insns in
126 basic block BB is less than MAX_COST. This function returns
127 false if the cost of any instruction could not be estimated.
129 The cost of the non-jump insns in BB is scaled by REG_BR_PROB_BASE
130 as those insns are being speculated. MAX_COST is scaled with SCALE
131 plus a small fudge factor. */
133 static bool
134 cheap_bb_rtx_cost_p (const_basic_block bb, int scale, int max_cost)
136 int count = 0;
137 rtx_insn *insn = BB_HEAD (bb);
138 bool speed = optimize_bb_for_speed_p (bb);
140 /* Set scale to REG_BR_PROB_BASE to void the identical scaling
141 applied to insn_rtx_cost when optimizing for size. Only do
142 this after combine because if-conversion might interfere with
143 passes before combine.
145 Use optimize_function_for_speed_p instead of the pre-defined
146 variable speed to make sure it is set to same value for all
147 basic blocks in one if-conversion transformation. */
148 if (!optimize_function_for_speed_p (cfun) && ifcvt_after_combine)
149 scale = REG_BR_PROB_BASE;
150 /* Our branch probability/scaling factors are just estimates and don't
151 account for cases where we can get speculation for free and other
152 secondary benefits. So we fudge the scale factor to make speculating
153 appear a little more profitable when optimizing for performance. */
154 else
155 scale += REG_BR_PROB_BASE / 8;
158 max_cost *= scale;
160 while (1)
162 if (NONJUMP_INSN_P (insn))
164 int cost = insn_rtx_cost (PATTERN (insn), speed) * REG_BR_PROB_BASE;
165 if (cost == 0)
166 return false;
168 /* If this instruction is the load or set of a "stack" register,
169 such as a floating point register on x87, then the cost of
170 speculatively executing this insn may need to include
171 the additional cost of popping its result off of the
172 register stack. Unfortunately, correctly recognizing and
173 accounting for this additional overhead is tricky, so for
174 now we simply prohibit such speculative execution. */
175 #ifdef STACK_REGS
177 rtx set = single_set (insn);
178 if (set && STACK_REG_P (SET_DEST (set)))
179 return false;
181 #endif
183 count += cost;
184 if (count >= max_cost)
185 return false;
187 else if (CALL_P (insn))
188 return false;
190 if (insn == BB_END (bb))
191 break;
192 insn = NEXT_INSN (insn);
195 return true;
198 /* Return the first non-jump active insn in the basic block. */
200 static rtx_insn *
201 first_active_insn (basic_block bb)
203 rtx_insn *insn = BB_HEAD (bb);
205 if (LABEL_P (insn))
207 if (insn == BB_END (bb))
208 return NULL;
209 insn = NEXT_INSN (insn);
212 while (NOTE_P (insn) || DEBUG_INSN_P (insn))
214 if (insn == BB_END (bb))
215 return NULL;
216 insn = NEXT_INSN (insn);
219 if (JUMP_P (insn))
220 return NULL;
222 return insn;
225 /* Return the last non-jump active (non-jump) insn in the basic block. */
227 static rtx_insn *
228 last_active_insn (basic_block bb, int skip_use_p)
230 rtx_insn *insn = BB_END (bb);
231 rtx_insn *head = BB_HEAD (bb);
233 while (NOTE_P (insn)
234 || JUMP_P (insn)
235 || DEBUG_INSN_P (insn)
236 || (skip_use_p
237 && NONJUMP_INSN_P (insn)
238 && GET_CODE (PATTERN (insn)) == USE))
240 if (insn == head)
241 return NULL;
242 insn = PREV_INSN (insn);
245 if (LABEL_P (insn))
246 return NULL;
248 return insn;
251 /* Return the active insn before INSN inside basic block CURR_BB. */
253 static rtx_insn *
254 find_active_insn_before (basic_block curr_bb, rtx_insn *insn)
256 if (!insn || insn == BB_HEAD (curr_bb))
257 return NULL;
259 while ((insn = PREV_INSN (insn)) != NULL_RTX)
261 if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
262 break;
264 /* No other active insn all the way to the start of the basic block. */
265 if (insn == BB_HEAD (curr_bb))
266 return NULL;
269 return insn;
272 /* Return the active insn after INSN inside basic block CURR_BB. */
274 static rtx_insn *
275 find_active_insn_after (basic_block curr_bb, rtx_insn *insn)
277 if (!insn || insn == BB_END (curr_bb))
278 return NULL;
280 while ((insn = NEXT_INSN (insn)) != NULL_RTX)
282 if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
283 break;
285 /* No other active insn all the way to the end of the basic block. */
286 if (insn == BB_END (curr_bb))
287 return NULL;
290 return insn;
293 /* Return the basic block reached by falling though the basic block BB. */
295 static basic_block
296 block_fallthru (basic_block bb)
298 edge e = find_fallthru_edge (bb->succs);
300 return (e) ? e->dest : NULL_BLOCK;
303 /* Return true if RTXs A and B can be safely interchanged. */
305 static bool
306 rtx_interchangeable_p (const_rtx a, const_rtx b)
308 if (!rtx_equal_p (a, b))
309 return false;
311 if (GET_CODE (a) != MEM)
312 return true;
314 /* A dead type-unsafe memory reference is legal, but a live type-unsafe memory
315 reference is not. Interchanging a dead type-unsafe memory reference with
316 a live type-safe one creates a live type-unsafe memory reference, in other
317 words, it makes the program illegal.
318 We check here conservatively whether the two memory references have equal
319 memory attributes. */
321 return mem_attrs_eq_p (get_mem_attrs (a), get_mem_attrs (b));
325 /* Go through a bunch of insns, converting them to conditional
326 execution format if possible. Return TRUE if all of the non-note
327 insns were processed. */
329 static int
330 cond_exec_process_insns (ce_if_block *ce_info ATTRIBUTE_UNUSED,
331 /* if block information */rtx_insn *start,
332 /* first insn to look at */rtx end,
333 /* last insn to look at */rtx test,
334 /* conditional execution test */int prob_val,
335 /* probability of branch taken. */int mod_ok)
337 int must_be_last = FALSE;
338 rtx_insn *insn;
339 rtx xtest;
340 rtx pattern;
342 if (!start || !end)
343 return FALSE;
345 for (insn = start; ; insn = NEXT_INSN (insn))
347 /* dwarf2out can't cope with conditional prologues. */
348 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
349 return FALSE;
351 if (NOTE_P (insn) || DEBUG_INSN_P (insn))
352 goto insn_done;
354 gcc_assert (NONJUMP_INSN_P (insn) || CALL_P (insn));
356 /* dwarf2out can't cope with conditional unwind info. */
357 if (RTX_FRAME_RELATED_P (insn))
358 return FALSE;
360 /* Remove USE insns that get in the way. */
361 if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
363 /* ??? Ug. Actually unlinking the thing is problematic,
364 given what we'd have to coordinate with our callers. */
365 SET_INSN_DELETED (insn);
366 goto insn_done;
369 /* Last insn wasn't last? */
370 if (must_be_last)
371 return FALSE;
373 if (modified_in_p (test, insn))
375 if (!mod_ok)
376 return FALSE;
377 must_be_last = TRUE;
380 /* Now build the conditional form of the instruction. */
381 pattern = PATTERN (insn);
382 xtest = copy_rtx (test);
384 /* If this is already a COND_EXEC, rewrite the test to be an AND of the
385 two conditions. */
386 if (GET_CODE (pattern) == COND_EXEC)
388 if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
389 return FALSE;
391 xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
392 COND_EXEC_TEST (pattern));
393 pattern = COND_EXEC_CODE (pattern);
396 pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
398 /* If the machine needs to modify the insn being conditionally executed,
399 say for example to force a constant integer operand into a temp
400 register, do so here. */
401 #ifdef IFCVT_MODIFY_INSN
402 IFCVT_MODIFY_INSN (ce_info, pattern, insn);
403 if (! pattern)
404 return FALSE;
405 #endif
407 validate_change (insn, &PATTERN (insn), pattern, 1);
409 if (CALL_P (insn) && prob_val >= 0)
410 validate_change (insn, &REG_NOTES (insn),
411 gen_rtx_INT_LIST ((machine_mode) REG_BR_PROB,
412 prob_val, REG_NOTES (insn)), 1);
414 insn_done:
415 if (insn == end)
416 break;
419 return TRUE;
422 /* Return the condition for a jump. Do not do any special processing. */
424 static rtx
425 cond_exec_get_condition (rtx_insn *jump)
427 rtx test_if, cond;
429 if (any_condjump_p (jump))
430 test_if = SET_SRC (pc_set (jump));
431 else
432 return NULL_RTX;
433 cond = XEXP (test_if, 0);
435 /* If this branches to JUMP_LABEL when the condition is false,
436 reverse the condition. */
437 if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
438 && LABEL_REF_LABEL (XEXP (test_if, 2)) == JUMP_LABEL (jump))
440 enum rtx_code rev = reversed_comparison_code (cond, jump);
441 if (rev == UNKNOWN)
442 return NULL_RTX;
444 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
445 XEXP (cond, 1));
448 return cond;
451 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
452 to conditional execution. Return TRUE if we were successful at
453 converting the block. */
455 static int
456 cond_exec_process_if_block (ce_if_block * ce_info,
457 /* if block information */int do_multiple_p)
459 basic_block test_bb = ce_info->test_bb; /* last test block */
460 basic_block then_bb = ce_info->then_bb; /* THEN */
461 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
462 rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
463 rtx_insn *then_start; /* first insn in THEN block */
464 rtx_insn *then_end; /* last insn + 1 in THEN block */
465 rtx_insn *else_start = NULL; /* first insn in ELSE block or NULL */
466 rtx_insn *else_end = NULL; /* last insn + 1 in ELSE block */
467 int max; /* max # of insns to convert. */
468 int then_mod_ok; /* whether conditional mods are ok in THEN */
469 rtx true_expr; /* test for else block insns */
470 rtx false_expr; /* test for then block insns */
471 int true_prob_val; /* probability of else block */
472 int false_prob_val; /* probability of then block */
473 rtx_insn *then_last_head = NULL; /* Last match at the head of THEN */
474 rtx_insn *else_last_head = NULL; /* Last match at the head of ELSE */
475 rtx_insn *then_first_tail = NULL; /* First match at the tail of THEN */
476 rtx_insn *else_first_tail = NULL; /* First match at the tail of ELSE */
477 int then_n_insns, else_n_insns, n_insns;
478 enum rtx_code false_code;
479 rtx note;
481 /* If test is comprised of && or || elements, and we've failed at handling
482 all of them together, just use the last test if it is the special case of
483 && elements without an ELSE block. */
484 if (!do_multiple_p && ce_info->num_multiple_test_blocks)
486 if (else_bb || ! ce_info->and_and_p)
487 return FALSE;
489 ce_info->test_bb = test_bb = ce_info->last_test_bb;
490 ce_info->num_multiple_test_blocks = 0;
491 ce_info->num_and_and_blocks = 0;
492 ce_info->num_or_or_blocks = 0;
495 /* Find the conditional jump to the ELSE or JOIN part, and isolate
496 the test. */
497 test_expr = cond_exec_get_condition (BB_END (test_bb));
498 if (! test_expr)
499 return FALSE;
501 /* If the conditional jump is more than just a conditional jump,
502 then we can not do conditional execution conversion on this block. */
503 if (! onlyjump_p (BB_END (test_bb)))
504 return FALSE;
506 /* Collect the bounds of where we're to search, skipping any labels, jumps
507 and notes at the beginning and end of the block. Then count the total
508 number of insns and see if it is small enough to convert. */
509 then_start = first_active_insn (then_bb);
510 then_end = last_active_insn (then_bb, TRUE);
511 then_n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
512 n_insns = then_n_insns;
513 max = MAX_CONDITIONAL_EXECUTE;
515 if (else_bb)
517 int n_matching;
519 max *= 2;
520 else_start = first_active_insn (else_bb);
521 else_end = last_active_insn (else_bb, TRUE);
522 else_n_insns = ce_info->num_else_insns = count_bb_insns (else_bb);
523 n_insns += else_n_insns;
525 /* Look for matching sequences at the head and tail of the two blocks,
526 and limit the range of insns to be converted if possible. */
527 n_matching = flow_find_cross_jump (then_bb, else_bb,
528 &then_first_tail, &else_first_tail,
529 NULL);
530 if (then_first_tail == BB_HEAD (then_bb))
531 then_start = then_end = NULL;
532 if (else_first_tail == BB_HEAD (else_bb))
533 else_start = else_end = NULL;
535 if (n_matching > 0)
537 if (then_end)
538 then_end = find_active_insn_before (then_bb, then_first_tail);
539 if (else_end)
540 else_end = find_active_insn_before (else_bb, else_first_tail);
541 n_insns -= 2 * n_matching;
544 if (then_start
545 && else_start
546 && then_n_insns > n_matching
547 && else_n_insns > n_matching)
549 int longest_match = MIN (then_n_insns - n_matching,
550 else_n_insns - n_matching);
551 n_matching
552 = flow_find_head_matching_sequence (then_bb, else_bb,
553 &then_last_head,
554 &else_last_head,
555 longest_match);
557 if (n_matching > 0)
559 rtx_insn *insn;
561 /* We won't pass the insns in the head sequence to
562 cond_exec_process_insns, so we need to test them here
563 to make sure that they don't clobber the condition. */
564 for (insn = BB_HEAD (then_bb);
565 insn != NEXT_INSN (then_last_head);
566 insn = NEXT_INSN (insn))
567 if (!LABEL_P (insn) && !NOTE_P (insn)
568 && !DEBUG_INSN_P (insn)
569 && modified_in_p (test_expr, insn))
570 return FALSE;
573 if (then_last_head == then_end)
574 then_start = then_end = NULL;
575 if (else_last_head == else_end)
576 else_start = else_end = NULL;
578 if (n_matching > 0)
580 if (then_start)
581 then_start = find_active_insn_after (then_bb, then_last_head);
582 if (else_start)
583 else_start = find_active_insn_after (else_bb, else_last_head);
584 n_insns -= 2 * n_matching;
589 if (n_insns > max)
590 return FALSE;
592 /* Map test_expr/test_jump into the appropriate MD tests to use on
593 the conditionally executed code. */
595 true_expr = test_expr;
597 false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
598 if (false_code != UNKNOWN)
599 false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
600 XEXP (true_expr, 0), XEXP (true_expr, 1));
601 else
602 false_expr = NULL_RTX;
604 #ifdef IFCVT_MODIFY_TESTS
605 /* If the machine description needs to modify the tests, such as setting a
606 conditional execution register from a comparison, it can do so here. */
607 IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
609 /* See if the conversion failed. */
610 if (!true_expr || !false_expr)
611 goto fail;
612 #endif
614 note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
615 if (note)
617 true_prob_val = XINT (note, 0);
618 false_prob_val = REG_BR_PROB_BASE - true_prob_val;
620 else
622 true_prob_val = -1;
623 false_prob_val = -1;
626 /* If we have && or || tests, do them here. These tests are in the adjacent
627 blocks after the first block containing the test. */
628 if (ce_info->num_multiple_test_blocks > 0)
630 basic_block bb = test_bb;
631 basic_block last_test_bb = ce_info->last_test_bb;
633 if (! false_expr)
634 goto fail;
638 rtx_insn *start, *end;
639 rtx t, f;
640 enum rtx_code f_code;
642 bb = block_fallthru (bb);
643 start = first_active_insn (bb);
644 end = last_active_insn (bb, TRUE);
645 if (start
646 && ! cond_exec_process_insns (ce_info, start, end, false_expr,
647 false_prob_val, FALSE))
648 goto fail;
650 /* If the conditional jump is more than just a conditional jump, then
651 we can not do conditional execution conversion on this block. */
652 if (! onlyjump_p (BB_END (bb)))
653 goto fail;
655 /* Find the conditional jump and isolate the test. */
656 t = cond_exec_get_condition (BB_END (bb));
657 if (! t)
658 goto fail;
660 f_code = reversed_comparison_code (t, BB_END (bb));
661 if (f_code == UNKNOWN)
662 goto fail;
664 f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
665 if (ce_info->and_and_p)
667 t = gen_rtx_AND (GET_MODE (t), true_expr, t);
668 f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
670 else
672 t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
673 f = gen_rtx_AND (GET_MODE (t), false_expr, f);
676 /* If the machine description needs to modify the tests, such as
677 setting a conditional execution register from a comparison, it can
678 do so here. */
679 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
680 IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
682 /* See if the conversion failed. */
683 if (!t || !f)
684 goto fail;
685 #endif
687 true_expr = t;
688 false_expr = f;
690 while (bb != last_test_bb);
693 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
694 on then THEN block. */
695 then_mod_ok = (else_bb == NULL_BLOCK);
697 /* Go through the THEN and ELSE blocks converting the insns if possible
698 to conditional execution. */
700 if (then_end
701 && (! false_expr
702 || ! cond_exec_process_insns (ce_info, then_start, then_end,
703 false_expr, false_prob_val,
704 then_mod_ok)))
705 goto fail;
707 if (else_bb && else_end
708 && ! cond_exec_process_insns (ce_info, else_start, else_end,
709 true_expr, true_prob_val, TRUE))
710 goto fail;
712 /* If we cannot apply the changes, fail. Do not go through the normal fail
713 processing, since apply_change_group will call cancel_changes. */
714 if (! apply_change_group ())
716 #ifdef IFCVT_MODIFY_CANCEL
717 /* Cancel any machine dependent changes. */
718 IFCVT_MODIFY_CANCEL (ce_info);
719 #endif
720 return FALSE;
723 #ifdef IFCVT_MODIFY_FINAL
724 /* Do any machine dependent final modifications. */
725 IFCVT_MODIFY_FINAL (ce_info);
726 #endif
728 /* Conversion succeeded. */
729 if (dump_file)
730 fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
731 n_insns, (n_insns == 1) ? " was" : "s were");
733 /* Merge the blocks! If we had matching sequences, make sure to delete one
734 copy at the appropriate location first: delete the copy in the THEN branch
735 for a tail sequence so that the remaining one is executed last for both
736 branches, and delete the copy in the ELSE branch for a head sequence so
737 that the remaining one is executed first for both branches. */
738 if (then_first_tail)
740 rtx_insn *from = then_first_tail;
741 if (!INSN_P (from))
742 from = find_active_insn_after (then_bb, from);
743 delete_insn_chain (from, get_last_bb_insn (then_bb), false);
745 if (else_last_head)
746 delete_insn_chain (first_active_insn (else_bb), else_last_head, false);
748 merge_if_block (ce_info);
749 cond_exec_changed_p = TRUE;
750 return TRUE;
752 fail:
753 #ifdef IFCVT_MODIFY_CANCEL
754 /* Cancel any machine dependent changes. */
755 IFCVT_MODIFY_CANCEL (ce_info);
756 #endif
758 cancel_changes (0);
759 return FALSE;
762 /* Used by noce_process_if_block to communicate with its subroutines.
764 The subroutines know that A and B may be evaluated freely. They
765 know that X is a register. They should insert new instructions
766 before cond_earliest. */
768 struct noce_if_info
770 /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block. */
771 basic_block test_bb, then_bb, else_bb, join_bb;
773 /* The jump that ends TEST_BB. */
774 rtx_insn *jump;
776 /* The jump condition. */
777 rtx cond;
779 /* New insns should be inserted before this one. */
780 rtx_insn *cond_earliest;
782 /* Insns in the THEN and ELSE block. There is always just this
783 one insns in those blocks. The insns are single_set insns.
784 If there was no ELSE block, INSN_B is the last insn before
785 COND_EARLIEST, or NULL_RTX. In the former case, the insn
786 operands are still valid, as if INSN_B was moved down below
787 the jump. */
788 rtx_insn *insn_a, *insn_b;
790 /* The SET_SRC of INSN_A and INSN_B. */
791 rtx a, b;
793 /* The SET_DEST of INSN_A. */
794 rtx x;
796 /* The original set destination that the THEN and ELSE basic blocks finally
797 write their result to. */
798 rtx orig_x;
799 /* True if this if block is not canonical. In the canonical form of
800 if blocks, the THEN_BB is the block reached via the fallthru edge
801 from TEST_BB. For the noce transformations, we allow the symmetric
802 form as well. */
803 bool then_else_reversed;
805 /* True if the contents of then_bb and else_bb are a
806 simple single set instruction. */
807 bool then_simple;
808 bool else_simple;
810 /* The total rtx cost of the instructions in then_bb and else_bb. */
811 unsigned int then_cost;
812 unsigned int else_cost;
814 /* Estimated cost of the particular branch instruction. */
815 unsigned int branch_cost;
817 /* The name of the noce transform that succeeded in if-converting
818 this structure. Used for debugging. */
819 const char *transform_name;
822 static rtx noce_emit_store_flag (struct noce_if_info *, rtx, int, int);
823 static int noce_try_move (struct noce_if_info *);
824 static int noce_try_ifelse_collapse (struct noce_if_info *);
825 static int noce_try_store_flag (struct noce_if_info *);
826 static int noce_try_addcc (struct noce_if_info *);
827 static int noce_try_store_flag_constants (struct noce_if_info *);
828 static int noce_try_store_flag_mask (struct noce_if_info *);
829 static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
830 rtx, rtx, rtx);
831 static int noce_try_cmove (struct noce_if_info *);
832 static int noce_try_cmove_arith (struct noce_if_info *);
833 static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx_insn **);
834 static int noce_try_minmax (struct noce_if_info *);
835 static int noce_try_abs (struct noce_if_info *);
836 static int noce_try_sign_mask (struct noce_if_info *);
838 /* Helper function for noce_try_store_flag*. */
840 static rtx
841 noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
842 int normalize)
844 rtx cond = if_info->cond;
845 int cond_complex;
846 enum rtx_code code;
848 cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
849 || ! general_operand (XEXP (cond, 1), VOIDmode));
851 /* If earliest == jump, or when the condition is complex, try to
852 build the store_flag insn directly. */
854 if (cond_complex)
856 rtx set = pc_set (if_info->jump);
857 cond = XEXP (SET_SRC (set), 0);
858 if (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
859 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump))
860 reversep = !reversep;
861 if (if_info->then_else_reversed)
862 reversep = !reversep;
865 if (reversep)
866 code = reversed_comparison_code (cond, if_info->jump);
867 else
868 code = GET_CODE (cond);
870 if ((if_info->cond_earliest == if_info->jump || cond_complex)
871 && (normalize == 0 || STORE_FLAG_VALUE == normalize))
873 rtx src = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
874 XEXP (cond, 1));
875 rtx set = gen_rtx_SET (x, src);
877 start_sequence ();
878 rtx_insn *insn = emit_insn (set);
880 if (recog_memoized (insn) >= 0)
882 rtx_insn *seq = get_insns ();
883 end_sequence ();
884 emit_insn (seq);
886 if_info->cond_earliest = if_info->jump;
888 return x;
891 end_sequence ();
894 /* Don't even try if the comparison operands or the mode of X are weird. */
895 if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
896 return NULL_RTX;
898 return emit_store_flag (x, code, XEXP (cond, 0),
899 XEXP (cond, 1), VOIDmode,
900 (code == LTU || code == LEU
901 || code == GEU || code == GTU), normalize);
904 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
905 X is the destination/target and Y is the value to copy. */
907 static void
908 noce_emit_move_insn (rtx x, rtx y)
910 machine_mode outmode;
911 rtx outer, inner;
912 int bitpos;
914 if (GET_CODE (x) != STRICT_LOW_PART)
916 rtx_insn *seq, *insn;
917 rtx target;
918 optab ot;
920 start_sequence ();
921 /* Check that the SET_SRC is reasonable before calling emit_move_insn,
922 otherwise construct a suitable SET pattern ourselves. */
923 insn = (OBJECT_P (y) || CONSTANT_P (y) || GET_CODE (y) == SUBREG)
924 ? emit_move_insn (x, y)
925 : emit_insn (gen_rtx_SET (x, y));
926 seq = get_insns ();
927 end_sequence ();
929 if (recog_memoized (insn) <= 0)
931 if (GET_CODE (x) == ZERO_EXTRACT)
933 rtx op = XEXP (x, 0);
934 unsigned HOST_WIDE_INT size = INTVAL (XEXP (x, 1));
935 unsigned HOST_WIDE_INT start = INTVAL (XEXP (x, 2));
937 /* store_bit_field expects START to be relative to
938 BYTES_BIG_ENDIAN and adjusts this value for machines with
939 BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
940 invoke store_bit_field again it is necessary to have the START
941 value from the first call. */
942 if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
944 if (MEM_P (op))
945 start = BITS_PER_UNIT - start - size;
946 else
948 gcc_assert (REG_P (op));
949 start = BITS_PER_WORD - start - size;
953 gcc_assert (start < (MEM_P (op) ? BITS_PER_UNIT : BITS_PER_WORD));
954 store_bit_field (op, size, start, 0, 0, GET_MODE (x), y, false);
955 return;
958 switch (GET_RTX_CLASS (GET_CODE (y)))
960 case RTX_UNARY:
961 ot = code_to_optab (GET_CODE (y));
962 if (ot)
964 start_sequence ();
965 target = expand_unop (GET_MODE (y), ot, XEXP (y, 0), x, 0);
966 if (target != NULL_RTX)
968 if (target != x)
969 emit_move_insn (x, target);
970 seq = get_insns ();
972 end_sequence ();
974 break;
976 case RTX_BIN_ARITH:
977 case RTX_COMM_ARITH:
978 ot = code_to_optab (GET_CODE (y));
979 if (ot)
981 start_sequence ();
982 target = expand_binop (GET_MODE (y), ot,
983 XEXP (y, 0), XEXP (y, 1),
984 x, 0, OPTAB_DIRECT);
985 if (target != NULL_RTX)
987 if (target != x)
988 emit_move_insn (x, target);
989 seq = get_insns ();
991 end_sequence ();
993 break;
995 default:
996 break;
1000 emit_insn (seq);
1001 return;
1004 outer = XEXP (x, 0);
1005 inner = XEXP (outer, 0);
1006 outmode = GET_MODE (outer);
1007 bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
1008 store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos,
1009 0, 0, outmode, y, false);
1012 /* Return the CC reg if it is used in COND. */
1014 static rtx
1015 cc_in_cond (rtx cond)
1017 if (have_cbranchcc4 && cond
1018 && GET_MODE_CLASS (GET_MODE (XEXP (cond, 0))) == MODE_CC)
1019 return XEXP (cond, 0);
1021 return NULL_RTX;
1024 /* Return sequence of instructions generated by if conversion. This
1025 function calls end_sequence() to end the current stream, ensures
1026 that the instructions are unshared, recognizable non-jump insns.
1027 On failure, this function returns a NULL_RTX. */
1029 static rtx_insn *
1030 end_ifcvt_sequence (struct noce_if_info *if_info)
1032 rtx_insn *insn;
1033 rtx_insn *seq = get_insns ();
1034 rtx cc = cc_in_cond (if_info->cond);
1036 set_used_flags (if_info->x);
1037 set_used_flags (if_info->cond);
1038 set_used_flags (if_info->a);
1039 set_used_flags (if_info->b);
1041 for (insn = seq; insn; insn = NEXT_INSN (insn))
1042 set_used_flags (insn);
1044 unshare_all_rtl_in_chain (seq);
1045 end_sequence ();
1047 /* Make sure that all of the instructions emitted are recognizable,
1048 and that we haven't introduced a new jump instruction.
1049 As an exercise for the reader, build a general mechanism that
1050 allows proper placement of required clobbers. */
1051 for (insn = seq; insn; insn = NEXT_INSN (insn))
1052 if (JUMP_P (insn)
1053 || recog_memoized (insn) == -1
1054 /* Make sure new generated code does not clobber CC. */
1055 || (cc && set_of (cc, insn)))
1056 return NULL;
1058 return seq;
1061 /* Return true iff the then and else basic block (if it exists)
1062 consist of a single simple set instruction. */
1064 static bool
1065 noce_simple_bbs (struct noce_if_info *if_info)
1067 if (!if_info->then_simple)
1068 return false;
1070 if (if_info->else_bb)
1071 return if_info->else_simple;
1073 return true;
1076 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
1077 "if (a == b) x = a; else x = b" into "x = b". */
1079 static int
1080 noce_try_move (struct noce_if_info *if_info)
1082 rtx cond = if_info->cond;
1083 enum rtx_code code = GET_CODE (cond);
1084 rtx y;
1085 rtx_insn *seq;
1087 if (code != NE && code != EQ)
1088 return FALSE;
1090 if (!noce_simple_bbs (if_info))
1091 return FALSE;
1093 /* This optimization isn't valid if either A or B could be a NaN
1094 or a signed zero. */
1095 if (HONOR_NANS (if_info->x)
1096 || HONOR_SIGNED_ZEROS (if_info->x))
1097 return FALSE;
1099 /* Check whether the operands of the comparison are A and in
1100 either order. */
1101 if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
1102 && rtx_equal_p (if_info->b, XEXP (cond, 1)))
1103 || (rtx_equal_p (if_info->a, XEXP (cond, 1))
1104 && rtx_equal_p (if_info->b, XEXP (cond, 0))))
1106 if (!rtx_interchangeable_p (if_info->a, if_info->b))
1107 return FALSE;
1109 y = (code == EQ) ? if_info->a : if_info->b;
1111 /* Avoid generating the move if the source is the destination. */
1112 if (! rtx_equal_p (if_info->x, y))
1114 start_sequence ();
1115 noce_emit_move_insn (if_info->x, y);
1116 seq = end_ifcvt_sequence (if_info);
1117 if (!seq)
1118 return FALSE;
1120 emit_insn_before_setloc (seq, if_info->jump,
1121 INSN_LOCATION (if_info->insn_a));
1123 if_info->transform_name = "noce_try_move";
1124 return TRUE;
1126 return FALSE;
1129 /* Try forming an IF_THEN_ELSE (cond, b, a) and collapsing that
1130 through simplify_rtx. Sometimes that can eliminate the IF_THEN_ELSE.
1131 If that is the case, emit the result into x. */
1133 static int
1134 noce_try_ifelse_collapse (struct noce_if_info * if_info)
1136 if (!noce_simple_bbs (if_info))
1137 return FALSE;
1139 machine_mode mode = GET_MODE (if_info->x);
1140 rtx if_then_else = simplify_gen_ternary (IF_THEN_ELSE, mode, mode,
1141 if_info->cond, if_info->b,
1142 if_info->a);
1144 if (GET_CODE (if_then_else) == IF_THEN_ELSE)
1145 return FALSE;
1147 rtx_insn *seq;
1148 start_sequence ();
1149 noce_emit_move_insn (if_info->x, if_then_else);
1150 seq = end_ifcvt_sequence (if_info);
1151 if (!seq)
1152 return FALSE;
1154 emit_insn_before_setloc (seq, if_info->jump,
1155 INSN_LOCATION (if_info->insn_a));
1157 if_info->transform_name = "noce_try_ifelse_collapse";
1158 return TRUE;
1162 /* Convert "if (test) x = 1; else x = 0".
1164 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
1165 tried in noce_try_store_flag_constants after noce_try_cmove has had
1166 a go at the conversion. */
1168 static int
1169 noce_try_store_flag (struct noce_if_info *if_info)
1171 int reversep;
1172 rtx target;
1173 rtx_insn *seq;
1175 if (!noce_simple_bbs (if_info))
1176 return FALSE;
1178 if (CONST_INT_P (if_info->b)
1179 && INTVAL (if_info->b) == STORE_FLAG_VALUE
1180 && if_info->a == const0_rtx)
1181 reversep = 0;
1182 else if (if_info->b == const0_rtx
1183 && CONST_INT_P (if_info->a)
1184 && INTVAL (if_info->a) == STORE_FLAG_VALUE
1185 && (reversed_comparison_code (if_info->cond, if_info->jump)
1186 != UNKNOWN))
1187 reversep = 1;
1188 else
1189 return FALSE;
1191 start_sequence ();
1193 target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
1194 if (target)
1196 if (target != if_info->x)
1197 noce_emit_move_insn (if_info->x, target);
1199 seq = end_ifcvt_sequence (if_info);
1200 if (! seq)
1201 return FALSE;
1203 emit_insn_before_setloc (seq, if_info->jump,
1204 INSN_LOCATION (if_info->insn_a));
1205 if_info->transform_name = "noce_try_store_flag";
1206 return TRUE;
1208 else
1210 end_sequence ();
1211 return FALSE;
1216 /* Convert "if (test) x = -A; else x = A" into
1217 x = A; if (test) x = -x if the machine can do the
1218 conditional negate form of this cheaply.
1219 Try this before noce_try_cmove that will just load the
1220 immediates into two registers and do a conditional select
1221 between them. If the target has a conditional negate or
1222 conditional invert operation we can save a potentially
1223 expensive constant synthesis. */
1225 static bool
1226 noce_try_inverse_constants (struct noce_if_info *if_info)
1228 if (!noce_simple_bbs (if_info))
1229 return false;
1231 if (!CONST_INT_P (if_info->a)
1232 || !CONST_INT_P (if_info->b)
1233 || !REG_P (if_info->x))
1234 return false;
1236 machine_mode mode = GET_MODE (if_info->x);
1238 HOST_WIDE_INT val_a = INTVAL (if_info->a);
1239 HOST_WIDE_INT val_b = INTVAL (if_info->b);
1241 rtx cond = if_info->cond;
1243 rtx x = if_info->x;
1244 rtx target;
1246 start_sequence ();
1248 rtx_code code;
1249 if (val_b != HOST_WIDE_INT_MIN && val_a == -val_b)
1250 code = NEG;
1251 else if (val_a == ~val_b)
1252 code = NOT;
1253 else
1255 end_sequence ();
1256 return false;
1259 rtx tmp = gen_reg_rtx (mode);
1260 noce_emit_move_insn (tmp, if_info->a);
1262 target = emit_conditional_neg_or_complement (x, code, mode, cond, tmp, tmp);
1264 if (target)
1266 rtx_insn *seq = get_insns ();
1268 if (!seq)
1270 end_sequence ();
1271 return false;
1274 if (target != if_info->x)
1275 noce_emit_move_insn (if_info->x, target);
1277 seq = end_ifcvt_sequence (if_info);
1279 if (!seq)
1280 return false;
1282 emit_insn_before_setloc (seq, if_info->jump,
1283 INSN_LOCATION (if_info->insn_a));
1284 if_info->transform_name = "noce_try_inverse_constants";
1285 return true;
1288 end_sequence ();
1289 return false;
1293 /* Convert "if (test) x = a; else x = b", for A and B constant.
1294 Also allow A = y + c1, B = y + c2, with a common y between A
1295 and B. */
1297 static int
1298 noce_try_store_flag_constants (struct noce_if_info *if_info)
1300 rtx target;
1301 rtx_insn *seq;
1302 bool reversep;
1303 HOST_WIDE_INT itrue, ifalse, diff, tmp;
1304 int normalize;
1305 bool can_reverse;
1306 machine_mode mode = GET_MODE (if_info->x);;
1307 rtx common = NULL_RTX;
1309 rtx a = if_info->a;
1310 rtx b = if_info->b;
1312 /* Handle cases like x := test ? y + 3 : y + 4. */
1313 if (GET_CODE (a) == PLUS
1314 && GET_CODE (b) == PLUS
1315 && CONST_INT_P (XEXP (a, 1))
1316 && CONST_INT_P (XEXP (b, 1))
1317 && rtx_equal_p (XEXP (a, 0), XEXP (b, 0))
1318 /* Allow expressions that are not using the result or plain
1319 registers where we handle overlap below. */
1320 && (REG_P (XEXP (a, 0))
1321 || (noce_operand_ok (XEXP (a, 0))
1322 && ! reg_overlap_mentioned_p (if_info->x, XEXP (a, 0))))
1323 && if_info->branch_cost >= 2)
1325 common = XEXP (a, 0);
1326 a = XEXP (a, 1);
1327 b = XEXP (b, 1);
1330 if (!noce_simple_bbs (if_info))
1331 return FALSE;
1333 if (CONST_INT_P (a)
1334 && CONST_INT_P (b))
1336 ifalse = INTVAL (a);
1337 itrue = INTVAL (b);
1338 bool subtract_flag_p = false;
1340 diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
1341 /* Make sure we can represent the difference between the two values. */
1342 if ((diff > 0)
1343 != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
1344 return FALSE;
1346 diff = trunc_int_for_mode (diff, mode);
1348 can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
1349 != UNKNOWN);
1351 reversep = false;
1352 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1354 normalize = 0;
1355 /* We could collapse these cases but it is easier to follow the
1356 diff/STORE_FLAG_VALUE combinations when they are listed
1357 explicitly. */
1359 /* test ? 3 : 4
1360 => 4 + (test != 0). */
1361 if (diff < 0 && STORE_FLAG_VALUE < 0)
1362 reversep = false;
1363 /* test ? 4 : 3
1364 => can_reverse | 4 + (test == 0)
1365 !can_reverse | 3 - (test != 0). */
1366 else if (diff > 0 && STORE_FLAG_VALUE < 0)
1368 reversep = can_reverse;
1369 subtract_flag_p = !can_reverse;
1370 /* If we need to subtract the flag and we have PLUS-immediate
1371 A and B then it is unlikely to be beneficial to play tricks
1372 here. */
1373 if (subtract_flag_p && common)
1374 return FALSE;
1376 /* test ? 3 : 4
1377 => can_reverse | 3 + (test == 0)
1378 !can_reverse | 4 - (test != 0). */
1379 else if (diff < 0 && STORE_FLAG_VALUE > 0)
1381 reversep = can_reverse;
1382 subtract_flag_p = !can_reverse;
1383 /* If we need to subtract the flag and we have PLUS-immediate
1384 A and B then it is unlikely to be beneficial to play tricks
1385 here. */
1386 if (subtract_flag_p && common)
1387 return FALSE;
1389 /* test ? 4 : 3
1390 => 4 + (test != 0). */
1391 else if (diff > 0 && STORE_FLAG_VALUE > 0)
1392 reversep = false;
1393 else
1394 gcc_unreachable ();
1396 else if (ifalse == 0 && exact_log2 (itrue) >= 0
1397 && (STORE_FLAG_VALUE == 1
1398 || if_info->branch_cost >= 2))
1399 normalize = 1;
1400 else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
1401 && (STORE_FLAG_VALUE == 1 || if_info->branch_cost >= 2))
1403 normalize = 1;
1404 reversep = true;
1406 else if (itrue == -1
1407 && (STORE_FLAG_VALUE == -1
1408 || if_info->branch_cost >= 2))
1409 normalize = -1;
1410 else if (ifalse == -1 && can_reverse
1411 && (STORE_FLAG_VALUE == -1 || if_info->branch_cost >= 2))
1413 normalize = -1;
1414 reversep = true;
1416 else
1417 return FALSE;
1419 if (reversep)
1421 std::swap (itrue, ifalse);
1422 diff = trunc_int_for_mode (-(unsigned HOST_WIDE_INT) diff, mode);
1425 start_sequence ();
1427 /* If we have x := test ? x + 3 : x + 4 then move the original
1428 x out of the way while we store flags. */
1429 if (common && rtx_equal_p (common, if_info->x))
1431 common = gen_reg_rtx (mode);
1432 noce_emit_move_insn (common, if_info->x);
1435 target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
1436 if (! target)
1438 end_sequence ();
1439 return FALSE;
1442 /* if (test) x = 3; else x = 4;
1443 => x = 3 + (test == 0); */
1444 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1446 /* Add the common part now. This may allow combine to merge this
1447 with the store flag operation earlier into some sort of conditional
1448 increment/decrement if the target allows it. */
1449 if (common)
1450 target = expand_simple_binop (mode, PLUS,
1451 target, common,
1452 target, 0, OPTAB_WIDEN);
1454 /* Always use ifalse here. It should have been swapped with itrue
1455 when appropriate when reversep is true. */
1456 target = expand_simple_binop (mode, subtract_flag_p ? MINUS : PLUS,
1457 gen_int_mode (ifalse, mode), target,
1458 if_info->x, 0, OPTAB_WIDEN);
1460 /* Other cases are not beneficial when the original A and B are PLUS
1461 expressions. */
1462 else if (common)
1464 end_sequence ();
1465 return FALSE;
1467 /* if (test) x = 8; else x = 0;
1468 => x = (test != 0) << 3; */
1469 else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
1471 target = expand_simple_binop (mode, ASHIFT,
1472 target, GEN_INT (tmp), if_info->x, 0,
1473 OPTAB_WIDEN);
1476 /* if (test) x = -1; else x = b;
1477 => x = -(test != 0) | b; */
1478 else if (itrue == -1)
1480 target = expand_simple_binop (mode, IOR,
1481 target, gen_int_mode (ifalse, mode),
1482 if_info->x, 0, OPTAB_WIDEN);
1484 else
1486 end_sequence ();
1487 return FALSE;
1490 if (! target)
1492 end_sequence ();
1493 return FALSE;
1496 if (target != if_info->x)
1497 noce_emit_move_insn (if_info->x, target);
1499 seq = end_ifcvt_sequence (if_info);
1500 if (!seq)
1501 return FALSE;
1503 emit_insn_before_setloc (seq, if_info->jump,
1504 INSN_LOCATION (if_info->insn_a));
1505 if_info->transform_name = "noce_try_store_flag_constants";
1507 return TRUE;
1510 return FALSE;
1513 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1514 similarly for "foo--". */
1516 static int
1517 noce_try_addcc (struct noce_if_info *if_info)
1519 rtx target;
1520 rtx_insn *seq;
1521 int subtract, normalize;
1523 if (!noce_simple_bbs (if_info))
1524 return FALSE;
1526 if (GET_CODE (if_info->a) == PLUS
1527 && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
1528 && (reversed_comparison_code (if_info->cond, if_info->jump)
1529 != UNKNOWN))
1531 rtx cond = if_info->cond;
1532 enum rtx_code code = reversed_comparison_code (cond, if_info->jump);
1534 /* First try to use addcc pattern. */
1535 if (general_operand (XEXP (cond, 0), VOIDmode)
1536 && general_operand (XEXP (cond, 1), VOIDmode))
1538 start_sequence ();
1539 target = emit_conditional_add (if_info->x, code,
1540 XEXP (cond, 0),
1541 XEXP (cond, 1),
1542 VOIDmode,
1543 if_info->b,
1544 XEXP (if_info->a, 1),
1545 GET_MODE (if_info->x),
1546 (code == LTU || code == GEU
1547 || code == LEU || code == GTU));
1548 if (target)
1550 if (target != if_info->x)
1551 noce_emit_move_insn (if_info->x, target);
1553 seq = end_ifcvt_sequence (if_info);
1554 if (!seq)
1555 return FALSE;
1557 emit_insn_before_setloc (seq, if_info->jump,
1558 INSN_LOCATION (if_info->insn_a));
1559 if_info->transform_name = "noce_try_addcc";
1561 return TRUE;
1563 end_sequence ();
1566 /* If that fails, construct conditional increment or decrement using
1567 setcc. */
1568 if (if_info->branch_cost >= 2
1569 && (XEXP (if_info->a, 1) == const1_rtx
1570 || XEXP (if_info->a, 1) == constm1_rtx))
1572 start_sequence ();
1573 if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1574 subtract = 0, normalize = 0;
1575 else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1576 subtract = 1, normalize = 0;
1577 else
1578 subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
1581 target = noce_emit_store_flag (if_info,
1582 gen_reg_rtx (GET_MODE (if_info->x)),
1583 1, normalize);
1585 if (target)
1586 target = expand_simple_binop (GET_MODE (if_info->x),
1587 subtract ? MINUS : PLUS,
1588 if_info->b, target, if_info->x,
1589 0, OPTAB_WIDEN);
1590 if (target)
1592 if (target != if_info->x)
1593 noce_emit_move_insn (if_info->x, target);
1595 seq = end_ifcvt_sequence (if_info);
1596 if (!seq)
1597 return FALSE;
1599 emit_insn_before_setloc (seq, if_info->jump,
1600 INSN_LOCATION (if_info->insn_a));
1601 if_info->transform_name = "noce_try_addcc";
1602 return TRUE;
1604 end_sequence ();
1608 return FALSE;
1611 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1613 static int
1614 noce_try_store_flag_mask (struct noce_if_info *if_info)
1616 rtx target;
1617 rtx_insn *seq;
1618 int reversep;
1620 if (!noce_simple_bbs (if_info))
1621 return FALSE;
1623 reversep = 0;
1624 if ((if_info->branch_cost >= 2
1625 || STORE_FLAG_VALUE == -1)
1626 && ((if_info->a == const0_rtx
1627 && rtx_equal_p (if_info->b, if_info->x))
1628 || ((reversep = (reversed_comparison_code (if_info->cond,
1629 if_info->jump)
1630 != UNKNOWN))
1631 && if_info->b == const0_rtx
1632 && rtx_equal_p (if_info->a, if_info->x))))
1634 start_sequence ();
1635 target = noce_emit_store_flag (if_info,
1636 gen_reg_rtx (GET_MODE (if_info->x)),
1637 reversep, -1);
1638 if (target)
1639 target = expand_simple_binop (GET_MODE (if_info->x), AND,
1640 if_info->x,
1641 target, if_info->x, 0,
1642 OPTAB_WIDEN);
1644 if (target)
1646 int old_cost, new_cost, insn_cost;
1647 int speed_p;
1649 if (target != if_info->x)
1650 noce_emit_move_insn (if_info->x, target);
1652 seq = end_ifcvt_sequence (if_info);
1653 if (!seq)
1654 return FALSE;
1656 speed_p = optimize_bb_for_speed_p (BLOCK_FOR_INSN (if_info->insn_a));
1657 insn_cost = insn_rtx_cost (PATTERN (if_info->insn_a), speed_p);
1658 old_cost = COSTS_N_INSNS (if_info->branch_cost) + insn_cost;
1659 new_cost = seq_cost (seq, speed_p);
1661 if (new_cost > old_cost)
1662 return FALSE;
1664 emit_insn_before_setloc (seq, if_info->jump,
1665 INSN_LOCATION (if_info->insn_a));
1666 if_info->transform_name = "noce_try_store_flag_mask";
1668 return TRUE;
1671 end_sequence ();
1674 return FALSE;
1677 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1679 static rtx
1680 noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1681 rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue)
1683 rtx target ATTRIBUTE_UNUSED;
1684 int unsignedp ATTRIBUTE_UNUSED;
1686 /* If earliest == jump, try to build the cmove insn directly.
1687 This is helpful when combine has created some complex condition
1688 (like for alpha's cmovlbs) that we can't hope to regenerate
1689 through the normal interface. */
1691 if (if_info->cond_earliest == if_info->jump)
1693 rtx cond = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1694 rtx if_then_else = gen_rtx_IF_THEN_ELSE (GET_MODE (x),
1695 cond, vtrue, vfalse);
1696 rtx set = gen_rtx_SET (x, if_then_else);
1698 start_sequence ();
1699 rtx_insn *insn = emit_insn (set);
1701 if (recog_memoized (insn) >= 0)
1703 rtx_insn *seq = get_insns ();
1704 end_sequence ();
1705 emit_insn (seq);
1707 return x;
1710 end_sequence ();
1713 /* Don't even try if the comparison operands are weird
1714 except that the target supports cbranchcc4. */
1715 if (! general_operand (cmp_a, GET_MODE (cmp_a))
1716 || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1718 if (!have_cbranchcc4
1719 || GET_MODE_CLASS (GET_MODE (cmp_a)) != MODE_CC
1720 || cmp_b != const0_rtx)
1721 return NULL_RTX;
1724 unsignedp = (code == LTU || code == GEU
1725 || code == LEU || code == GTU);
1727 target = emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
1728 vtrue, vfalse, GET_MODE (x),
1729 unsignedp);
1730 if (target)
1731 return target;
1733 /* We might be faced with a situation like:
1735 x = (reg:M TARGET)
1736 vtrue = (subreg:M (reg:N VTRUE) BYTE)
1737 vfalse = (subreg:M (reg:N VFALSE) BYTE)
1739 We can't do a conditional move in mode M, but it's possible that we
1740 could do a conditional move in mode N instead and take a subreg of
1741 the result.
1743 If we can't create new pseudos, though, don't bother. */
1744 if (reload_completed)
1745 return NULL_RTX;
1747 if (GET_CODE (vtrue) == SUBREG && GET_CODE (vfalse) == SUBREG)
1749 rtx reg_vtrue = SUBREG_REG (vtrue);
1750 rtx reg_vfalse = SUBREG_REG (vfalse);
1751 unsigned int byte_vtrue = SUBREG_BYTE (vtrue);
1752 unsigned int byte_vfalse = SUBREG_BYTE (vfalse);
1753 rtx promoted_target;
1755 if (GET_MODE (reg_vtrue) != GET_MODE (reg_vfalse)
1756 || byte_vtrue != byte_vfalse
1757 || (SUBREG_PROMOTED_VAR_P (vtrue)
1758 != SUBREG_PROMOTED_VAR_P (vfalse))
1759 || (SUBREG_PROMOTED_GET (vtrue)
1760 != SUBREG_PROMOTED_GET (vfalse)))
1761 return NULL_RTX;
1763 promoted_target = gen_reg_rtx (GET_MODE (reg_vtrue));
1765 target = emit_conditional_move (promoted_target, code, cmp_a, cmp_b,
1766 VOIDmode, reg_vtrue, reg_vfalse,
1767 GET_MODE (reg_vtrue), unsignedp);
1768 /* Nope, couldn't do it in that mode either. */
1769 if (!target)
1770 return NULL_RTX;
1772 target = gen_rtx_SUBREG (GET_MODE (vtrue), promoted_target, byte_vtrue);
1773 SUBREG_PROMOTED_VAR_P (target) = SUBREG_PROMOTED_VAR_P (vtrue);
1774 SUBREG_PROMOTED_SET (target, SUBREG_PROMOTED_GET (vtrue));
1775 emit_move_insn (x, target);
1776 return x;
1778 else
1779 return NULL_RTX;
1782 /* Try only simple constants and registers here. More complex cases
1783 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1784 has had a go at it. */
1786 static int
1787 noce_try_cmove (struct noce_if_info *if_info)
1789 enum rtx_code code;
1790 rtx target;
1791 rtx_insn *seq;
1793 if (!noce_simple_bbs (if_info))
1794 return FALSE;
1796 if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1797 && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1799 start_sequence ();
1801 code = GET_CODE (if_info->cond);
1802 target = noce_emit_cmove (if_info, if_info->x, code,
1803 XEXP (if_info->cond, 0),
1804 XEXP (if_info->cond, 1),
1805 if_info->a, if_info->b);
1807 if (target)
1809 if (target != if_info->x)
1810 noce_emit_move_insn (if_info->x, target);
1812 seq = end_ifcvt_sequence (if_info);
1813 if (!seq)
1814 return FALSE;
1816 emit_insn_before_setloc (seq, if_info->jump,
1817 INSN_LOCATION (if_info->insn_a));
1818 if_info->transform_name = "noce_try_cmove";
1820 return TRUE;
1822 /* If both a and b are constants try a last-ditch transformation:
1823 if (test) x = a; else x = b;
1824 => x = (-(test != 0) & (b - a)) + a;
1825 Try this only if the target-specific expansion above has failed.
1826 The target-specific expander may want to generate sequences that
1827 we don't know about, so give them a chance before trying this
1828 approach. */
1829 else if (!targetm.have_conditional_execution ()
1830 && CONST_INT_P (if_info->a) && CONST_INT_P (if_info->b)
1831 && ((if_info->branch_cost >= 2 && STORE_FLAG_VALUE == -1)
1832 || if_info->branch_cost >= 3))
1834 machine_mode mode = GET_MODE (if_info->x);
1835 HOST_WIDE_INT ifalse = INTVAL (if_info->a);
1836 HOST_WIDE_INT itrue = INTVAL (if_info->b);
1837 rtx target = noce_emit_store_flag (if_info, if_info->x, false, -1);
1838 if (!target)
1840 end_sequence ();
1841 return FALSE;
1844 HOST_WIDE_INT diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
1845 /* Make sure we can represent the difference
1846 between the two values. */
1847 if ((diff > 0)
1848 != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
1850 end_sequence ();
1851 return FALSE;
1854 diff = trunc_int_for_mode (diff, mode);
1855 target = expand_simple_binop (mode, AND,
1856 target, gen_int_mode (diff, mode),
1857 if_info->x, 0, OPTAB_WIDEN);
1858 if (target)
1859 target = expand_simple_binop (mode, PLUS,
1860 target, gen_int_mode (ifalse, mode),
1861 if_info->x, 0, OPTAB_WIDEN);
1862 if (target)
1864 if (target != if_info->x)
1865 noce_emit_move_insn (if_info->x, target);
1867 seq = end_ifcvt_sequence (if_info);
1868 if (!seq)
1869 return FALSE;
1871 emit_insn_before_setloc (seq, if_info->jump,
1872 INSN_LOCATION (if_info->insn_a));
1873 if_info->transform_name = "noce_try_cmove";
1874 return TRUE;
1876 else
1878 end_sequence ();
1879 return FALSE;
1882 else
1883 end_sequence ();
1886 return FALSE;
1889 /* Return true if X contains a conditional code mode rtx. */
1891 static bool
1892 contains_ccmode_rtx_p (rtx x)
1894 subrtx_iterator::array_type array;
1895 FOR_EACH_SUBRTX (iter, array, x, ALL)
1896 if (GET_MODE_CLASS (GET_MODE (*iter)) == MODE_CC)
1897 return true;
1899 return false;
1902 /* Helper for bb_valid_for_noce_process_p. Validate that
1903 the rtx insn INSN is a single set that does not set
1904 the conditional register CC and is in general valid for
1905 if-conversion. */
1907 static bool
1908 insn_valid_noce_process_p (rtx_insn *insn, rtx cc)
1910 if (!insn
1911 || !NONJUMP_INSN_P (insn)
1912 || (cc && set_of (cc, insn)))
1913 return false;
1915 rtx sset = single_set (insn);
1917 /* Currently support only simple single sets in test_bb. */
1918 if (!sset
1919 || !noce_operand_ok (SET_DEST (sset))
1920 || contains_ccmode_rtx_p (SET_DEST (sset))
1921 || !noce_operand_ok (SET_SRC (sset)))
1922 return false;
1924 return true;
1928 /* Return true iff the registers that the insns in BB_A set do not get
1929 used in BB_B. If TO_RENAME is non-NULL then it is a location that will be
1930 renamed later by the caller and so conflicts on it should be ignored
1931 in this function. */
1933 static bool
1934 bbs_ok_for_cmove_arith (basic_block bb_a, basic_block bb_b, rtx to_rename)
1936 rtx_insn *a_insn;
1937 bitmap bba_sets = BITMAP_ALLOC (&reg_obstack);
1939 df_ref def;
1940 df_ref use;
1942 FOR_BB_INSNS (bb_a, a_insn)
1944 if (!active_insn_p (a_insn))
1945 continue;
1947 rtx sset_a = single_set (a_insn);
1949 if (!sset_a)
1951 BITMAP_FREE (bba_sets);
1952 return false;
1954 /* Record all registers that BB_A sets. */
1955 FOR_EACH_INSN_DEF (def, a_insn)
1956 if (!(to_rename && DF_REF_REG (def) == to_rename))
1957 bitmap_set_bit (bba_sets, DF_REF_REGNO (def));
1960 rtx_insn *b_insn;
1962 FOR_BB_INSNS (bb_b, b_insn)
1964 if (!active_insn_p (b_insn))
1965 continue;
1967 rtx sset_b = single_set (b_insn);
1969 if (!sset_b)
1971 BITMAP_FREE (bba_sets);
1972 return false;
1975 /* Make sure this is a REG and not some instance
1976 of ZERO_EXTRACT or SUBREG or other dangerous stuff.
1977 If we have a memory destination then we have a pair of simple
1978 basic blocks performing an operation of the form [addr] = c ? a : b.
1979 bb_valid_for_noce_process_p will have ensured that these are
1980 the only stores present. In that case [addr] should be the location
1981 to be renamed. Assert that the callers set this up properly. */
1982 if (MEM_P (SET_DEST (sset_b)))
1983 gcc_assert (rtx_equal_p (SET_DEST (sset_b), to_rename));
1984 else if (!REG_P (SET_DEST (sset_b)))
1986 BITMAP_FREE (bba_sets);
1987 return false;
1990 /* If the insn uses a reg set in BB_A return false. */
1991 FOR_EACH_INSN_USE (use, b_insn)
1993 if (bitmap_bit_p (bba_sets, DF_REF_REGNO (use)))
1995 BITMAP_FREE (bba_sets);
1996 return false;
2002 BITMAP_FREE (bba_sets);
2003 return true;
2006 /* Emit copies of all the active instructions in BB except the last.
2007 This is a helper for noce_try_cmove_arith. */
2009 static void
2010 noce_emit_all_but_last (basic_block bb)
2012 rtx_insn *last = last_active_insn (bb, FALSE);
2013 rtx_insn *insn;
2014 FOR_BB_INSNS (bb, insn)
2016 if (insn != last && active_insn_p (insn))
2018 rtx_insn *to_emit = as_a <rtx_insn *> (copy_rtx (insn));
2020 emit_insn (PATTERN (to_emit));
2025 /* Helper for noce_try_cmove_arith. Emit the pattern TO_EMIT and return
2026 the resulting insn or NULL if it's not a valid insn. */
2028 static rtx_insn *
2029 noce_emit_insn (rtx to_emit)
2031 gcc_assert (to_emit);
2032 rtx_insn *insn = emit_insn (to_emit);
2034 if (recog_memoized (insn) < 0)
2035 return NULL;
2037 return insn;
2040 /* Helper for noce_try_cmove_arith. Emit a copy of the insns up to
2041 and including the penultimate one in BB if it is not simple
2042 (as indicated by SIMPLE). Then emit LAST_INSN as the last
2043 insn in the block. The reason for that is that LAST_INSN may
2044 have been modified by the preparation in noce_try_cmove_arith. */
2046 static bool
2047 noce_emit_bb (rtx last_insn, basic_block bb, bool simple)
2049 if (bb && !simple)
2050 noce_emit_all_but_last (bb);
2052 if (last_insn && !noce_emit_insn (last_insn))
2053 return false;
2055 return true;
2058 /* Try more complex cases involving conditional_move. */
2060 static int
2061 noce_try_cmove_arith (struct noce_if_info *if_info)
2063 rtx a = if_info->a;
2064 rtx b = if_info->b;
2065 rtx x = if_info->x;
2066 rtx orig_a, orig_b;
2067 rtx_insn *insn_a, *insn_b;
2068 bool a_simple = if_info->then_simple;
2069 bool b_simple = if_info->else_simple;
2070 basic_block then_bb = if_info->then_bb;
2071 basic_block else_bb = if_info->else_bb;
2072 rtx target;
2073 int is_mem = 0;
2074 enum rtx_code code;
2075 rtx_insn *ifcvt_seq;
2077 /* A conditional move from two memory sources is equivalent to a
2078 conditional on their addresses followed by a load. Don't do this
2079 early because it'll screw alias analysis. Note that we've
2080 already checked for no side effects. */
2081 /* ??? FIXME: Magic number 5. */
2082 if (cse_not_expected
2083 && MEM_P (a) && MEM_P (b)
2084 && MEM_ADDR_SPACE (a) == MEM_ADDR_SPACE (b)
2085 && if_info->branch_cost >= 5)
2087 machine_mode address_mode = get_address_mode (a);
2089 a = XEXP (a, 0);
2090 b = XEXP (b, 0);
2091 x = gen_reg_rtx (address_mode);
2092 is_mem = 1;
2095 /* ??? We could handle this if we knew that a load from A or B could
2096 not trap or fault. This is also true if we've already loaded
2097 from the address along the path from ENTRY. */
2098 else if (may_trap_or_fault_p (a) || may_trap_or_fault_p (b))
2099 return FALSE;
2101 /* if (test) x = a + b; else x = c - d;
2102 => y = a + b;
2103 x = c - d;
2104 if (test)
2105 x = y;
2108 code = GET_CODE (if_info->cond);
2109 insn_a = if_info->insn_a;
2110 insn_b = if_info->insn_b;
2112 machine_mode x_mode = GET_MODE (x);
2114 if (!can_conditionally_move_p (x_mode))
2115 return FALSE;
2117 unsigned int then_cost;
2118 unsigned int else_cost;
2119 if (insn_a)
2120 then_cost = if_info->then_cost;
2121 else
2122 then_cost = 0;
2124 if (insn_b)
2125 else_cost = if_info->else_cost;
2126 else
2127 else_cost = 0;
2129 /* We're going to execute one of the basic blocks anyway, so
2130 bail out if the most expensive of the two blocks is unacceptable. */
2131 if (MAX (then_cost, else_cost) > COSTS_N_INSNS (if_info->branch_cost))
2132 return FALSE;
2134 /* Possibly rearrange operands to make things come out more natural. */
2135 if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
2137 int reversep = 0;
2138 if (rtx_equal_p (b, x))
2139 reversep = 1;
2140 else if (general_operand (b, GET_MODE (b)))
2141 reversep = 1;
2143 if (reversep)
2145 code = reversed_comparison_code (if_info->cond, if_info->jump);
2146 std::swap (a, b);
2147 std::swap (insn_a, insn_b);
2148 std::swap (a_simple, b_simple);
2149 std::swap (then_bb, else_bb);
2153 if (then_bb && else_bb
2154 && (!bbs_ok_for_cmove_arith (then_bb, else_bb, if_info->orig_x)
2155 || !bbs_ok_for_cmove_arith (else_bb, then_bb, if_info->orig_x)))
2156 return FALSE;
2158 start_sequence ();
2160 /* If one of the blocks is empty then the corresponding B or A value
2161 came from the test block. The non-empty complex block that we will
2162 emit might clobber the register used by B or A, so move it to a pseudo
2163 first. */
2165 rtx tmp_a = NULL_RTX;
2166 rtx tmp_b = NULL_RTX;
2168 if (b_simple || !else_bb)
2169 tmp_b = gen_reg_rtx (x_mode);
2171 if (a_simple || !then_bb)
2172 tmp_a = gen_reg_rtx (x_mode);
2174 orig_a = a;
2175 orig_b = b;
2177 rtx emit_a = NULL_RTX;
2178 rtx emit_b = NULL_RTX;
2179 rtx_insn *tmp_insn = NULL;
2180 bool modified_in_a = false;
2181 bool modified_in_b = false;
2182 /* If either operand is complex, load it into a register first.
2183 The best way to do this is to copy the original insn. In this
2184 way we preserve any clobbers etc that the insn may have had.
2185 This is of course not possible in the IS_MEM case. */
2187 if (! general_operand (a, GET_MODE (a)) || tmp_a)
2190 if (is_mem)
2192 rtx reg = gen_reg_rtx (GET_MODE (a));
2193 emit_a = gen_rtx_SET (reg, a);
2195 else
2197 if (insn_a)
2199 a = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
2201 rtx_insn *copy_of_a = as_a <rtx_insn *> (copy_rtx (insn_a));
2202 rtx set = single_set (copy_of_a);
2203 SET_DEST (set) = a;
2205 emit_a = PATTERN (copy_of_a);
2207 else
2209 rtx tmp_reg = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
2210 emit_a = gen_rtx_SET (tmp_reg, a);
2211 a = tmp_reg;
2216 if (! general_operand (b, GET_MODE (b)) || tmp_b)
2218 if (is_mem)
2220 rtx reg = gen_reg_rtx (GET_MODE (b));
2221 emit_b = gen_rtx_SET (reg, b);
2223 else
2225 if (insn_b)
2227 b = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
2228 rtx_insn *copy_of_b = as_a <rtx_insn *> (copy_rtx (insn_b));
2229 rtx set = single_set (copy_of_b);
2231 SET_DEST (set) = b;
2232 emit_b = PATTERN (copy_of_b);
2234 else
2236 rtx tmp_reg = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
2237 emit_b = gen_rtx_SET (tmp_reg, b);
2238 b = tmp_reg;
2243 modified_in_a = emit_a != NULL_RTX && modified_in_p (orig_b, emit_a);
2244 if (tmp_b && then_bb)
2246 FOR_BB_INSNS (then_bb, tmp_insn)
2247 /* Don't check inside insn_a. We will have changed it to emit_a
2248 with a destination that doesn't conflict. */
2249 if (!(insn_a && tmp_insn == insn_a)
2250 && modified_in_p (orig_b, tmp_insn))
2252 modified_in_a = true;
2253 break;
2258 modified_in_b = emit_b != NULL_RTX && modified_in_p (orig_a, emit_b);
2259 if (tmp_a && else_bb)
2261 FOR_BB_INSNS (else_bb, tmp_insn)
2262 /* Don't check inside insn_b. We will have changed it to emit_b
2263 with a destination that doesn't conflict. */
2264 if (!(insn_b && tmp_insn == insn_b)
2265 && modified_in_p (orig_a, tmp_insn))
2267 modified_in_b = true;
2268 break;
2272 /* If insn to set up A clobbers any registers B depends on, try to
2273 swap insn that sets up A with the one that sets up B. If even
2274 that doesn't help, punt. */
2275 if (modified_in_a && !modified_in_b)
2277 if (!noce_emit_bb (emit_b, else_bb, b_simple))
2278 goto end_seq_and_fail;
2280 if (!noce_emit_bb (emit_a, then_bb, a_simple))
2281 goto end_seq_and_fail;
2283 else if (!modified_in_a)
2285 if (!noce_emit_bb (emit_a, then_bb, a_simple))
2286 goto end_seq_and_fail;
2288 if (!noce_emit_bb (emit_b, else_bb, b_simple))
2289 goto end_seq_and_fail;
2291 else
2292 goto end_seq_and_fail;
2294 target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
2295 XEXP (if_info->cond, 1), a, b);
2297 if (! target)
2298 goto end_seq_and_fail;
2300 /* If we're handling a memory for above, emit the load now. */
2301 if (is_mem)
2303 rtx mem = gen_rtx_MEM (GET_MODE (if_info->x), target);
2305 /* Copy over flags as appropriate. */
2306 if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
2307 MEM_VOLATILE_P (mem) = 1;
2308 if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
2309 set_mem_alias_set (mem, MEM_ALIAS_SET (if_info->a));
2310 set_mem_align (mem,
2311 MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
2313 gcc_assert (MEM_ADDR_SPACE (if_info->a) == MEM_ADDR_SPACE (if_info->b));
2314 set_mem_addr_space (mem, MEM_ADDR_SPACE (if_info->a));
2316 noce_emit_move_insn (if_info->x, mem);
2318 else if (target != x)
2319 noce_emit_move_insn (x, target);
2321 ifcvt_seq = end_ifcvt_sequence (if_info);
2322 if (!ifcvt_seq)
2323 return FALSE;
2325 emit_insn_before_setloc (ifcvt_seq, if_info->jump,
2326 INSN_LOCATION (if_info->insn_a));
2327 if_info->transform_name = "noce_try_cmove_arith";
2328 return TRUE;
2330 end_seq_and_fail:
2331 end_sequence ();
2332 return FALSE;
2335 /* For most cases, the simplified condition we found is the best
2336 choice, but this is not the case for the min/max/abs transforms.
2337 For these we wish to know that it is A or B in the condition. */
2339 static rtx
2340 noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
2341 rtx_insn **earliest)
2343 rtx cond, set;
2344 rtx_insn *insn;
2345 int reverse;
2347 /* If target is already mentioned in the known condition, return it. */
2348 if (reg_mentioned_p (target, if_info->cond))
2350 *earliest = if_info->cond_earliest;
2351 return if_info->cond;
2354 set = pc_set (if_info->jump);
2355 cond = XEXP (SET_SRC (set), 0);
2356 reverse
2357 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
2358 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump);
2359 if (if_info->then_else_reversed)
2360 reverse = !reverse;
2362 /* If we're looking for a constant, try to make the conditional
2363 have that constant in it. There are two reasons why it may
2364 not have the constant we want:
2366 1. GCC may have needed to put the constant in a register, because
2367 the target can't compare directly against that constant. For
2368 this case, we look for a SET immediately before the comparison
2369 that puts a constant in that register.
2371 2. GCC may have canonicalized the conditional, for example
2372 replacing "if x < 4" with "if x <= 3". We can undo that (or
2373 make equivalent types of changes) to get the constants we need
2374 if they're off by one in the right direction. */
2376 if (CONST_INT_P (target))
2378 enum rtx_code code = GET_CODE (if_info->cond);
2379 rtx op_a = XEXP (if_info->cond, 0);
2380 rtx op_b = XEXP (if_info->cond, 1);
2381 rtx_insn *prev_insn;
2383 /* First, look to see if we put a constant in a register. */
2384 prev_insn = prev_nonnote_insn (if_info->cond_earliest);
2385 if (prev_insn
2386 && BLOCK_FOR_INSN (prev_insn)
2387 == BLOCK_FOR_INSN (if_info->cond_earliest)
2388 && INSN_P (prev_insn)
2389 && GET_CODE (PATTERN (prev_insn)) == SET)
2391 rtx src = find_reg_equal_equiv_note (prev_insn);
2392 if (!src)
2393 src = SET_SRC (PATTERN (prev_insn));
2394 if (CONST_INT_P (src))
2396 if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
2397 op_a = src;
2398 else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
2399 op_b = src;
2401 if (CONST_INT_P (op_a))
2403 std::swap (op_a, op_b);
2404 code = swap_condition (code);
2409 /* Now, look to see if we can get the right constant by
2410 adjusting the conditional. */
2411 if (CONST_INT_P (op_b))
2413 HOST_WIDE_INT desired_val = INTVAL (target);
2414 HOST_WIDE_INT actual_val = INTVAL (op_b);
2416 switch (code)
2418 case LT:
2419 if (desired_val != HOST_WIDE_INT_MAX
2420 && actual_val == desired_val + 1)
2422 code = LE;
2423 op_b = GEN_INT (desired_val);
2425 break;
2426 case LE:
2427 if (desired_val != HOST_WIDE_INT_MIN
2428 && actual_val == desired_val - 1)
2430 code = LT;
2431 op_b = GEN_INT (desired_val);
2433 break;
2434 case GT:
2435 if (desired_val != HOST_WIDE_INT_MIN
2436 && actual_val == desired_val - 1)
2438 code = GE;
2439 op_b = GEN_INT (desired_val);
2441 break;
2442 case GE:
2443 if (desired_val != HOST_WIDE_INT_MAX
2444 && actual_val == desired_val + 1)
2446 code = GT;
2447 op_b = GEN_INT (desired_val);
2449 break;
2450 default:
2451 break;
2455 /* If we made any changes, generate a new conditional that is
2456 equivalent to what we started with, but has the right
2457 constants in it. */
2458 if (code != GET_CODE (if_info->cond)
2459 || op_a != XEXP (if_info->cond, 0)
2460 || op_b != XEXP (if_info->cond, 1))
2462 cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
2463 *earliest = if_info->cond_earliest;
2464 return cond;
2468 cond = canonicalize_condition (if_info->jump, cond, reverse,
2469 earliest, target, have_cbranchcc4, true);
2470 if (! cond || ! reg_mentioned_p (target, cond))
2471 return NULL;
2473 /* We almost certainly searched back to a different place.
2474 Need to re-verify correct lifetimes. */
2476 /* X may not be mentioned in the range (cond_earliest, jump]. */
2477 for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
2478 if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
2479 return NULL;
2481 /* A and B may not be modified in the range [cond_earliest, jump). */
2482 for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
2483 if (INSN_P (insn)
2484 && (modified_in_p (if_info->a, insn)
2485 || modified_in_p (if_info->b, insn)))
2486 return NULL;
2488 return cond;
2491 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
2493 static int
2494 noce_try_minmax (struct noce_if_info *if_info)
2496 rtx cond, target;
2497 rtx_insn *earliest, *seq;
2498 enum rtx_code code, op;
2499 int unsignedp;
2501 if (!noce_simple_bbs (if_info))
2502 return FALSE;
2504 /* ??? Reject modes with NaNs or signed zeros since we don't know how
2505 they will be resolved with an SMIN/SMAX. It wouldn't be too hard
2506 to get the target to tell us... */
2507 if (HONOR_SIGNED_ZEROS (if_info->x)
2508 || HONOR_NANS (if_info->x))
2509 return FALSE;
2511 cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
2512 if (!cond)
2513 return FALSE;
2515 /* Verify the condition is of the form we expect, and canonicalize
2516 the comparison code. */
2517 code = GET_CODE (cond);
2518 if (rtx_equal_p (XEXP (cond, 0), if_info->a))
2520 if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
2521 return FALSE;
2523 else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
2525 if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
2526 return FALSE;
2527 code = swap_condition (code);
2529 else
2530 return FALSE;
2532 /* Determine what sort of operation this is. Note that the code is for
2533 a taken branch, so the code->operation mapping appears backwards. */
2534 switch (code)
2536 case LT:
2537 case LE:
2538 case UNLT:
2539 case UNLE:
2540 op = SMAX;
2541 unsignedp = 0;
2542 break;
2543 case GT:
2544 case GE:
2545 case UNGT:
2546 case UNGE:
2547 op = SMIN;
2548 unsignedp = 0;
2549 break;
2550 case LTU:
2551 case LEU:
2552 op = UMAX;
2553 unsignedp = 1;
2554 break;
2555 case GTU:
2556 case GEU:
2557 op = UMIN;
2558 unsignedp = 1;
2559 break;
2560 default:
2561 return FALSE;
2564 start_sequence ();
2566 target = expand_simple_binop (GET_MODE (if_info->x), op,
2567 if_info->a, if_info->b,
2568 if_info->x, unsignedp, OPTAB_WIDEN);
2569 if (! target)
2571 end_sequence ();
2572 return FALSE;
2574 if (target != if_info->x)
2575 noce_emit_move_insn (if_info->x, target);
2577 seq = end_ifcvt_sequence (if_info);
2578 if (!seq)
2579 return FALSE;
2581 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2582 if_info->cond = cond;
2583 if_info->cond_earliest = earliest;
2584 if_info->transform_name = "noce_try_minmax";
2586 return TRUE;
2589 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
2590 "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
2591 etc. */
2593 static int
2594 noce_try_abs (struct noce_if_info *if_info)
2596 rtx cond, target, a, b, c;
2597 rtx_insn *earliest, *seq;
2598 int negate;
2599 bool one_cmpl = false;
2601 if (!noce_simple_bbs (if_info))
2602 return FALSE;
2604 /* Reject modes with signed zeros. */
2605 if (HONOR_SIGNED_ZEROS (if_info->x))
2606 return FALSE;
2608 /* Recognize A and B as constituting an ABS or NABS. The canonical
2609 form is a branch around the negation, taken when the object is the
2610 first operand of a comparison against 0 that evaluates to true. */
2611 a = if_info->a;
2612 b = if_info->b;
2613 if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
2614 negate = 0;
2615 else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
2617 std::swap (a, b);
2618 negate = 1;
2620 else if (GET_CODE (a) == NOT && rtx_equal_p (XEXP (a, 0), b))
2622 negate = 0;
2623 one_cmpl = true;
2625 else if (GET_CODE (b) == NOT && rtx_equal_p (XEXP (b, 0), a))
2627 std::swap (a, b);
2628 negate = 1;
2629 one_cmpl = true;
2631 else
2632 return FALSE;
2634 cond = noce_get_alt_condition (if_info, b, &earliest);
2635 if (!cond)
2636 return FALSE;
2638 /* Verify the condition is of the form we expect. */
2639 if (rtx_equal_p (XEXP (cond, 0), b))
2640 c = XEXP (cond, 1);
2641 else if (rtx_equal_p (XEXP (cond, 1), b))
2643 c = XEXP (cond, 0);
2644 negate = !negate;
2646 else
2647 return FALSE;
2649 /* Verify that C is zero. Search one step backward for a
2650 REG_EQUAL note or a simple source if necessary. */
2651 if (REG_P (c))
2653 rtx set;
2654 rtx_insn *insn = prev_nonnote_insn (earliest);
2655 if (insn
2656 && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (earliest)
2657 && (set = single_set (insn))
2658 && rtx_equal_p (SET_DEST (set), c))
2660 rtx note = find_reg_equal_equiv_note (insn);
2661 if (note)
2662 c = XEXP (note, 0);
2663 else
2664 c = SET_SRC (set);
2666 else
2667 return FALSE;
2669 if (MEM_P (c)
2670 && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
2671 && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
2672 c = get_pool_constant (XEXP (c, 0));
2674 /* Work around funny ideas get_condition has wrt canonicalization.
2675 Note that these rtx constants are known to be CONST_INT, and
2676 therefore imply integer comparisons.
2677 The one_cmpl case is more complicated, as we want to handle
2678 only x < 0 ? ~x : x or x >= 0 ? x : ~x to one_cmpl_abs (x)
2679 and x < 0 ? x : ~x or x >= 0 ? ~x : x to ~one_cmpl_abs (x),
2680 but not other cases (x > -1 is equivalent of x >= 0). */
2681 if (c == constm1_rtx && GET_CODE (cond) == GT)
2683 else if (c == const1_rtx && GET_CODE (cond) == LT)
2685 if (one_cmpl)
2686 return FALSE;
2688 else if (c == CONST0_RTX (GET_MODE (b)))
2690 if (one_cmpl
2691 && GET_CODE (cond) != GE
2692 && GET_CODE (cond) != LT)
2693 return FALSE;
2695 else
2696 return FALSE;
2698 /* Determine what sort of operation this is. */
2699 switch (GET_CODE (cond))
2701 case LT:
2702 case LE:
2703 case UNLT:
2704 case UNLE:
2705 negate = !negate;
2706 break;
2707 case GT:
2708 case GE:
2709 case UNGT:
2710 case UNGE:
2711 break;
2712 default:
2713 return FALSE;
2716 start_sequence ();
2717 if (one_cmpl)
2718 target = expand_one_cmpl_abs_nojump (GET_MODE (if_info->x), b,
2719 if_info->x);
2720 else
2721 target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
2723 /* ??? It's a quandary whether cmove would be better here, especially
2724 for integers. Perhaps combine will clean things up. */
2725 if (target && negate)
2727 if (one_cmpl)
2728 target = expand_simple_unop (GET_MODE (target), NOT, target,
2729 if_info->x, 0);
2730 else
2731 target = expand_simple_unop (GET_MODE (target), NEG, target,
2732 if_info->x, 0);
2735 if (! target)
2737 end_sequence ();
2738 return FALSE;
2741 if (target != if_info->x)
2742 noce_emit_move_insn (if_info->x, target);
2744 seq = end_ifcvt_sequence (if_info);
2745 if (!seq)
2746 return FALSE;
2748 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2749 if_info->cond = cond;
2750 if_info->cond_earliest = earliest;
2751 if_info->transform_name = "noce_try_abs";
2753 return TRUE;
2756 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
2758 static int
2759 noce_try_sign_mask (struct noce_if_info *if_info)
2761 rtx cond, t, m, c;
2762 rtx_insn *seq;
2763 machine_mode mode;
2764 enum rtx_code code;
2765 bool t_unconditional;
2767 if (!noce_simple_bbs (if_info))
2768 return FALSE;
2770 cond = if_info->cond;
2771 code = GET_CODE (cond);
2772 m = XEXP (cond, 0);
2773 c = XEXP (cond, 1);
2775 t = NULL_RTX;
2776 if (if_info->a == const0_rtx)
2778 if ((code == LT && c == const0_rtx)
2779 || (code == LE && c == constm1_rtx))
2780 t = if_info->b;
2782 else if (if_info->b == const0_rtx)
2784 if ((code == GE && c == const0_rtx)
2785 || (code == GT && c == constm1_rtx))
2786 t = if_info->a;
2789 if (! t || side_effects_p (t))
2790 return FALSE;
2792 /* We currently don't handle different modes. */
2793 mode = GET_MODE (t);
2794 if (GET_MODE (m) != mode)
2795 return FALSE;
2797 /* This is only profitable if T is unconditionally executed/evaluated in the
2798 original insn sequence or T is cheap. The former happens if B is the
2799 non-zero (T) value and if INSN_B was taken from TEST_BB, or there was no
2800 INSN_B which can happen for e.g. conditional stores to memory. For the
2801 cost computation use the block TEST_BB where the evaluation will end up
2802 after the transformation. */
2803 t_unconditional =
2804 (t == if_info->b
2805 && (if_info->insn_b == NULL_RTX
2806 || BLOCK_FOR_INSN (if_info->insn_b) == if_info->test_bb));
2807 if (!(t_unconditional
2808 || (set_src_cost (t, mode, optimize_bb_for_speed_p (if_info->test_bb))
2809 < COSTS_N_INSNS (2))))
2810 return FALSE;
2812 start_sequence ();
2813 /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
2814 "(signed) m >> 31" directly. This benefits targets with specialized
2815 insns to obtain the signmask, but still uses ashr_optab otherwise. */
2816 m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
2817 t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
2818 : NULL_RTX;
2820 if (!t)
2822 end_sequence ();
2823 return FALSE;
2826 noce_emit_move_insn (if_info->x, t);
2828 seq = end_ifcvt_sequence (if_info);
2829 if (!seq)
2830 return FALSE;
2832 emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2833 if_info->transform_name = "noce_try_sign_mask";
2835 return TRUE;
2839 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
2840 transformations. */
2842 static int
2843 noce_try_bitop (struct noce_if_info *if_info)
2845 rtx cond, x, a, result;
2846 rtx_insn *seq;
2847 machine_mode mode;
2848 enum rtx_code code;
2849 int bitnum;
2851 x = if_info->x;
2852 cond = if_info->cond;
2853 code = GET_CODE (cond);
2855 if (!noce_simple_bbs (if_info))
2856 return FALSE;
2858 /* Check for no else condition. */
2859 if (! rtx_equal_p (x, if_info->b))
2860 return FALSE;
2862 /* Check for a suitable condition. */
2863 if (code != NE && code != EQ)
2864 return FALSE;
2865 if (XEXP (cond, 1) != const0_rtx)
2866 return FALSE;
2867 cond = XEXP (cond, 0);
2869 /* ??? We could also handle AND here. */
2870 if (GET_CODE (cond) == ZERO_EXTRACT)
2872 if (XEXP (cond, 1) != const1_rtx
2873 || !CONST_INT_P (XEXP (cond, 2))
2874 || ! rtx_equal_p (x, XEXP (cond, 0)))
2875 return FALSE;
2876 bitnum = INTVAL (XEXP (cond, 2));
2877 mode = GET_MODE (x);
2878 if (BITS_BIG_ENDIAN)
2879 bitnum = GET_MODE_BITSIZE (mode) - 1 - bitnum;
2880 if (bitnum < 0 || bitnum >= HOST_BITS_PER_WIDE_INT)
2881 return FALSE;
2883 else
2884 return FALSE;
2886 a = if_info->a;
2887 if (GET_CODE (a) == IOR || GET_CODE (a) == XOR)
2889 /* Check for "if (X & C) x = x op C". */
2890 if (! rtx_equal_p (x, XEXP (a, 0))
2891 || !CONST_INT_P (XEXP (a, 1))
2892 || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
2893 != (unsigned HOST_WIDE_INT) 1 << bitnum)
2894 return FALSE;
2896 /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
2897 /* if ((x & C) != 0) x |= C; is transformed to nothing. */
2898 if (GET_CODE (a) == IOR)
2899 result = (code == NE) ? a : NULL_RTX;
2900 else if (code == NE)
2902 /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
2903 result = gen_int_mode ((HOST_WIDE_INT) 1 << bitnum, mode);
2904 result = simplify_gen_binary (IOR, mode, x, result);
2906 else
2908 /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
2909 result = gen_int_mode (~((HOST_WIDE_INT) 1 << bitnum), mode);
2910 result = simplify_gen_binary (AND, mode, x, result);
2913 else if (GET_CODE (a) == AND)
2915 /* Check for "if (X & C) x &= ~C". */
2916 if (! rtx_equal_p (x, XEXP (a, 0))
2917 || !CONST_INT_P (XEXP (a, 1))
2918 || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
2919 != (~((HOST_WIDE_INT) 1 << bitnum) & GET_MODE_MASK (mode)))
2920 return FALSE;
2922 /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
2923 /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
2924 result = (code == EQ) ? a : NULL_RTX;
2926 else
2927 return FALSE;
2929 if (result)
2931 start_sequence ();
2932 noce_emit_move_insn (x, result);
2933 seq = end_ifcvt_sequence (if_info);
2934 if (!seq)
2935 return FALSE;
2937 emit_insn_before_setloc (seq, if_info->jump,
2938 INSN_LOCATION (if_info->insn_a));
2940 if_info->transform_name = "noce_try_bitop";
2941 return TRUE;
2945 /* Similar to get_condition, only the resulting condition must be
2946 valid at JUMP, instead of at EARLIEST.
2948 If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2949 THEN block of the caller, and we have to reverse the condition. */
2951 static rtx
2952 noce_get_condition (rtx_insn *jump, rtx_insn **earliest, bool then_else_reversed)
2954 rtx cond, set, tmp;
2955 bool reverse;
2957 if (! any_condjump_p (jump))
2958 return NULL_RTX;
2960 set = pc_set (jump);
2962 /* If this branches to JUMP_LABEL when the condition is false,
2963 reverse the condition. */
2964 reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
2965 && LABEL_REF_LABEL (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (jump));
2967 /* We may have to reverse because the caller's if block is not canonical,
2968 i.e. the THEN block isn't the fallthrough block for the TEST block
2969 (see find_if_header). */
2970 if (then_else_reversed)
2971 reverse = !reverse;
2973 /* If the condition variable is a register and is MODE_INT, accept it. */
2975 cond = XEXP (SET_SRC (set), 0);
2976 tmp = XEXP (cond, 0);
2977 if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT
2978 && (GET_MODE (tmp) != BImode
2979 || !targetm.small_register_classes_for_mode_p (BImode)))
2981 *earliest = jump;
2983 if (reverse)
2984 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
2985 GET_MODE (cond), tmp, XEXP (cond, 1));
2986 return cond;
2989 /* Otherwise, fall back on canonicalize_condition to do the dirty
2990 work of manipulating MODE_CC values and COMPARE rtx codes. */
2991 tmp = canonicalize_condition (jump, cond, reverse, earliest,
2992 NULL_RTX, have_cbranchcc4, true);
2994 /* We don't handle side-effects in the condition, like handling
2995 REG_INC notes and making sure no duplicate conditions are emitted. */
2996 if (tmp != NULL_RTX && side_effects_p (tmp))
2997 return NULL_RTX;
2999 return tmp;
3002 /* Return true if OP is ok for if-then-else processing. */
3004 static int
3005 noce_operand_ok (const_rtx op)
3007 if (side_effects_p (op))
3008 return FALSE;
3010 /* We special-case memories, so handle any of them with
3011 no address side effects. */
3012 if (MEM_P (op))
3013 return ! side_effects_p (XEXP (op, 0));
3015 return ! may_trap_p (op);
3018 /* Return true if X contains a MEM subrtx. */
3020 static bool
3021 contains_mem_rtx_p (rtx x)
3023 subrtx_iterator::array_type array;
3024 FOR_EACH_SUBRTX (iter, array, x, ALL)
3025 if (MEM_P (*iter))
3026 return true;
3028 return false;
3031 /* Return true iff basic block TEST_BB is valid for noce if-conversion.
3032 The condition used in this if-conversion is in COND.
3033 In practice, check that TEST_BB ends with a single set
3034 x := a and all previous computations
3035 in TEST_BB don't produce any values that are live after TEST_BB.
3036 In other words, all the insns in TEST_BB are there only
3037 to compute a value for x. Put the rtx cost of the insns
3038 in TEST_BB into COST. Record whether TEST_BB is a single simple
3039 set instruction in SIMPLE_P. */
3041 static bool
3042 bb_valid_for_noce_process_p (basic_block test_bb, rtx cond,
3043 unsigned int *cost, bool *simple_p)
3045 if (!test_bb)
3046 return false;
3048 rtx_insn *last_insn = last_active_insn (test_bb, FALSE);
3049 rtx last_set = NULL_RTX;
3051 rtx cc = cc_in_cond (cond);
3053 if (!insn_valid_noce_process_p (last_insn, cc))
3054 return false;
3055 last_set = single_set (last_insn);
3057 rtx x = SET_DEST (last_set);
3058 rtx_insn *first_insn = first_active_insn (test_bb);
3059 rtx first_set = single_set (first_insn);
3061 if (!first_set)
3062 return false;
3064 /* We have a single simple set, that's okay. */
3065 bool speed_p = optimize_bb_for_speed_p (test_bb);
3067 if (first_insn == last_insn)
3069 *simple_p = noce_operand_ok (SET_DEST (first_set));
3070 *cost = insn_rtx_cost (first_set, speed_p);
3071 return *simple_p;
3074 rtx_insn *prev_last_insn = PREV_INSN (last_insn);
3075 gcc_assert (prev_last_insn);
3077 /* For now, disallow setting x multiple times in test_bb. */
3078 if (REG_P (x) && reg_set_between_p (x, first_insn, prev_last_insn))
3079 return false;
3081 bitmap test_bb_temps = BITMAP_ALLOC (&reg_obstack);
3083 /* The regs that are live out of test_bb. */
3084 bitmap test_bb_live_out = df_get_live_out (test_bb);
3086 int potential_cost = insn_rtx_cost (last_set, speed_p);
3087 rtx_insn *insn;
3088 FOR_BB_INSNS (test_bb, insn)
3090 if (insn != last_insn)
3092 if (!active_insn_p (insn))
3093 continue;
3095 if (!insn_valid_noce_process_p (insn, cc))
3096 goto free_bitmap_and_fail;
3098 rtx sset = single_set (insn);
3099 gcc_assert (sset);
3101 if (contains_mem_rtx_p (SET_SRC (sset))
3102 || !REG_P (SET_DEST (sset))
3103 || reg_overlap_mentioned_p (SET_DEST (sset), cond))
3104 goto free_bitmap_and_fail;
3106 potential_cost += insn_rtx_cost (sset, speed_p);
3107 bitmap_set_bit (test_bb_temps, REGNO (SET_DEST (sset)));
3111 /* If any of the intermediate results in test_bb are live after test_bb
3112 then fail. */
3113 if (bitmap_intersect_p (test_bb_live_out, test_bb_temps))
3114 goto free_bitmap_and_fail;
3116 BITMAP_FREE (test_bb_temps);
3117 *cost = potential_cost;
3118 *simple_p = false;
3119 return true;
3121 free_bitmap_and_fail:
3122 BITMAP_FREE (test_bb_temps);
3123 return false;
3126 /* We have something like:
3128 if (x > y)
3129 { i = a; j = b; k = c; }
3131 Make it:
3133 tmp_i = (x > y) ? a : i;
3134 tmp_j = (x > y) ? b : j;
3135 tmp_k = (x > y) ? c : k;
3136 i = tmp_i;
3137 j = tmp_j;
3138 k = tmp_k;
3140 Subsequent passes are expected to clean up the extra moves.
3142 Look for special cases such as writes to one register which are
3143 read back in another SET, as might occur in a swap idiom or
3144 similar.
3146 These look like:
3148 if (x > y)
3149 i = a;
3150 j = i;
3152 Which we want to rewrite to:
3154 tmp_i = (x > y) ? a : i;
3155 tmp_j = (x > y) ? tmp_i : j;
3156 i = tmp_i;
3157 j = tmp_j;
3159 We can catch these when looking at (SET x y) by keeping a list of the
3160 registers we would have targeted before if-conversion and looking back
3161 through it for an overlap with Y. If we find one, we rewire the
3162 conditional set to use the temporary we introduced earlier.
3164 IF_INFO contains the useful information about the block structure and
3165 jump instructions. */
3167 static int
3168 noce_convert_multiple_sets (struct noce_if_info *if_info)
3170 basic_block test_bb = if_info->test_bb;
3171 basic_block then_bb = if_info->then_bb;
3172 basic_block join_bb = if_info->join_bb;
3173 rtx_insn *jump = if_info->jump;
3174 rtx_insn *cond_earliest;
3175 rtx_insn *insn;
3177 start_sequence ();
3179 /* Decompose the condition attached to the jump. */
3180 rtx cond = noce_get_condition (jump, &cond_earliest, false);
3181 rtx x = XEXP (cond, 0);
3182 rtx y = XEXP (cond, 1);
3183 rtx_code cond_code = GET_CODE (cond);
3185 /* The true targets for a conditional move. */
3186 auto_vec<rtx> targets;
3187 /* The temporaries introduced to allow us to not consider register
3188 overlap. */
3189 auto_vec<rtx> temporaries;
3190 /* The insns we've emitted. */
3191 auto_vec<rtx_insn *> unmodified_insns;
3192 int count = 0;
3194 FOR_BB_INSNS (then_bb, insn)
3196 /* Skip over non-insns. */
3197 if (!active_insn_p (insn))
3198 continue;
3200 rtx set = single_set (insn);
3201 gcc_checking_assert (set);
3203 rtx target = SET_DEST (set);
3204 rtx temp = gen_reg_rtx (GET_MODE (target));
3205 rtx new_val = SET_SRC (set);
3206 rtx old_val = target;
3208 /* If we were supposed to read from an earlier write in this block,
3209 we've changed the register allocation. Rewire the read. While
3210 we are looking, also try to catch a swap idiom. */
3211 for (int i = count - 1; i >= 0; --i)
3212 if (reg_overlap_mentioned_p (new_val, targets[i]))
3214 /* Catch a "swap" style idiom. */
3215 if (find_reg_note (insn, REG_DEAD, new_val) != NULL_RTX)
3216 /* The write to targets[i] is only live until the read
3217 here. As the condition codes match, we can propagate
3218 the set to here. */
3219 new_val = SET_SRC (single_set (unmodified_insns[i]));
3220 else
3221 new_val = temporaries[i];
3222 break;
3225 /* If we had a non-canonical conditional jump (i.e. one where
3226 the fallthrough is to the "else" case) we need to reverse
3227 the conditional select. */
3228 if (if_info->then_else_reversed)
3229 std::swap (old_val, new_val);
3231 /* Actually emit the conditional move. */
3232 rtx temp_dest = noce_emit_cmove (if_info, temp, cond_code,
3233 x, y, new_val, old_val);
3235 /* If we failed to expand the conditional move, drop out and don't
3236 try to continue. */
3237 if (temp_dest == NULL_RTX)
3239 end_sequence ();
3240 return FALSE;
3243 /* Bookkeeping. */
3244 count++;
3245 targets.safe_push (target);
3246 temporaries.safe_push (temp_dest);
3247 unmodified_insns.safe_push (insn);
3250 /* We must have seen some sort of insn to insert, otherwise we were
3251 given an empty BB to convert, and we can't handle that. */
3252 gcc_assert (!unmodified_insns.is_empty ());
3254 /* Now fixup the assignments. */
3255 for (int i = 0; i < count; i++)
3256 noce_emit_move_insn (targets[i], temporaries[i]);
3258 /* Actually emit the sequence. */
3259 rtx_insn *seq = get_insns ();
3261 for (insn = seq; insn; insn = NEXT_INSN (insn))
3262 set_used_flags (insn);
3264 /* Mark all our temporaries and targets as used. */
3265 for (int i = 0; i < count; i++)
3267 set_used_flags (temporaries[i]);
3268 set_used_flags (targets[i]);
3271 set_used_flags (cond);
3272 set_used_flags (x);
3273 set_used_flags (y);
3275 unshare_all_rtl_in_chain (seq);
3276 end_sequence ();
3278 if (!seq)
3279 return FALSE;
3281 for (insn = seq; insn; insn = NEXT_INSN (insn))
3282 if (JUMP_P (insn)
3283 || recog_memoized (insn) == -1)
3284 return FALSE;
3286 emit_insn_before_setloc (seq, if_info->jump,
3287 INSN_LOCATION (unmodified_insns.last ()));
3289 /* Clean up THEN_BB and the edges in and out of it. */
3290 remove_edge (find_edge (test_bb, join_bb));
3291 remove_edge (find_edge (then_bb, join_bb));
3292 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3293 delete_basic_block (then_bb);
3294 num_true_changes++;
3296 /* Maybe merge blocks now the jump is simple enough. */
3297 if (can_merge_blocks_p (test_bb, join_bb))
3299 merge_blocks (test_bb, join_bb);
3300 num_true_changes++;
3303 num_updated_if_blocks++;
3304 if_info->transform_name = "noce_convert_multiple_sets";
3305 return TRUE;
3308 /* Return true iff basic block TEST_BB is comprised of only
3309 (SET (REG) (REG)) insns suitable for conversion to a series
3310 of conditional moves. FORNOW: Use II to find the expected cost of
3311 the branch into/over TEST_BB.
3313 TODO: This creates an implicit "magic number" for branch_cost.
3314 II->branch_cost now guides the maximum number of set instructions in
3315 a basic block which is considered profitable to completely
3316 if-convert. */
3318 static bool
3319 bb_ok_for_noce_convert_multiple_sets (basic_block test_bb,
3320 struct noce_if_info *ii)
3322 rtx_insn *insn;
3323 unsigned count = 0;
3324 unsigned param = PARAM_VALUE (PARAM_MAX_RTL_IF_CONVERSION_INSNS);
3325 unsigned limit = MIN (ii->branch_cost, param);
3327 FOR_BB_INSNS (test_bb, insn)
3329 /* Skip over notes etc. */
3330 if (!active_insn_p (insn))
3331 continue;
3333 /* We only handle SET insns. */
3334 rtx set = single_set (insn);
3335 if (set == NULL_RTX)
3336 return false;
3338 rtx dest = SET_DEST (set);
3339 rtx src = SET_SRC (set);
3341 /* We can possibly relax this, but for now only handle REG to REG
3342 moves. This avoids any issues that might come from introducing
3343 loads/stores that might violate data-race-freedom guarantees. */
3344 if (!(REG_P (src) && REG_P (dest)))
3345 return false;
3347 /* Destination must be appropriate for a conditional write. */
3348 if (!noce_operand_ok (dest))
3349 return false;
3351 /* We must be able to conditionally move in this mode. */
3352 if (!can_conditionally_move_p (GET_MODE (dest)))
3353 return false;
3355 /* FORNOW: Our cost model is a count of the number of instructions we
3356 would if-convert. This is suboptimal, and should be improved as part
3357 of a wider rework of branch_cost. */
3358 if (++count > limit)
3359 return false;
3362 return count > 1;
3365 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
3366 it without using conditional execution. Return TRUE if we were successful
3367 at converting the block. */
3369 static int
3370 noce_process_if_block (struct noce_if_info *if_info)
3372 basic_block test_bb = if_info->test_bb; /* test block */
3373 basic_block then_bb = if_info->then_bb; /* THEN */
3374 basic_block else_bb = if_info->else_bb; /* ELSE or NULL */
3375 basic_block join_bb = if_info->join_bb; /* JOIN */
3376 rtx_insn *jump = if_info->jump;
3377 rtx cond = if_info->cond;
3378 rtx_insn *insn_a, *insn_b;
3379 rtx set_a, set_b;
3380 rtx orig_x, x, a, b;
3382 /* We're looking for patterns of the form
3384 (1) if (...) x = a; else x = b;
3385 (2) x = b; if (...) x = a;
3386 (3) if (...) x = a; // as if with an initial x = x.
3387 (4) if (...) { x = a; y = b; z = c; } // Like 3, for multiple SETS.
3388 The later patterns require jumps to be more expensive.
3389 For the if (...) x = a; else x = b; case we allow multiple insns
3390 inside the then and else blocks as long as their only effect is
3391 to calculate a value for x.
3392 ??? For future expansion, further expand the "multiple X" rules. */
3394 /* First look for multiple SETS. */
3395 if (!else_bb
3396 && HAVE_conditional_move
3397 && !HAVE_cc0
3398 && bb_ok_for_noce_convert_multiple_sets (then_bb, if_info))
3400 if (noce_convert_multiple_sets (if_info))
3402 if (dump_file && if_info->transform_name)
3403 fprintf (dump_file, "if-conversion succeeded through %s\n",
3404 if_info->transform_name);
3405 return TRUE;
3409 if (! bb_valid_for_noce_process_p (then_bb, cond, &if_info->then_cost,
3410 &if_info->then_simple))
3411 return false;
3413 if (else_bb
3414 && ! bb_valid_for_noce_process_p (else_bb, cond, &if_info->else_cost,
3415 &if_info->else_simple))
3416 return false;
3418 insn_a = last_active_insn (then_bb, FALSE);
3419 set_a = single_set (insn_a);
3420 gcc_assert (set_a);
3422 x = SET_DEST (set_a);
3423 a = SET_SRC (set_a);
3425 /* Look for the other potential set. Make sure we've got equivalent
3426 destinations. */
3427 /* ??? This is overconservative. Storing to two different mems is
3428 as easy as conditionally computing the address. Storing to a
3429 single mem merely requires a scratch memory to use as one of the
3430 destination addresses; often the memory immediately below the
3431 stack pointer is available for this. */
3432 set_b = NULL_RTX;
3433 if (else_bb)
3435 insn_b = last_active_insn (else_bb, FALSE);
3436 set_b = single_set (insn_b);
3437 gcc_assert (set_b);
3439 if (!rtx_interchangeable_p (x, SET_DEST (set_b)))
3440 return FALSE;
3442 else
3444 insn_b = prev_nonnote_nondebug_insn (if_info->cond_earliest);
3445 /* We're going to be moving the evaluation of B down from above
3446 COND_EARLIEST to JUMP. Make sure the relevant data is still
3447 intact. */
3448 if (! insn_b
3449 || BLOCK_FOR_INSN (insn_b) != BLOCK_FOR_INSN (if_info->cond_earliest)
3450 || !NONJUMP_INSN_P (insn_b)
3451 || (set_b = single_set (insn_b)) == NULL_RTX
3452 || ! rtx_interchangeable_p (x, SET_DEST (set_b))
3453 || ! noce_operand_ok (SET_SRC (set_b))
3454 || reg_overlap_mentioned_p (x, SET_SRC (set_b))
3455 || modified_between_p (SET_SRC (set_b), insn_b, jump)
3456 /* Avoid extending the lifetime of hard registers on small
3457 register class machines. */
3458 || (REG_P (SET_SRC (set_b))
3459 && HARD_REGISTER_P (SET_SRC (set_b))
3460 && targetm.small_register_classes_for_mode_p
3461 (GET_MODE (SET_SRC (set_b))))
3462 /* Likewise with X. In particular this can happen when
3463 noce_get_condition looks farther back in the instruction
3464 stream than one might expect. */
3465 || reg_overlap_mentioned_p (x, cond)
3466 || reg_overlap_mentioned_p (x, a)
3467 || modified_between_p (x, insn_b, jump))
3469 insn_b = NULL;
3470 set_b = NULL_RTX;
3474 /* If x has side effects then only the if-then-else form is safe to
3475 convert. But even in that case we would need to restore any notes
3476 (such as REG_INC) at then end. That can be tricky if
3477 noce_emit_move_insn expands to more than one insn, so disable the
3478 optimization entirely for now if there are side effects. */
3479 if (side_effects_p (x))
3480 return FALSE;
3482 b = (set_b ? SET_SRC (set_b) : x);
3484 /* Only operate on register destinations, and even then avoid extending
3485 the lifetime of hard registers on small register class machines. */
3486 orig_x = x;
3487 if_info->orig_x = orig_x;
3488 if (!REG_P (x)
3489 || (HARD_REGISTER_P (x)
3490 && targetm.small_register_classes_for_mode_p (GET_MODE (x))))
3492 if (GET_MODE (x) == BLKmode)
3493 return FALSE;
3495 if (GET_CODE (x) == ZERO_EXTRACT
3496 && (!CONST_INT_P (XEXP (x, 1))
3497 || !CONST_INT_P (XEXP (x, 2))))
3498 return FALSE;
3500 x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
3501 ? XEXP (x, 0) : x));
3504 /* Don't operate on sources that may trap or are volatile. */
3505 if (! noce_operand_ok (a) || ! noce_operand_ok (b))
3506 return FALSE;
3508 retry:
3509 /* Set up the info block for our subroutines. */
3510 if_info->insn_a = insn_a;
3511 if_info->insn_b = insn_b;
3512 if_info->x = x;
3513 if_info->a = a;
3514 if_info->b = b;
3516 /* Try optimizations in some approximation of a useful order. */
3517 /* ??? Should first look to see if X is live incoming at all. If it
3518 isn't, we don't need anything but an unconditional set. */
3520 /* Look and see if A and B are really the same. Avoid creating silly
3521 cmove constructs that no one will fix up later. */
3522 if (noce_simple_bbs (if_info)
3523 && rtx_interchangeable_p (a, b))
3525 /* If we have an INSN_B, we don't have to create any new rtl. Just
3526 move the instruction that we already have. If we don't have an
3527 INSN_B, that means that A == X, and we've got a noop move. In
3528 that case don't do anything and let the code below delete INSN_A. */
3529 if (insn_b && else_bb)
3531 rtx note;
3533 if (else_bb && insn_b == BB_END (else_bb))
3534 BB_END (else_bb) = PREV_INSN (insn_b);
3535 reorder_insns (insn_b, insn_b, PREV_INSN (jump));
3537 /* If there was a REG_EQUAL note, delete it since it may have been
3538 true due to this insn being after a jump. */
3539 if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
3540 remove_note (insn_b, note);
3542 insn_b = NULL;
3544 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
3545 x must be executed twice. */
3546 else if (insn_b && side_effects_p (orig_x))
3547 return FALSE;
3549 x = orig_x;
3550 goto success;
3553 if (!set_b && MEM_P (orig_x))
3554 /* We want to avoid store speculation to avoid cases like
3555 if (pthread_mutex_trylock(mutex))
3556 ++global_variable;
3557 Rather than go to much effort here, we rely on the SSA optimizers,
3558 which do a good enough job these days. */
3559 return FALSE;
3561 if (noce_try_move (if_info))
3562 goto success;
3563 if (noce_try_ifelse_collapse (if_info))
3564 goto success;
3565 if (noce_try_store_flag (if_info))
3566 goto success;
3567 if (noce_try_bitop (if_info))
3568 goto success;
3569 if (noce_try_minmax (if_info))
3570 goto success;
3571 if (noce_try_abs (if_info))
3572 goto success;
3573 if (noce_try_inverse_constants (if_info))
3574 goto success;
3575 if (!targetm.have_conditional_execution ()
3576 && noce_try_store_flag_constants (if_info))
3577 goto success;
3578 if (HAVE_conditional_move
3579 && noce_try_cmove (if_info))
3580 goto success;
3581 if (! targetm.have_conditional_execution ())
3583 if (noce_try_addcc (if_info))
3584 goto success;
3585 if (noce_try_store_flag_mask (if_info))
3586 goto success;
3587 if (HAVE_conditional_move
3588 && noce_try_cmove_arith (if_info))
3589 goto success;
3590 if (noce_try_sign_mask (if_info))
3591 goto success;
3594 if (!else_bb && set_b)
3596 insn_b = NULL;
3597 set_b = NULL_RTX;
3598 b = orig_x;
3599 goto retry;
3602 return FALSE;
3604 success:
3605 if (dump_file && if_info->transform_name)
3606 fprintf (dump_file, "if-conversion succeeded through %s\n",
3607 if_info->transform_name);
3609 /* If we used a temporary, fix it up now. */
3610 if (orig_x != x)
3612 rtx_insn *seq;
3614 start_sequence ();
3615 noce_emit_move_insn (orig_x, x);
3616 seq = get_insns ();
3617 set_used_flags (orig_x);
3618 unshare_all_rtl_in_chain (seq);
3619 end_sequence ();
3621 emit_insn_before_setloc (seq, BB_END (test_bb), INSN_LOCATION (insn_a));
3624 /* The original THEN and ELSE blocks may now be removed. The test block
3625 must now jump to the join block. If the test block and the join block
3626 can be merged, do so. */
3627 if (else_bb)
3629 delete_basic_block (else_bb);
3630 num_true_changes++;
3632 else
3633 remove_edge (find_edge (test_bb, join_bb));
3635 remove_edge (find_edge (then_bb, join_bb));
3636 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3637 delete_basic_block (then_bb);
3638 num_true_changes++;
3640 if (can_merge_blocks_p (test_bb, join_bb))
3642 merge_blocks (test_bb, join_bb);
3643 num_true_changes++;
3646 num_updated_if_blocks++;
3647 return TRUE;
3650 /* Check whether a block is suitable for conditional move conversion.
3651 Every insn must be a simple set of a register to a constant or a
3652 register. For each assignment, store the value in the pointer map
3653 VALS, keyed indexed by register pointer, then store the register
3654 pointer in REGS. COND is the condition we will test. */
3656 static int
3657 check_cond_move_block (basic_block bb,
3658 hash_map<rtx, rtx> *vals,
3659 vec<rtx> *regs,
3660 rtx cond)
3662 rtx_insn *insn;
3663 rtx cc = cc_in_cond (cond);
3665 /* We can only handle simple jumps at the end of the basic block.
3666 It is almost impossible to update the CFG otherwise. */
3667 insn = BB_END (bb);
3668 if (JUMP_P (insn) && !onlyjump_p (insn))
3669 return FALSE;
3671 FOR_BB_INSNS (bb, insn)
3673 rtx set, dest, src;
3675 if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
3676 continue;
3677 set = single_set (insn);
3678 if (!set)
3679 return FALSE;
3681 dest = SET_DEST (set);
3682 src = SET_SRC (set);
3683 if (!REG_P (dest)
3684 || (HARD_REGISTER_P (dest)
3685 && targetm.small_register_classes_for_mode_p (GET_MODE (dest))))
3686 return FALSE;
3688 if (!CONSTANT_P (src) && !register_operand (src, VOIDmode))
3689 return FALSE;
3691 if (side_effects_p (src) || side_effects_p (dest))
3692 return FALSE;
3694 if (may_trap_p (src) || may_trap_p (dest))
3695 return FALSE;
3697 /* Don't try to handle this if the source register was
3698 modified earlier in the block. */
3699 if ((REG_P (src)
3700 && vals->get (src))
3701 || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
3702 && vals->get (SUBREG_REG (src))))
3703 return FALSE;
3705 /* Don't try to handle this if the destination register was
3706 modified earlier in the block. */
3707 if (vals->get (dest))
3708 return FALSE;
3710 /* Don't try to handle this if the condition uses the
3711 destination register. */
3712 if (reg_overlap_mentioned_p (dest, cond))
3713 return FALSE;
3715 /* Don't try to handle this if the source register is modified
3716 later in the block. */
3717 if (!CONSTANT_P (src)
3718 && modified_between_p (src, insn, NEXT_INSN (BB_END (bb))))
3719 return FALSE;
3721 /* Skip it if the instruction to be moved might clobber CC. */
3722 if (cc && set_of (cc, insn))
3723 return FALSE;
3725 vals->put (dest, src);
3727 regs->safe_push (dest);
3730 return TRUE;
3733 /* Given a basic block BB suitable for conditional move conversion,
3734 a condition COND, and pointer maps THEN_VALS and ELSE_VALS containing
3735 the register values depending on COND, emit the insns in the block as
3736 conditional moves. If ELSE_BLOCK is true, THEN_BB was already
3737 processed. The caller has started a sequence for the conversion.
3738 Return true if successful, false if something goes wrong. */
3740 static bool
3741 cond_move_convert_if_block (struct noce_if_info *if_infop,
3742 basic_block bb, rtx cond,
3743 hash_map<rtx, rtx> *then_vals,
3744 hash_map<rtx, rtx> *else_vals,
3745 bool else_block_p)
3747 enum rtx_code code;
3748 rtx_insn *insn;
3749 rtx cond_arg0, cond_arg1;
3751 code = GET_CODE (cond);
3752 cond_arg0 = XEXP (cond, 0);
3753 cond_arg1 = XEXP (cond, 1);
3755 FOR_BB_INSNS (bb, insn)
3757 rtx set, target, dest, t, e;
3759 /* ??? Maybe emit conditional debug insn? */
3760 if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
3761 continue;
3762 set = single_set (insn);
3763 gcc_assert (set && REG_P (SET_DEST (set)));
3765 dest = SET_DEST (set);
3767 rtx *then_slot = then_vals->get (dest);
3768 rtx *else_slot = else_vals->get (dest);
3769 t = then_slot ? *then_slot : NULL_RTX;
3770 e = else_slot ? *else_slot : NULL_RTX;
3772 if (else_block_p)
3774 /* If this register was set in the then block, we already
3775 handled this case there. */
3776 if (t)
3777 continue;
3778 t = dest;
3779 gcc_assert (e);
3781 else
3783 gcc_assert (t);
3784 if (!e)
3785 e = dest;
3788 target = noce_emit_cmove (if_infop, dest, code, cond_arg0, cond_arg1,
3789 t, e);
3790 if (!target)
3791 return false;
3793 if (target != dest)
3794 noce_emit_move_insn (dest, target);
3797 return true;
3800 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
3801 it using only conditional moves. Return TRUE if we were successful at
3802 converting the block. */
3804 static int
3805 cond_move_process_if_block (struct noce_if_info *if_info)
3807 basic_block test_bb = if_info->test_bb;
3808 basic_block then_bb = if_info->then_bb;
3809 basic_block else_bb = if_info->else_bb;
3810 basic_block join_bb = if_info->join_bb;
3811 rtx_insn *jump = if_info->jump;
3812 rtx cond = if_info->cond;
3813 rtx_insn *seq, *loc_insn;
3814 rtx reg;
3815 int c;
3816 vec<rtx> then_regs = vNULL;
3817 vec<rtx> else_regs = vNULL;
3818 unsigned int i;
3819 int success_p = FALSE;
3820 int limit = PARAM_VALUE (PARAM_MAX_RTL_IF_CONVERSION_INSNS);
3822 /* Build a mapping for each block to the value used for each
3823 register. */
3824 hash_map<rtx, rtx> then_vals;
3825 hash_map<rtx, rtx> else_vals;
3827 /* Make sure the blocks are suitable. */
3828 if (!check_cond_move_block (then_bb, &then_vals, &then_regs, cond)
3829 || (else_bb
3830 && !check_cond_move_block (else_bb, &else_vals, &else_regs, cond)))
3831 goto done;
3833 /* Make sure the blocks can be used together. If the same register
3834 is set in both blocks, and is not set to a constant in both
3835 cases, then both blocks must set it to the same register. We
3836 have already verified that if it is set to a register, that the
3837 source register does not change after the assignment. Also count
3838 the number of registers set in only one of the blocks. */
3839 c = 0;
3840 FOR_EACH_VEC_ELT (then_regs, i, reg)
3842 rtx *then_slot = then_vals.get (reg);
3843 rtx *else_slot = else_vals.get (reg);
3845 gcc_checking_assert (then_slot);
3846 if (!else_slot)
3847 ++c;
3848 else
3850 rtx then_val = *then_slot;
3851 rtx else_val = *else_slot;
3852 if (!CONSTANT_P (then_val) && !CONSTANT_P (else_val)
3853 && !rtx_equal_p (then_val, else_val))
3854 goto done;
3858 /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
3859 FOR_EACH_VEC_ELT (else_regs, i, reg)
3861 gcc_checking_assert (else_vals.get (reg));
3862 if (!then_vals.get (reg))
3863 ++c;
3866 /* Make sure it is reasonable to convert this block. What matters
3867 is the number of assignments currently made in only one of the
3868 branches, since if we convert we are going to always execute
3869 them. */
3870 if (c > MAX_CONDITIONAL_EXECUTE
3871 || c > limit)
3872 goto done;
3874 /* Try to emit the conditional moves. First do the then block,
3875 then do anything left in the else blocks. */
3876 start_sequence ();
3877 if (!cond_move_convert_if_block (if_info, then_bb, cond,
3878 &then_vals, &else_vals, false)
3879 || (else_bb
3880 && !cond_move_convert_if_block (if_info, else_bb, cond,
3881 &then_vals, &else_vals, true)))
3883 end_sequence ();
3884 goto done;
3886 seq = end_ifcvt_sequence (if_info);
3887 if (!seq)
3888 goto done;
3890 loc_insn = first_active_insn (then_bb);
3891 if (!loc_insn)
3893 loc_insn = first_active_insn (else_bb);
3894 gcc_assert (loc_insn);
3896 emit_insn_before_setloc (seq, jump, INSN_LOCATION (loc_insn));
3898 if (else_bb)
3900 delete_basic_block (else_bb);
3901 num_true_changes++;
3903 else
3904 remove_edge (find_edge (test_bb, join_bb));
3906 remove_edge (find_edge (then_bb, join_bb));
3907 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3908 delete_basic_block (then_bb);
3909 num_true_changes++;
3911 if (can_merge_blocks_p (test_bb, join_bb))
3913 merge_blocks (test_bb, join_bb);
3914 num_true_changes++;
3917 num_updated_if_blocks++;
3918 success_p = TRUE;
3920 done:
3921 then_regs.release ();
3922 else_regs.release ();
3923 return success_p;
3927 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
3928 IF-THEN-ELSE-JOIN block.
3930 If so, we'll try to convert the insns to not require the branch,
3931 using only transformations that do not require conditional execution.
3933 Return TRUE if we were successful at converting the block. */
3935 static int
3936 noce_find_if_block (basic_block test_bb, edge then_edge, edge else_edge,
3937 int pass)
3939 basic_block then_bb, else_bb, join_bb;
3940 bool then_else_reversed = false;
3941 rtx_insn *jump;
3942 rtx cond;
3943 rtx_insn *cond_earliest;
3944 struct noce_if_info if_info;
3946 /* We only ever should get here before reload. */
3947 gcc_assert (!reload_completed);
3949 /* Recognize an IF-THEN-ELSE-JOIN block. */
3950 if (single_pred_p (then_edge->dest)
3951 && single_succ_p (then_edge->dest)
3952 && single_pred_p (else_edge->dest)
3953 && single_succ_p (else_edge->dest)
3954 && single_succ (then_edge->dest) == single_succ (else_edge->dest))
3956 then_bb = then_edge->dest;
3957 else_bb = else_edge->dest;
3958 join_bb = single_succ (then_bb);
3960 /* Recognize an IF-THEN-JOIN block. */
3961 else if (single_pred_p (then_edge->dest)
3962 && single_succ_p (then_edge->dest)
3963 && single_succ (then_edge->dest) == else_edge->dest)
3965 then_bb = then_edge->dest;
3966 else_bb = NULL_BLOCK;
3967 join_bb = else_edge->dest;
3969 /* Recognize an IF-ELSE-JOIN block. We can have those because the order
3970 of basic blocks in cfglayout mode does not matter, so the fallthrough
3971 edge can go to any basic block (and not just to bb->next_bb, like in
3972 cfgrtl mode). */
3973 else if (single_pred_p (else_edge->dest)
3974 && single_succ_p (else_edge->dest)
3975 && single_succ (else_edge->dest) == then_edge->dest)
3977 /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
3978 To make this work, we have to invert the THEN and ELSE blocks
3979 and reverse the jump condition. */
3980 then_bb = else_edge->dest;
3981 else_bb = NULL_BLOCK;
3982 join_bb = single_succ (then_bb);
3983 then_else_reversed = true;
3985 else
3986 /* Not a form we can handle. */
3987 return FALSE;
3989 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
3990 if (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
3991 return FALSE;
3992 if (else_bb
3993 && single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
3994 return FALSE;
3996 num_possible_if_blocks++;
3998 if (dump_file)
4000 fprintf (dump_file,
4001 "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
4002 (else_bb) ? "-ELSE" : "",
4003 pass, test_bb->index, then_bb->index);
4005 if (else_bb)
4006 fprintf (dump_file, ", else %d", else_bb->index);
4008 fprintf (dump_file, ", join %d\n", join_bb->index);
4011 /* If the conditional jump is more than just a conditional
4012 jump, then we can not do if-conversion on this block. */
4013 jump = BB_END (test_bb);
4014 if (! onlyjump_p (jump))
4015 return FALSE;
4017 /* If this is not a standard conditional jump, we can't parse it. */
4018 cond = noce_get_condition (jump, &cond_earliest, then_else_reversed);
4019 if (!cond)
4020 return FALSE;
4022 /* We must be comparing objects whose modes imply the size. */
4023 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
4024 return FALSE;
4026 /* Initialize an IF_INFO struct to pass around. */
4027 memset (&if_info, 0, sizeof if_info);
4028 if_info.test_bb = test_bb;
4029 if_info.then_bb = then_bb;
4030 if_info.else_bb = else_bb;
4031 if_info.join_bb = join_bb;
4032 if_info.cond = cond;
4033 if_info.cond_earliest = cond_earliest;
4034 if_info.jump = jump;
4035 if_info.then_else_reversed = then_else_reversed;
4036 if_info.branch_cost = BRANCH_COST (optimize_bb_for_speed_p (test_bb),
4037 predictable_edge_p (then_edge));
4039 /* Do the real work. */
4041 if (noce_process_if_block (&if_info))
4042 return TRUE;
4044 if (HAVE_conditional_move
4045 && cond_move_process_if_block (&if_info))
4046 return TRUE;
4048 return FALSE;
4052 /* Merge the blocks and mark for local life update. */
4054 static void
4055 merge_if_block (struct ce_if_block * ce_info)
4057 basic_block test_bb = ce_info->test_bb; /* last test block */
4058 basic_block then_bb = ce_info->then_bb; /* THEN */
4059 basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
4060 basic_block join_bb = ce_info->join_bb; /* join block */
4061 basic_block combo_bb;
4063 /* All block merging is done into the lower block numbers. */
4065 combo_bb = test_bb;
4066 df_set_bb_dirty (test_bb);
4068 /* Merge any basic blocks to handle && and || subtests. Each of
4069 the blocks are on the fallthru path from the predecessor block. */
4070 if (ce_info->num_multiple_test_blocks > 0)
4072 basic_block bb = test_bb;
4073 basic_block last_test_bb = ce_info->last_test_bb;
4074 basic_block fallthru = block_fallthru (bb);
4078 bb = fallthru;
4079 fallthru = block_fallthru (bb);
4080 merge_blocks (combo_bb, bb);
4081 num_true_changes++;
4083 while (bb != last_test_bb);
4086 /* Merge TEST block into THEN block. Normally the THEN block won't have a
4087 label, but it might if there were || tests. That label's count should be
4088 zero, and it normally should be removed. */
4090 if (then_bb)
4092 /* If THEN_BB has no successors, then there's a BARRIER after it.
4093 If COMBO_BB has more than one successor (THEN_BB), then that BARRIER
4094 is no longer needed, and in fact it is incorrect to leave it in
4095 the insn stream. */
4096 if (EDGE_COUNT (then_bb->succs) == 0
4097 && EDGE_COUNT (combo_bb->succs) > 1)
4099 rtx_insn *end = NEXT_INSN (BB_END (then_bb));
4100 while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
4101 end = NEXT_INSN (end);
4103 if (end && BARRIER_P (end))
4104 delete_insn (end);
4106 merge_blocks (combo_bb, then_bb);
4107 num_true_changes++;
4110 /* The ELSE block, if it existed, had a label. That label count
4111 will almost always be zero, but odd things can happen when labels
4112 get their addresses taken. */
4113 if (else_bb)
4115 /* If ELSE_BB has no successors, then there's a BARRIER after it.
4116 If COMBO_BB has more than one successor (ELSE_BB), then that BARRIER
4117 is no longer needed, and in fact it is incorrect to leave it in
4118 the insn stream. */
4119 if (EDGE_COUNT (else_bb->succs) == 0
4120 && EDGE_COUNT (combo_bb->succs) > 1)
4122 rtx_insn *end = NEXT_INSN (BB_END (else_bb));
4123 while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
4124 end = NEXT_INSN (end);
4126 if (end && BARRIER_P (end))
4127 delete_insn (end);
4129 merge_blocks (combo_bb, else_bb);
4130 num_true_changes++;
4133 /* If there was no join block reported, that means it was not adjacent
4134 to the others, and so we cannot merge them. */
4136 if (! join_bb)
4138 rtx_insn *last = BB_END (combo_bb);
4140 /* The outgoing edge for the current COMBO block should already
4141 be correct. Verify this. */
4142 if (EDGE_COUNT (combo_bb->succs) == 0)
4143 gcc_assert (find_reg_note (last, REG_NORETURN, NULL)
4144 || (NONJUMP_INSN_P (last)
4145 && GET_CODE (PATTERN (last)) == TRAP_IF
4146 && (TRAP_CONDITION (PATTERN (last))
4147 == const_true_rtx)));
4149 else
4150 /* There should still be something at the end of the THEN or ELSE
4151 blocks taking us to our final destination. */
4152 gcc_assert (JUMP_P (last)
4153 || (EDGE_SUCC (combo_bb, 0)->dest
4154 == EXIT_BLOCK_PTR_FOR_FN (cfun)
4155 && CALL_P (last)
4156 && SIBLING_CALL_P (last))
4157 || ((EDGE_SUCC (combo_bb, 0)->flags & EDGE_EH)
4158 && can_throw_internal (last)));
4161 /* The JOIN block may have had quite a number of other predecessors too.
4162 Since we've already merged the TEST, THEN and ELSE blocks, we should
4163 have only one remaining edge from our if-then-else diamond. If there
4164 is more than one remaining edge, it must come from elsewhere. There
4165 may be zero incoming edges if the THEN block didn't actually join
4166 back up (as with a call to a non-return function). */
4167 else if (EDGE_COUNT (join_bb->preds) < 2
4168 && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4170 /* We can merge the JOIN cleanly and update the dataflow try
4171 again on this pass.*/
4172 merge_blocks (combo_bb, join_bb);
4173 num_true_changes++;
4175 else
4177 /* We cannot merge the JOIN. */
4179 /* The outgoing edge for the current COMBO block should already
4180 be correct. Verify this. */
4181 gcc_assert (single_succ_p (combo_bb)
4182 && single_succ (combo_bb) == join_bb);
4184 /* Remove the jump and cruft from the end of the COMBO block. */
4185 if (join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4186 tidy_fallthru_edge (single_succ_edge (combo_bb));
4189 num_updated_if_blocks++;
4192 /* Find a block ending in a simple IF condition and try to transform it
4193 in some way. When converting a multi-block condition, put the new code
4194 in the first such block and delete the rest. Return a pointer to this
4195 first block if some transformation was done. Return NULL otherwise. */
4197 static basic_block
4198 find_if_header (basic_block test_bb, int pass)
4200 ce_if_block ce_info;
4201 edge then_edge;
4202 edge else_edge;
4204 /* The kind of block we're looking for has exactly two successors. */
4205 if (EDGE_COUNT (test_bb->succs) != 2)
4206 return NULL;
4208 then_edge = EDGE_SUCC (test_bb, 0);
4209 else_edge = EDGE_SUCC (test_bb, 1);
4211 if (df_get_bb_dirty (then_edge->dest))
4212 return NULL;
4213 if (df_get_bb_dirty (else_edge->dest))
4214 return NULL;
4216 /* Neither edge should be abnormal. */
4217 if ((then_edge->flags & EDGE_COMPLEX)
4218 || (else_edge->flags & EDGE_COMPLEX))
4219 return NULL;
4221 /* Nor exit the loop. */
4222 if ((then_edge->flags & EDGE_LOOP_EXIT)
4223 || (else_edge->flags & EDGE_LOOP_EXIT))
4224 return NULL;
4226 /* The THEN edge is canonically the one that falls through. */
4227 if (then_edge->flags & EDGE_FALLTHRU)
4229 else if (else_edge->flags & EDGE_FALLTHRU)
4230 std::swap (then_edge, else_edge);
4231 else
4232 /* Otherwise this must be a multiway branch of some sort. */
4233 return NULL;
4235 memset (&ce_info, 0, sizeof (ce_info));
4236 ce_info.test_bb = test_bb;
4237 ce_info.then_bb = then_edge->dest;
4238 ce_info.else_bb = else_edge->dest;
4239 ce_info.pass = pass;
4241 #ifdef IFCVT_MACHDEP_INIT
4242 IFCVT_MACHDEP_INIT (&ce_info);
4243 #endif
4245 if (!reload_completed
4246 && noce_find_if_block (test_bb, then_edge, else_edge, pass))
4247 goto success;
4249 if (reload_completed
4250 && targetm.have_conditional_execution ()
4251 && cond_exec_find_if_block (&ce_info))
4252 goto success;
4254 if (targetm.have_trap ()
4255 && optab_handler (ctrap_optab, word_mode) != CODE_FOR_nothing
4256 && find_cond_trap (test_bb, then_edge, else_edge))
4257 goto success;
4259 if (dom_info_state (CDI_POST_DOMINATORS) >= DOM_NO_FAST_QUERY
4260 && (reload_completed || !targetm.have_conditional_execution ()))
4262 if (find_if_case_1 (test_bb, then_edge, else_edge))
4263 goto success;
4264 if (find_if_case_2 (test_bb, then_edge, else_edge))
4265 goto success;
4268 return NULL;
4270 success:
4271 if (dump_file)
4272 fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
4273 /* Set this so we continue looking. */
4274 cond_exec_changed_p = TRUE;
4275 return ce_info.test_bb;
4278 /* Return true if a block has two edges, one of which falls through to the next
4279 block, and the other jumps to a specific block, so that we can tell if the
4280 block is part of an && test or an || test. Returns either -1 or the number
4281 of non-note, non-jump, non-USE/CLOBBER insns in the block. */
4283 static int
4284 block_jumps_and_fallthru_p (basic_block cur_bb, basic_block target_bb)
4286 edge cur_edge;
4287 int fallthru_p = FALSE;
4288 int jump_p = FALSE;
4289 rtx_insn *insn;
4290 rtx_insn *end;
4291 int n_insns = 0;
4292 edge_iterator ei;
4294 if (!cur_bb || !target_bb)
4295 return -1;
4297 /* If no edges, obviously it doesn't jump or fallthru. */
4298 if (EDGE_COUNT (cur_bb->succs) == 0)
4299 return FALSE;
4301 FOR_EACH_EDGE (cur_edge, ei, cur_bb->succs)
4303 if (cur_edge->flags & EDGE_COMPLEX)
4304 /* Anything complex isn't what we want. */
4305 return -1;
4307 else if (cur_edge->flags & EDGE_FALLTHRU)
4308 fallthru_p = TRUE;
4310 else if (cur_edge->dest == target_bb)
4311 jump_p = TRUE;
4313 else
4314 return -1;
4317 if ((jump_p & fallthru_p) == 0)
4318 return -1;
4320 /* Don't allow calls in the block, since this is used to group && and ||
4321 together for conditional execution support. ??? we should support
4322 conditional execution support across calls for IA-64 some day, but
4323 for now it makes the code simpler. */
4324 end = BB_END (cur_bb);
4325 insn = BB_HEAD (cur_bb);
4327 while (insn != NULL_RTX)
4329 if (CALL_P (insn))
4330 return -1;
4332 if (INSN_P (insn)
4333 && !JUMP_P (insn)
4334 && !DEBUG_INSN_P (insn)
4335 && GET_CODE (PATTERN (insn)) != USE
4336 && GET_CODE (PATTERN (insn)) != CLOBBER)
4337 n_insns++;
4339 if (insn == end)
4340 break;
4342 insn = NEXT_INSN (insn);
4345 return n_insns;
4348 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
4349 block. If so, we'll try to convert the insns to not require the branch.
4350 Return TRUE if we were successful at converting the block. */
4352 static int
4353 cond_exec_find_if_block (struct ce_if_block * ce_info)
4355 basic_block test_bb = ce_info->test_bb;
4356 basic_block then_bb = ce_info->then_bb;
4357 basic_block else_bb = ce_info->else_bb;
4358 basic_block join_bb = NULL_BLOCK;
4359 edge cur_edge;
4360 basic_block next;
4361 edge_iterator ei;
4363 ce_info->last_test_bb = test_bb;
4365 /* We only ever should get here after reload,
4366 and if we have conditional execution. */
4367 gcc_assert (reload_completed && targetm.have_conditional_execution ());
4369 /* Discover if any fall through predecessors of the current test basic block
4370 were && tests (which jump to the else block) or || tests (which jump to
4371 the then block). */
4372 if (single_pred_p (test_bb)
4373 && single_pred_edge (test_bb)->flags == EDGE_FALLTHRU)
4375 basic_block bb = single_pred (test_bb);
4376 basic_block target_bb;
4377 int max_insns = MAX_CONDITIONAL_EXECUTE;
4378 int n_insns;
4380 /* Determine if the preceding block is an && or || block. */
4381 if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0)
4383 ce_info->and_and_p = TRUE;
4384 target_bb = else_bb;
4386 else if ((n_insns = block_jumps_and_fallthru_p (bb, then_bb)) >= 0)
4388 ce_info->and_and_p = FALSE;
4389 target_bb = then_bb;
4391 else
4392 target_bb = NULL_BLOCK;
4394 if (target_bb && n_insns <= max_insns)
4396 int total_insns = 0;
4397 int blocks = 0;
4399 ce_info->last_test_bb = test_bb;
4401 /* Found at least one && or || block, look for more. */
4404 ce_info->test_bb = test_bb = bb;
4405 total_insns += n_insns;
4406 blocks++;
4408 if (!single_pred_p (bb))
4409 break;
4411 bb = single_pred (bb);
4412 n_insns = block_jumps_and_fallthru_p (bb, target_bb);
4414 while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
4416 ce_info->num_multiple_test_blocks = blocks;
4417 ce_info->num_multiple_test_insns = total_insns;
4419 if (ce_info->and_and_p)
4420 ce_info->num_and_and_blocks = blocks;
4421 else
4422 ce_info->num_or_or_blocks = blocks;
4426 /* The THEN block of an IF-THEN combo must have exactly one predecessor,
4427 other than any || blocks which jump to the THEN block. */
4428 if ((EDGE_COUNT (then_bb->preds) - ce_info->num_or_or_blocks) != 1)
4429 return FALSE;
4431 /* The edges of the THEN and ELSE blocks cannot have complex edges. */
4432 FOR_EACH_EDGE (cur_edge, ei, then_bb->preds)
4434 if (cur_edge->flags & EDGE_COMPLEX)
4435 return FALSE;
4438 FOR_EACH_EDGE (cur_edge, ei, else_bb->preds)
4440 if (cur_edge->flags & EDGE_COMPLEX)
4441 return FALSE;
4444 /* The THEN block of an IF-THEN combo must have zero or one successors. */
4445 if (EDGE_COUNT (then_bb->succs) > 0
4446 && (!single_succ_p (then_bb)
4447 || (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
4448 || (epilogue_completed
4449 && tablejump_p (BB_END (then_bb), NULL, NULL))))
4450 return FALSE;
4452 /* If the THEN block has no successors, conditional execution can still
4453 make a conditional call. Don't do this unless the ELSE block has
4454 only one incoming edge -- the CFG manipulation is too ugly otherwise.
4455 Check for the last insn of the THEN block being an indirect jump, which
4456 is listed as not having any successors, but confuses the rest of the CE
4457 code processing. ??? we should fix this in the future. */
4458 if (EDGE_COUNT (then_bb->succs) == 0)
4460 if (single_pred_p (else_bb) && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4462 rtx_insn *last_insn = BB_END (then_bb);
4464 while (last_insn
4465 && NOTE_P (last_insn)
4466 && last_insn != BB_HEAD (then_bb))
4467 last_insn = PREV_INSN (last_insn);
4469 if (last_insn
4470 && JUMP_P (last_insn)
4471 && ! simplejump_p (last_insn))
4472 return FALSE;
4474 join_bb = else_bb;
4475 else_bb = NULL_BLOCK;
4477 else
4478 return FALSE;
4481 /* If the THEN block's successor is the other edge out of the TEST block,
4482 then we have an IF-THEN combo without an ELSE. */
4483 else if (single_succ (then_bb) == else_bb)
4485 join_bb = else_bb;
4486 else_bb = NULL_BLOCK;
4489 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
4490 has exactly one predecessor and one successor, and the outgoing edge
4491 is not complex, then we have an IF-THEN-ELSE combo. */
4492 else if (single_succ_p (else_bb)
4493 && single_succ (then_bb) == single_succ (else_bb)
4494 && single_pred_p (else_bb)
4495 && !(single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
4496 && !(epilogue_completed
4497 && tablejump_p (BB_END (else_bb), NULL, NULL)))
4498 join_bb = single_succ (else_bb);
4500 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
4501 else
4502 return FALSE;
4504 num_possible_if_blocks++;
4506 if (dump_file)
4508 fprintf (dump_file,
4509 "\nIF-THEN%s block found, pass %d, start block %d "
4510 "[insn %d], then %d [%d]",
4511 (else_bb) ? "-ELSE" : "",
4512 ce_info->pass,
4513 test_bb->index,
4514 BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
4515 then_bb->index,
4516 BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
4518 if (else_bb)
4519 fprintf (dump_file, ", else %d [%d]",
4520 else_bb->index,
4521 BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
4523 fprintf (dump_file, ", join %d [%d]",
4524 join_bb->index,
4525 BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
4527 if (ce_info->num_multiple_test_blocks > 0)
4528 fprintf (dump_file, ", %d %s block%s last test %d [%d]",
4529 ce_info->num_multiple_test_blocks,
4530 (ce_info->and_and_p) ? "&&" : "||",
4531 (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
4532 ce_info->last_test_bb->index,
4533 ((BB_HEAD (ce_info->last_test_bb))
4534 ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
4535 : -1));
4537 fputc ('\n', dump_file);
4540 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
4541 first condition for free, since we've already asserted that there's a
4542 fallthru edge from IF to THEN. Likewise for the && and || blocks, since
4543 we checked the FALLTHRU flag, those are already adjacent to the last IF
4544 block. */
4545 /* ??? As an enhancement, move the ELSE block. Have to deal with
4546 BLOCK notes, if by no other means than backing out the merge if they
4547 exist. Sticky enough I don't want to think about it now. */
4548 next = then_bb;
4549 if (else_bb && (next = next->next_bb) != else_bb)
4550 return FALSE;
4551 if ((next = next->next_bb) != join_bb
4552 && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4554 if (else_bb)
4555 join_bb = NULL;
4556 else
4557 return FALSE;
4560 /* Do the real work. */
4562 ce_info->else_bb = else_bb;
4563 ce_info->join_bb = join_bb;
4565 /* If we have && and || tests, try to first handle combining the && and ||
4566 tests into the conditional code, and if that fails, go back and handle
4567 it without the && and ||, which at present handles the && case if there
4568 was no ELSE block. */
4569 if (cond_exec_process_if_block (ce_info, TRUE))
4570 return TRUE;
4572 if (ce_info->num_multiple_test_blocks)
4574 cancel_changes (0);
4576 if (cond_exec_process_if_block (ce_info, FALSE))
4577 return TRUE;
4580 return FALSE;
4583 /* Convert a branch over a trap, or a branch
4584 to a trap, into a conditional trap. */
4586 static int
4587 find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
4589 basic_block then_bb = then_edge->dest;
4590 basic_block else_bb = else_edge->dest;
4591 basic_block other_bb, trap_bb;
4592 rtx_insn *trap, *jump;
4593 rtx cond;
4594 rtx_insn *cond_earliest;
4595 enum rtx_code code;
4597 /* Locate the block with the trap instruction. */
4598 /* ??? While we look for no successors, we really ought to allow
4599 EH successors. Need to fix merge_if_block for that to work. */
4600 if ((trap = block_has_only_trap (then_bb)) != NULL)
4601 trap_bb = then_bb, other_bb = else_bb;
4602 else if ((trap = block_has_only_trap (else_bb)) != NULL)
4603 trap_bb = else_bb, other_bb = then_bb;
4604 else
4605 return FALSE;
4607 if (dump_file)
4609 fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
4610 test_bb->index, trap_bb->index);
4613 /* If this is not a standard conditional jump, we can't parse it. */
4614 jump = BB_END (test_bb);
4615 cond = noce_get_condition (jump, &cond_earliest, false);
4616 if (! cond)
4617 return FALSE;
4619 /* If the conditional jump is more than just a conditional jump, then
4620 we can not do if-conversion on this block. Give up for returnjump_p,
4621 changing a conditional return followed by unconditional trap for
4622 conditional trap followed by unconditional return is likely not
4623 beneficial and harder to handle. */
4624 if (! onlyjump_p (jump) || returnjump_p (jump))
4625 return FALSE;
4627 /* We must be comparing objects whose modes imply the size. */
4628 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
4629 return FALSE;
4631 /* Reverse the comparison code, if necessary. */
4632 code = GET_CODE (cond);
4633 if (then_bb == trap_bb)
4635 code = reversed_comparison_code (cond, jump);
4636 if (code == UNKNOWN)
4637 return FALSE;
4640 /* Attempt to generate the conditional trap. */
4641 rtx_insn *seq = gen_cond_trap (code, copy_rtx (XEXP (cond, 0)),
4642 copy_rtx (XEXP (cond, 1)),
4643 TRAP_CODE (PATTERN (trap)));
4644 if (seq == NULL)
4645 return FALSE;
4647 /* Emit the new insns before cond_earliest. */
4648 emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATION (trap));
4650 /* Delete the trap block if possible. */
4651 remove_edge (trap_bb == then_bb ? then_edge : else_edge);
4652 df_set_bb_dirty (test_bb);
4653 df_set_bb_dirty (then_bb);
4654 df_set_bb_dirty (else_bb);
4656 if (EDGE_COUNT (trap_bb->preds) == 0)
4658 delete_basic_block (trap_bb);
4659 num_true_changes++;
4662 /* Wire together the blocks again. */
4663 if (current_ir_type () == IR_RTL_CFGLAYOUT)
4664 single_succ_edge (test_bb)->flags |= EDGE_FALLTHRU;
4665 else if (trap_bb == then_bb)
4667 rtx lab = JUMP_LABEL (jump);
4668 rtx_insn *seq = targetm.gen_jump (lab);
4669 rtx_jump_insn *newjump = emit_jump_insn_after (seq, jump);
4670 LABEL_NUSES (lab) += 1;
4671 JUMP_LABEL (newjump) = lab;
4672 emit_barrier_after (newjump);
4674 delete_insn (jump);
4676 if (can_merge_blocks_p (test_bb, other_bb))
4678 merge_blocks (test_bb, other_bb);
4679 num_true_changes++;
4682 num_updated_if_blocks++;
4683 return TRUE;
4686 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
4687 return it. */
4689 static rtx_insn *
4690 block_has_only_trap (basic_block bb)
4692 rtx_insn *trap;
4694 /* We're not the exit block. */
4695 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
4696 return NULL;
4698 /* The block must have no successors. */
4699 if (EDGE_COUNT (bb->succs) > 0)
4700 return NULL;
4702 /* The only instruction in the THEN block must be the trap. */
4703 trap = first_active_insn (bb);
4704 if (! (trap == BB_END (bb)
4705 && GET_CODE (PATTERN (trap)) == TRAP_IF
4706 && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
4707 return NULL;
4709 return trap;
4712 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
4713 transformable, but not necessarily the other. There need be no
4714 JOIN block.
4716 Return TRUE if we were successful at converting the block.
4718 Cases we'd like to look at:
4721 if (test) goto over; // x not live
4722 x = a;
4723 goto label;
4724 over:
4726 becomes
4728 x = a;
4729 if (! test) goto label;
4732 if (test) goto E; // x not live
4733 x = big();
4734 goto L;
4736 x = b;
4737 goto M;
4739 becomes
4741 x = b;
4742 if (test) goto M;
4743 x = big();
4744 goto L;
4746 (3) // This one's really only interesting for targets that can do
4747 // multiway branching, e.g. IA-64 BBB bundles. For other targets
4748 // it results in multiple branches on a cache line, which often
4749 // does not sit well with predictors.
4751 if (test1) goto E; // predicted not taken
4752 x = a;
4753 if (test2) goto F;
4756 x = b;
4759 becomes
4761 x = a;
4762 if (test1) goto E;
4763 if (test2) goto F;
4765 Notes:
4767 (A) Don't do (2) if the branch is predicted against the block we're
4768 eliminating. Do it anyway if we can eliminate a branch; this requires
4769 that the sole successor of the eliminated block postdominate the other
4770 side of the if.
4772 (B) With CE, on (3) we can steal from both sides of the if, creating
4774 if (test1) x = a;
4775 if (!test1) x = b;
4776 if (test1) goto J;
4777 if (test2) goto F;
4781 Again, this is most useful if J postdominates.
4783 (C) CE substitutes for helpful life information.
4785 (D) These heuristics need a lot of work. */
4787 /* Tests for case 1 above. */
4789 static int
4790 find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
4792 basic_block then_bb = then_edge->dest;
4793 basic_block else_bb = else_edge->dest;
4794 basic_block new_bb;
4795 int then_bb_index, then_prob;
4796 rtx else_target = NULL_RTX;
4798 /* If we are partitioning hot/cold basic blocks, we don't want to
4799 mess up unconditional or indirect jumps that cross between hot
4800 and cold sections.
4802 Basic block partitioning may result in some jumps that appear to
4803 be optimizable (or blocks that appear to be mergeable), but which really
4804 must be left untouched (they are required to make it safely across
4805 partition boundaries). See the comments at the top of
4806 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4808 if ((BB_END (then_bb)
4809 && JUMP_P (BB_END (then_bb))
4810 && CROSSING_JUMP_P (BB_END (then_bb)))
4811 || (BB_END (test_bb)
4812 && JUMP_P (BB_END (test_bb))
4813 && CROSSING_JUMP_P (BB_END (test_bb)))
4814 || (BB_END (else_bb)
4815 && JUMP_P (BB_END (else_bb))
4816 && CROSSING_JUMP_P (BB_END (else_bb))))
4817 return FALSE;
4819 /* THEN has one successor. */
4820 if (!single_succ_p (then_bb))
4821 return FALSE;
4823 /* THEN does not fall through, but is not strange either. */
4824 if (single_succ_edge (then_bb)->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
4825 return FALSE;
4827 /* THEN has one predecessor. */
4828 if (!single_pred_p (then_bb))
4829 return FALSE;
4831 /* THEN must do something. */
4832 if (forwarder_block_p (then_bb))
4833 return FALSE;
4835 num_possible_if_blocks++;
4836 if (dump_file)
4837 fprintf (dump_file,
4838 "\nIF-CASE-1 found, start %d, then %d\n",
4839 test_bb->index, then_bb->index);
4841 if (then_edge->probability)
4842 then_prob = REG_BR_PROB_BASE - then_edge->probability;
4843 else
4844 then_prob = REG_BR_PROB_BASE / 2;
4846 /* We're speculating from the THEN path, we want to make sure the cost
4847 of speculation is within reason. */
4848 if (! cheap_bb_rtx_cost_p (then_bb, then_prob,
4849 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge->src),
4850 predictable_edge_p (then_edge)))))
4851 return FALSE;
4853 if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
4855 rtx_insn *jump = BB_END (else_edge->src);
4856 gcc_assert (JUMP_P (jump));
4857 else_target = JUMP_LABEL (jump);
4860 /* Registers set are dead, or are predicable. */
4861 if (! dead_or_predicable (test_bb, then_bb, else_bb,
4862 single_succ_edge (then_bb), 1))
4863 return FALSE;
4865 /* Conversion went ok, including moving the insns and fixing up the
4866 jump. Adjust the CFG to match. */
4868 /* We can avoid creating a new basic block if then_bb is immediately
4869 followed by else_bb, i.e. deleting then_bb allows test_bb to fall
4870 through to else_bb. */
4872 if (then_bb->next_bb == else_bb
4873 && then_bb->prev_bb == test_bb
4874 && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4876 redirect_edge_succ (FALLTHRU_EDGE (test_bb), else_bb);
4877 new_bb = 0;
4879 else if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
4880 new_bb = force_nonfallthru_and_redirect (FALLTHRU_EDGE (test_bb),
4881 else_bb, else_target);
4882 else
4883 new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb),
4884 else_bb);
4886 df_set_bb_dirty (test_bb);
4887 df_set_bb_dirty (else_bb);
4889 then_bb_index = then_bb->index;
4890 delete_basic_block (then_bb);
4892 /* Make rest of code believe that the newly created block is the THEN_BB
4893 block we removed. */
4894 if (new_bb)
4896 df_bb_replace (then_bb_index, new_bb);
4897 /* This should have been done above via force_nonfallthru_and_redirect
4898 (possibly called from redirect_edge_and_branch_force). */
4899 gcc_checking_assert (BB_PARTITION (new_bb) == BB_PARTITION (test_bb));
4902 num_true_changes++;
4903 num_updated_if_blocks++;
4904 return TRUE;
4907 /* Test for case 2 above. */
4909 static int
4910 find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
4912 basic_block then_bb = then_edge->dest;
4913 basic_block else_bb = else_edge->dest;
4914 edge else_succ;
4915 int then_prob, else_prob;
4917 /* We do not want to speculate (empty) loop latches. */
4918 if (current_loops
4919 && else_bb->loop_father->latch == else_bb)
4920 return FALSE;
4922 /* If we are partitioning hot/cold basic blocks, we don't want to
4923 mess up unconditional or indirect jumps that cross between hot
4924 and cold sections.
4926 Basic block partitioning may result in some jumps that appear to
4927 be optimizable (or blocks that appear to be mergeable), but which really
4928 must be left untouched (they are required to make it safely across
4929 partition boundaries). See the comments at the top of
4930 bb-reorder.c:partition_hot_cold_basic_blocks for complete details. */
4932 if ((BB_END (then_bb)
4933 && JUMP_P (BB_END (then_bb))
4934 && CROSSING_JUMP_P (BB_END (then_bb)))
4935 || (BB_END (test_bb)
4936 && JUMP_P (BB_END (test_bb))
4937 && CROSSING_JUMP_P (BB_END (test_bb)))
4938 || (BB_END (else_bb)
4939 && JUMP_P (BB_END (else_bb))
4940 && CROSSING_JUMP_P (BB_END (else_bb))))
4941 return FALSE;
4943 /* ELSE has one successor. */
4944 if (!single_succ_p (else_bb))
4945 return FALSE;
4946 else
4947 else_succ = single_succ_edge (else_bb);
4949 /* ELSE outgoing edge is not complex. */
4950 if (else_succ->flags & EDGE_COMPLEX)
4951 return FALSE;
4953 /* ELSE has one predecessor. */
4954 if (!single_pred_p (else_bb))
4955 return FALSE;
4957 /* THEN is not EXIT. */
4958 if (then_bb->index < NUM_FIXED_BLOCKS)
4959 return FALSE;
4961 if (else_edge->probability)
4963 else_prob = else_edge->probability;
4964 then_prob = REG_BR_PROB_BASE - else_prob;
4966 else
4968 else_prob = REG_BR_PROB_BASE / 2;
4969 then_prob = REG_BR_PROB_BASE / 2;
4972 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
4973 if (else_prob > then_prob)
4975 else if (else_succ->dest->index < NUM_FIXED_BLOCKS
4976 || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
4977 else_succ->dest))
4979 else
4980 return FALSE;
4982 num_possible_if_blocks++;
4983 if (dump_file)
4984 fprintf (dump_file,
4985 "\nIF-CASE-2 found, start %d, else %d\n",
4986 test_bb->index, else_bb->index);
4988 /* We're speculating from the ELSE path, we want to make sure the cost
4989 of speculation is within reason. */
4990 if (! cheap_bb_rtx_cost_p (else_bb, else_prob,
4991 COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge->src),
4992 predictable_edge_p (else_edge)))))
4993 return FALSE;
4995 /* Registers set are dead, or are predicable. */
4996 if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ, 0))
4997 return FALSE;
4999 /* Conversion went ok, including moving the insns and fixing up the
5000 jump. Adjust the CFG to match. */
5002 df_set_bb_dirty (test_bb);
5003 df_set_bb_dirty (then_bb);
5004 delete_basic_block (else_bb);
5006 num_true_changes++;
5007 num_updated_if_blocks++;
5009 /* ??? We may now fallthru from one of THEN's successors into a join
5010 block. Rerun cleanup_cfg? Examine things manually? Wait? */
5012 return TRUE;
5015 /* Used by the code above to perform the actual rtl transformations.
5016 Return TRUE if successful.
5018 TEST_BB is the block containing the conditional branch. MERGE_BB
5019 is the block containing the code to manipulate. DEST_EDGE is an
5020 edge representing a jump to the join block; after the conversion,
5021 TEST_BB should be branching to its destination.
5022 REVERSEP is true if the sense of the branch should be reversed. */
5024 static int
5025 dead_or_predicable (basic_block test_bb, basic_block merge_bb,
5026 basic_block other_bb, edge dest_edge, int reversep)
5028 basic_block new_dest = dest_edge->dest;
5029 rtx_insn *head, *end, *jump;
5030 rtx_insn *earliest = NULL;
5031 rtx old_dest;
5032 bitmap merge_set = NULL;
5033 /* Number of pending changes. */
5034 int n_validated_changes = 0;
5035 rtx new_dest_label = NULL_RTX;
5037 jump = BB_END (test_bb);
5039 /* Find the extent of the real code in the merge block. */
5040 head = BB_HEAD (merge_bb);
5041 end = BB_END (merge_bb);
5043 while (DEBUG_INSN_P (end) && end != head)
5044 end = PREV_INSN (end);
5046 /* If merge_bb ends with a tablejump, predicating/moving insn's
5047 into test_bb and then deleting merge_bb will result in the jumptable
5048 that follows merge_bb being removed along with merge_bb and then we
5049 get an unresolved reference to the jumptable. */
5050 if (tablejump_p (end, NULL, NULL))
5051 return FALSE;
5053 if (LABEL_P (head))
5054 head = NEXT_INSN (head);
5055 while (DEBUG_INSN_P (head) && head != end)
5056 head = NEXT_INSN (head);
5057 if (NOTE_P (head))
5059 if (head == end)
5061 head = end = NULL;
5062 goto no_body;
5064 head = NEXT_INSN (head);
5065 while (DEBUG_INSN_P (head) && head != end)
5066 head = NEXT_INSN (head);
5069 if (JUMP_P (end))
5071 if (!onlyjump_p (end))
5072 return FALSE;
5073 if (head == end)
5075 head = end = NULL;
5076 goto no_body;
5078 end = PREV_INSN (end);
5079 while (DEBUG_INSN_P (end) && end != head)
5080 end = PREV_INSN (end);
5083 /* Don't move frame-related insn across the conditional branch. This
5084 can lead to one of the paths of the branch having wrong unwind info. */
5085 if (epilogue_completed)
5087 rtx_insn *insn = head;
5088 while (1)
5090 if (INSN_P (insn) && RTX_FRAME_RELATED_P (insn))
5091 return FALSE;
5092 if (insn == end)
5093 break;
5094 insn = NEXT_INSN (insn);
5098 /* Disable handling dead code by conditional execution if the machine needs
5099 to do anything funny with the tests, etc. */
5100 #ifndef IFCVT_MODIFY_TESTS
5101 if (targetm.have_conditional_execution ())
5103 /* In the conditional execution case, we have things easy. We know
5104 the condition is reversible. We don't have to check life info
5105 because we're going to conditionally execute the code anyway.
5106 All that's left is making sure the insns involved can actually
5107 be predicated. */
5109 rtx cond;
5111 cond = cond_exec_get_condition (jump);
5112 if (! cond)
5113 return FALSE;
5115 rtx note = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
5116 int prob_val = (note ? XINT (note, 0) : -1);
5118 if (reversep)
5120 enum rtx_code rev = reversed_comparison_code (cond, jump);
5121 if (rev == UNKNOWN)
5122 return FALSE;
5123 cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
5124 XEXP (cond, 1));
5125 if (prob_val >= 0)
5126 prob_val = REG_BR_PROB_BASE - prob_val;
5129 if (cond_exec_process_insns (NULL, head, end, cond, prob_val, 0)
5130 && verify_changes (0))
5131 n_validated_changes = num_validated_changes ();
5132 else
5133 cancel_changes (0);
5135 earliest = jump;
5137 #endif
5139 /* If we allocated new pseudos (e.g. in the conditional move
5140 expander called from noce_emit_cmove), we must resize the
5141 array first. */
5142 if (max_regno < max_reg_num ())
5143 max_regno = max_reg_num ();
5145 /* Try the NCE path if the CE path did not result in any changes. */
5146 if (n_validated_changes == 0)
5148 rtx cond;
5149 rtx_insn *insn;
5150 regset live;
5151 bool success;
5153 /* In the non-conditional execution case, we have to verify that there
5154 are no trapping operations, no calls, no references to memory, and
5155 that any registers modified are dead at the branch site. */
5157 if (!any_condjump_p (jump))
5158 return FALSE;
5160 /* Find the extent of the conditional. */
5161 cond = noce_get_condition (jump, &earliest, false);
5162 if (!cond)
5163 return FALSE;
5165 live = BITMAP_ALLOC (&reg_obstack);
5166 simulate_backwards_to_point (merge_bb, live, end);
5167 success = can_move_insns_across (head, end, earliest, jump,
5168 merge_bb, live,
5169 df_get_live_in (other_bb), NULL);
5170 BITMAP_FREE (live);
5171 if (!success)
5172 return FALSE;
5174 /* Collect the set of registers set in MERGE_BB. */
5175 merge_set = BITMAP_ALLOC (&reg_obstack);
5177 FOR_BB_INSNS (merge_bb, insn)
5178 if (NONDEBUG_INSN_P (insn))
5179 df_simulate_find_defs (insn, merge_set);
5181 /* If shrink-wrapping, disable this optimization when test_bb is
5182 the first basic block and merge_bb exits. The idea is to not
5183 move code setting up a return register as that may clobber a
5184 register used to pass function parameters, which then must be
5185 saved in caller-saved regs. A caller-saved reg requires the
5186 prologue, killing a shrink-wrap opportunity. */
5187 if ((SHRINK_WRAPPING_ENABLED && !epilogue_completed)
5188 && ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == test_bb
5189 && single_succ_p (new_dest)
5190 && single_succ (new_dest) == EXIT_BLOCK_PTR_FOR_FN (cfun)
5191 && bitmap_intersect_p (df_get_live_in (new_dest), merge_set))
5193 regset return_regs;
5194 unsigned int i;
5196 return_regs = BITMAP_ALLOC (&reg_obstack);
5198 /* Start off with the intersection of regs used to pass
5199 params and regs used to return values. */
5200 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5201 if (FUNCTION_ARG_REGNO_P (i)
5202 && targetm.calls.function_value_regno_p (i))
5203 bitmap_set_bit (return_regs, INCOMING_REGNO (i));
5205 bitmap_and_into (return_regs,
5206 df_get_live_out (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
5207 bitmap_and_into (return_regs,
5208 df_get_live_in (EXIT_BLOCK_PTR_FOR_FN (cfun)));
5209 if (!bitmap_empty_p (return_regs))
5211 FOR_BB_INSNS_REVERSE (new_dest, insn)
5212 if (NONDEBUG_INSN_P (insn))
5214 df_ref def;
5216 /* If this insn sets any reg in return_regs, add all
5217 reg uses to the set of regs we're interested in. */
5218 FOR_EACH_INSN_DEF (def, insn)
5219 if (bitmap_bit_p (return_regs, DF_REF_REGNO (def)))
5221 df_simulate_uses (insn, return_regs);
5222 break;
5225 if (bitmap_intersect_p (merge_set, return_regs))
5227 BITMAP_FREE (return_regs);
5228 BITMAP_FREE (merge_set);
5229 return FALSE;
5232 BITMAP_FREE (return_regs);
5236 no_body:
5237 /* We don't want to use normal invert_jump or redirect_jump because
5238 we don't want to delete_insn called. Also, we want to do our own
5239 change group management. */
5241 old_dest = JUMP_LABEL (jump);
5242 if (other_bb != new_dest)
5244 if (!any_condjump_p (jump))
5245 goto cancel;
5247 if (JUMP_P (BB_END (dest_edge->src)))
5248 new_dest_label = JUMP_LABEL (BB_END (dest_edge->src));
5249 else if (new_dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
5250 new_dest_label = ret_rtx;
5251 else
5252 new_dest_label = block_label (new_dest);
5254 rtx_jump_insn *jump_insn = as_a <rtx_jump_insn *> (jump);
5255 if (reversep
5256 ? ! invert_jump_1 (jump_insn, new_dest_label)
5257 : ! redirect_jump_1 (jump_insn, new_dest_label))
5258 goto cancel;
5261 if (verify_changes (n_validated_changes))
5262 confirm_change_group ();
5263 else
5264 goto cancel;
5266 if (other_bb != new_dest)
5268 redirect_jump_2 (as_a <rtx_jump_insn *> (jump), old_dest, new_dest_label,
5269 0, reversep);
5271 redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
5272 if (reversep)
5274 std::swap (BRANCH_EDGE (test_bb)->count,
5275 FALLTHRU_EDGE (test_bb)->count);
5276 std::swap (BRANCH_EDGE (test_bb)->probability,
5277 FALLTHRU_EDGE (test_bb)->probability);
5278 update_br_prob_note (test_bb);
5282 /* Move the insns out of MERGE_BB to before the branch. */
5283 if (head != NULL)
5285 rtx_insn *insn;
5287 if (end == BB_END (merge_bb))
5288 BB_END (merge_bb) = PREV_INSN (head);
5290 /* PR 21767: when moving insns above a conditional branch, the REG_EQUAL
5291 notes being moved might become invalid. */
5292 insn = head;
5295 rtx note;
5297 if (! INSN_P (insn))
5298 continue;
5299 note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
5300 if (! note)
5301 continue;
5302 remove_note (insn, note);
5303 } while (insn != end && (insn = NEXT_INSN (insn)));
5305 /* PR46315: when moving insns above a conditional branch, the REG_EQUAL
5306 notes referring to the registers being set might become invalid. */
5307 if (merge_set)
5309 unsigned i;
5310 bitmap_iterator bi;
5312 EXECUTE_IF_SET_IN_BITMAP (merge_set, 0, i, bi)
5313 remove_reg_equal_equiv_notes_for_regno (i);
5315 BITMAP_FREE (merge_set);
5318 reorder_insns (head, end, PREV_INSN (earliest));
5321 /* Remove the jump and edge if we can. */
5322 if (other_bb == new_dest)
5324 delete_insn (jump);
5325 remove_edge (BRANCH_EDGE (test_bb));
5326 /* ??? Can't merge blocks here, as then_bb is still in use.
5327 At minimum, the merge will get done just before bb-reorder. */
5330 return TRUE;
5332 cancel:
5333 cancel_changes (0);
5335 if (merge_set)
5336 BITMAP_FREE (merge_set);
5338 return FALSE;
5341 /* Main entry point for all if-conversion. AFTER_COMBINE is true if
5342 we are after combine pass. */
5344 static void
5345 if_convert (bool after_combine)
5347 basic_block bb;
5348 int pass;
5350 if (optimize == 1)
5352 df_live_add_problem ();
5353 df_live_set_all_dirty ();
5356 /* Record whether we are after combine pass. */
5357 ifcvt_after_combine = after_combine;
5358 have_cbranchcc4 = (direct_optab_handler (cbranch_optab, CCmode)
5359 != CODE_FOR_nothing);
5360 num_possible_if_blocks = 0;
5361 num_updated_if_blocks = 0;
5362 num_true_changes = 0;
5364 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
5365 mark_loop_exit_edges ();
5366 loop_optimizer_finalize ();
5367 free_dominance_info (CDI_DOMINATORS);
5369 /* Compute postdominators. */
5370 calculate_dominance_info (CDI_POST_DOMINATORS);
5372 df_set_flags (DF_LR_RUN_DCE);
5374 /* Go through each of the basic blocks looking for things to convert. If we
5375 have conditional execution, we make multiple passes to allow us to handle
5376 IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
5377 pass = 0;
5380 df_analyze ();
5381 /* Only need to do dce on the first pass. */
5382 df_clear_flags (DF_LR_RUN_DCE);
5383 cond_exec_changed_p = FALSE;
5384 pass++;
5386 #ifdef IFCVT_MULTIPLE_DUMPS
5387 if (dump_file && pass > 1)
5388 fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
5389 #endif
5391 FOR_EACH_BB_FN (bb, cfun)
5393 basic_block new_bb;
5394 while (!df_get_bb_dirty (bb)
5395 && (new_bb = find_if_header (bb, pass)) != NULL)
5396 bb = new_bb;
5399 #ifdef IFCVT_MULTIPLE_DUMPS
5400 if (dump_file && cond_exec_changed_p)
5401 print_rtl_with_bb (dump_file, get_insns (), dump_flags);
5402 #endif
5404 while (cond_exec_changed_p);
5406 #ifdef IFCVT_MULTIPLE_DUMPS
5407 if (dump_file)
5408 fprintf (dump_file, "\n\n========== no more changes\n");
5409 #endif
5411 free_dominance_info (CDI_POST_DOMINATORS);
5413 if (dump_file)
5414 fflush (dump_file);
5416 clear_aux_for_blocks ();
5418 /* If we allocated new pseudos, we must resize the array for sched1. */
5419 if (max_regno < max_reg_num ())
5420 max_regno = max_reg_num ();
5422 /* Write the final stats. */
5423 if (dump_file && num_possible_if_blocks > 0)
5425 fprintf (dump_file,
5426 "\n%d possible IF blocks searched.\n",
5427 num_possible_if_blocks);
5428 fprintf (dump_file,
5429 "%d IF blocks converted.\n",
5430 num_updated_if_blocks);
5431 fprintf (dump_file,
5432 "%d true changes made.\n\n\n",
5433 num_true_changes);
5436 if (optimize == 1)
5437 df_remove_problem (df_live);
5439 checking_verify_flow_info ();
5442 /* If-conversion and CFG cleanup. */
5443 static unsigned int
5444 rest_of_handle_if_conversion (void)
5446 if (flag_if_conversion)
5448 if (dump_file)
5450 dump_reg_info (dump_file);
5451 dump_flow_info (dump_file, dump_flags);
5453 cleanup_cfg (CLEANUP_EXPENSIVE);
5454 if_convert (false);
5457 cleanup_cfg (0);
5458 return 0;
5461 namespace {
5463 const pass_data pass_data_rtl_ifcvt =
5465 RTL_PASS, /* type */
5466 "ce1", /* name */
5467 OPTGROUP_NONE, /* optinfo_flags */
5468 TV_IFCVT, /* tv_id */
5469 0, /* properties_required */
5470 0, /* properties_provided */
5471 0, /* properties_destroyed */
5472 0, /* todo_flags_start */
5473 TODO_df_finish, /* todo_flags_finish */
5476 class pass_rtl_ifcvt : public rtl_opt_pass
5478 public:
5479 pass_rtl_ifcvt (gcc::context *ctxt)
5480 : rtl_opt_pass (pass_data_rtl_ifcvt, ctxt)
5483 /* opt_pass methods: */
5484 virtual bool gate (function *)
5486 return (optimize > 0) && dbg_cnt (if_conversion);
5489 virtual unsigned int execute (function *)
5491 return rest_of_handle_if_conversion ();
5494 }; // class pass_rtl_ifcvt
5496 } // anon namespace
5498 rtl_opt_pass *
5499 make_pass_rtl_ifcvt (gcc::context *ctxt)
5501 return new pass_rtl_ifcvt (ctxt);
5505 /* Rerun if-conversion, as combine may have simplified things enough
5506 to now meet sequence length restrictions. */
5508 namespace {
5510 const pass_data pass_data_if_after_combine =
5512 RTL_PASS, /* type */
5513 "ce2", /* name */
5514 OPTGROUP_NONE, /* optinfo_flags */
5515 TV_IFCVT, /* tv_id */
5516 0, /* properties_required */
5517 0, /* properties_provided */
5518 0, /* properties_destroyed */
5519 0, /* todo_flags_start */
5520 TODO_df_finish, /* todo_flags_finish */
5523 class pass_if_after_combine : public rtl_opt_pass
5525 public:
5526 pass_if_after_combine (gcc::context *ctxt)
5527 : rtl_opt_pass (pass_data_if_after_combine, ctxt)
5530 /* opt_pass methods: */
5531 virtual bool gate (function *)
5533 return optimize > 0 && flag_if_conversion
5534 && dbg_cnt (if_after_combine);
5537 virtual unsigned int execute (function *)
5539 if_convert (true);
5540 return 0;
5543 }; // class pass_if_after_combine
5545 } // anon namespace
5547 rtl_opt_pass *
5548 make_pass_if_after_combine (gcc::context *ctxt)
5550 return new pass_if_after_combine (ctxt);
5554 namespace {
5556 const pass_data pass_data_if_after_reload =
5558 RTL_PASS, /* type */
5559 "ce3", /* name */
5560 OPTGROUP_NONE, /* optinfo_flags */
5561 TV_IFCVT2, /* tv_id */
5562 0, /* properties_required */
5563 0, /* properties_provided */
5564 0, /* properties_destroyed */
5565 0, /* todo_flags_start */
5566 TODO_df_finish, /* todo_flags_finish */
5569 class pass_if_after_reload : public rtl_opt_pass
5571 public:
5572 pass_if_after_reload (gcc::context *ctxt)
5573 : rtl_opt_pass (pass_data_if_after_reload, ctxt)
5576 /* opt_pass methods: */
5577 virtual bool gate (function *)
5579 return optimize > 0 && flag_if_conversion2
5580 && dbg_cnt (if_after_reload);
5583 virtual unsigned int execute (function *)
5585 if_convert (true);
5586 return 0;
5589 }; // class pass_if_after_reload
5591 } // anon namespace
5593 rtl_opt_pass *
5594 make_pass_if_after_reload (gcc::context *ctxt)
5596 return new pass_if_after_reload (ctxt);