OSDN Git Service

* config/ia64/constraints.md ("U"): Make constraint vector only.
[pf3gnuchains/gcc-fork.git] / gcc / ifcvt.c
1 /* If-conversion support.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3    Free Software Foundation, Inc.
4
5    This file is part of GCC.
6
7    GCC is free software; you can redistribute it and/or modify it
8    under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    GCC is distributed in the hope that it will be useful, but WITHOUT
13    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15    License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GCC; see the file COPYING3.  If not see
19    <http://www.gnu.org/licenses/>.  */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25
26 #include "rtl.h"
27 #include "regs.h"
28 #include "function.h"
29 #include "flags.h"
30 #include "insn-config.h"
31 #include "recog.h"
32 #include "except.h"
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
35 #include "expr.h"
36 #include "real.h"
37 #include "output.h"
38 #include "optabs.h"
39 #include "toplev.h"
40 #include "tm_p.h"
41 #include "cfgloop.h"
42 #include "target.h"
43 #include "timevar.h"
44 #include "tree-pass.h"
45 #include "df.h"
46 #include "vec.h"
47 #include "vecprim.h"
48
49 #ifndef HAVE_conditional_execution
50 #define HAVE_conditional_execution 0
51 #endif
52 #ifndef HAVE_conditional_move
53 #define HAVE_conditional_move 0
54 #endif
55 #ifndef HAVE_incscc
56 #define HAVE_incscc 0
57 #endif
58 #ifndef HAVE_decscc
59 #define HAVE_decscc 0
60 #endif
61 #ifndef HAVE_trap
62 #define HAVE_trap 0
63 #endif
64 #ifndef HAVE_conditional_trap
65 #define HAVE_conditional_trap 0
66 #endif
67
68 #ifndef MAX_CONDITIONAL_EXECUTE
69 #define MAX_CONDITIONAL_EXECUTE   (BRANCH_COST + 1)
70 #endif
71
72 #define IFCVT_MULTIPLE_DUMPS 1
73
74 #define NULL_BLOCK      ((basic_block) NULL)
75
76 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at  */
77 static int num_possible_if_blocks;
78
79 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
80    execution.  */
81 static int num_updated_if_blocks;
82
83 /* # of changes made.  */
84 static int num_true_changes;
85
86 /* Whether conditional execution changes were made.  */
87 static int cond_exec_changed_p;
88
89 /* Forward references.  */
90 static int count_bb_insns (basic_block);
91 static bool cheap_bb_rtx_cost_p (basic_block, int);
92 static rtx first_active_insn (basic_block);
93 static rtx last_active_insn (basic_block, int);
94 static basic_block block_fallthru (basic_block);
95 static int cond_exec_process_insns (ce_if_block_t *, rtx, rtx, rtx, rtx, int);
96 static rtx cond_exec_get_condition (rtx);
97 static rtx noce_get_condition (rtx, rtx *, bool);
98 static int noce_operand_ok (rtx);
99 static void merge_if_block (ce_if_block_t *);
100 static int find_cond_trap (basic_block, edge, edge);
101 static basic_block find_if_header (basic_block, int);
102 static int block_jumps_and_fallthru_p (basic_block, basic_block);
103 static int noce_find_if_block (basic_block, edge, edge, int);
104 static int cond_exec_find_if_block (ce_if_block_t *);
105 static int find_if_case_1 (basic_block, edge, edge);
106 static int find_if_case_2 (basic_block, edge, edge);
107 static int find_memory (rtx *, void *);
108 static int dead_or_predicable (basic_block, basic_block, basic_block,
109                                basic_block, int);
110 static void noce_emit_move_insn (rtx, rtx);
111 static rtx block_has_only_trap (basic_block);
112 \f
113 /* Count the number of non-jump active insns in BB.  */
114
115 static int
116 count_bb_insns (basic_block bb)
117 {
118   int count = 0;
119   rtx insn = BB_HEAD (bb);
120
121   while (1)
122     {
123       if (CALL_P (insn) || NONJUMP_INSN_P (insn))
124         count++;
125
126       if (insn == BB_END (bb))
127         break;
128       insn = NEXT_INSN (insn);
129     }
130
131   return count;
132 }
133
134 /* Determine whether the total insn_rtx_cost on non-jump insns in
135    basic block BB is less than MAX_COST.  This function returns
136    false if the cost of any instruction could not be estimated.  */
137
138 static bool
139 cheap_bb_rtx_cost_p (basic_block bb, int max_cost)
140 {
141   int count = 0;
142   rtx insn = BB_HEAD (bb);
143
144   while (1)
145     {
146       if (NONJUMP_INSN_P (insn))
147         {
148           int cost = insn_rtx_cost (PATTERN (insn));
149           if (cost == 0)
150             return false;
151
152           /* If this instruction is the load or set of a "stack" register,
153              such as a floating point register on x87, then the cost of
154              speculatively executing this insn may need to include
155              the additional cost of popping its result off of the
156              register stack.  Unfortunately, correctly recognizing and
157              accounting for this additional overhead is tricky, so for
158              now we simply prohibit such speculative execution.  */
159 #ifdef STACK_REGS
160           {
161             rtx set = single_set (insn);
162             if (set && STACK_REG_P (SET_DEST (set)))
163               return false;
164           }
165 #endif
166
167           count += cost;
168           if (count >= max_cost)
169             return false;
170         }
171       else if (CALL_P (insn))
172         return false;
173
174       if (insn == BB_END (bb))
175         break;
176       insn = NEXT_INSN (insn);
177     }
178
179   return true;
180 }
181
182 /* Return the first non-jump active insn in the basic block.  */
183
184 static rtx
185 first_active_insn (basic_block bb)
186 {
187   rtx insn = BB_HEAD (bb);
188
189   if (LABEL_P (insn))
190     {
191       if (insn == BB_END (bb))
192         return NULL_RTX;
193       insn = NEXT_INSN (insn);
194     }
195
196   while (NOTE_P (insn))
197     {
198       if (insn == BB_END (bb))
199         return NULL_RTX;
200       insn = NEXT_INSN (insn);
201     }
202
203   if (JUMP_P (insn))
204     return NULL_RTX;
205
206   return insn;
207 }
208
209 /* Return the last non-jump active (non-jump) insn in the basic block.  */
210
211 static rtx
212 last_active_insn (basic_block bb, int skip_use_p)
213 {
214   rtx insn = BB_END (bb);
215   rtx head = BB_HEAD (bb);
216
217   while (NOTE_P (insn)
218          || JUMP_P (insn)
219          || (skip_use_p
220              && NONJUMP_INSN_P (insn)
221              && GET_CODE (PATTERN (insn)) == USE))
222     {
223       if (insn == head)
224         return NULL_RTX;
225       insn = PREV_INSN (insn);
226     }
227
228   if (LABEL_P (insn))
229     return NULL_RTX;
230
231   return insn;
232 }
233
234 /* Return the basic block reached by falling though the basic block BB.  */
235
236 static basic_block
237 block_fallthru (basic_block bb)
238 {
239   edge e;
240   edge_iterator ei;
241
242   FOR_EACH_EDGE (e, ei, bb->succs)
243     if (e->flags & EDGE_FALLTHRU)
244       break;
245
246   return (e) ? e->dest : NULL_BLOCK;
247 }
248 \f
249 /* Go through a bunch of insns, converting them to conditional
250    execution format if possible.  Return TRUE if all of the non-note
251    insns were processed.  */
252
253 static int
254 cond_exec_process_insns (ce_if_block_t *ce_info ATTRIBUTE_UNUSED,
255                          /* if block information */rtx start,
256                          /* first insn to look at */rtx end,
257                          /* last insn to look at */rtx test,
258                          /* conditional execution test */rtx prob_val,
259                          /* probability of branch taken. */int mod_ok)
260 {
261   int must_be_last = FALSE;
262   rtx insn;
263   rtx xtest;
264   rtx pattern;
265
266   if (!start || !end)
267     return FALSE;
268
269   for (insn = start; ; insn = NEXT_INSN (insn))
270     {
271       if (NOTE_P (insn))
272         goto insn_done;
273
274       gcc_assert(NONJUMP_INSN_P (insn) || CALL_P (insn));
275
276       /* Remove USE insns that get in the way.  */
277       if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
278         {
279           /* ??? Ug.  Actually unlinking the thing is problematic,
280              given what we'd have to coordinate with our callers.  */
281           SET_INSN_DELETED (insn);
282           goto insn_done;
283         }
284
285       /* Last insn wasn't last?  */
286       if (must_be_last)
287         return FALSE;
288
289       if (modified_in_p (test, insn))
290         {
291           if (!mod_ok)
292             return FALSE;
293           must_be_last = TRUE;
294         }
295
296       /* Now build the conditional form of the instruction.  */
297       pattern = PATTERN (insn);
298       xtest = copy_rtx (test);
299
300       /* If this is already a COND_EXEC, rewrite the test to be an AND of the
301          two conditions.  */
302       if (GET_CODE (pattern) == COND_EXEC)
303         {
304           if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
305             return FALSE;
306
307           xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
308                                COND_EXEC_TEST (pattern));
309           pattern = COND_EXEC_CODE (pattern);
310         }
311
312       pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
313
314       /* If the machine needs to modify the insn being conditionally executed,
315          say for example to force a constant integer operand into a temp
316          register, do so here.  */
317 #ifdef IFCVT_MODIFY_INSN
318       IFCVT_MODIFY_INSN (ce_info, pattern, insn);
319       if (! pattern)
320         return FALSE;
321 #endif
322
323       validate_change (insn, &PATTERN (insn), pattern, 1);
324
325       if (CALL_P (insn) && prob_val)
326         validate_change (insn, &REG_NOTES (insn),
327                          alloc_EXPR_LIST (REG_BR_PROB, prob_val,
328                                           REG_NOTES (insn)), 1);
329
330     insn_done:
331       if (insn == end)
332         break;
333     }
334
335   return TRUE;
336 }
337
338 /* Return the condition for a jump.  Do not do any special processing.  */
339
340 static rtx
341 cond_exec_get_condition (rtx jump)
342 {
343   rtx test_if, cond;
344
345   if (any_condjump_p (jump))
346     test_if = SET_SRC (pc_set (jump));
347   else
348     return NULL_RTX;
349   cond = XEXP (test_if, 0);
350
351   /* If this branches to JUMP_LABEL when the condition is false,
352      reverse the condition.  */
353   if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
354       && XEXP (XEXP (test_if, 2), 0) == JUMP_LABEL (jump))
355     {
356       enum rtx_code rev = reversed_comparison_code (cond, jump);
357       if (rev == UNKNOWN)
358         return NULL_RTX;
359
360       cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
361                              XEXP (cond, 1));
362     }
363
364   return cond;
365 }
366
367 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
368    to conditional execution.  Return TRUE if we were successful at
369    converting the block.  */
370
371 static int
372 cond_exec_process_if_block (ce_if_block_t * ce_info,
373                             /* if block information */int do_multiple_p)
374 {
375   basic_block test_bb = ce_info->test_bb;       /* last test block */
376   basic_block then_bb = ce_info->then_bb;       /* THEN */
377   basic_block else_bb = ce_info->else_bb;       /* ELSE or NULL */
378   rtx test_expr;                /* expression in IF_THEN_ELSE that is tested */
379   rtx then_start;               /* first insn in THEN block */
380   rtx then_end;                 /* last insn + 1 in THEN block */
381   rtx else_start = NULL_RTX;    /* first insn in ELSE block or NULL */
382   rtx else_end = NULL_RTX;      /* last insn + 1 in ELSE block */
383   int max;                      /* max # of insns to convert.  */
384   int then_mod_ok;              /* whether conditional mods are ok in THEN */
385   rtx true_expr;                /* test for else block insns */
386   rtx false_expr;               /* test for then block insns */
387   rtx true_prob_val;            /* probability of else block */
388   rtx false_prob_val;           /* probability of then block */
389   int n_insns;
390   enum rtx_code false_code;
391
392   /* If test is comprised of && or || elements, and we've failed at handling
393      all of them together, just use the last test if it is the special case of
394      && elements without an ELSE block.  */
395   if (!do_multiple_p && ce_info->num_multiple_test_blocks)
396     {
397       if (else_bb || ! ce_info->and_and_p)
398         return FALSE;
399
400       ce_info->test_bb = test_bb = ce_info->last_test_bb;
401       ce_info->num_multiple_test_blocks = 0;
402       ce_info->num_and_and_blocks = 0;
403       ce_info->num_or_or_blocks = 0;
404     }
405
406   /* Find the conditional jump to the ELSE or JOIN part, and isolate
407      the test.  */
408   test_expr = cond_exec_get_condition (BB_END (test_bb));
409   if (! test_expr)
410     return FALSE;
411
412   /* If the conditional jump is more than just a conditional jump,
413      then we can not do conditional execution conversion on this block.  */
414   if (! onlyjump_p (BB_END (test_bb)))
415     return FALSE;
416
417   /* Collect the bounds of where we're to search, skipping any labels, jumps
418      and notes at the beginning and end of the block.  Then count the total
419      number of insns and see if it is small enough to convert.  */
420   then_start = first_active_insn (then_bb);
421   then_end = last_active_insn (then_bb, TRUE);
422   n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
423   max = MAX_CONDITIONAL_EXECUTE;
424
425   if (else_bb)
426     {
427       max *= 2;
428       else_start = first_active_insn (else_bb);
429       else_end = last_active_insn (else_bb, TRUE);
430       n_insns += ce_info->num_else_insns = count_bb_insns (else_bb);
431     }
432
433   if (n_insns > max)
434     return FALSE;
435
436   /* Map test_expr/test_jump into the appropriate MD tests to use on
437      the conditionally executed code.  */
438
439   true_expr = test_expr;
440
441   false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
442   if (false_code != UNKNOWN)
443     false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
444                                  XEXP (true_expr, 0), XEXP (true_expr, 1));
445   else
446     false_expr = NULL_RTX;
447
448 #ifdef IFCVT_MODIFY_TESTS
449   /* If the machine description needs to modify the tests, such as setting a
450      conditional execution register from a comparison, it can do so here.  */
451   IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
452
453   /* See if the conversion failed.  */
454   if (!true_expr || !false_expr)
455     goto fail;
456 #endif
457
458   true_prob_val = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
459   if (true_prob_val)
460     {
461       true_prob_val = XEXP (true_prob_val, 0);
462       false_prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (true_prob_val));
463     }
464   else
465     false_prob_val = NULL_RTX;
466
467   /* If we have && or || tests, do them here.  These tests are in the adjacent
468      blocks after the first block containing the test.  */
469   if (ce_info->num_multiple_test_blocks > 0)
470     {
471       basic_block bb = test_bb;
472       basic_block last_test_bb = ce_info->last_test_bb;
473
474       if (! false_expr)
475         goto fail;
476
477       do
478         {
479           rtx start, end;
480           rtx t, f;
481           enum rtx_code f_code;
482
483           bb = block_fallthru (bb);
484           start = first_active_insn (bb);
485           end = last_active_insn (bb, TRUE);
486           if (start
487               && ! cond_exec_process_insns (ce_info, start, end, false_expr,
488                                             false_prob_val, FALSE))
489             goto fail;
490
491           /* If the conditional jump is more than just a conditional jump, then
492              we can not do conditional execution conversion on this block.  */
493           if (! onlyjump_p (BB_END (bb)))
494             goto fail;
495
496           /* Find the conditional jump and isolate the test.  */
497           t = cond_exec_get_condition (BB_END (bb));
498           if (! t)
499             goto fail;
500
501           f_code = reversed_comparison_code (t, BB_END (bb));
502           if (f_code == UNKNOWN)
503             goto fail;
504
505           f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
506           if (ce_info->and_and_p)
507             {
508               t = gen_rtx_AND (GET_MODE (t), true_expr, t);
509               f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
510             }
511           else
512             {
513               t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
514               f = gen_rtx_AND (GET_MODE (t), false_expr, f);
515             }
516
517           /* If the machine description needs to modify the tests, such as
518              setting a conditional execution register from a comparison, it can
519              do so here.  */
520 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
521           IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
522
523           /* See if the conversion failed.  */
524           if (!t || !f)
525             goto fail;
526 #endif
527
528           true_expr = t;
529           false_expr = f;
530         }
531       while (bb != last_test_bb);
532     }
533
534   /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
535      on then THEN block.  */
536   then_mod_ok = (else_bb == NULL_BLOCK);
537
538   /* Go through the THEN and ELSE blocks converting the insns if possible
539      to conditional execution.  */
540
541   if (then_end
542       && (! false_expr
543           || ! cond_exec_process_insns (ce_info, then_start, then_end,
544                                         false_expr, false_prob_val,
545                                         then_mod_ok)))
546     goto fail;
547
548   if (else_bb && else_end
549       && ! cond_exec_process_insns (ce_info, else_start, else_end,
550                                     true_expr, true_prob_val, TRUE))
551     goto fail;
552
553   /* If we cannot apply the changes, fail.  Do not go through the normal fail
554      processing, since apply_change_group will call cancel_changes.  */
555   if (! apply_change_group ())
556     {
557 #ifdef IFCVT_MODIFY_CANCEL
558       /* Cancel any machine dependent changes.  */
559       IFCVT_MODIFY_CANCEL (ce_info);
560 #endif
561       return FALSE;
562     }
563
564 #ifdef IFCVT_MODIFY_FINAL
565   /* Do any machine dependent final modifications.  */
566   IFCVT_MODIFY_FINAL (ce_info);
567 #endif
568
569   /* Conversion succeeded.  */
570   if (dump_file)
571     fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
572              n_insns, (n_insns == 1) ? " was" : "s were");
573
574   /* Merge the blocks!  */
575   merge_if_block (ce_info);
576   cond_exec_changed_p = TRUE;
577   return TRUE;
578
579  fail:
580 #ifdef IFCVT_MODIFY_CANCEL
581   /* Cancel any machine dependent changes.  */
582   IFCVT_MODIFY_CANCEL (ce_info);
583 #endif
584
585   cancel_changes (0);
586   return FALSE;
587 }
588 \f
589 /* Used by noce_process_if_block to communicate with its subroutines.
590
591    The subroutines know that A and B may be evaluated freely.  They
592    know that X is a register.  They should insert new instructions
593    before cond_earliest.  */
594
595 struct noce_if_info
596 {
597   /* The basic blocks that make up the IF-THEN-{ELSE-,}JOIN block.  */
598   basic_block test_bb, then_bb, else_bb, join_bb;
599
600   /* The jump that ends TEST_BB.  */
601   rtx jump;
602
603   /* The jump condition.  */
604   rtx cond;
605
606   /* New insns should be inserted before this one.  */
607   rtx cond_earliest;
608
609   /* Insns in the THEN and ELSE block.  There is always just this
610      one insns in those blocks.  The insns are single_set insns.
611      If there was no ELSE block, INSN_B is the last insn before
612      COND_EARLIEST, or NULL_RTX.  In the former case, the insn
613      operands are still valid, as if INSN_B was moved down below
614      the jump.  */
615   rtx insn_a, insn_b;
616
617   /* The SET_SRC of INSN_A and INSN_B.  */
618   rtx a, b;
619
620   /* The SET_DEST of INSN_A.  */
621   rtx x;
622
623   /* True if this if block is not canonical.  In the canonical form of
624      if blocks, the THEN_BB is the block reached via the fallthru edge
625      from TEST_BB.  For the noce transformations, we allow the symmetric
626      form as well.  */
627   bool then_else_reversed;
628 };
629
630 static rtx noce_emit_store_flag (struct noce_if_info *, rtx, int, int);
631 static int noce_try_move (struct noce_if_info *);
632 static int noce_try_store_flag (struct noce_if_info *);
633 static int noce_try_addcc (struct noce_if_info *);
634 static int noce_try_store_flag_constants (struct noce_if_info *);
635 static int noce_try_store_flag_mask (struct noce_if_info *);
636 static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
637                             rtx, rtx, rtx);
638 static int noce_try_cmove (struct noce_if_info *);
639 static int noce_try_cmove_arith (struct noce_if_info *);
640 static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx *);
641 static int noce_try_minmax (struct noce_if_info *);
642 static int noce_try_abs (struct noce_if_info *);
643 static int noce_try_sign_mask (struct noce_if_info *);
644
645 /* Helper function for noce_try_store_flag*.  */
646
647 static rtx
648 noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
649                       int normalize)
650 {
651   rtx cond = if_info->cond;
652   int cond_complex;
653   enum rtx_code code;
654
655   cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
656                   || ! general_operand (XEXP (cond, 1), VOIDmode));
657
658   /* If earliest == jump, or when the condition is complex, try to
659      build the store_flag insn directly.  */
660
661   if (cond_complex)
662     cond = XEXP (SET_SRC (pc_set (if_info->jump)), 0);
663
664   if (reversep)
665     code = reversed_comparison_code (cond, if_info->jump);
666   else
667     code = GET_CODE (cond);
668
669   if ((if_info->cond_earliest == if_info->jump || cond_complex)
670       && (normalize == 0 || STORE_FLAG_VALUE == normalize))
671     {
672       rtx tmp;
673
674       tmp = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
675                             XEXP (cond, 1));
676       tmp = gen_rtx_SET (VOIDmode, x, tmp);
677
678       start_sequence ();
679       tmp = emit_insn (tmp);
680
681       if (recog_memoized (tmp) >= 0)
682         {
683           tmp = get_insns ();
684           end_sequence ();
685           emit_insn (tmp);
686
687           if_info->cond_earliest = if_info->jump;
688
689           return x;
690         }
691
692       end_sequence ();
693     }
694
695   /* Don't even try if the comparison operands or the mode of X are weird.  */
696   if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
697     return NULL_RTX;
698
699   return emit_store_flag (x, code, XEXP (cond, 0),
700                           XEXP (cond, 1), VOIDmode,
701                           (code == LTU || code == LEU
702                            || code == GEU || code == GTU), normalize);
703 }
704
705 /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
706    X is the destination/target and Y is the value to copy.  */
707
708 static void
709 noce_emit_move_insn (rtx x, rtx y)
710 {
711   enum machine_mode outmode;
712   rtx outer, inner;
713   int bitpos;
714
715   if (GET_CODE (x) != STRICT_LOW_PART)
716     {
717       rtx seq, insn, target;
718       optab ot;
719
720       start_sequence ();
721       /* Check that the SET_SRC is reasonable before calling emit_move_insn,
722          otherwise construct a suitable SET pattern ourselves.  */
723       insn = (OBJECT_P (y) || CONSTANT_P (y) || GET_CODE (y) == SUBREG)
724              ? emit_move_insn (x, y)
725              : emit_insn (gen_rtx_SET (VOIDmode, x, y));
726       seq = get_insns ();
727       end_sequence ();
728
729       if (recog_memoized (insn) <= 0)
730         {
731           if (GET_CODE (x) == ZERO_EXTRACT)
732             {
733               rtx op = XEXP (x, 0);
734               unsigned HOST_WIDE_INT size = INTVAL (XEXP (x, 1));
735               unsigned HOST_WIDE_INT start = INTVAL (XEXP (x, 2));
736
737               /* store_bit_field expects START to be relative to
738                  BYTES_BIG_ENDIAN and adjusts this value for machines with
739                  BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN.  In order to be able to
740                  invoke store_bit_field again it is necessary to have the START
741                  value from the first call.  */
742               if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
743                 {
744                   if (MEM_P (op))
745                     start = BITS_PER_UNIT - start - size;
746                   else
747                     {
748                       gcc_assert (REG_P (op));
749                       start = BITS_PER_WORD - start - size;
750                     }
751                 }
752
753               gcc_assert (start < (MEM_P (op) ? BITS_PER_UNIT : BITS_PER_WORD));
754               store_bit_field (op, size, start, GET_MODE (x), y);
755               return;
756             }
757
758           switch (GET_RTX_CLASS (GET_CODE (y)))
759             {
760             case RTX_UNARY:
761               ot = code_to_optab[GET_CODE (y)];
762               if (ot)
763                 {
764                   start_sequence ();
765                   target = expand_unop (GET_MODE (y), ot, XEXP (y, 0), x, 0);
766                   if (target != NULL_RTX)
767                     {
768                       if (target != x)
769                         emit_move_insn (x, target);
770                       seq = get_insns ();
771                     }
772                   end_sequence ();
773                 }
774               break;
775
776             case RTX_BIN_ARITH:
777             case RTX_COMM_ARITH:
778               ot = code_to_optab[GET_CODE (y)];
779               if (ot)
780                 {
781                   start_sequence ();
782                   target = expand_binop (GET_MODE (y), ot,
783                                          XEXP (y, 0), XEXP (y, 1),
784                                          x, 0, OPTAB_DIRECT);
785                   if (target != NULL_RTX)
786                     {
787                       if (target != x)
788                           emit_move_insn (x, target);
789                       seq = get_insns ();
790                     }
791                   end_sequence ();
792                 }
793               break;
794
795             default:
796               break;
797             }
798         }
799
800       emit_insn (seq);
801       return;
802     }
803
804   outer = XEXP (x, 0);
805   inner = XEXP (outer, 0);
806   outmode = GET_MODE (outer);
807   bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
808   store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos, outmode, y);
809 }
810
811 /* Return sequence of instructions generated by if conversion.  This
812    function calls end_sequence() to end the current stream, ensures
813    that are instructions are unshared, recognizable non-jump insns.
814    On failure, this function returns a NULL_RTX.  */
815
816 static rtx
817 end_ifcvt_sequence (struct noce_if_info *if_info)
818 {
819   rtx insn;
820   rtx seq = get_insns ();
821
822   set_used_flags (if_info->x);
823   set_used_flags (if_info->cond);
824   unshare_all_rtl_in_chain (seq);
825   end_sequence ();
826
827   /* Make sure that all of the instructions emitted are recognizable,
828      and that we haven't introduced a new jump instruction.
829      As an exercise for the reader, build a general mechanism that
830      allows proper placement of required clobbers.  */
831   for (insn = seq; insn; insn = NEXT_INSN (insn))
832     if (JUMP_P (insn)
833         || recog_memoized (insn) == -1)
834       return NULL_RTX;
835
836   return seq;
837 }
838
839 /* Convert "if (a != b) x = a; else x = b" into "x = a" and
840    "if (a == b) x = a; else x = b" into "x = b".  */
841
842 static int
843 noce_try_move (struct noce_if_info *if_info)
844 {
845   rtx cond = if_info->cond;
846   enum rtx_code code = GET_CODE (cond);
847   rtx y, seq;
848
849   if (code != NE && code != EQ)
850     return FALSE;
851
852   /* This optimization isn't valid if either A or B could be a NaN
853      or a signed zero.  */
854   if (HONOR_NANS (GET_MODE (if_info->x))
855       || HONOR_SIGNED_ZEROS (GET_MODE (if_info->x)))
856     return FALSE;
857
858   /* Check whether the operands of the comparison are A and in
859      either order.  */
860   if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
861        && rtx_equal_p (if_info->b, XEXP (cond, 1)))
862       || (rtx_equal_p (if_info->a, XEXP (cond, 1))
863           && rtx_equal_p (if_info->b, XEXP (cond, 0))))
864     {
865       y = (code == EQ) ? if_info->a : if_info->b;
866
867       /* Avoid generating the move if the source is the destination.  */
868       if (! rtx_equal_p (if_info->x, y))
869         {
870           start_sequence ();
871           noce_emit_move_insn (if_info->x, y);
872           seq = end_ifcvt_sequence (if_info);
873           if (!seq)
874             return FALSE;
875
876           emit_insn_before_setloc (seq, if_info->jump,
877                                    INSN_LOCATOR (if_info->insn_a));
878         }
879       return TRUE;
880     }
881   return FALSE;
882 }
883
884 /* Convert "if (test) x = 1; else x = 0".
885
886    Only try 0 and STORE_FLAG_VALUE here.  Other combinations will be
887    tried in noce_try_store_flag_constants after noce_try_cmove has had
888    a go at the conversion.  */
889
890 static int
891 noce_try_store_flag (struct noce_if_info *if_info)
892 {
893   int reversep;
894   rtx target, seq;
895
896   if (GET_CODE (if_info->b) == CONST_INT
897       && INTVAL (if_info->b) == STORE_FLAG_VALUE
898       && if_info->a == const0_rtx)
899     reversep = 0;
900   else if (if_info->b == const0_rtx
901            && GET_CODE (if_info->a) == CONST_INT
902            && INTVAL (if_info->a) == STORE_FLAG_VALUE
903            && (reversed_comparison_code (if_info->cond, if_info->jump)
904                != UNKNOWN))
905     reversep = 1;
906   else
907     return FALSE;
908
909   start_sequence ();
910
911   target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
912   if (target)
913     {
914       if (target != if_info->x)
915         noce_emit_move_insn (if_info->x, target);
916
917       seq = end_ifcvt_sequence (if_info);
918       if (! seq)
919         return FALSE;
920
921       emit_insn_before_setloc (seq, if_info->jump,
922                                INSN_LOCATOR (if_info->insn_a));
923       return TRUE;
924     }
925   else
926     {
927       end_sequence ();
928       return FALSE;
929     }
930 }
931
932 /* Convert "if (test) x = a; else x = b", for A and B constant.  */
933
934 static int
935 noce_try_store_flag_constants (struct noce_if_info *if_info)
936 {
937   rtx target, seq;
938   int reversep;
939   HOST_WIDE_INT itrue, ifalse, diff, tmp;
940   int normalize, can_reverse;
941   enum machine_mode mode;
942
943   if (GET_CODE (if_info->a) == CONST_INT
944       && GET_CODE (if_info->b) == CONST_INT)
945     {
946       mode = GET_MODE (if_info->x);
947       ifalse = INTVAL (if_info->a);
948       itrue = INTVAL (if_info->b);
949
950       /* Make sure we can represent the difference between the two values.  */
951       if ((itrue - ifalse > 0)
952           != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
953         return FALSE;
954
955       diff = trunc_int_for_mode (itrue - ifalse, mode);
956
957       can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
958                      != UNKNOWN);
959
960       reversep = 0;
961       if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
962         normalize = 0;
963       else if (ifalse == 0 && exact_log2 (itrue) >= 0
964                && (STORE_FLAG_VALUE == 1
965                    || BRANCH_COST >= 2))
966         normalize = 1;
967       else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
968                && (STORE_FLAG_VALUE == 1 || BRANCH_COST >= 2))
969         normalize = 1, reversep = 1;
970       else if (itrue == -1
971                && (STORE_FLAG_VALUE == -1
972                    || BRANCH_COST >= 2))
973         normalize = -1;
974       else if (ifalse == -1 && can_reverse
975                && (STORE_FLAG_VALUE == -1 || BRANCH_COST >= 2))
976         normalize = -1, reversep = 1;
977       else if ((BRANCH_COST >= 2 && STORE_FLAG_VALUE == -1)
978                || BRANCH_COST >= 3)
979         normalize = -1;
980       else
981         return FALSE;
982
983       if (reversep)
984         {
985           tmp = itrue; itrue = ifalse; ifalse = tmp;
986           diff = trunc_int_for_mode (-diff, mode);
987         }
988
989       start_sequence ();
990       target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
991       if (! target)
992         {
993           end_sequence ();
994           return FALSE;
995         }
996
997       /* if (test) x = 3; else x = 4;
998          =>   x = 3 + (test == 0);  */
999       if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1000         {
1001           target = expand_simple_binop (mode,
1002                                         (diff == STORE_FLAG_VALUE
1003                                          ? PLUS : MINUS),
1004                                         GEN_INT (ifalse), target, if_info->x, 0,
1005                                         OPTAB_WIDEN);
1006         }
1007
1008       /* if (test) x = 8; else x = 0;
1009          =>   x = (test != 0) << 3;  */
1010       else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
1011         {
1012           target = expand_simple_binop (mode, ASHIFT,
1013                                         target, GEN_INT (tmp), if_info->x, 0,
1014                                         OPTAB_WIDEN);
1015         }
1016
1017       /* if (test) x = -1; else x = b;
1018          =>   x = -(test != 0) | b;  */
1019       else if (itrue == -1)
1020         {
1021           target = expand_simple_binop (mode, IOR,
1022                                         target, GEN_INT (ifalse), if_info->x, 0,
1023                                         OPTAB_WIDEN);
1024         }
1025
1026       /* if (test) x = a; else x = b;
1027          =>   x = (-(test != 0) & (b - a)) + a;  */
1028       else
1029         {
1030           target = expand_simple_binop (mode, AND,
1031                                         target, GEN_INT (diff), if_info->x, 0,
1032                                         OPTAB_WIDEN);
1033           if (target)
1034             target = expand_simple_binop (mode, PLUS,
1035                                           target, GEN_INT (ifalse),
1036                                           if_info->x, 0, OPTAB_WIDEN);
1037         }
1038
1039       if (! target)
1040         {
1041           end_sequence ();
1042           return FALSE;
1043         }
1044
1045       if (target != if_info->x)
1046         noce_emit_move_insn (if_info->x, target);
1047
1048       seq = end_ifcvt_sequence (if_info);
1049       if (!seq)
1050         return FALSE;
1051
1052       emit_insn_before_setloc (seq, if_info->jump,
1053                                INSN_LOCATOR (if_info->insn_a));
1054       return TRUE;
1055     }
1056
1057   return FALSE;
1058 }
1059
1060 /* Convert "if (test) foo++" into "foo += (test != 0)", and
1061    similarly for "foo--".  */
1062
1063 static int
1064 noce_try_addcc (struct noce_if_info *if_info)
1065 {
1066   rtx target, seq;
1067   int subtract, normalize;
1068
1069   if (GET_CODE (if_info->a) == PLUS
1070       && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
1071       && (reversed_comparison_code (if_info->cond, if_info->jump)
1072           != UNKNOWN))
1073     {
1074       rtx cond = if_info->cond;
1075       enum rtx_code code = reversed_comparison_code (cond, if_info->jump);
1076
1077       /* First try to use addcc pattern.  */
1078       if (general_operand (XEXP (cond, 0), VOIDmode)
1079           && general_operand (XEXP (cond, 1), VOIDmode))
1080         {
1081           start_sequence ();
1082           target = emit_conditional_add (if_info->x, code,
1083                                          XEXP (cond, 0),
1084                                          XEXP (cond, 1),
1085                                          VOIDmode,
1086                                          if_info->b,
1087                                          XEXP (if_info->a, 1),
1088                                          GET_MODE (if_info->x),
1089                                          (code == LTU || code == GEU
1090                                           || code == LEU || code == GTU));
1091           if (target)
1092             {
1093               if (target != if_info->x)
1094                 noce_emit_move_insn (if_info->x, target);
1095
1096               seq = end_ifcvt_sequence (if_info);
1097               if (!seq)
1098                 return FALSE;
1099
1100               emit_insn_before_setloc (seq, if_info->jump,
1101                                        INSN_LOCATOR (if_info->insn_a));
1102               return TRUE;
1103             }
1104           end_sequence ();
1105         }
1106
1107       /* If that fails, construct conditional increment or decrement using
1108          setcc.  */
1109       if (BRANCH_COST >= 2
1110           && (XEXP (if_info->a, 1) == const1_rtx
1111               || XEXP (if_info->a, 1) == constm1_rtx))
1112         {
1113           start_sequence ();
1114           if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1115             subtract = 0, normalize = 0;
1116           else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1117             subtract = 1, normalize = 0;
1118           else
1119             subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
1120
1121
1122           target = noce_emit_store_flag (if_info,
1123                                          gen_reg_rtx (GET_MODE (if_info->x)),
1124                                          1, normalize);
1125
1126           if (target)
1127             target = expand_simple_binop (GET_MODE (if_info->x),
1128                                           subtract ? MINUS : PLUS,
1129                                           if_info->b, target, if_info->x,
1130                                           0, OPTAB_WIDEN);
1131           if (target)
1132             {
1133               if (target != if_info->x)
1134                 noce_emit_move_insn (if_info->x, target);
1135
1136               seq = end_ifcvt_sequence (if_info);
1137               if (!seq)
1138                 return FALSE;
1139
1140               emit_insn_before_setloc (seq, if_info->jump,
1141                                        INSN_LOCATOR (if_info->insn_a));
1142               return TRUE;
1143             }
1144           end_sequence ();
1145         }
1146     }
1147
1148   return FALSE;
1149 }
1150
1151 /* Convert "if (test) x = 0;" to "x &= -(test == 0);"  */
1152
1153 static int
1154 noce_try_store_flag_mask (struct noce_if_info *if_info)
1155 {
1156   rtx target, seq;
1157   int reversep;
1158
1159   reversep = 0;
1160   if ((BRANCH_COST >= 2
1161        || STORE_FLAG_VALUE == -1)
1162       && ((if_info->a == const0_rtx
1163            && rtx_equal_p (if_info->b, if_info->x))
1164           || ((reversep = (reversed_comparison_code (if_info->cond,
1165                                                      if_info->jump)
1166                            != UNKNOWN))
1167               && if_info->b == const0_rtx
1168               && rtx_equal_p (if_info->a, if_info->x))))
1169     {
1170       start_sequence ();
1171       target = noce_emit_store_flag (if_info,
1172                                      gen_reg_rtx (GET_MODE (if_info->x)),
1173                                      reversep, -1);
1174       if (target)
1175         target = expand_simple_binop (GET_MODE (if_info->x), AND,
1176                                       if_info->x,
1177                                       target, if_info->x, 0,
1178                                       OPTAB_WIDEN);
1179
1180       if (target)
1181         {
1182           if (target != if_info->x)
1183             noce_emit_move_insn (if_info->x, target);
1184
1185           seq = end_ifcvt_sequence (if_info);
1186           if (!seq)
1187             return FALSE;
1188
1189           emit_insn_before_setloc (seq, if_info->jump,
1190                                    INSN_LOCATOR (if_info->insn_a));
1191           return TRUE;
1192         }
1193
1194       end_sequence ();
1195     }
1196
1197   return FALSE;
1198 }
1199
1200 /* Helper function for noce_try_cmove and noce_try_cmove_arith.  */
1201
1202 static rtx
1203 noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1204                  rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue)
1205 {
1206   /* If earliest == jump, try to build the cmove insn directly.
1207      This is helpful when combine has created some complex condition
1208      (like for alpha's cmovlbs) that we can't hope to regenerate
1209      through the normal interface.  */
1210
1211   if (if_info->cond_earliest == if_info->jump)
1212     {
1213       rtx tmp;
1214
1215       tmp = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1216       tmp = gen_rtx_IF_THEN_ELSE (GET_MODE (x), tmp, vtrue, vfalse);
1217       tmp = gen_rtx_SET (VOIDmode, x, tmp);
1218
1219       start_sequence ();
1220       tmp = emit_insn (tmp);
1221
1222       if (recog_memoized (tmp) >= 0)
1223         {
1224           tmp = get_insns ();
1225           end_sequence ();
1226           emit_insn (tmp);
1227
1228           return x;
1229         }
1230
1231       end_sequence ();
1232     }
1233
1234   /* Don't even try if the comparison operands are weird.  */
1235   if (! general_operand (cmp_a, GET_MODE (cmp_a))
1236       || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1237     return NULL_RTX;
1238
1239 #if HAVE_conditional_move
1240   return emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
1241                                 vtrue, vfalse, GET_MODE (x),
1242                                 (code == LTU || code == GEU
1243                                  || code == LEU || code == GTU));
1244 #else
1245   /* We'll never get here, as noce_process_if_block doesn't call the
1246      functions involved.  Ifdef code, however, should be discouraged
1247      because it leads to typos in the code not selected.  However,
1248      emit_conditional_move won't exist either.  */
1249   return NULL_RTX;
1250 #endif
1251 }
1252
1253 /* Try only simple constants and registers here.  More complex cases
1254    are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1255    has had a go at it.  */
1256
1257 static int
1258 noce_try_cmove (struct noce_if_info *if_info)
1259 {
1260   enum rtx_code code;
1261   rtx target, seq;
1262
1263   if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1264       && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1265     {
1266       start_sequence ();
1267
1268       code = GET_CODE (if_info->cond);
1269       target = noce_emit_cmove (if_info, if_info->x, code,
1270                                 XEXP (if_info->cond, 0),
1271                                 XEXP (if_info->cond, 1),
1272                                 if_info->a, if_info->b);
1273
1274       if (target)
1275         {
1276           if (target != if_info->x)
1277             noce_emit_move_insn (if_info->x, target);
1278
1279           seq = end_ifcvt_sequence (if_info);
1280           if (!seq)
1281             return FALSE;
1282
1283           emit_insn_before_setloc (seq, if_info->jump,
1284                                    INSN_LOCATOR (if_info->insn_a));
1285           return TRUE;
1286         }
1287       else
1288         {
1289           end_sequence ();
1290           return FALSE;
1291         }
1292     }
1293
1294   return FALSE;
1295 }
1296
1297 /* Try more complex cases involving conditional_move.  */
1298
1299 static int
1300 noce_try_cmove_arith (struct noce_if_info *if_info)
1301 {
1302   rtx a = if_info->a;
1303   rtx b = if_info->b;
1304   rtx x = if_info->x;
1305   rtx orig_a, orig_b;
1306   rtx insn_a, insn_b;
1307   rtx tmp, target;
1308   int is_mem = 0;
1309   int insn_cost;
1310   enum rtx_code code;
1311
1312   /* A conditional move from two memory sources is equivalent to a
1313      conditional on their addresses followed by a load.  Don't do this
1314      early because it'll screw alias analysis.  Note that we've
1315      already checked for no side effects.  */
1316   /* ??? FIXME: Magic number 5.  */
1317   if (cse_not_expected
1318       && MEM_P (a) && MEM_P (b)
1319       && BRANCH_COST >= 5)
1320     {
1321       a = XEXP (a, 0);
1322       b = XEXP (b, 0);
1323       x = gen_reg_rtx (Pmode);
1324       is_mem = 1;
1325     }
1326
1327   /* ??? We could handle this if we knew that a load from A or B could
1328      not fault.  This is also true if we've already loaded
1329      from the address along the path from ENTRY.  */
1330   else if (may_trap_p (a) || may_trap_p (b))
1331     return FALSE;
1332
1333   /* if (test) x = a + b; else x = c - d;
1334      => y = a + b;
1335         x = c - d;
1336         if (test)
1337           x = y;
1338   */
1339
1340   code = GET_CODE (if_info->cond);
1341   insn_a = if_info->insn_a;
1342   insn_b = if_info->insn_b;
1343
1344   /* Total insn_rtx_cost should be smaller than branch cost.  Exit
1345      if insn_rtx_cost can't be estimated.  */
1346   if (insn_a)
1347     {
1348       insn_cost = insn_rtx_cost (PATTERN (insn_a));
1349       if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (BRANCH_COST))
1350         return FALSE;
1351     }
1352   else
1353     insn_cost = 0;
1354
1355   if (insn_b)
1356     {
1357       insn_cost += insn_rtx_cost (PATTERN (insn_b));
1358       if (insn_cost == 0 || insn_cost > COSTS_N_INSNS (BRANCH_COST))
1359         return FALSE;
1360     }
1361
1362   /* Possibly rearrange operands to make things come out more natural.  */
1363   if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
1364     {
1365       int reversep = 0;
1366       if (rtx_equal_p (b, x))
1367         reversep = 1;
1368       else if (general_operand (b, GET_MODE (b)))
1369         reversep = 1;
1370
1371       if (reversep)
1372         {
1373           code = reversed_comparison_code (if_info->cond, if_info->jump);
1374           tmp = a, a = b, b = tmp;
1375           tmp = insn_a, insn_a = insn_b, insn_b = tmp;
1376         }
1377     }
1378
1379   start_sequence ();
1380
1381   orig_a = a;
1382   orig_b = b;
1383
1384   /* If either operand is complex, load it into a register first.
1385      The best way to do this is to copy the original insn.  In this
1386      way we preserve any clobbers etc that the insn may have had.
1387      This is of course not possible in the IS_MEM case.  */
1388   if (! general_operand (a, GET_MODE (a)))
1389     {
1390       rtx set;
1391
1392       if (is_mem)
1393         {
1394           tmp = gen_reg_rtx (GET_MODE (a));
1395           tmp = emit_insn (gen_rtx_SET (VOIDmode, tmp, a));
1396         }
1397       else if (! insn_a)
1398         goto end_seq_and_fail;
1399       else
1400         {
1401           a = gen_reg_rtx (GET_MODE (a));
1402           tmp = copy_rtx (insn_a);
1403           set = single_set (tmp);
1404           SET_DEST (set) = a;
1405           tmp = emit_insn (PATTERN (tmp));
1406         }
1407       if (recog_memoized (tmp) < 0)
1408         goto end_seq_and_fail;
1409     }
1410   if (! general_operand (b, GET_MODE (b)))
1411     {
1412       rtx set, last;
1413
1414       if (is_mem)
1415         {
1416           tmp = gen_reg_rtx (GET_MODE (b));
1417           tmp = gen_rtx_SET (VOIDmode, tmp, b);
1418         }
1419       else if (! insn_b)
1420         goto end_seq_and_fail;
1421       else
1422         {
1423           b = gen_reg_rtx (GET_MODE (b));
1424           tmp = copy_rtx (insn_b);
1425           set = single_set (tmp);
1426           SET_DEST (set) = b;
1427           tmp = PATTERN (tmp);
1428         }
1429
1430       /* If insn to set up A clobbers any registers B depends on, try to
1431          swap insn that sets up A with the one that sets up B.  If even
1432          that doesn't help, punt.  */
1433       last = get_last_insn ();
1434       if (last && modified_in_p (orig_b, last))
1435         {
1436           tmp = emit_insn_before (tmp, get_insns ());
1437           if (modified_in_p (orig_a, tmp))
1438             goto end_seq_and_fail;
1439         }
1440       else
1441         tmp = emit_insn (tmp);
1442
1443       if (recog_memoized (tmp) < 0)
1444         goto end_seq_and_fail;
1445     }
1446
1447   target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
1448                             XEXP (if_info->cond, 1), a, b);
1449
1450   if (! target)
1451     goto end_seq_and_fail;
1452
1453   /* If we're handling a memory for above, emit the load now.  */
1454   if (is_mem)
1455     {
1456       tmp = gen_rtx_MEM (GET_MODE (if_info->x), target);
1457
1458       /* Copy over flags as appropriate.  */
1459       if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
1460         MEM_VOLATILE_P (tmp) = 1;
1461       if (MEM_IN_STRUCT_P (if_info->a) && MEM_IN_STRUCT_P (if_info->b))
1462         MEM_IN_STRUCT_P (tmp) = 1;
1463       if (MEM_SCALAR_P (if_info->a) && MEM_SCALAR_P (if_info->b))
1464         MEM_SCALAR_P (tmp) = 1;
1465       if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
1466         set_mem_alias_set (tmp, MEM_ALIAS_SET (if_info->a));
1467       set_mem_align (tmp,
1468                      MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
1469
1470       noce_emit_move_insn (if_info->x, tmp);
1471     }
1472   else if (target != x)
1473     noce_emit_move_insn (x, target);
1474
1475   tmp = end_ifcvt_sequence (if_info);
1476   if (!tmp)
1477     return FALSE;
1478
1479   emit_insn_before_setloc (tmp, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1480   return TRUE;
1481
1482  end_seq_and_fail:
1483   end_sequence ();
1484   return FALSE;
1485 }
1486
1487 /* For most cases, the simplified condition we found is the best
1488    choice, but this is not the case for the min/max/abs transforms.
1489    For these we wish to know that it is A or B in the condition.  */
1490
1491 static rtx
1492 noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
1493                         rtx *earliest)
1494 {
1495   rtx cond, set, insn;
1496   int reverse;
1497
1498   /* If target is already mentioned in the known condition, return it.  */
1499   if (reg_mentioned_p (target, if_info->cond))
1500     {
1501       *earliest = if_info->cond_earliest;
1502       return if_info->cond;
1503     }
1504
1505   set = pc_set (if_info->jump);
1506   cond = XEXP (SET_SRC (set), 0);
1507   reverse
1508     = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1509       && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (if_info->jump);
1510   if (if_info->then_else_reversed)
1511     reverse = !reverse;
1512
1513   /* If we're looking for a constant, try to make the conditional
1514      have that constant in it.  There are two reasons why it may
1515      not have the constant we want:
1516
1517      1. GCC may have needed to put the constant in a register, because
1518         the target can't compare directly against that constant.  For
1519         this case, we look for a SET immediately before the comparison
1520         that puts a constant in that register.
1521
1522      2. GCC may have canonicalized the conditional, for example
1523         replacing "if x < 4" with "if x <= 3".  We can undo that (or
1524         make equivalent types of changes) to get the constants we need
1525         if they're off by one in the right direction.  */
1526
1527   if (GET_CODE (target) == CONST_INT)
1528     {
1529       enum rtx_code code = GET_CODE (if_info->cond);
1530       rtx op_a = XEXP (if_info->cond, 0);
1531       rtx op_b = XEXP (if_info->cond, 1);
1532       rtx prev_insn;
1533
1534       /* First, look to see if we put a constant in a register.  */
1535       prev_insn = prev_nonnote_insn (if_info->cond_earliest);
1536       if (prev_insn
1537           && INSN_P (prev_insn)
1538           && GET_CODE (PATTERN (prev_insn)) == SET)
1539         {
1540           rtx src = find_reg_equal_equiv_note (prev_insn);
1541           if (!src)
1542             src = SET_SRC (PATTERN (prev_insn));
1543           if (GET_CODE (src) == CONST_INT)
1544             {
1545               if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
1546                 op_a = src;
1547               else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
1548                 op_b = src;
1549
1550               if (GET_CODE (op_a) == CONST_INT)
1551                 {
1552                   rtx tmp = op_a;
1553                   op_a = op_b;
1554                   op_b = tmp;
1555                   code = swap_condition (code);
1556                 }
1557             }
1558         }
1559
1560       /* Now, look to see if we can get the right constant by
1561          adjusting the conditional.  */
1562       if (GET_CODE (op_b) == CONST_INT)
1563         {
1564           HOST_WIDE_INT desired_val = INTVAL (target);
1565           HOST_WIDE_INT actual_val = INTVAL (op_b);
1566
1567           switch (code)
1568             {
1569             case LT:
1570               if (actual_val == desired_val + 1)
1571                 {
1572                   code = LE;
1573                   op_b = GEN_INT (desired_val);
1574                 }
1575               break;
1576             case LE:
1577               if (actual_val == desired_val - 1)
1578                 {
1579                   code = LT;
1580                   op_b = GEN_INT (desired_val);
1581                 }
1582               break;
1583             case GT:
1584               if (actual_val == desired_val - 1)
1585                 {
1586                   code = GE;
1587                   op_b = GEN_INT (desired_val);
1588                 }
1589               break;
1590             case GE:
1591               if (actual_val == desired_val + 1)
1592                 {
1593                   code = GT;
1594                   op_b = GEN_INT (desired_val);
1595                 }
1596               break;
1597             default:
1598               break;
1599             }
1600         }
1601
1602       /* If we made any changes, generate a new conditional that is
1603          equivalent to what we started with, but has the right
1604          constants in it.  */
1605       if (code != GET_CODE (if_info->cond)
1606           || op_a != XEXP (if_info->cond, 0)
1607           || op_b != XEXP (if_info->cond, 1))
1608         {
1609           cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
1610           *earliest = if_info->cond_earliest;
1611           return cond;
1612         }
1613     }
1614
1615   cond = canonicalize_condition (if_info->jump, cond, reverse,
1616                                  earliest, target, false, true);
1617   if (! cond || ! reg_mentioned_p (target, cond))
1618     return NULL;
1619
1620   /* We almost certainly searched back to a different place.
1621      Need to re-verify correct lifetimes.  */
1622
1623   /* X may not be mentioned in the range (cond_earliest, jump].  */
1624   for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
1625     if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
1626       return NULL;
1627
1628   /* A and B may not be modified in the range [cond_earliest, jump).  */
1629   for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
1630     if (INSN_P (insn)
1631         && (modified_in_p (if_info->a, insn)
1632             || modified_in_p (if_info->b, insn)))
1633       return NULL;
1634
1635   return cond;
1636 }
1637
1638 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc.  */
1639
1640 static int
1641 noce_try_minmax (struct noce_if_info *if_info)
1642 {
1643   rtx cond, earliest, target, seq;
1644   enum rtx_code code, op;
1645   int unsignedp;
1646
1647   /* ??? Reject modes with NaNs or signed zeros since we don't know how
1648      they will be resolved with an SMIN/SMAX.  It wouldn't be too hard
1649      to get the target to tell us...  */
1650   if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x))
1651       || HONOR_NANS (GET_MODE (if_info->x)))
1652     return FALSE;
1653
1654   cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
1655   if (!cond)
1656     return FALSE;
1657
1658   /* Verify the condition is of the form we expect, and canonicalize
1659      the comparison code.  */
1660   code = GET_CODE (cond);
1661   if (rtx_equal_p (XEXP (cond, 0), if_info->a))
1662     {
1663       if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
1664         return FALSE;
1665     }
1666   else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
1667     {
1668       if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
1669         return FALSE;
1670       code = swap_condition (code);
1671     }
1672   else
1673     return FALSE;
1674
1675   /* Determine what sort of operation this is.  Note that the code is for
1676      a taken branch, so the code->operation mapping appears backwards.  */
1677   switch (code)
1678     {
1679     case LT:
1680     case LE:
1681     case UNLT:
1682     case UNLE:
1683       op = SMAX;
1684       unsignedp = 0;
1685       break;
1686     case GT:
1687     case GE:
1688     case UNGT:
1689     case UNGE:
1690       op = SMIN;
1691       unsignedp = 0;
1692       break;
1693     case LTU:
1694     case LEU:
1695       op = UMAX;
1696       unsignedp = 1;
1697       break;
1698     case GTU:
1699     case GEU:
1700       op = UMIN;
1701       unsignedp = 1;
1702       break;
1703     default:
1704       return FALSE;
1705     }
1706
1707   start_sequence ();
1708
1709   target = expand_simple_binop (GET_MODE (if_info->x), op,
1710                                 if_info->a, if_info->b,
1711                                 if_info->x, unsignedp, OPTAB_WIDEN);
1712   if (! target)
1713     {
1714       end_sequence ();
1715       return FALSE;
1716     }
1717   if (target != if_info->x)
1718     noce_emit_move_insn (if_info->x, target);
1719
1720   seq = end_ifcvt_sequence (if_info);
1721   if (!seq)
1722     return FALSE;
1723
1724   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1725   if_info->cond = cond;
1726   if_info->cond_earliest = earliest;
1727
1728   return TRUE;
1729 }
1730
1731 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc.  */
1732
1733 static int
1734 noce_try_abs (struct noce_if_info *if_info)
1735 {
1736   rtx cond, earliest, target, seq, a, b, c;
1737   int negate;
1738
1739   /* Recognize A and B as constituting an ABS or NABS.  The canonical
1740      form is a branch around the negation, taken when the object is the
1741      first operand of a comparison against 0 that evaluates to true.  */
1742   a = if_info->a;
1743   b = if_info->b;
1744   if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
1745     negate = 0;
1746   else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
1747     {
1748       c = a; a = b; b = c;
1749       negate = 1;
1750     }
1751   else
1752     return FALSE;
1753
1754   cond = noce_get_alt_condition (if_info, b, &earliest);
1755   if (!cond)
1756     return FALSE;
1757
1758   /* Verify the condition is of the form we expect.  */
1759   if (rtx_equal_p (XEXP (cond, 0), b))
1760     c = XEXP (cond, 1);
1761   else if (rtx_equal_p (XEXP (cond, 1), b))
1762     {
1763       c = XEXP (cond, 0);
1764       negate = !negate;
1765     }
1766   else
1767     return FALSE;
1768
1769   /* Verify that C is zero.  Search one step backward for a
1770      REG_EQUAL note or a simple source if necessary.  */
1771   if (REG_P (c))
1772     {
1773       rtx set, insn = prev_nonnote_insn (earliest);
1774       if (insn
1775           && (set = single_set (insn))
1776           && rtx_equal_p (SET_DEST (set), c))
1777         {
1778           rtx note = find_reg_equal_equiv_note (insn);
1779           if (note)
1780             c = XEXP (note, 0);
1781           else
1782             c = SET_SRC (set);
1783         }
1784       else
1785         return FALSE;
1786     }
1787   if (MEM_P (c)
1788       && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
1789       && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
1790     c = get_pool_constant (XEXP (c, 0));
1791
1792   /* Work around funny ideas get_condition has wrt canonicalization.
1793      Note that these rtx constants are known to be CONST_INT, and
1794      therefore imply integer comparisons.  */
1795   if (c == constm1_rtx && GET_CODE (cond) == GT)
1796     ;
1797   else if (c == const1_rtx && GET_CODE (cond) == LT)
1798     ;
1799   else if (c != CONST0_RTX (GET_MODE (b)))
1800     return FALSE;
1801
1802   /* Determine what sort of operation this is.  */
1803   switch (GET_CODE (cond))
1804     {
1805     case LT:
1806     case LE:
1807     case UNLT:
1808     case UNLE:
1809       negate = !negate;
1810       break;
1811     case GT:
1812     case GE:
1813     case UNGT:
1814     case UNGE:
1815       break;
1816     default:
1817       return FALSE;
1818     }
1819
1820   start_sequence ();
1821
1822   target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
1823
1824   /* ??? It's a quandary whether cmove would be better here, especially
1825      for integers.  Perhaps combine will clean things up.  */
1826   if (target && negate)
1827     target = expand_simple_unop (GET_MODE (target), NEG, target, if_info->x, 0);
1828
1829   if (! target)
1830     {
1831       end_sequence ();
1832       return FALSE;
1833     }
1834
1835   if (target != if_info->x)
1836     noce_emit_move_insn (if_info->x, target);
1837
1838   seq = end_ifcvt_sequence (if_info);
1839   if (!seq)
1840     return FALSE;
1841
1842   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1843   if_info->cond = cond;
1844   if_info->cond_earliest = earliest;
1845
1846   return TRUE;
1847 }
1848
1849 /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;".  */
1850
1851 static int
1852 noce_try_sign_mask (struct noce_if_info *if_info)
1853 {
1854   rtx cond, t, m, c, seq;
1855   enum machine_mode mode;
1856   enum rtx_code code;
1857   bool b_unconditional;
1858
1859   cond = if_info->cond;
1860   code = GET_CODE (cond);
1861   m = XEXP (cond, 0);
1862   c = XEXP (cond, 1);
1863
1864   t = NULL_RTX;
1865   if (if_info->a == const0_rtx)
1866     {
1867       if ((code == LT && c == const0_rtx)
1868           || (code == LE && c == constm1_rtx))
1869         t = if_info->b;
1870     }
1871   else if (if_info->b == const0_rtx)
1872     {
1873       if ((code == GE && c == const0_rtx)
1874           || (code == GT && c == constm1_rtx))
1875         t = if_info->a;
1876     }
1877
1878   if (! t || side_effects_p (t))
1879     return FALSE;
1880
1881   /* We currently don't handle different modes.  */
1882   mode = GET_MODE (t);
1883   if (GET_MODE (m) != mode)
1884     return FALSE;
1885
1886   /* This is only profitable if T is cheap, or T is unconditionally
1887      executed/evaluated in the original insn sequence.  The latter
1888      happens if INSN_B was taken from TEST_BB, or if there was no
1889      INSN_B which can happen for e.g. conditional stores to memory.  */
1890   b_unconditional = (if_info->insn_b == NULL_RTX
1891                      || BLOCK_FOR_INSN (if_info->insn_b) == if_info->test_bb);
1892   if (rtx_cost (t, SET) >= COSTS_N_INSNS (2)
1893       && (!b_unconditional
1894           || t != if_info->b))
1895     return FALSE;
1896
1897   start_sequence ();
1898   /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
1899      "(signed) m >> 31" directly.  This benefits targets with specialized
1900      insns to obtain the signmask, but still uses ashr_optab otherwise.  */
1901   m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
1902   t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
1903         : NULL_RTX;
1904
1905   if (!t)
1906     {
1907       end_sequence ();
1908       return FALSE;
1909     }
1910
1911   noce_emit_move_insn (if_info->x, t);
1912
1913   seq = end_ifcvt_sequence (if_info);
1914   if (!seq)
1915     return FALSE;
1916
1917   emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATOR (if_info->insn_a));
1918   return TRUE;
1919 }
1920
1921
1922 /* Optimize away "if (x & C) x |= C" and similar bit manipulation
1923    transformations.  */
1924
1925 static int
1926 noce_try_bitop (struct noce_if_info *if_info)
1927 {
1928   rtx cond, x, a, result, seq;
1929   enum machine_mode mode;
1930   enum rtx_code code;
1931   int bitnum;
1932
1933   x = if_info->x;
1934   cond = if_info->cond;
1935   code = GET_CODE (cond);
1936
1937   /* Check for no else condition.  */
1938   if (! rtx_equal_p (x, if_info->b))
1939     return FALSE;
1940
1941   /* Check for a suitable condition.  */
1942   if (code != NE && code != EQ)
1943     return FALSE;
1944   if (XEXP (cond, 1) != const0_rtx)
1945     return FALSE;
1946   cond = XEXP (cond, 0);
1947
1948   /* ??? We could also handle AND here.  */
1949   if (GET_CODE (cond) == ZERO_EXTRACT)
1950     {
1951       if (XEXP (cond, 1) != const1_rtx
1952           || GET_CODE (XEXP (cond, 2)) != CONST_INT
1953           || ! rtx_equal_p (x, XEXP (cond, 0)))
1954         return FALSE;
1955       bitnum = INTVAL (XEXP (cond, 2));
1956       mode = GET_MODE (x);
1957       if (BITS_BIG_ENDIAN)
1958         bitnum = GET_MODE_BITSIZE (mode) - 1 - bitnum;
1959       if (bitnum < 0 || bitnum >= HOST_BITS_PER_WIDE_INT)
1960         return FALSE;
1961     }
1962   else
1963     return FALSE;
1964
1965   a = if_info->a;
1966   if (GET_CODE (a) == IOR || GET_CODE (a) == XOR)
1967     {
1968       /* Check for "if (X & C) x = x op C".  */
1969       if (! rtx_equal_p (x, XEXP (a, 0))
1970           || GET_CODE (XEXP (a, 1)) != CONST_INT
1971           || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
1972              != (unsigned HOST_WIDE_INT) 1 << bitnum)
1973         return FALSE;
1974
1975       /* if ((x & C) == 0) x |= C; is transformed to x |= C.   */
1976       /* if ((x & C) != 0) x |= C; is transformed to nothing.  */
1977       if (GET_CODE (a) == IOR)
1978         result = (code == NE) ? a : NULL_RTX;
1979       else if (code == NE)
1980         {
1981           /* if ((x & C) == 0) x ^= C; is transformed to x |= C.   */
1982           result = gen_int_mode ((HOST_WIDE_INT) 1 << bitnum, mode);
1983           result = simplify_gen_binary (IOR, mode, x, result);
1984         }
1985       else
1986         {
1987           /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C.  */
1988           result = gen_int_mode (~((HOST_WIDE_INT) 1 << bitnum), mode);
1989           result = simplify_gen_binary (AND, mode, x, result);
1990         }
1991     }
1992   else if (GET_CODE (a) == AND)
1993     {
1994       /* Check for "if (X & C) x &= ~C".  */
1995       if (! rtx_equal_p (x, XEXP (a, 0))
1996           || GET_CODE (XEXP (a, 1)) != CONST_INT
1997           || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
1998              != (~((HOST_WIDE_INT) 1 << bitnum) & GET_MODE_MASK (mode)))
1999         return FALSE;
2000
2001       /* if ((x & C) == 0) x &= ~C; is transformed to nothing.  */
2002       /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C.  */
2003       result = (code == EQ) ? a : NULL_RTX;
2004     }
2005   else
2006     return FALSE;
2007
2008   if (result)
2009     {
2010       start_sequence ();
2011       noce_emit_move_insn (x, result);
2012       seq = end_ifcvt_sequence (if_info);
2013       if (!seq)
2014         return FALSE;
2015
2016       emit_insn_before_setloc (seq, if_info->jump,
2017                                INSN_LOCATOR (if_info->insn_a));
2018     }
2019   return TRUE;
2020 }
2021
2022
2023 /* Similar to get_condition, only the resulting condition must be
2024    valid at JUMP, instead of at EARLIEST.
2025
2026    If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
2027    THEN block of the caller, and we have to reverse the condition.  */
2028
2029 static rtx
2030 noce_get_condition (rtx jump, rtx *earliest, bool then_else_reversed)
2031 {
2032   rtx cond, set, tmp;
2033   bool reverse;
2034
2035   if (! any_condjump_p (jump))
2036     return NULL_RTX;
2037
2038   set = pc_set (jump);
2039
2040   /* If this branches to JUMP_LABEL when the condition is false,
2041      reverse the condition.  */
2042   reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
2043              && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump));
2044
2045   /* We may have to reverse because the caller's if block is not canonical,
2046      i.e. the THEN block isn't the fallthrough block for the TEST block
2047      (see find_if_header).  */
2048   if (then_else_reversed)
2049     reverse = !reverse;
2050
2051   /* If the condition variable is a register and is MODE_INT, accept it.  */
2052
2053   cond = XEXP (SET_SRC (set), 0);
2054   tmp = XEXP (cond, 0);
2055   if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT)
2056     {
2057       *earliest = jump;
2058
2059       if (reverse)
2060         cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
2061                                GET_MODE (cond), tmp, XEXP (cond, 1));
2062       return cond;
2063     }
2064
2065   /* Otherwise, fall back on canonicalize_condition to do the dirty
2066      work of manipulating MODE_CC values and COMPARE rtx codes.  */
2067   return canonicalize_condition (jump, cond, reverse, earliest,
2068                                  NULL_RTX, false, true);
2069 }
2070
2071 /* Return true if OP is ok for if-then-else processing.  */
2072
2073 static int
2074 noce_operand_ok (rtx op)
2075 {
2076   /* We special-case memories, so handle any of them with
2077      no address side effects.  */
2078   if (MEM_P (op))
2079     return ! side_effects_p (XEXP (op, 0));
2080
2081   if (side_effects_p (op))
2082     return FALSE;
2083
2084   return ! may_trap_p (op);
2085 }
2086
2087 /* Return true if a write into MEM may trap or fault.  */
2088
2089 static bool
2090 noce_mem_write_may_trap_or_fault_p (rtx mem)
2091 {
2092   rtx addr;
2093
2094   if (MEM_READONLY_P (mem))
2095     return true;
2096
2097   if (may_trap_or_fault_p (mem))
2098     return true;
2099
2100   addr = XEXP (mem, 0);
2101
2102   /* Call target hook to avoid the effects of -fpic etc....  */
2103   addr = targetm.delegitimize_address (addr);
2104
2105   while (addr)
2106     switch (GET_CODE (addr))
2107       {
2108       case CONST:
2109       case PRE_DEC:
2110       case PRE_INC:
2111       case POST_DEC:
2112       case POST_INC:
2113       case POST_MODIFY:
2114         addr = XEXP (addr, 0);
2115         break;
2116       case LO_SUM:
2117       case PRE_MODIFY:
2118         addr = XEXP (addr, 1);
2119         break;
2120       case PLUS:
2121         if (GET_CODE (XEXP (addr, 1)) == CONST_INT)
2122           addr = XEXP (addr, 0);
2123         else
2124           return false;
2125         break;
2126       case LABEL_REF:
2127         return true;
2128       case SYMBOL_REF:
2129         if (SYMBOL_REF_DECL (addr)
2130             && decl_readonly_section (SYMBOL_REF_DECL (addr), 0))
2131           return true;
2132         return false;
2133       default:
2134         return false;
2135       }
2136
2137   return false;
2138 }
2139
2140 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2141    it without using conditional execution.  Return TRUE if we were successful
2142    at converting the block.  */
2143
2144 static int
2145 noce_process_if_block (struct noce_if_info *if_info)
2146 {
2147   basic_block test_bb = if_info->test_bb;       /* test block */
2148   basic_block then_bb = if_info->then_bb;       /* THEN */
2149   basic_block else_bb = if_info->else_bb;       /* ELSE or NULL */
2150   basic_block join_bb = if_info->join_bb;       /* JOIN */
2151   rtx jump = if_info->jump;
2152   rtx cond = if_info->cond;
2153   rtx insn_a, insn_b;
2154   rtx set_a, set_b;
2155   rtx orig_x, x, a, b;
2156
2157   /* We're looking for patterns of the form
2158
2159      (1) if (...) x = a; else x = b;
2160      (2) x = b; if (...) x = a;
2161      (3) if (...) x = a;   // as if with an initial x = x.
2162
2163      The later patterns require jumps to be more expensive.
2164
2165      ??? For future expansion, look for multiple X in such patterns.  */
2166
2167   /* Look for one of the potential sets.  */
2168   insn_a = first_active_insn (then_bb);
2169   if (! insn_a
2170       || insn_a != last_active_insn (then_bb, FALSE)
2171       || (set_a = single_set (insn_a)) == NULL_RTX)
2172     return FALSE;
2173
2174   x = SET_DEST (set_a);
2175   a = SET_SRC (set_a);
2176
2177   /* Look for the other potential set.  Make sure we've got equivalent
2178      destinations.  */
2179   /* ??? This is overconservative.  Storing to two different mems is
2180      as easy as conditionally computing the address.  Storing to a
2181      single mem merely requires a scratch memory to use as one of the
2182      destination addresses; often the memory immediately below the
2183      stack pointer is available for this.  */
2184   set_b = NULL_RTX;
2185   if (else_bb)
2186     {
2187       insn_b = first_active_insn (else_bb);
2188       if (! insn_b
2189           || insn_b != last_active_insn (else_bb, FALSE)
2190           || (set_b = single_set (insn_b)) == NULL_RTX
2191           || ! rtx_equal_p (x, SET_DEST (set_b)))
2192         return FALSE;
2193     }
2194   else
2195     {
2196       insn_b = prev_nonnote_insn (if_info->cond_earliest);
2197       /* We're going to be moving the evaluation of B down from above
2198          COND_EARLIEST to JUMP.  Make sure the relevant data is still
2199          intact.  */
2200       if (! insn_b
2201           || !NONJUMP_INSN_P (insn_b)
2202           || (set_b = single_set (insn_b)) == NULL_RTX
2203           || ! rtx_equal_p (x, SET_DEST (set_b))
2204           || reg_overlap_mentioned_p (x, SET_SRC (set_b))
2205           || modified_between_p (SET_SRC (set_b),
2206                                  PREV_INSN (if_info->cond_earliest), jump)
2207           /* Likewise with X.  In particular this can happen when
2208              noce_get_condition looks farther back in the instruction
2209              stream than one might expect.  */
2210           || reg_overlap_mentioned_p (x, cond)
2211           || reg_overlap_mentioned_p (x, a)
2212           || modified_between_p (x, PREV_INSN (if_info->cond_earliest), jump))
2213         insn_b = set_b = NULL_RTX;
2214     }
2215
2216   /* If x has side effects then only the if-then-else form is safe to
2217      convert.  But even in that case we would need to restore any notes
2218      (such as REG_INC) at then end.  That can be tricky if
2219      noce_emit_move_insn expands to more than one insn, so disable the
2220      optimization entirely for now if there are side effects.  */
2221   if (side_effects_p (x))
2222     return FALSE;
2223
2224   b = (set_b ? SET_SRC (set_b) : x);
2225
2226   /* Only operate on register destinations, and even then avoid extending
2227      the lifetime of hard registers on small register class machines.  */
2228   orig_x = x;
2229   if (!REG_P (x)
2230       || (SMALL_REGISTER_CLASSES
2231           && REGNO (x) < FIRST_PSEUDO_REGISTER))
2232     {
2233       if (GET_MODE (x) == BLKmode)
2234         return FALSE;
2235
2236       if (GET_MODE (x) == ZERO_EXTRACT
2237           && (GET_CODE (XEXP (x, 1)) != CONST_INT
2238               || GET_CODE (XEXP (x, 2)) != CONST_INT))
2239         return FALSE;
2240
2241       x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
2242                                  ? XEXP (x, 0) : x));
2243     }
2244
2245   /* Don't operate on sources that may trap or are volatile.  */
2246   if (! noce_operand_ok (a) || ! noce_operand_ok (b))
2247     return FALSE;
2248
2249   /* Set up the info block for our subroutines.  */
2250   if_info->insn_a = insn_a;
2251   if_info->insn_b = insn_b;
2252   if_info->x = x;
2253   if_info->a = a;
2254   if_info->b = b;
2255
2256   /* Try optimizations in some approximation of a useful order.  */
2257   /* ??? Should first look to see if X is live incoming at all.  If it
2258      isn't, we don't need anything but an unconditional set.  */
2259
2260   /* Look and see if A and B are really the same.  Avoid creating silly
2261      cmove constructs that no one will fix up later.  */
2262   if (rtx_equal_p (a, b))
2263     {
2264       /* If we have an INSN_B, we don't have to create any new rtl.  Just
2265          move the instruction that we already have.  If we don't have an
2266          INSN_B, that means that A == X, and we've got a noop move.  In
2267          that case don't do anything and let the code below delete INSN_A.  */
2268       if (insn_b && else_bb)
2269         {
2270           rtx note;
2271
2272           if (else_bb && insn_b == BB_END (else_bb))
2273             BB_END (else_bb) = PREV_INSN (insn_b);
2274           reorder_insns (insn_b, insn_b, PREV_INSN (jump));
2275
2276           /* If there was a REG_EQUAL note, delete it since it may have been
2277              true due to this insn being after a jump.  */
2278           if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
2279             remove_note (insn_b, note);
2280
2281           insn_b = NULL_RTX;
2282         }
2283       /* If we have "x = b; if (...) x = a;", and x has side-effects, then
2284          x must be executed twice.  */
2285       else if (insn_b && side_effects_p (orig_x))
2286         return FALSE;
2287
2288       x = orig_x;
2289       goto success;
2290     }
2291
2292   /* Disallow the "if (...) x = a;" form (with an implicit "else x = x;")
2293      for optimizations if writing to x may trap or fault, i.e. it's a memory
2294      other than a static var or a stack slot, is misaligned on strict
2295      aligned machines or is read-only.
2296      If x is a read-only memory, then the program is valid only if we
2297      avoid the store into it.  If there are stores on both the THEN and
2298      ELSE arms, then we can go ahead with the conversion; either the
2299      program is broken, or the condition is always false such that the
2300      other memory is selected.  */
2301   if (!set_b && MEM_P (orig_x) && noce_mem_write_may_trap_or_fault_p (orig_x))
2302     return FALSE;
2303
2304   if (noce_try_move (if_info))
2305     goto success;
2306   if (noce_try_store_flag (if_info))
2307     goto success;
2308   if (noce_try_bitop (if_info))
2309     goto success;
2310   if (noce_try_minmax (if_info))
2311     goto success;
2312   if (noce_try_abs (if_info))
2313     goto success;
2314   if (HAVE_conditional_move
2315       && noce_try_cmove (if_info))
2316     goto success;
2317   if (! HAVE_conditional_execution)
2318     {
2319       if (noce_try_store_flag_constants (if_info))
2320         goto success;
2321       if (noce_try_addcc (if_info))
2322         goto success;
2323       if (noce_try_store_flag_mask (if_info))
2324         goto success;
2325       if (HAVE_conditional_move
2326           && noce_try_cmove_arith (if_info))
2327         goto success;
2328       if (noce_try_sign_mask (if_info))
2329         goto success;
2330     }
2331
2332   return FALSE;
2333
2334  success:
2335
2336   /* If we used a temporary, fix it up now.  */
2337   if (orig_x != x)
2338     {
2339       rtx seq;
2340
2341       start_sequence ();
2342       noce_emit_move_insn (orig_x, x);
2343       seq = get_insns ();
2344       set_used_flags (orig_x);
2345       unshare_all_rtl_in_chain (seq);
2346       end_sequence ();
2347
2348       emit_insn_before_setloc (seq, BB_END (test_bb), INSN_LOCATOR (insn_a));
2349     }
2350
2351   /* The original THEN and ELSE blocks may now be removed.  The test block
2352      must now jump to the join block.  If the test block and the join block
2353      can be merged, do so.  */
2354   if (else_bb)
2355     {
2356       delete_basic_block (else_bb);
2357       num_true_changes++;
2358     }
2359   else
2360     remove_edge (find_edge (test_bb, join_bb));
2361
2362   remove_edge (find_edge (then_bb, join_bb));
2363   redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
2364   delete_basic_block (then_bb);
2365   num_true_changes++;
2366
2367   if (can_merge_blocks_p (test_bb, join_bb))
2368     {
2369       merge_blocks (test_bb, join_bb);
2370       num_true_changes++;
2371     }
2372
2373   num_updated_if_blocks++;
2374   return TRUE;
2375 }
2376
2377 /* Check whether a block is suitable for conditional move conversion.
2378    Every insn must be a simple set of a register to a constant or a
2379    register.  For each assignment, store the value in the array VALS,
2380    indexed by register number, then store the register number in
2381    REGS.  COND is the condition we will test.  */
2382
2383 static int
2384 check_cond_move_block (basic_block bb, rtx *vals, VEC (int, heap) *regs, rtx cond)
2385 {
2386   rtx insn;
2387
2388    /* We can only handle simple jumps at the end of the basic block.
2389       It is almost impossible to update the CFG otherwise.  */
2390   insn = BB_END (bb);
2391   if (JUMP_P (insn) && !onlyjump_p (insn))
2392     return FALSE;
2393
2394   FOR_BB_INSNS (bb, insn)
2395     {
2396       rtx set, dest, src;
2397
2398       if (!INSN_P (insn) || JUMP_P (insn))
2399         continue;
2400       set = single_set (insn);
2401       if (!set)
2402         return FALSE;
2403
2404       dest = SET_DEST (set);
2405       src = SET_SRC (set);
2406       if (!REG_P (dest)
2407           || (SMALL_REGISTER_CLASSES && HARD_REGISTER_P (dest)))
2408         return FALSE;
2409
2410       if (!CONSTANT_P (src) && !register_operand (src, VOIDmode))
2411         return FALSE;
2412
2413       if (side_effects_p (src) || side_effects_p (dest))
2414         return FALSE;
2415
2416       if (may_trap_p (src) || may_trap_p (dest))
2417         return FALSE;
2418
2419       /* Don't try to handle this if the source register was
2420          modified earlier in the block.  */
2421       if ((REG_P (src)
2422            && vals[REGNO (src)] != NULL)
2423           || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
2424               && vals[REGNO (SUBREG_REG (src))] != NULL))
2425         return FALSE;
2426
2427       /* Don't try to handle this if the destination register was
2428          modified earlier in the block.  */
2429       if (vals[REGNO (dest)] != NULL)
2430         return FALSE;
2431
2432       /* Don't try to handle this if the condition uses the
2433          destination register.  */
2434       if (reg_overlap_mentioned_p (dest, cond))
2435         return FALSE;
2436
2437       /* Don't try to handle this if the source register is modified
2438          later in the block.  */
2439       if (!CONSTANT_P (src)
2440           && modified_between_p (src, insn, NEXT_INSN (BB_END (bb))))
2441         return FALSE;
2442
2443       vals[REGNO (dest)] = src;
2444
2445       VEC_safe_push (int, heap, regs, REGNO (dest));
2446     }
2447
2448   return TRUE;
2449 }
2450
2451 /* Given a basic block BB suitable for conditional move conversion,
2452    a condition COND, and arrays THEN_VALS and ELSE_VALS containing the
2453    register values depending on COND, emit the insns in the block as
2454    conditional moves.  If ELSE_BLOCK is true, THEN_BB was already
2455    processed.  The caller has started a sequence for the conversion.
2456    Return true if successful, false if something goes wrong.  */
2457
2458 static bool
2459 cond_move_convert_if_block (struct noce_if_info *if_infop,
2460                             basic_block bb, rtx cond,
2461                             rtx *then_vals, rtx *else_vals,
2462                             bool else_block_p)
2463 {
2464   enum rtx_code code;
2465   rtx insn, cond_arg0, cond_arg1;
2466
2467   code = GET_CODE (cond);
2468   cond_arg0 = XEXP (cond, 0);
2469   cond_arg1 = XEXP (cond, 1);
2470
2471   FOR_BB_INSNS (bb, insn)
2472     {
2473       rtx set, target, dest, t, e;
2474       unsigned int regno;
2475
2476       if (!INSN_P (insn) || JUMP_P (insn))
2477         continue;
2478       set = single_set (insn);
2479       gcc_assert (set && REG_P (SET_DEST (set)));
2480
2481       dest = SET_DEST (set);
2482       regno = REGNO (dest);
2483
2484       t = then_vals[regno];
2485       e = else_vals[regno];
2486
2487       if (else_block_p)
2488         {
2489           /* If this register was set in the then block, we already
2490              handled this case there.  */
2491           if (t)
2492             continue;
2493           t = dest;
2494           gcc_assert (e);
2495         }
2496       else
2497         {
2498           gcc_assert (t);
2499           if (!e)
2500             e = dest;
2501         }
2502
2503       target = noce_emit_cmove (if_infop, dest, code, cond_arg0, cond_arg1,
2504                                 t, e);
2505       if (!target)
2506         return false;
2507
2508       if (target != dest)
2509         noce_emit_move_insn (dest, target);
2510     }
2511
2512   return true;
2513 }
2514
2515 /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
2516    it using only conditional moves.  Return TRUE if we were successful at
2517    converting the block.  */
2518
2519 static int
2520 cond_move_process_if_block (struct noce_if_info *if_info)
2521 {
2522   basic_block test_bb = if_info->test_bb;
2523   basic_block then_bb = if_info->then_bb;
2524   basic_block else_bb = if_info->else_bb;
2525   basic_block join_bb = if_info->join_bb;
2526   rtx jump = if_info->jump;
2527   rtx cond = if_info->cond;
2528   rtx seq, loc_insn;
2529   int max_reg, size, c, reg;
2530   rtx *then_vals;
2531   rtx *else_vals;
2532   VEC (int, heap) *then_regs = NULL;
2533   VEC (int, heap) *else_regs = NULL;
2534   unsigned int i;
2535
2536   /* Build a mapping for each block to the value used for each
2537      register.  */
2538   max_reg = max_reg_num ();
2539   size = (max_reg + 1) * sizeof (rtx);
2540   then_vals = (rtx *) alloca (size);
2541   else_vals = (rtx *) alloca (size);
2542   memset (then_vals, 0, size);
2543   memset (else_vals, 0, size);
2544
2545   /* Make sure the blocks are suitable.  */
2546   if (!check_cond_move_block (then_bb, then_vals, then_regs, cond)
2547       || (else_bb && !check_cond_move_block (else_bb, else_vals, else_regs, cond)))
2548     return FALSE;
2549
2550   /* Make sure the blocks can be used together.  If the same register
2551      is set in both blocks, and is not set to a constant in both
2552      cases, then both blocks must set it to the same register.  We
2553      have already verified that if it is set to a register, that the
2554      source register does not change after the assignment.  Also count
2555      the number of registers set in only one of the blocks.  */
2556   c = 0;
2557   for (i = 0; VEC_iterate (int, then_regs, i, reg); i++)
2558     {
2559       if (!then_vals[reg] && !else_vals[reg])
2560         continue;
2561
2562       if (!else_vals[reg])
2563         ++c;
2564       else
2565         {
2566           if (!CONSTANT_P (then_vals[reg])
2567               && !CONSTANT_P (else_vals[reg])
2568               && !rtx_equal_p (then_vals[reg], else_vals[reg]))
2569             return FALSE;
2570         }
2571     }
2572
2573   /* Finish off c for MAX_CONDITIONAL_EXECUTE.  */
2574   for (i = 0; VEC_iterate (int, else_regs, i, reg); ++i)
2575     if (!then_vals[reg])
2576       ++c;
2577
2578   /* Make sure it is reasonable to convert this block.  What matters
2579      is the number of assignments currently made in only one of the
2580      branches, since if we convert we are going to always execute
2581      them.  */
2582   if (c > MAX_CONDITIONAL_EXECUTE)
2583     return FALSE;
2584
2585   /* Try to emit the conditional moves.  First do the then block,
2586      then do anything left in the else blocks.  */
2587   start_sequence ();
2588   if (!cond_move_convert_if_block (if_info, then_bb, cond,
2589                                    then_vals, else_vals, false)
2590       || (else_bb
2591           && !cond_move_convert_if_block (if_info, else_bb, cond,
2592                                           then_vals, else_vals, true)))
2593     {
2594       end_sequence ();
2595       return FALSE;
2596     }
2597   seq = end_ifcvt_sequence (if_info);
2598   if (!seq)
2599     return FALSE;
2600
2601   loc_insn = first_active_insn (then_bb);
2602   if (!loc_insn)
2603     {
2604       loc_insn = first_active_insn (else_bb);
2605       gcc_assert (loc_insn);
2606     }
2607   emit_insn_before_setloc (seq, jump, INSN_LOCATOR (loc_insn));
2608
2609   if (else_bb)
2610     {
2611       delete_basic_block (else_bb);
2612       num_true_changes++;
2613     }
2614   else
2615     remove_edge (find_edge (test_bb, join_bb));
2616
2617   remove_edge (find_edge (then_bb, join_bb));
2618   redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
2619   delete_basic_block (then_bb);
2620   num_true_changes++;
2621
2622   if (can_merge_blocks_p (test_bb, join_bb))
2623     {
2624       merge_blocks (test_bb, join_bb);
2625       num_true_changes++;
2626     }
2627
2628   num_updated_if_blocks++;
2629
2630   VEC_free (int, heap, then_regs);
2631   VEC_free (int, heap, else_regs);
2632
2633   return TRUE;
2634 }
2635
2636 \f
2637 /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
2638    IF-THEN-ELSE-JOIN block.
2639
2640    If so, we'll try to convert the insns to not require the branch,
2641    using only transformations that do not require conditional execution.
2642
2643    Return TRUE if we were successful at converting the block.  */
2644
2645 static int
2646 noce_find_if_block (basic_block test_bb,
2647                     edge then_edge, edge else_edge,
2648                     int pass)
2649 {
2650   basic_block then_bb, else_bb, join_bb;
2651   bool then_else_reversed = false;
2652   rtx jump, cond;
2653   struct noce_if_info if_info;
2654
2655   /* We only ever should get here before reload.  */
2656   gcc_assert (!reload_completed);
2657
2658   /* Recognize an IF-THEN-ELSE-JOIN block.  */
2659   if (single_pred_p (then_edge->dest)
2660       && single_succ_p (then_edge->dest)
2661       && single_pred_p (else_edge->dest)
2662       && single_succ_p (else_edge->dest)
2663       && single_succ (then_edge->dest) == single_succ (else_edge->dest))
2664     {
2665       then_bb = then_edge->dest;
2666       else_bb = else_edge->dest;
2667       join_bb = single_succ (then_bb);
2668     }
2669   /* Recognize an IF-THEN-JOIN block.  */
2670   else if (single_pred_p (then_edge->dest)
2671            && single_succ_p (then_edge->dest)
2672            && single_succ (then_edge->dest) == else_edge->dest)
2673     {
2674       then_bb = then_edge->dest;
2675       else_bb = NULL_BLOCK;
2676       join_bb = else_edge->dest;
2677     }
2678   /* Recognize an IF-ELSE-JOIN block.  We can have those because the order
2679      of basic blocks in cfglayout mode does not matter, so the fallthrough
2680      edge can go to any basic block (and not just to bb->next_bb, like in
2681      cfgrtl mode).  */
2682   else if (single_pred_p (else_edge->dest)
2683            && single_succ_p (else_edge->dest)
2684            && single_succ (else_edge->dest) == then_edge->dest)
2685     {
2686       /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
2687          To make this work, we have to invert the THEN and ELSE blocks
2688          and reverse the jump condition.  */
2689       then_bb = else_edge->dest;
2690       else_bb = NULL_BLOCK;
2691       join_bb = single_succ (then_bb);
2692       then_else_reversed = true;
2693     }
2694   else
2695     /* Not a form we can handle.  */
2696     return FALSE;
2697
2698   /* The edges of the THEN and ELSE blocks cannot have complex edges.  */
2699   if (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
2700     return FALSE;
2701   if (else_bb
2702       && single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
2703     return FALSE;
2704
2705   num_possible_if_blocks++;
2706
2707   if (dump_file)
2708     {
2709       fprintf (dump_file,
2710                "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
2711                (else_bb) ? "-ELSE" : "",
2712                pass, test_bb->index, then_bb->index);
2713
2714       if (else_bb)
2715         fprintf (dump_file, ", else %d", else_bb->index);
2716
2717       fprintf (dump_file, ", join %d\n", join_bb->index);
2718     }
2719
2720   /* If the conditional jump is more than just a conditional
2721      jump, then we can not do if-conversion on this block.  */
2722   jump = BB_END (test_bb);
2723   if (! onlyjump_p (jump))
2724     return FALSE;
2725
2726   /* If this is not a standard conditional jump, we can't parse it.  */
2727   cond = noce_get_condition (jump,
2728                              &if_info.cond_earliest,
2729                              then_else_reversed);
2730   if (!cond)
2731     return FALSE;
2732
2733   /* We must be comparing objects whose modes imply the size.  */
2734   if (GET_MODE (XEXP (cond, 0)) == BLKmode)
2735     return FALSE;
2736
2737   /* Initialize an IF_INFO struct to pass around.  */
2738   memset (&if_info, 0, sizeof if_info);
2739   if_info.test_bb = test_bb;
2740   if_info.then_bb = then_bb;
2741   if_info.else_bb = else_bb;
2742   if_info.join_bb = join_bb;
2743   if_info.cond = cond;
2744   if_info.jump = jump;
2745   if_info.then_else_reversed = then_else_reversed;
2746
2747   /* Do the real work.  */
2748
2749   if (noce_process_if_block (&if_info))
2750     return TRUE;
2751
2752   if (HAVE_conditional_move
2753       && cond_move_process_if_block (&if_info))
2754     return TRUE;
2755
2756   return FALSE;
2757 }
2758 \f
2759
2760 /* Merge the blocks and mark for local life update.  */
2761
2762 static void
2763 merge_if_block (struct ce_if_block * ce_info)
2764 {
2765   basic_block test_bb = ce_info->test_bb;       /* last test block */
2766   basic_block then_bb = ce_info->then_bb;       /* THEN */
2767   basic_block else_bb = ce_info->else_bb;       /* ELSE or NULL */
2768   basic_block join_bb = ce_info->join_bb;       /* join block */
2769   basic_block combo_bb;
2770
2771   /* All block merging is done into the lower block numbers.  */
2772
2773   combo_bb = test_bb;
2774   df_set_bb_dirty (test_bb);
2775
2776   /* Merge any basic blocks to handle && and || subtests.  Each of
2777      the blocks are on the fallthru path from the predecessor block.  */
2778   if (ce_info->num_multiple_test_blocks > 0)
2779     {
2780       basic_block bb = test_bb;
2781       basic_block last_test_bb = ce_info->last_test_bb;
2782       basic_block fallthru = block_fallthru (bb);
2783
2784       do
2785         {
2786           bb = fallthru;
2787           fallthru = block_fallthru (bb);
2788           merge_blocks (combo_bb, bb);
2789           num_true_changes++;
2790         }
2791       while (bb != last_test_bb);
2792     }
2793
2794   /* Merge TEST block into THEN block.  Normally the THEN block won't have a
2795      label, but it might if there were || tests.  That label's count should be
2796      zero, and it normally should be removed.  */
2797
2798   if (then_bb)
2799     {
2800       merge_blocks (combo_bb, then_bb);
2801       num_true_changes++;
2802     }
2803
2804   /* The ELSE block, if it existed, had a label.  That label count
2805      will almost always be zero, but odd things can happen when labels
2806      get their addresses taken.  */
2807   if (else_bb)
2808     {
2809       merge_blocks (combo_bb, else_bb);
2810       num_true_changes++;
2811     }
2812
2813   /* If there was no join block reported, that means it was not adjacent
2814      to the others, and so we cannot merge them.  */
2815
2816   if (! join_bb)
2817     {
2818       rtx last = BB_END (combo_bb);
2819
2820       /* The outgoing edge for the current COMBO block should already
2821          be correct.  Verify this.  */
2822       if (EDGE_COUNT (combo_bb->succs) == 0)
2823         gcc_assert (find_reg_note (last, REG_NORETURN, NULL)
2824                     || (NONJUMP_INSN_P (last)
2825                         && GET_CODE (PATTERN (last)) == TRAP_IF
2826                         && (TRAP_CONDITION (PATTERN (last))
2827                             == const_true_rtx)));
2828
2829       else
2830       /* There should still be something at the end of the THEN or ELSE
2831          blocks taking us to our final destination.  */
2832         gcc_assert (JUMP_P (last)
2833                     || (EDGE_SUCC (combo_bb, 0)->dest == EXIT_BLOCK_PTR
2834                         && CALL_P (last)
2835                         && SIBLING_CALL_P (last))
2836                     || ((EDGE_SUCC (combo_bb, 0)->flags & EDGE_EH)
2837                         && can_throw_internal (last)));
2838     }
2839
2840   /* The JOIN block may have had quite a number of other predecessors too.
2841      Since we've already merged the TEST, THEN and ELSE blocks, we should
2842      have only one remaining edge from our if-then-else diamond.  If there
2843      is more than one remaining edge, it must come from elsewhere.  There
2844      may be zero incoming edges if the THEN block didn't actually join
2845      back up (as with a call to a non-return function).  */
2846   else if (EDGE_COUNT (join_bb->preds) < 2
2847            && join_bb != EXIT_BLOCK_PTR)
2848     {
2849       /* We can merge the JOIN cleanly and update the dataflow try
2850          again on this pass.*/
2851       merge_blocks (combo_bb, join_bb);
2852       num_true_changes++;
2853     }
2854   else
2855     {
2856       /* We cannot merge the JOIN.  */
2857
2858       /* The outgoing edge for the current COMBO block should already
2859          be correct.  Verify this.  */
2860       gcc_assert (single_succ_p (combo_bb)
2861                   && single_succ (combo_bb) == join_bb);
2862
2863       /* Remove the jump and cruft from the end of the COMBO block.  */
2864       if (join_bb != EXIT_BLOCK_PTR)
2865         tidy_fallthru_edge (single_succ_edge (combo_bb));
2866     }
2867
2868   num_updated_if_blocks++;
2869 }
2870 \f
2871 /* Find a block ending in a simple IF condition and try to transform it
2872    in some way.  When converting a multi-block condition, put the new code
2873    in the first such block and delete the rest.  Return a pointer to this
2874    first block if some transformation was done.  Return NULL otherwise.  */
2875
2876 static basic_block
2877 find_if_header (basic_block test_bb, int pass)
2878 {
2879   ce_if_block_t ce_info;
2880   edge then_edge;
2881   edge else_edge;
2882
2883   /* The kind of block we're looking for has exactly two successors.  */
2884   if (EDGE_COUNT (test_bb->succs) != 2)
2885     return NULL;
2886
2887   then_edge = EDGE_SUCC (test_bb, 0);
2888   else_edge = EDGE_SUCC (test_bb, 1);
2889
2890   if (df_get_bb_dirty (then_edge->dest))
2891     return NULL;
2892   if (df_get_bb_dirty (else_edge->dest))
2893     return NULL;
2894
2895   /* Neither edge should be abnormal.  */
2896   if ((then_edge->flags & EDGE_COMPLEX)
2897       || (else_edge->flags & EDGE_COMPLEX))
2898     return NULL;
2899
2900   /* Nor exit the loop.  */
2901   if ((then_edge->flags & EDGE_LOOP_EXIT)
2902       || (else_edge->flags & EDGE_LOOP_EXIT))
2903     return NULL;
2904
2905   /* The THEN edge is canonically the one that falls through.  */
2906   if (then_edge->flags & EDGE_FALLTHRU)
2907     ;
2908   else if (else_edge->flags & EDGE_FALLTHRU)
2909     {
2910       edge e = else_edge;
2911       else_edge = then_edge;
2912       then_edge = e;
2913     }
2914   else
2915     /* Otherwise this must be a multiway branch of some sort.  */
2916     return NULL;
2917
2918   memset (&ce_info, '\0', sizeof (ce_info));
2919   ce_info.test_bb = test_bb;
2920   ce_info.then_bb = then_edge->dest;
2921   ce_info.else_bb = else_edge->dest;
2922   ce_info.pass = pass;
2923
2924 #ifdef IFCVT_INIT_EXTRA_FIELDS
2925   IFCVT_INIT_EXTRA_FIELDS (&ce_info);
2926 #endif
2927
2928   if (! reload_completed
2929       && noce_find_if_block (test_bb, then_edge, else_edge, pass))
2930     goto success;
2931
2932   if (HAVE_conditional_execution && reload_completed
2933       && cond_exec_find_if_block (&ce_info))
2934     goto success;
2935
2936   if (HAVE_trap && HAVE_conditional_trap
2937       && find_cond_trap (test_bb, then_edge, else_edge))
2938     goto success;
2939
2940   if (dom_info_state (CDI_POST_DOMINATORS) >= DOM_NO_FAST_QUERY
2941       && (! HAVE_conditional_execution || reload_completed))
2942     {
2943       if (find_if_case_1 (test_bb, then_edge, else_edge))
2944         goto success;
2945       if (find_if_case_2 (test_bb, then_edge, else_edge))
2946         goto success;
2947     }
2948
2949   return NULL;
2950
2951  success:
2952   if (dump_file)
2953     fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
2954   /* Set this so we continue looking.  */
2955   cond_exec_changed_p = TRUE;
2956   return ce_info.test_bb;
2957 }
2958
2959 /* Return true if a block has two edges, one of which falls through to the next
2960    block, and the other jumps to a specific block, so that we can tell if the
2961    block is part of an && test or an || test.  Returns either -1 or the number
2962    of non-note, non-jump, non-USE/CLOBBER insns in the block.  */
2963
2964 static int
2965 block_jumps_and_fallthru_p (basic_block cur_bb, basic_block target_bb)
2966 {
2967   edge cur_edge;
2968   int fallthru_p = FALSE;
2969   int jump_p = FALSE;
2970   rtx insn;
2971   rtx end;
2972   int n_insns = 0;
2973   edge_iterator ei;
2974
2975   if (!cur_bb || !target_bb)
2976     return -1;
2977
2978   /* If no edges, obviously it doesn't jump or fallthru.  */
2979   if (EDGE_COUNT (cur_bb->succs) == 0)
2980     return FALSE;
2981
2982   FOR_EACH_EDGE (cur_edge, ei, cur_bb->succs)
2983     {
2984       if (cur_edge->flags & EDGE_COMPLEX)
2985         /* Anything complex isn't what we want.  */
2986         return -1;
2987
2988       else if (cur_edge->flags & EDGE_FALLTHRU)
2989         fallthru_p = TRUE;
2990
2991       else if (cur_edge->dest == target_bb)
2992         jump_p = TRUE;
2993
2994       else
2995         return -1;
2996     }
2997
2998   if ((jump_p & fallthru_p) == 0)
2999     return -1;
3000
3001   /* Don't allow calls in the block, since this is used to group && and ||
3002      together for conditional execution support.  ??? we should support
3003      conditional execution support across calls for IA-64 some day, but
3004      for now it makes the code simpler.  */
3005   end = BB_END (cur_bb);
3006   insn = BB_HEAD (cur_bb);
3007
3008   while (insn != NULL_RTX)
3009     {
3010       if (CALL_P (insn))
3011         return -1;
3012
3013       if (INSN_P (insn)
3014           && !JUMP_P (insn)
3015           && GET_CODE (PATTERN (insn)) != USE
3016           && GET_CODE (PATTERN (insn)) != CLOBBER)
3017         n_insns++;
3018
3019       if (insn == end)
3020         break;
3021
3022       insn = NEXT_INSN (insn);
3023     }
3024
3025   return n_insns;
3026 }
3027
3028 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
3029    block.  If so, we'll try to convert the insns to not require the branch.
3030    Return TRUE if we were successful at converting the block.  */
3031
3032 static int
3033 cond_exec_find_if_block (struct ce_if_block * ce_info)
3034 {
3035   basic_block test_bb = ce_info->test_bb;
3036   basic_block then_bb = ce_info->then_bb;
3037   basic_block else_bb = ce_info->else_bb;
3038   basic_block join_bb = NULL_BLOCK;
3039   edge cur_edge;
3040   basic_block next;
3041   edge_iterator ei;
3042
3043   ce_info->last_test_bb = test_bb;
3044
3045   /* We only ever should get here after reload,
3046      and only if we have conditional execution.  */
3047   gcc_assert (HAVE_conditional_execution && reload_completed);
3048
3049   /* Discover if any fall through predecessors of the current test basic block
3050      were && tests (which jump to the else block) or || tests (which jump to
3051      the then block).  */
3052   if (single_pred_p (test_bb)
3053       && single_pred_edge (test_bb)->flags == EDGE_FALLTHRU)
3054     {
3055       basic_block bb = single_pred (test_bb);
3056       basic_block target_bb;
3057       int max_insns = MAX_CONDITIONAL_EXECUTE;
3058       int n_insns;
3059
3060       /* Determine if the preceding block is an && or || block.  */
3061       if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0)
3062         {
3063           ce_info->and_and_p = TRUE;
3064           target_bb = else_bb;
3065         }
3066       else if ((n_insns = block_jumps_and_fallthru_p (bb, then_bb)) >= 0)
3067         {
3068           ce_info->and_and_p = FALSE;
3069           target_bb = then_bb;
3070         }
3071       else
3072         target_bb = NULL_BLOCK;
3073
3074       if (target_bb && n_insns <= max_insns)
3075         {
3076           int total_insns = 0;
3077           int blocks = 0;
3078
3079           ce_info->last_test_bb = test_bb;
3080
3081           /* Found at least one && or || block, look for more.  */
3082           do
3083             {
3084               ce_info->test_bb = test_bb = bb;
3085               total_insns += n_insns;
3086               blocks++;
3087
3088               if (!single_pred_p (bb))
3089                 break;
3090
3091               bb = single_pred (bb);
3092               n_insns = block_jumps_and_fallthru_p (bb, target_bb);
3093             }
3094           while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
3095
3096           ce_info->num_multiple_test_blocks = blocks;
3097           ce_info->num_multiple_test_insns = total_insns;
3098
3099           if (ce_info->and_and_p)
3100             ce_info->num_and_and_blocks = blocks;
3101           else
3102             ce_info->num_or_or_blocks = blocks;
3103         }
3104     }
3105
3106   /* The THEN block of an IF-THEN combo must have exactly one predecessor,
3107      other than any || blocks which jump to the THEN block.  */
3108   if ((EDGE_COUNT (then_bb->preds) - ce_info->num_or_or_blocks) != 1)
3109     return FALSE;
3110
3111   /* The edges of the THEN and ELSE blocks cannot have complex edges.  */
3112   FOR_EACH_EDGE (cur_edge, ei, then_bb->preds)
3113     {
3114       if (cur_edge->flags & EDGE_COMPLEX)
3115         return FALSE;
3116     }
3117
3118   FOR_EACH_EDGE (cur_edge, ei, else_bb->preds)
3119     {
3120       if (cur_edge->flags & EDGE_COMPLEX)
3121         return FALSE;
3122     }
3123
3124   /* The THEN block of an IF-THEN combo must have zero or one successors.  */
3125   if (EDGE_COUNT (then_bb->succs) > 0
3126       && (!single_succ_p (then_bb)
3127           || (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
3128           || (epilogue_completed && tablejump_p (BB_END (then_bb), NULL, NULL))))
3129     return FALSE;
3130
3131   /* If the THEN block has no successors, conditional execution can still
3132      make a conditional call.  Don't do this unless the ELSE block has
3133      only one incoming edge -- the CFG manipulation is too ugly otherwise.
3134      Check for the last insn of the THEN block being an indirect jump, which
3135      is listed as not having any successors, but confuses the rest of the CE
3136      code processing.  ??? we should fix this in the future.  */
3137   if (EDGE_COUNT (then_bb->succs) == 0)
3138     {
3139       if (single_pred_p (else_bb))
3140         {
3141           rtx last_insn = BB_END (then_bb);
3142
3143           while (last_insn
3144                  && NOTE_P (last_insn)
3145                  && last_insn != BB_HEAD (then_bb))
3146             last_insn = PREV_INSN (last_insn);
3147
3148           if (last_insn
3149               && JUMP_P (last_insn)
3150               && ! simplejump_p (last_insn))
3151             return FALSE;
3152
3153           join_bb = else_bb;
3154           else_bb = NULL_BLOCK;
3155         }
3156       else
3157         return FALSE;
3158     }
3159
3160   /* If the THEN block's successor is the other edge out of the TEST block,
3161      then we have an IF-THEN combo without an ELSE.  */
3162   else if (single_succ (then_bb) == else_bb)
3163     {
3164       join_bb = else_bb;
3165       else_bb = NULL_BLOCK;
3166     }
3167
3168   /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
3169      has exactly one predecessor and one successor, and the outgoing edge
3170      is not complex, then we have an IF-THEN-ELSE combo.  */
3171   else if (single_succ_p (else_bb)
3172            && single_succ (then_bb) == single_succ (else_bb)
3173            && single_pred_p (else_bb)
3174            && ! (single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
3175            && ! (epilogue_completed && tablejump_p (BB_END (else_bb), NULL, NULL)))
3176     join_bb = single_succ (else_bb);
3177
3178   /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination.  */
3179   else
3180     return FALSE;
3181
3182   num_possible_if_blocks++;
3183
3184   if (dump_file)
3185     {
3186       fprintf (dump_file,
3187                "\nIF-THEN%s block found, pass %d, start block %d "
3188                "[insn %d], then %d [%d]",
3189                (else_bb) ? "-ELSE" : "",
3190                ce_info->pass,
3191                test_bb->index,
3192                BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
3193                then_bb->index,
3194                BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
3195
3196       if (else_bb)
3197         fprintf (dump_file, ", else %d [%d]",
3198                  else_bb->index,
3199                  BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
3200
3201       fprintf (dump_file, ", join %d [%d]",
3202                join_bb->index,
3203                BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
3204
3205       if (ce_info->num_multiple_test_blocks > 0)
3206         fprintf (dump_file, ", %d %s block%s last test %d [%d]",
3207                  ce_info->num_multiple_test_blocks,
3208                  (ce_info->and_and_p) ? "&&" : "||",
3209                  (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
3210                  ce_info->last_test_bb->index,
3211                  ((BB_HEAD (ce_info->last_test_bb))
3212                   ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
3213                   : -1));
3214
3215       fputc ('\n', dump_file);
3216     }
3217
3218   /* Make sure IF, THEN, and ELSE, blocks are adjacent.  Actually, we get the
3219      first condition for free, since we've already asserted that there's a
3220      fallthru edge from IF to THEN.  Likewise for the && and || blocks, since
3221      we checked the FALLTHRU flag, those are already adjacent to the last IF
3222      block.  */
3223   /* ??? As an enhancement, move the ELSE block.  Have to deal with
3224      BLOCK notes, if by no other means than backing out the merge if they
3225      exist.  Sticky enough I don't want to think about it now.  */
3226   next = then_bb;
3227   if (else_bb && (next = next->next_bb) != else_bb)
3228     return FALSE;
3229   if ((next = next->next_bb) != join_bb && join_bb != EXIT_BLOCK_PTR)
3230     {
3231       if (else_bb)
3232         join_bb = NULL;
3233       else
3234         return FALSE;
3235     }
3236
3237   /* Do the real work.  */
3238
3239   ce_info->else_bb = else_bb;
3240   ce_info->join_bb = join_bb;
3241
3242   /* If we have && and || tests, try to first handle combining the && and ||
3243      tests into the conditional code, and if that fails, go back and handle
3244      it without the && and ||, which at present handles the && case if there
3245      was no ELSE block.  */
3246   if (cond_exec_process_if_block (ce_info, TRUE))
3247     return TRUE;
3248
3249   if (ce_info->num_multiple_test_blocks)
3250     {
3251       cancel_changes (0);
3252
3253       if (cond_exec_process_if_block (ce_info, FALSE))
3254         return TRUE;
3255     }
3256
3257   return FALSE;
3258 }
3259
3260 /* Convert a branch over a trap, or a branch
3261    to a trap, into a conditional trap.  */
3262
3263 static int
3264 find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
3265 {
3266   basic_block then_bb = then_edge->dest;
3267   basic_block else_bb = else_edge->dest;
3268   basic_block other_bb, trap_bb;
3269   rtx trap, jump, cond, cond_earliest, seq;
3270   enum rtx_code code;
3271
3272   /* Locate the block with the trap instruction.  */
3273   /* ??? While we look for no successors, we really ought to allow
3274      EH successors.  Need to fix merge_if_block for that to work.  */
3275   if ((trap = block_has_only_trap (then_bb)) != NULL)
3276     trap_bb = then_bb, other_bb = else_bb;
3277   else if ((trap = block_has_only_trap (else_bb)) != NULL)
3278     trap_bb = else_bb, other_bb = then_bb;
3279   else
3280     return FALSE;
3281
3282   if (dump_file)
3283     {
3284       fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
3285                test_bb->index, trap_bb->index);
3286     }
3287
3288   /* If this is not a standard conditional jump, we can't parse it.  */
3289   jump = BB_END (test_bb);
3290   cond = noce_get_condition (jump, &cond_earliest, false);
3291   if (! cond)
3292     return FALSE;
3293
3294   /* If the conditional jump is more than just a conditional jump, then
3295      we can not do if-conversion on this block.  */
3296   if (! onlyjump_p (jump))
3297     return FALSE;
3298
3299   /* We must be comparing objects whose modes imply the size.  */
3300   if (GET_MODE (XEXP (cond, 0)) == BLKmode)
3301     return FALSE;
3302
3303   /* Reverse the comparison code, if necessary.  */
3304   code = GET_CODE (cond);
3305   if (then_bb == trap_bb)
3306     {
3307       code = reversed_comparison_code (cond, jump);
3308       if (code == UNKNOWN)
3309         return FALSE;
3310     }
3311
3312   /* Attempt to generate the conditional trap.  */
3313   seq = gen_cond_trap (code, copy_rtx (XEXP (cond, 0)),
3314                        copy_rtx (XEXP (cond, 1)),
3315                        TRAP_CODE (PATTERN (trap)));
3316   if (seq == NULL)
3317     return FALSE;
3318
3319   /* Emit the new insns before cond_earliest.  */
3320   emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATOR (trap));
3321
3322   /* Delete the trap block if possible.  */
3323   remove_edge (trap_bb == then_bb ? then_edge : else_edge);
3324   df_set_bb_dirty (test_bb);
3325   df_set_bb_dirty (then_bb);
3326   df_set_bb_dirty (else_bb);
3327
3328   if (EDGE_COUNT (trap_bb->preds) == 0)
3329     {
3330       delete_basic_block (trap_bb);
3331       num_true_changes++;
3332     }
3333
3334   /* Wire together the blocks again.  */
3335   if (current_ir_type () == IR_RTL_CFGLAYOUT)
3336     single_succ_edge (test_bb)->flags |= EDGE_FALLTHRU;
3337   else
3338     {
3339       rtx lab, newjump;
3340
3341       lab = JUMP_LABEL (jump);
3342       newjump = emit_jump_insn_after (gen_jump (lab), jump);
3343       LABEL_NUSES (lab) += 1;
3344       JUMP_LABEL (newjump) = lab;
3345       emit_barrier_after (newjump);
3346     }
3347   delete_insn (jump);
3348
3349   if (can_merge_blocks_p (test_bb, other_bb))
3350     {
3351       merge_blocks (test_bb, other_bb);
3352       num_true_changes++;
3353     }
3354
3355   num_updated_if_blocks++;
3356   return TRUE;
3357 }
3358
3359 /* Subroutine of find_cond_trap: if BB contains only a trap insn,
3360    return it.  */
3361
3362 static rtx
3363 block_has_only_trap (basic_block bb)
3364 {
3365   rtx trap;
3366
3367   /* We're not the exit block.  */
3368   if (bb == EXIT_BLOCK_PTR)
3369     return NULL_RTX;
3370
3371   /* The block must have no successors.  */
3372   if (EDGE_COUNT (bb->succs) > 0)
3373     return NULL_RTX;
3374
3375   /* The only instruction in the THEN block must be the trap.  */
3376   trap = first_active_insn (bb);
3377   if (! (trap == BB_END (bb)
3378          && GET_CODE (PATTERN (trap)) == TRAP_IF
3379          && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
3380     return NULL_RTX;
3381
3382   return trap;
3383 }
3384
3385 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
3386    transformable, but not necessarily the other.  There need be no
3387    JOIN block.
3388
3389    Return TRUE if we were successful at converting the block.
3390
3391    Cases we'd like to look at:
3392
3393    (1)
3394         if (test) goto over; // x not live
3395         x = a;
3396         goto label;
3397         over:
3398
3399    becomes
3400
3401         x = a;
3402         if (! test) goto label;
3403
3404    (2)
3405         if (test) goto E; // x not live
3406         x = big();
3407         goto L;
3408         E:
3409         x = b;
3410         goto M;
3411
3412    becomes
3413
3414         x = b;
3415         if (test) goto M;
3416         x = big();
3417         goto L;
3418
3419    (3) // This one's really only interesting for targets that can do
3420        // multiway branching, e.g. IA-64 BBB bundles.  For other targets
3421        // it results in multiple branches on a cache line, which often
3422        // does not sit well with predictors.
3423
3424         if (test1) goto E; // predicted not taken
3425         x = a;
3426         if (test2) goto F;
3427         ...
3428         E:
3429         x = b;
3430         J:
3431
3432    becomes
3433
3434         x = a;
3435         if (test1) goto E;
3436         if (test2) goto F;
3437
3438    Notes:
3439
3440    (A) Don't do (2) if the branch is predicted against the block we're
3441    eliminating.  Do it anyway if we can eliminate a branch; this requires
3442    that the sole successor of the eliminated block postdominate the other
3443    side of the if.
3444
3445    (B) With CE, on (3) we can steal from both sides of the if, creating
3446
3447         if (test1) x = a;
3448         if (!test1) x = b;
3449         if (test1) goto J;
3450         if (test2) goto F;
3451         ...
3452         J:
3453
3454    Again, this is most useful if J postdominates.
3455
3456    (C) CE substitutes for helpful life information.
3457
3458    (D) These heuristics need a lot of work.  */
3459
3460 /* Tests for case 1 above.  */
3461
3462 static int
3463 find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
3464 {
3465   basic_block then_bb = then_edge->dest;
3466   basic_block else_bb = else_edge->dest;
3467   basic_block new_bb;
3468   int then_bb_index;
3469
3470   /* If we are partitioning hot/cold basic blocks, we don't want to
3471      mess up unconditional or indirect jumps that cross between hot
3472      and cold sections.
3473
3474      Basic block partitioning may result in some jumps that appear to
3475      be optimizable (or blocks that appear to be mergeable), but which really
3476      must be left untouched (they are required to make it safely across
3477      partition boundaries).  See  the comments at the top of
3478      bb-reorder.c:partition_hot_cold_basic_blocks for complete details.  */
3479
3480   if ((BB_END (then_bb)
3481        && find_reg_note (BB_END (then_bb), REG_CROSSING_JUMP, NULL_RTX))
3482       || (BB_END (test_bb)
3483           && find_reg_note (BB_END (test_bb), REG_CROSSING_JUMP, NULL_RTX))
3484       || (BB_END (else_bb)
3485           && find_reg_note (BB_END (else_bb), REG_CROSSING_JUMP,
3486                             NULL_RTX)))
3487     return FALSE;
3488
3489   /* THEN has one successor.  */
3490   if (!single_succ_p (then_bb))
3491     return FALSE;
3492
3493   /* THEN does not fall through, but is not strange either.  */
3494   if (single_succ_edge (then_bb)->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
3495     return FALSE;
3496
3497   /* THEN has one predecessor.  */
3498   if (!single_pred_p (then_bb))
3499     return FALSE;
3500
3501   /* THEN must do something.  */
3502   if (forwarder_block_p (then_bb))
3503     return FALSE;
3504
3505   num_possible_if_blocks++;
3506   if (dump_file)
3507     fprintf (dump_file,
3508              "\nIF-CASE-1 found, start %d, then %d\n",
3509              test_bb->index, then_bb->index);
3510
3511   /* THEN is small.  */
3512   if (! cheap_bb_rtx_cost_p (then_bb, COSTS_N_INSNS (BRANCH_COST)))
3513     return FALSE;
3514
3515   /* Registers set are dead, or are predicable.  */
3516   if (! dead_or_predicable (test_bb, then_bb, else_bb,
3517                             single_succ (then_bb), 1))
3518     return FALSE;
3519
3520   /* Conversion went ok, including moving the insns and fixing up the
3521      jump.  Adjust the CFG to match.  */
3522
3523   /* We can avoid creating a new basic block if then_bb is immediately
3524      followed by else_bb, i.e. deleting then_bb allows test_bb to fall
3525      thru to else_bb.  */
3526
3527   if (then_bb->next_bb == else_bb
3528       && then_bb->prev_bb == test_bb
3529       && else_bb != EXIT_BLOCK_PTR)
3530     {
3531       redirect_edge_succ (FALLTHRU_EDGE (test_bb), else_bb);
3532       new_bb = 0;
3533     }
3534   else
3535     new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb),
3536                                              else_bb);
3537
3538   df_set_bb_dirty (test_bb);
3539   df_set_bb_dirty (else_bb);
3540
3541   then_bb_index = then_bb->index;
3542   delete_basic_block (then_bb);
3543
3544   /* Make rest of code believe that the newly created block is the THEN_BB
3545      block we removed.  */
3546   if (new_bb)
3547     {
3548       df_bb_replace (then_bb_index, new_bb);
3549       /* Since the fallthru edge was redirected from test_bb to new_bb,
3550          we need to ensure that new_bb is in the same partition as
3551          test bb (you can not fall through across section boundaries).  */
3552       BB_COPY_PARTITION (new_bb, test_bb);
3553     }
3554
3555   num_true_changes++;
3556   num_updated_if_blocks++;
3557
3558   return TRUE;
3559 }
3560
3561 /* Test for case 2 above.  */
3562
3563 static int
3564 find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
3565 {
3566   basic_block then_bb = then_edge->dest;
3567   basic_block else_bb = else_edge->dest;
3568   edge else_succ;
3569   rtx note;
3570
3571   /* If we are partitioning hot/cold basic blocks, we don't want to
3572      mess up unconditional or indirect jumps that cross between hot
3573      and cold sections.
3574
3575      Basic block partitioning may result in some jumps that appear to
3576      be optimizable (or blocks that appear to be mergeable), but which really
3577      must be left untouched (they are required to make it safely across
3578      partition boundaries).  See  the comments at the top of
3579      bb-reorder.c:partition_hot_cold_basic_blocks for complete details.  */
3580
3581   if ((BB_END (then_bb)
3582        && find_reg_note (BB_END (then_bb), REG_CROSSING_JUMP, NULL_RTX))
3583       || (BB_END (test_bb)
3584           && find_reg_note (BB_END (test_bb), REG_CROSSING_JUMP, NULL_RTX))
3585       || (BB_END (else_bb)
3586           && find_reg_note (BB_END (else_bb), REG_CROSSING_JUMP,
3587                             NULL_RTX)))
3588     return FALSE;
3589
3590   /* ELSE has one successor.  */
3591   if (!single_succ_p (else_bb))
3592     return FALSE;
3593   else
3594     else_succ = single_succ_edge (else_bb);
3595
3596   /* ELSE outgoing edge is not complex.  */
3597   if (else_succ->flags & EDGE_COMPLEX)
3598     return FALSE;
3599
3600   /* ELSE has one predecessor.  */
3601   if (!single_pred_p (else_bb))
3602     return FALSE;
3603
3604   /* THEN is not EXIT.  */
3605   if (then_bb->index < NUM_FIXED_BLOCKS)
3606     return FALSE;
3607
3608   /* ELSE is predicted or SUCC(ELSE) postdominates THEN.  */
3609   note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
3610   if (note && INTVAL (XEXP (note, 0)) >= REG_BR_PROB_BASE / 2)
3611     ;
3612   else if (else_succ->dest->index < NUM_FIXED_BLOCKS
3613            || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
3614                               else_succ->dest))
3615     ;
3616   else
3617     return FALSE;
3618
3619   num_possible_if_blocks++;
3620   if (dump_file)
3621     fprintf (dump_file,
3622              "\nIF-CASE-2 found, start %d, else %d\n",
3623              test_bb->index, else_bb->index);
3624
3625   /* ELSE is small.  */
3626   if (! cheap_bb_rtx_cost_p (else_bb, COSTS_N_INSNS (BRANCH_COST)))
3627     return FALSE;
3628
3629   /* Registers set are dead, or are predicable.  */
3630   if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ->dest, 0))
3631     return FALSE;
3632
3633   /* Conversion went ok, including moving the insns and fixing up the
3634      jump.  Adjust the CFG to match.  */
3635
3636   df_set_bb_dirty (test_bb);
3637   df_set_bb_dirty (then_bb);
3638   delete_basic_block (else_bb);
3639
3640   num_true_changes++;
3641   num_updated_if_blocks++;
3642
3643   /* ??? We may now fallthru from one of THEN's successors into a join
3644      block.  Rerun cleanup_cfg?  Examine things manually?  Wait?  */
3645
3646   return TRUE;
3647 }
3648
3649 /* A subroutine of dead_or_predicable called through for_each_rtx.
3650    Return 1 if a memory is found.  */
3651
3652 static int
3653 find_memory (rtx *px, void *data ATTRIBUTE_UNUSED)
3654 {
3655   return MEM_P (*px);
3656 }
3657
3658 /* Used by the code above to perform the actual rtl transformations.
3659    Return TRUE if successful.
3660
3661    TEST_BB is the block containing the conditional branch.  MERGE_BB
3662    is the block containing the code to manipulate.  NEW_DEST is the
3663    label TEST_BB should be branching to after the conversion.
3664    REVERSEP is true if the sense of the branch should be reversed.  */
3665
3666 static int
3667 dead_or_predicable (basic_block test_bb, basic_block merge_bb,
3668                     basic_block other_bb, basic_block new_dest, int reversep)
3669 {
3670   rtx head, end, jump, earliest = NULL_RTX, old_dest, new_label = NULL_RTX;
3671
3672   jump = BB_END (test_bb);
3673
3674   /* Find the extent of the real code in the merge block.  */
3675   head = BB_HEAD (merge_bb);
3676   end = BB_END (merge_bb);
3677
3678   /* If merge_bb ends with a tablejump, predicating/moving insn's
3679      into test_bb and then deleting merge_bb will result in the jumptable
3680      that follows merge_bb being removed along with merge_bb and then we
3681      get an unresolved reference to the jumptable.  */
3682   if (tablejump_p (end, NULL, NULL))
3683     return FALSE;
3684
3685   if (LABEL_P (head))
3686     head = NEXT_INSN (head);
3687   if (NOTE_P (head))
3688     {
3689       if (head == end)
3690         {
3691           head = end = NULL_RTX;
3692           goto no_body;
3693         }
3694       head = NEXT_INSN (head);
3695     }
3696
3697   if (JUMP_P (end))
3698     {
3699       if (head == end)
3700         {
3701           head = end = NULL_RTX;
3702           goto no_body;
3703         }
3704       end = PREV_INSN (end);
3705     }
3706
3707   /* Disable handling dead code by conditional execution if the machine needs
3708      to do anything funny with the tests, etc.  */
3709 #ifndef IFCVT_MODIFY_TESTS
3710   if (HAVE_conditional_execution)
3711     {
3712       /* In the conditional execution case, we have things easy.  We know
3713          the condition is reversible.  We don't have to check life info
3714          because we're going to conditionally execute the code anyway.
3715          All that's left is making sure the insns involved can actually
3716          be predicated.  */
3717
3718       rtx cond, prob_val;
3719
3720       cond = cond_exec_get_condition (jump);
3721       if (! cond)
3722         return FALSE;
3723
3724       prob_val = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
3725       if (prob_val)
3726         prob_val = XEXP (prob_val, 0);
3727
3728       if (reversep)
3729         {
3730           enum rtx_code rev = reversed_comparison_code (cond, jump);
3731           if (rev == UNKNOWN)
3732             return FALSE;
3733           cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
3734                                  XEXP (cond, 1));
3735           if (prob_val)
3736             prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (prob_val));
3737         }
3738
3739       if (! cond_exec_process_insns ((ce_if_block_t *)0, head, end, cond,
3740                                      prob_val, 0))
3741         goto cancel;
3742
3743       earliest = jump;
3744     }
3745   else
3746 #endif
3747     {
3748       /* In the non-conditional execution case, we have to verify that there
3749          are no trapping operations, no calls, no references to memory, and
3750          that any registers modified are dead at the branch site.  */
3751
3752       rtx insn, cond, prev;
3753       bitmap merge_set, test_live, test_set;
3754       unsigned i, fail = 0;
3755       bitmap_iterator bi;
3756
3757       /* Check for no calls or trapping operations.  */
3758       for (insn = head; ; insn = NEXT_INSN (insn))
3759         {
3760           if (CALL_P (insn))
3761             return FALSE;
3762           if (INSN_P (insn))
3763             {
3764               if (may_trap_p (PATTERN (insn)))
3765                 return FALSE;
3766
3767               /* ??? Even non-trapping memories such as stack frame
3768                  references must be avoided.  For stores, we collect
3769                  no lifetime info; for reads, we'd have to assert
3770                  true_dependence false against every store in the
3771                  TEST range.  */
3772               if (for_each_rtx (&PATTERN (insn), find_memory, NULL))
3773                 return FALSE;
3774             }
3775           if (insn == end)
3776             break;
3777         }
3778
3779       if (! any_condjump_p (jump))
3780         return FALSE;
3781
3782       /* Find the extent of the conditional.  */
3783       cond = noce_get_condition (jump, &earliest, false);
3784       if (! cond)
3785         return FALSE;
3786
3787       /* Collect:
3788            MERGE_SET = set of registers set in MERGE_BB
3789            TEST_LIVE = set of registers live at EARLIEST
3790            TEST_SET  = set of registers set between EARLIEST and the
3791                        end of the block.  */
3792
3793       merge_set = BITMAP_ALLOC (&reg_obstack);
3794       test_live = BITMAP_ALLOC (&reg_obstack);
3795       test_set = BITMAP_ALLOC (&reg_obstack);
3796
3797       /* ??? bb->local_set is only valid during calculate_global_regs_live,
3798          so we must recompute usage for MERGE_BB.  Not so bad, I suppose,
3799          since we've already asserted that MERGE_BB is small.  */
3800       /* If we allocated new pseudos (e.g. in the conditional move
3801          expander called from noce_emit_cmove), we must resize the
3802          array first.  */
3803       if (max_regno < max_reg_num ())
3804         max_regno = max_reg_num ();
3805
3806       FOR_BB_INSNS (merge_bb, insn)
3807         {
3808           if (INSN_P (insn))
3809             {
3810               unsigned int uid = INSN_UID (insn);
3811               struct df_ref **def_rec;
3812               for (def_rec = DF_INSN_UID_DEFS (uid); *def_rec; def_rec++)
3813                 {
3814                   struct df_ref *def = *def_rec;
3815                   bitmap_set_bit (merge_set, DF_REF_REGNO (def));
3816                 }
3817             }
3818         }
3819
3820       /* For small register class machines, don't lengthen lifetimes of
3821          hard registers before reload.  */
3822       if (SMALL_REGISTER_CLASSES && ! reload_completed)
3823         {
3824           EXECUTE_IF_SET_IN_BITMAP (merge_set, 0, i, bi)
3825             {
3826               if (i < FIRST_PSEUDO_REGISTER
3827                   && ! fixed_regs[i]
3828                   && ! global_regs[i])
3829                 fail = 1;
3830             }
3831         }
3832       
3833       /* For TEST, we're interested in a range of insns, not a whole block.
3834          Moreover, we're interested in the insns live from OTHER_BB.  */
3835       
3836       /* The loop below takes the set of live registers 
3837          after JUMP, and calculates the live set before EARLIEST. */
3838       bitmap_copy (test_live, df_get_live_in (other_bb));
3839       df_simulate_artificial_refs_at_end (test_bb, test_live);
3840       for (insn = jump; ; insn = prev)
3841         {
3842           if (INSN_P (insn))
3843             {
3844               df_simulate_find_defs (insn, test_set);
3845               df_simulate_one_insn_backwards (test_bb, insn, test_live);
3846             }
3847           prev = PREV_INSN (insn);
3848           if (insn == earliest)
3849             break;
3850         }
3851
3852       /* We can perform the transformation if
3853            MERGE_SET & (TEST_SET | TEST_LIVE)
3854          and
3855            TEST_SET & DF_LIVE_IN (merge_bb)
3856          are empty.  */
3857
3858       if (bitmap_intersect_p (test_set, merge_set)
3859           || bitmap_intersect_p (test_live, merge_set)
3860           || bitmap_intersect_p (test_set, df_get_live_in (merge_bb)))
3861         fail = 1;
3862
3863       BITMAP_FREE (merge_set);
3864       BITMAP_FREE (test_live);
3865       BITMAP_FREE (test_set);
3866
3867       if (fail)
3868         return FALSE;
3869     }
3870
3871  no_body:
3872   /* We don't want to use normal invert_jump or redirect_jump because
3873      we don't want to delete_insn called.  Also, we want to do our own
3874      change group management.  */
3875
3876   old_dest = JUMP_LABEL (jump);
3877   if (other_bb != new_dest)
3878     {
3879       new_label = block_label (new_dest);
3880       if (reversep
3881           ? ! invert_jump_1 (jump, new_label)
3882           : ! redirect_jump_1 (jump, new_label))
3883         goto cancel;
3884     }
3885
3886   if (! apply_change_group ())
3887     return FALSE;
3888
3889   if (other_bb != new_dest)
3890     {
3891       redirect_jump_2 (jump, old_dest, new_label, 0, reversep);
3892
3893       redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
3894       if (reversep)
3895         {
3896           gcov_type count, probability;
3897           count = BRANCH_EDGE (test_bb)->count;
3898           BRANCH_EDGE (test_bb)->count = FALLTHRU_EDGE (test_bb)->count;
3899           FALLTHRU_EDGE (test_bb)->count = count;
3900           probability = BRANCH_EDGE (test_bb)->probability;
3901           BRANCH_EDGE (test_bb)->probability
3902             = FALLTHRU_EDGE (test_bb)->probability;
3903           FALLTHRU_EDGE (test_bb)->probability = probability;
3904           update_br_prob_note (test_bb);
3905         }
3906     }
3907
3908   /* Move the insns out of MERGE_BB to before the branch.  */
3909   if (head != NULL)
3910     {
3911       rtx insn;
3912
3913       if (end == BB_END (merge_bb))
3914         BB_END (merge_bb) = PREV_INSN (head);
3915
3916       /* PR 21767: When moving insns above a conditional branch, REG_EQUAL
3917          notes might become invalid.  */
3918       insn = head;
3919       do
3920         {
3921           rtx note, set;
3922
3923           if (! INSN_P (insn))
3924             continue;
3925           note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
3926           if (! note)
3927             continue;
3928           set = single_set (insn);
3929           if (!set || !function_invariant_p (SET_SRC (set)))
3930             remove_note (insn, note);
3931         } while (insn != end && (insn = NEXT_INSN (insn)));
3932
3933       reorder_insns (head, end, PREV_INSN (earliest));
3934     }
3935
3936   /* Remove the jump and edge if we can.  */
3937   if (other_bb == new_dest)
3938     {
3939       delete_insn (jump);
3940       remove_edge (BRANCH_EDGE (test_bb));
3941       /* ??? Can't merge blocks here, as then_bb is still in use.
3942          At minimum, the merge will get done just before bb-reorder.  */
3943     }
3944
3945   return TRUE;
3946
3947  cancel:
3948   cancel_changes (0);
3949   return FALSE;
3950 }
3951 \f
3952 /* Main entry point for all if-conversion.  */
3953
3954 static void
3955 if_convert (bool recompute_dominance)
3956 {
3957   basic_block bb;
3958   int pass;
3959
3960   if (optimize == 1)
3961     {
3962       df_live_add_problem ();
3963       df_live_set_all_dirty ();
3964     }
3965
3966   num_possible_if_blocks = 0;
3967   num_updated_if_blocks = 0;
3968   num_true_changes = 0;
3969
3970   loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
3971   mark_loop_exit_edges ();
3972   loop_optimizer_finalize ();
3973   free_dominance_info (CDI_DOMINATORS);
3974
3975   /* Compute postdominators if we think we'll use them.  */
3976   if (HAVE_conditional_execution || recompute_dominance)
3977     calculate_dominance_info (CDI_POST_DOMINATORS);
3978
3979   df_set_flags (DF_LR_RUN_DCE);
3980
3981   /* Go through each of the basic blocks looking for things to convert.  If we
3982      have conditional execution, we make multiple passes to allow us to handle
3983      IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks.  */
3984   pass = 0;
3985   do
3986     {
3987       df_analyze ();
3988       /* Only need to do dce on the first pass.  */
3989       df_clear_flags (DF_LR_RUN_DCE);
3990       cond_exec_changed_p = FALSE;
3991       pass++;
3992
3993 #ifdef IFCVT_MULTIPLE_DUMPS
3994       if (dump_file && pass > 1)
3995         fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
3996 #endif
3997
3998       FOR_EACH_BB (bb)
3999         {
4000           basic_block new_bb;
4001           while (!df_get_bb_dirty (bb) 
4002                  && (new_bb = find_if_header (bb, pass)) != NULL)
4003             bb = new_bb;
4004         }
4005
4006 #ifdef IFCVT_MULTIPLE_DUMPS
4007       if (dump_file && cond_exec_changed_p)
4008         print_rtl_with_bb (dump_file, get_insns ());
4009 #endif
4010     }
4011   while (cond_exec_changed_p);
4012
4013 #ifdef IFCVT_MULTIPLE_DUMPS
4014   if (dump_file)
4015     fprintf (dump_file, "\n\n========== no more changes\n");
4016 #endif
4017
4018   free_dominance_info (CDI_POST_DOMINATORS);
4019
4020   if (dump_file)
4021     fflush (dump_file);
4022
4023   clear_aux_for_blocks ();
4024
4025   /* If we allocated new pseudos, we must resize the array for sched1.  */
4026   if (max_regno < max_reg_num ())
4027     max_regno = max_reg_num ();
4028
4029   /* Write the final stats.  */
4030   if (dump_file && num_possible_if_blocks > 0)
4031     {
4032       fprintf (dump_file,
4033                "\n%d possible IF blocks searched.\n",
4034                num_possible_if_blocks);
4035       fprintf (dump_file,
4036                "%d IF blocks converted.\n",
4037                num_updated_if_blocks);
4038       fprintf (dump_file,
4039                "%d true changes made.\n\n\n",
4040                num_true_changes);
4041     }
4042
4043   if (optimize == 1)
4044     df_remove_problem (df_live);
4045
4046 #ifdef ENABLE_CHECKING
4047   verify_flow_info ();
4048 #endif
4049 }
4050 \f
4051 static bool
4052 gate_handle_if_conversion (void)
4053 {
4054   return (optimize > 0);
4055 }
4056
4057 /* If-conversion and CFG cleanup.  */
4058 static unsigned int
4059 rest_of_handle_if_conversion (void)
4060 {
4061   if (flag_if_conversion)
4062     {
4063       if (dump_file)
4064         dump_flow_info (dump_file, dump_flags);
4065       cleanup_cfg (CLEANUP_EXPENSIVE);
4066       if_convert (false);
4067     }
4068
4069   cleanup_cfg (0);
4070   return 0;
4071 }
4072
4073 struct tree_opt_pass pass_rtl_ifcvt =
4074 {
4075   "ce1",                                /* name */
4076   gate_handle_if_conversion,            /* gate */
4077   rest_of_handle_if_conversion,         /* execute */
4078   NULL,                                 /* sub */
4079   NULL,                                 /* next */
4080   0,                                    /* static_pass_number */
4081   TV_IFCVT,                             /* tv_id */
4082   0,                                    /* properties_required */
4083   0,                                    /* properties_provided */
4084   0,                                    /* properties_destroyed */
4085   0,                                    /* todo_flags_start */
4086   TODO_df_finish |
4087   TODO_dump_func,                       /* todo_flags_finish */
4088   'C'                                   /* letter */
4089 };
4090
4091 static bool
4092 gate_handle_if_after_combine (void)
4093 {
4094   return (optimize > 0 && flag_if_conversion);
4095 }
4096
4097
4098 /* Rerun if-conversion, as combine may have simplified things enough
4099    to now meet sequence length restrictions.  */
4100 static unsigned int
4101 rest_of_handle_if_after_combine (void)
4102 {
4103   if_convert (true);
4104   return 0;
4105 }
4106
4107 struct tree_opt_pass pass_if_after_combine =
4108 {
4109   "ce2",                                /* name */
4110   gate_handle_if_after_combine,         /* gate */
4111   rest_of_handle_if_after_combine,      /* execute */
4112   NULL,                                 /* sub */
4113   NULL,                                 /* next */
4114   0,                                    /* static_pass_number */
4115   TV_IFCVT,                             /* tv_id */
4116   0,                                    /* properties_required */
4117   0,                                    /* properties_provided */
4118   0,                                    /* properties_destroyed */
4119   0,                                    /* todo_flags_start */
4120   TODO_df_finish |
4121   TODO_dump_func |
4122   TODO_ggc_collect,                     /* todo_flags_finish */
4123   'C'                                   /* letter */
4124 };
4125
4126
4127 static bool
4128 gate_handle_if_after_reload (void)
4129 {
4130   return (optimize > 0 && flag_if_conversion2);
4131 }
4132
4133 static unsigned int
4134 rest_of_handle_if_after_reload (void)
4135 {
4136   if_convert (true);
4137   return 0;
4138 }
4139
4140
4141 struct tree_opt_pass pass_if_after_reload =
4142 {
4143   "ce3",                                /* name */
4144   gate_handle_if_after_reload,          /* gate */
4145   rest_of_handle_if_after_reload,       /* execute */
4146   NULL,                                 /* sub */
4147   NULL,                                 /* next */
4148   0,                                    /* static_pass_number */
4149   TV_IFCVT2,                            /* tv_id */
4150   0,                                    /* properties_required */
4151   0,                                    /* properties_provided */
4152   0,                                    /* properties_destroyed */
4153   0,                                    /* todo_flags_start */
4154   TODO_df_finish |
4155   TODO_dump_func |
4156   TODO_ggc_collect,                     /* todo_flags_finish */
4157   'E'                                   /* letter */
4158 };