* Makefile.in (SYSTEM_H): Define.
[official-gcc.git] / gcc / ifcvt.c
blobd21cb4daf4911ae4cd98cc36d832a62e3f5d3ab0
1 /* If-conversion support.
2 Copyright (C) 2000 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include "config.h"
22 #include "system.h"
24 #include "rtl.h"
25 #include "regs.h"
26 #include "function.h"
27 #include "flags.h"
28 #include "insn-config.h"
29 #include "recog.h"
30 #include "hard-reg-set.h"
31 #include "basic-block.h"
32 #include "expr.h"
33 #include "real.h"
34 #include "output.h"
35 #include "tm_p.h"
38 #ifndef HAVE_conditional_execution
39 #define HAVE_conditional_execution 0
40 #endif
41 #ifndef HAVE_conditional_move
42 #define HAVE_conditional_move 0
43 #endif
44 #ifndef HAVE_incscc
45 #define HAVE_incscc 0
46 #endif
47 #ifndef HAVE_decscc
48 #define HAVE_decscc 0
49 #endif
51 #ifndef MAX_CONDITIONAL_EXECUTE
52 #define MAX_CONDITIONAL_EXECUTE (BRANCH_COST + 1)
53 #endif
55 #define NULL_EDGE ((struct edge_def *)NULL)
56 #define NULL_BLOCK ((struct basic_block_def *)NULL)
58 /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
59 static int num_possible_if_blocks;
61 /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
62 execution. */
63 static int num_updated_if_blocks;
65 /* # of basic blocks that were removed. */
66 static int num_removed_blocks;
68 /* The post-dominator relation on the original block numbers. */
69 static sbitmap *post_dominators;
71 /* Forward references. */
72 static int count_bb_insns PARAMS ((basic_block));
73 static rtx first_active_insn PARAMS ((basic_block));
74 static int last_active_insn_p PARAMS ((basic_block, rtx));
75 static int seq_contains_jump PARAMS ((rtx));
77 static int cond_exec_process_insns PARAMS ((rtx, rtx, rtx, rtx, int));
78 static rtx cond_exec_get_condition PARAMS ((rtx));
79 static int cond_exec_process_if_block PARAMS ((basic_block, basic_block,
80 basic_block, basic_block));
82 static rtx noce_get_condition PARAMS ((rtx, rtx *));
83 static int noce_operand_ok PARAMS ((rtx));
84 static int noce_process_if_block PARAMS ((basic_block, basic_block,
85 basic_block, basic_block));
87 static int process_if_block PARAMS ((basic_block, basic_block,
88 basic_block, basic_block));
89 static void merge_if_block PARAMS ((basic_block, basic_block,
90 basic_block, basic_block));
92 static int find_if_header PARAMS ((basic_block));
93 static int find_if_block PARAMS ((basic_block, edge, edge));
94 static int find_if_case_1 PARAMS ((basic_block, edge, edge));
95 static int find_if_case_2 PARAMS ((basic_block, edge, edge));
96 static int find_memory PARAMS ((rtx *, void *));
97 static int dead_or_predicable PARAMS ((basic_block, basic_block,
98 basic_block, rtx, int));
100 /* Abuse the basic_block AUX field to store the original block index,
101 as well as a flag indicating that the block should be rescaned for
102 life analysis. */
104 #define SET_ORIG_INDEX(BB,I) ((BB)->aux = (void *)((size_t)(I) << 1))
105 #define ORIG_INDEX(BB) ((size_t)(BB)->aux >> 1)
106 #define SET_UPDATE_LIFE(BB) ((BB)->aux = (void *)((size_t)(BB)->aux | 1))
107 #define UPDATE_LIFE(BB) ((size_t)(BB)->aux & 1)
110 /* Count the number of non-jump active insns in BB. */
112 static int
113 count_bb_insns (bb)
114 basic_block bb;
116 int count = 0;
117 rtx insn = bb->head;
119 while (1)
121 if (GET_CODE (insn) == CALL_INSN || GET_CODE (insn) == INSN)
122 count++;
124 if (insn == bb->end)
125 break;
126 insn = NEXT_INSN (insn);
129 return count;
132 /* Return the first non-jump active insn in the basic block. */
134 static rtx
135 first_active_insn (bb)
136 basic_block bb;
138 rtx insn = bb->head;
140 if (GET_CODE (insn) == CODE_LABEL)
142 if (insn == bb->end)
143 return NULL_RTX;
144 insn = NEXT_INSN (insn);
147 while (GET_CODE (insn) == NOTE)
149 if (insn == bb->end)
150 return NULL_RTX;
151 insn = NEXT_INSN (insn);
154 if (GET_CODE (insn) == JUMP_INSN)
155 return NULL_RTX;
157 return insn;
160 /* Return true if INSN is the last active non-jump insn in BB. */
162 static int
163 last_active_insn_p (bb, insn)
164 basic_block bb;
165 rtx insn;
169 if (insn == bb->end)
170 return TRUE;
171 insn = NEXT_INSN (insn);
173 while (GET_CODE (insn) == NOTE);
175 return GET_CODE (insn) == JUMP_INSN;
178 /* It is possible, especially when having dealt with multi-word
179 arithmetic, for the expanders to have emitted jumps. Search
180 through the sequence and return TRUE if a jump exists so that
181 we can abort the conversion. */
183 static int
184 seq_contains_jump (insn)
185 rtx insn;
187 while (insn)
189 if (GET_CODE (insn) == JUMP_INSN)
190 return 1;
191 insn = NEXT_INSN (insn);
193 return 0;
196 /* Go through a bunch of insns, converting them to conditional
197 execution format if possible. Return TRUE if all of the non-note
198 insns were processed. */
200 static int
201 cond_exec_process_insns (start, end, test, prob_val, mod_ok)
202 rtx start; /* first insn to look at */
203 rtx end; /* last insn to look at */
204 rtx test; /* conditional execution test */
205 rtx prob_val; /* probability of branch taken. */
206 int mod_ok; /* true if modifications ok last insn. */
208 int must_be_last = FALSE;
209 rtx insn;
210 rtx pattern;
212 for (insn = start; ; insn = NEXT_INSN (insn))
214 if (GET_CODE (insn) == NOTE)
215 goto insn_done;
217 if (GET_CODE (insn) != INSN && GET_CODE (insn) != CALL_INSN)
218 abort ();
220 /* Remove USE insns that get in the way. */
221 if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
223 /* ??? Ug. Actually unlinking the thing is problematic,
224 given what we'd have to coordinate with our callers. */
225 PUT_CODE (insn, NOTE);
226 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
227 NOTE_SOURCE_FILE (insn) = 0;
228 goto insn_done;
231 /* Last insn wasn't last? */
232 if (must_be_last)
233 return FALSE;
235 if (modified_in_p (test, insn))
237 if (!mod_ok)
238 return FALSE;
239 must_be_last = TRUE;
242 /* Now build the conditional form of the instruction. */
243 pattern = PATTERN (insn);
245 /* If the machine needs to modify the insn being conditionally executed,
246 say for example to force a constant integer operand into a temp
247 register, do so here. */
248 #ifdef IFCVT_MODIFY_INSN
249 IFCVT_MODIFY_INSN (pattern, insn);
250 if (! pattern)
251 return FALSE;
252 #endif
254 validate_change (insn, &PATTERN (insn),
255 gen_rtx_COND_EXEC (VOIDmode, copy_rtx (test),
256 pattern), 1);
258 if (GET_CODE (insn) == CALL_INSN && prob_val)
259 validate_change (insn, &REG_NOTES (insn),
260 alloc_EXPR_LIST (REG_BR_PROB, prob_val,
261 REG_NOTES (insn)), 1);
263 insn_done:
264 if (insn == end)
265 break;
268 return TRUE;
271 /* Return the condition for a jump. Do not do any special processing. */
273 static rtx
274 cond_exec_get_condition (jump)
275 rtx jump;
277 rtx test_if, cond;
279 if (any_condjump_p (jump))
280 test_if = SET_SRC (pc_set (jump));
281 else
282 return NULL_RTX;
283 cond = XEXP (test_if, 0);
285 /* If this branches to JUMP_LABEL when the condition is false,
286 reverse the condition. */
287 if (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
288 && XEXP (XEXP (test_if, 2), 0) == JUMP_LABEL (jump))
289 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
290 GET_MODE (cond), XEXP (cond, 0),
291 XEXP (cond, 1));
293 return cond;
296 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
297 to conditional execution. Return TRUE if we were successful at
298 converting the the block. */
300 static int
301 cond_exec_process_if_block (test_bb, then_bb, else_bb, join_bb)
302 basic_block test_bb; /* Basic block test is in */
303 basic_block then_bb; /* Basic block for THEN block */
304 basic_block else_bb; /* Basic block for ELSE block */
305 basic_block join_bb; /* Basic block the join label is in */
307 rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
308 rtx then_start; /* first insn in THEN block */
309 rtx then_end; /* last insn + 1 in THEN block */
310 rtx else_start = NULL_RTX; /* first insn in ELSE block or NULL */
311 rtx else_end = NULL_RTX; /* last insn + 1 in ELSE block */
312 int max; /* max # of insns to convert. */
313 int then_mod_ok; /* whether conditional mods are ok in THEN */
314 rtx true_expr; /* test for else block insns */
315 rtx false_expr; /* test for then block insns */
316 rtx true_prob_val; /* probability of else block */
317 rtx false_prob_val; /* probability of then block */
318 int n_insns;
320 /* Find the conditional jump to the ELSE or JOIN part, and isolate
321 the test. */
322 test_expr = cond_exec_get_condition (test_bb->end);
323 if (! test_expr)
324 return FALSE;
326 /* If the conditional jump is more than just a conditional jump,
327 then we can not do conditional execution conversion on this block. */
328 if (!onlyjump_p (test_bb->end))
329 return FALSE;
331 /* Collect the bounds of where we're to search. */
333 then_start = then_bb->head;
334 then_end = then_bb->end;
336 /* Skip a label heading THEN block. */
337 if (GET_CODE (then_start) == CODE_LABEL)
338 then_start = NEXT_INSN (then_start);
340 /* Skip a (use (const_int 0)) or branch as the final insn. */
341 if (GET_CODE (then_end) == INSN
342 && GET_CODE (PATTERN (then_end)) == USE
343 && GET_CODE (XEXP (PATTERN (then_end), 0)) == CONST_INT)
344 then_end = PREV_INSN (then_end);
345 else if (GET_CODE (then_end) == JUMP_INSN)
346 then_end = PREV_INSN (then_end);
348 if (else_bb)
350 /* Skip the ELSE block's label. */
351 else_start = NEXT_INSN (else_bb->head);
352 else_end = else_bb->end;
354 /* Skip a (use (const_int 0)) or branch as the final insn. */
355 if (GET_CODE (else_end) == INSN
356 && GET_CODE (PATTERN (else_end)) == USE
357 && GET_CODE (XEXP (PATTERN (else_end), 0)) == CONST_INT)
358 else_end = PREV_INSN (else_end);
359 else if (GET_CODE (else_end) == JUMP_INSN)
360 else_end = PREV_INSN (else_end);
363 /* How many instructions should we convert in total? */
364 n_insns = 0;
365 if (else_bb)
367 max = 2 * MAX_CONDITIONAL_EXECUTE;
368 n_insns = count_bb_insns (else_bb);
370 else
371 max = MAX_CONDITIONAL_EXECUTE;
372 n_insns += count_bb_insns (then_bb);
373 if (n_insns > max)
374 return FALSE;
376 /* Map test_expr/test_jump into the appropriate MD tests to use on
377 the conditionally executed code. */
379 true_expr = test_expr;
380 false_expr = gen_rtx_fmt_ee (reverse_condition (GET_CODE (true_expr)),
381 GET_MODE (true_expr), XEXP (true_expr, 0),
382 XEXP (true_expr, 1));
384 #ifdef IFCVT_MODIFY_TESTS
385 /* If the machine description needs to modify the tests, such as setting a
386 conditional execution register from a comparison, it can do so here. */
387 IFCVT_MODIFY_TESTS (true_expr, false_expr, test_bb, then_bb, else_bb,
388 join_bb);
390 /* See if the conversion failed */
391 if (!true_expr || !false_expr)
392 goto fail;
393 #endif
395 true_prob_val = find_reg_note (test_bb->end, REG_BR_PROB, NULL_RTX);
396 if (true_prob_val)
398 true_prob_val = XEXP (true_prob_val, 0);
399 false_prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (true_prob_val));
401 else
402 false_prob_val = NULL_RTX;
404 /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
405 on then THEN block. */
406 then_mod_ok = (else_bb == NULL_BLOCK);
408 /* Go through the THEN and ELSE blocks converting the insns if possible
409 to conditional execution. */
411 if (then_end
412 && ! cond_exec_process_insns (then_start, then_end,
413 false_expr, false_prob_val, then_mod_ok))
414 goto fail;
416 if (else_bb
417 && ! cond_exec_process_insns (else_start, else_end,
418 true_expr, true_prob_val, TRUE))
419 goto fail;
421 if (! apply_change_group ())
422 return FALSE;
424 #ifdef IFCVT_MODIFY_FINAL
425 /* Do any machine dependent final modifications */
426 IFCVT_MODIFY_FINAL (test_bb, then_bb, else_bb, join_bb);
427 #endif
429 /* Conversion succeeded. */
430 if (rtl_dump_file)
431 fprintf (rtl_dump_file, "%d insn%s converted to conditional execution.\n",
432 n_insns, (n_insns == 1) ? " was" : "s were");
434 /* Merge the blocks! */
435 merge_if_block (test_bb, then_bb, else_bb, join_bb);
436 return TRUE;
438 fail:
439 #ifdef IFCVT_MODIFY_CANCEL
440 /* Cancel any machine dependent changes. */
441 IFCVT_MODIFY_CANCEL (test_bb, then_bb, else_bb, join_bb);
442 #endif
444 cancel_changes (0);
445 return FALSE;
448 /* Used by noce_process_if_block to communicate with its subroutines.
450 The subroutines know that A and B may be evaluated freely. They
451 know that X is a register. They should insert new instructions
452 before cond_earliest. */
454 struct noce_if_info
456 basic_block test_bb;
457 rtx insn_a, insn_b;
458 rtx x, a, b;
459 rtx jump, cond, cond_earliest;
462 static rtx noce_emit_store_flag PARAMS ((struct noce_if_info *,
463 rtx, int, int));
464 static int noce_try_store_flag PARAMS ((struct noce_if_info *));
465 static int noce_try_store_flag_inc PARAMS ((struct noce_if_info *));
466 static int noce_try_store_flag_constants PARAMS ((struct noce_if_info *));
467 static int noce_try_store_flag_mask PARAMS ((struct noce_if_info *));
468 static rtx noce_emit_cmove PARAMS ((struct noce_if_info *,
469 rtx, enum rtx_code, rtx,
470 rtx, rtx, rtx));
471 static int noce_try_cmove PARAMS ((struct noce_if_info *));
472 static int noce_try_cmove_arith PARAMS ((struct noce_if_info *));
473 static rtx noce_get_alt_condition PARAMS ((struct noce_if_info *,
474 rtx, rtx *));
475 static int noce_try_minmax PARAMS ((struct noce_if_info *));
476 static int noce_try_abs PARAMS ((struct noce_if_info *));
478 /* Helper function for noce_try_store_flag*. */
480 static rtx
481 noce_emit_store_flag (if_info, x, reversep, normalize)
482 struct noce_if_info *if_info;
483 rtx x;
484 int reversep, normalize;
486 rtx cond = if_info->cond;
487 int cond_complex;
488 enum rtx_code code;
490 cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
491 || ! general_operand (XEXP (cond, 1), VOIDmode));
493 /* If earliest == jump, or when the condition is complex, try to
494 build the store_flag insn directly. */
496 if (cond_complex)
497 cond = XEXP (SET_SRC (pc_set (if_info->jump)), 0);
499 if (reversep)
500 code = reversed_comparison_code (cond, if_info->jump);
501 else
502 code = GET_CODE (cond);
504 if ((if_info->cond_earliest == if_info->jump || cond_complex)
505 && (normalize == 0 || STORE_FLAG_VALUE == normalize))
507 rtx tmp;
509 tmp = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
510 XEXP (cond, 1));
511 tmp = gen_rtx_SET (VOIDmode, x, tmp);
513 start_sequence ();
514 tmp = emit_insn (tmp);
516 if (recog_memoized (tmp) >= 0)
518 tmp = get_insns ();
519 end_sequence ();
520 emit_insns (tmp);
522 if_info->cond_earliest = if_info->jump;
524 return x;
527 end_sequence ();
530 /* Don't even try if the comparison operands are weird. */
531 if (cond_complex)
532 return NULL_RTX;
534 return emit_store_flag (x, code, XEXP (cond, 0),
535 XEXP (cond, 1), VOIDmode,
536 (code == LTU || code == LEU
537 || code == GEU || code == GTU), normalize);
540 /* Convert "if (test) x = 1; else x = 0".
542 Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
543 tried in noce_try_store_flag_constants after noce_try_cmove has had
544 a go at the conversion. */
546 static int
547 noce_try_store_flag (if_info)
548 struct noce_if_info *if_info;
550 int reversep;
551 rtx target, seq;
553 if (GET_CODE (if_info->b) == CONST_INT
554 && INTVAL (if_info->b) == STORE_FLAG_VALUE
555 && if_info->a == const0_rtx)
556 reversep = 0;
557 else if (if_info->b == const0_rtx
558 && GET_CODE (if_info->a) == CONST_INT
559 && INTVAL (if_info->a) == STORE_FLAG_VALUE
560 && (reversed_comparison_code (if_info->cond, if_info->jump)
561 != UNKNOWN))
562 reversep = 1;
563 else
564 return FALSE;
566 start_sequence ();
568 target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
569 if (target)
571 if (target != if_info->x)
572 emit_move_insn (if_info->x, target);
574 seq = get_insns ();
575 end_sequence ();
576 emit_insns_before (seq, if_info->cond_earliest);
578 return TRUE;
580 else
582 end_sequence ();
583 return FALSE;
587 /* Convert "if (test) x = a; else x = b", for A and B constant. */
589 static int
590 noce_try_store_flag_constants (if_info)
591 struct noce_if_info *if_info;
593 rtx target, seq;
594 int reversep;
595 HOST_WIDE_INT itrue, ifalse, diff, tmp;
596 int normalize, can_reverse;
598 if (! no_new_pseudos
599 && GET_CODE (if_info->a) == CONST_INT
600 && GET_CODE (if_info->b) == CONST_INT)
602 ifalse = INTVAL (if_info->a);
603 itrue = INTVAL (if_info->b);
604 diff = itrue - ifalse;
606 can_reverse = (reversed_comparison_code (if_info->cond, if_info->jump)
607 != UNKNOWN);
609 reversep = 0;
610 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
611 normalize = 0;
612 else if (ifalse == 0 && exact_log2 (itrue) >= 0
613 && (STORE_FLAG_VALUE == 1
614 || BRANCH_COST >= 2))
615 normalize = 1;
616 else if (itrue == 0 && exact_log2 (ifalse) >= 0 && can_reverse
617 && (STORE_FLAG_VALUE == 1 || BRANCH_COST >= 2))
618 normalize = 1, reversep = 1;
619 else if (itrue == -1
620 && (STORE_FLAG_VALUE == -1
621 || BRANCH_COST >= 2))
622 normalize = -1;
623 else if (ifalse == -1 && can_reverse
624 && (STORE_FLAG_VALUE == -1 || BRANCH_COST >= 2))
625 normalize = -1, reversep = 1;
626 else if ((BRANCH_COST >= 2 && STORE_FLAG_VALUE == -1)
627 || BRANCH_COST >= 3)
628 normalize = -1;
629 else
630 return FALSE;
632 if (reversep)
634 tmp = itrue; itrue = ifalse; ifalse = tmp;
635 diff = -diff;
638 start_sequence ();
639 target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
640 if (! target)
642 end_sequence ();
643 return FALSE;
646 /* if (test) x = 3; else x = 4;
647 => x = 3 + (test == 0); */
648 if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
650 target = expand_binop (GET_MODE (if_info->x),
651 (diff == STORE_FLAG_VALUE
652 ? add_optab : sub_optab),
653 GEN_INT (ifalse), target, if_info->x, 0,
654 OPTAB_WIDEN);
657 /* if (test) x = 8; else x = 0;
658 => x = (test != 0) << 3; */
659 else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
661 target = expand_binop (GET_MODE (if_info->x), ashl_optab,
662 target, GEN_INT (tmp), if_info->x, 0,
663 OPTAB_WIDEN);
666 /* if (test) x = -1; else x = b;
667 => x = -(test != 0) | b; */
668 else if (itrue == -1)
670 target = expand_binop (GET_MODE (if_info->x), ior_optab,
671 target, GEN_INT (ifalse), if_info->x, 0,
672 OPTAB_WIDEN);
675 /* if (test) x = a; else x = b;
676 => x = (-(test != 0) & (b - a)) + a; */
677 else
679 target = expand_binop (GET_MODE (if_info->x), and_optab,
680 target, GEN_INT (diff), if_info->x, 0,
681 OPTAB_WIDEN);
682 if (target)
683 target = expand_binop (GET_MODE (if_info->x), add_optab,
684 target, GEN_INT (ifalse), if_info->x, 0,
685 OPTAB_WIDEN);
688 if (! target)
690 end_sequence ();
691 return FALSE;
694 if (target != if_info->x)
695 emit_move_insn (if_info->x, target);
697 seq = get_insns ();
698 end_sequence ();
700 if (seq_contains_jump (seq))
701 return FALSE;
703 emit_insns_before (seq, if_info->cond_earliest);
705 return TRUE;
708 return FALSE;
711 /* Convert "if (test) foo++" into "foo += (test != 0)", and
712 similarly for "foo--". */
714 static int
715 noce_try_store_flag_inc (if_info)
716 struct noce_if_info *if_info;
718 rtx target, seq;
719 int subtract, normalize;
721 if (! no_new_pseudos
722 && (BRANCH_COST >= 2
723 || HAVE_incscc
724 || HAVE_decscc)
725 /* Should be no `else' case to worry about. */
726 && if_info->b == if_info->x
727 && GET_CODE (if_info->a) == PLUS
728 && (XEXP (if_info->a, 1) == const1_rtx
729 || XEXP (if_info->a, 1) == constm1_rtx)
730 && rtx_equal_p (XEXP (if_info->a, 0), if_info->x)
731 && (reversed_comparison_code (if_info->cond, if_info->jump)
732 != UNKNOWN))
734 if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
735 subtract = 0, normalize = 0;
736 else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
737 subtract = 1, normalize = 0;
738 else
739 subtract = 0, normalize = INTVAL (XEXP (if_info->a, 1));
741 start_sequence ();
743 target = noce_emit_store_flag (if_info,
744 gen_reg_rtx (GET_MODE (if_info->x)),
745 1, normalize);
747 if (target)
748 target = expand_binop (GET_MODE (if_info->x),
749 subtract ? sub_optab : add_optab,
750 if_info->x, target, if_info->x, 0, OPTAB_WIDEN);
751 if (target)
753 if (target != if_info->x)
754 emit_move_insn (if_info->x, target);
756 seq = get_insns ();
757 end_sequence ();
759 if (seq_contains_jump (seq))
760 return FALSE;
762 emit_insns_before (seq, if_info->cond_earliest);
764 return TRUE;
767 end_sequence ();
770 return FALSE;
773 /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
775 static int
776 noce_try_store_flag_mask (if_info)
777 struct noce_if_info *if_info;
779 rtx target, seq;
780 int reversep;
782 reversep = 0;
783 if (! no_new_pseudos
784 && (BRANCH_COST >= 2
785 || STORE_FLAG_VALUE == -1)
786 && ((if_info->a == const0_rtx
787 && rtx_equal_p (if_info->b, if_info->x))
788 || ((reversep = (reversed_comparison_code (if_info->cond,
789 if_info->jump)
790 != UNKNOWN))
791 && if_info->b == const0_rtx
792 && rtx_equal_p (if_info->a, if_info->x))))
794 start_sequence ();
795 target = noce_emit_store_flag (if_info,
796 gen_reg_rtx (GET_MODE (if_info->x)),
797 reversep, -1);
798 if (target)
799 target = expand_binop (GET_MODE (if_info->x), and_optab,
800 if_info->x, target, if_info->x, 0,
801 OPTAB_WIDEN);
803 if (target)
805 if (target != if_info->x)
806 emit_move_insn (if_info->x, target);
808 seq = get_insns ();
809 end_sequence ();
811 if (seq_contains_jump (seq))
812 return FALSE;
814 emit_insns_before (seq, if_info->cond_earliest);
816 return TRUE;
819 end_sequence ();
822 return FALSE;
825 /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
827 static rtx
828 noce_emit_cmove (if_info, x, code, cmp_a, cmp_b, vfalse, vtrue)
829 struct noce_if_info *if_info;
830 rtx x, cmp_a, cmp_b, vfalse, vtrue;
831 enum rtx_code code;
833 /* If earliest == jump, try to build the cmove insn directly.
834 This is helpful when combine has created some complex condition
835 (like for alpha's cmovlbs) that we can't hope to regenerate
836 through the normal interface. */
838 if (if_info->cond_earliest == if_info->jump)
840 rtx tmp;
842 tmp = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
843 tmp = gen_rtx_IF_THEN_ELSE (GET_MODE (x), tmp, vtrue, vfalse);
844 tmp = gen_rtx_SET (VOIDmode, x, tmp);
846 start_sequence ();
847 tmp = emit_insn (tmp);
849 if (recog_memoized (tmp) >= 0)
851 tmp = get_insns ();
852 end_sequence ();
853 emit_insns (tmp);
855 return x;
858 end_sequence ();
861 /* Don't even try if the comparison operands are weird. */
862 if (! general_operand (cmp_a, GET_MODE (cmp_a))
863 || ! general_operand (cmp_b, GET_MODE (cmp_b)))
864 return NULL_RTX;
866 #if HAVE_conditional_move
867 return emit_conditional_move (x, code, cmp_a, cmp_b, VOIDmode,
868 vtrue, vfalse, GET_MODE (x),
869 (code == LTU || code == GEU
870 || code == LEU || code == GTU));
871 #else
872 /* We'll never get here, as noce_process_if_block doesn't call the
873 functions involved. Ifdef code, however, should be discouraged
874 because it leads to typos in the code not selected. However,
875 emit_conditional_move won't exist either. */
876 return NULL_RTX;
877 #endif
880 /* Try only simple constants and registers here. More complex cases
881 are handled in noce_try_cmove_arith after noce_try_store_flag_arith
882 has had a go at it. */
884 static int
885 noce_try_cmove (if_info)
886 struct noce_if_info *if_info;
888 enum rtx_code code;
889 rtx target, seq;
891 if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
892 && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
894 start_sequence ();
896 code = GET_CODE (if_info->cond);
897 target = noce_emit_cmove (if_info, if_info->x, code,
898 XEXP (if_info->cond, 0),
899 XEXP (if_info->cond, 1),
900 if_info->a, if_info->b);
902 if (target)
904 if (target != if_info->x)
905 emit_move_insn (if_info->x, target);
907 seq = get_insns ();
908 end_sequence ();
909 emit_insns_before (seq, if_info->cond_earliest);
910 return TRUE;
912 else
914 end_sequence ();
915 return FALSE;
919 return FALSE;
922 /* Try more complex cases involving conditional_move. */
924 static int
925 noce_try_cmove_arith (if_info)
926 struct noce_if_info *if_info;
928 rtx a = if_info->a;
929 rtx b = if_info->b;
930 rtx x = if_info->x;
931 rtx insn_a, insn_b;
932 rtx tmp, target;
933 int is_mem = 0;
934 enum rtx_code code;
936 /* A conditional move from two memory sources is equivalent to a
937 conditional on their addresses followed by a load. Don't do this
938 early because it'll screw alias analysis. Note that we've
939 already checked for no side effects. */
940 if (! no_new_pseudos && cse_not_expected
941 && GET_CODE (a) == MEM && GET_CODE (b) == MEM
942 && BRANCH_COST >= 5)
944 a = XEXP (a, 0);
945 b = XEXP (b, 0);
946 x = gen_reg_rtx (Pmode);
947 is_mem = 1;
950 /* ??? We could handle this if we knew that a load from A or B could
951 not fault. This is also true if we've already loaded
952 from the address along the path from ENTRY. */
953 else if (may_trap_p (a) || may_trap_p (b))
954 return FALSE;
956 /* if (test) x = a + b; else x = c - d;
957 => y = a + b;
958 x = c - d;
959 if (test)
960 x = y;
963 code = GET_CODE (if_info->cond);
964 insn_a = if_info->insn_a;
965 insn_b = if_info->insn_b;
967 /* Possibly rearrange operands to make things come out more natural. */
968 if (reversed_comparison_code (if_info->cond, if_info->jump) != UNKNOWN)
970 int reversep = 0;
971 if (rtx_equal_p (b, x))
972 reversep = 1;
973 else if (general_operand (b, GET_MODE (b)))
974 reversep = 1;
976 if (reversep)
978 code = reversed_comparison_code (if_info->cond, if_info->jump);
979 tmp = a, a = b, b = tmp;
980 tmp = insn_a, insn_a = insn_b, insn_b = tmp;
984 start_sequence ();
986 /* If either operand is complex, load it into a register first.
987 The best way to do this is to copy the original insn. In this
988 way we preserve any clobbers etc that the insn may have had.
989 This is of course not possible in the IS_MEM case. */
990 if (! general_operand (a, GET_MODE (a)))
992 rtx set;
994 if (no_new_pseudos)
995 goto end_seq_and_fail;
997 if (is_mem)
999 tmp = gen_reg_rtx (GET_MODE (a));
1000 tmp = emit_insn (gen_rtx_SET (VOIDmode, tmp, a));
1002 else if (! insn_a)
1003 goto end_seq_and_fail;
1004 else
1006 a = gen_reg_rtx (GET_MODE (a));
1007 tmp = copy_rtx (insn_a);
1008 set = single_set (tmp);
1009 SET_DEST (set) = a;
1010 tmp = emit_insn (PATTERN (tmp));
1012 if (recog_memoized (tmp) < 0)
1013 goto end_seq_and_fail;
1015 if (! general_operand (b, GET_MODE (b)))
1017 rtx set;
1019 if (no_new_pseudos)
1020 goto end_seq_and_fail;
1022 if (is_mem)
1024 tmp = gen_reg_rtx (GET_MODE (b));
1025 tmp = emit_insn (gen_rtx_SET (VOIDmode, tmp, b));
1027 else if (! insn_b)
1028 goto end_seq_and_fail;
1029 else
1031 b = gen_reg_rtx (GET_MODE (b));
1032 tmp = copy_rtx (insn_b);
1033 set = single_set (tmp);
1034 SET_DEST (set) = b;
1035 tmp = emit_insn (PATTERN (tmp));
1037 if (recog_memoized (tmp) < 0)
1038 goto end_seq_and_fail;
1041 target = noce_emit_cmove (if_info, x, code, XEXP (if_info->cond, 0),
1042 XEXP (if_info->cond, 1), a, b);
1044 if (! target)
1045 goto end_seq_and_fail;
1047 /* If we're handling a memory for above, emit the load now. */
1048 if (is_mem)
1050 tmp = gen_rtx_MEM (GET_MODE (if_info->x), target);
1052 /* Copy over flags as appropriate. */
1053 if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
1054 MEM_VOLATILE_P (tmp) = 1;
1055 if (MEM_IN_STRUCT_P (if_info->a) && MEM_IN_STRUCT_P (if_info->b))
1056 MEM_IN_STRUCT_P (tmp) = 1;
1057 if (MEM_SCALAR_P (if_info->a) && MEM_SCALAR_P (if_info->b))
1058 MEM_SCALAR_P (tmp) = 1;
1059 if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
1060 MEM_ALIAS_SET (tmp) = MEM_ALIAS_SET (if_info->a);
1062 emit_move_insn (if_info->x, tmp);
1064 else if (target != x)
1065 emit_move_insn (x, target);
1067 tmp = get_insns ();
1068 end_sequence ();
1069 emit_insns_before (tmp, if_info->cond_earliest);
1070 return TRUE;
1072 end_seq_and_fail:
1073 end_sequence ();
1074 return FALSE;
1077 /* For most cases, the simplified condition we found is the best
1078 choice, but this is not the case for the min/max/abs transforms.
1079 For these we wish to know that it is A or B in the condition. */
1081 static rtx
1082 noce_get_alt_condition (if_info, target, earliest)
1083 struct noce_if_info *if_info;
1084 rtx target;
1085 rtx *earliest;
1087 rtx cond, set, insn;
1088 int reverse;
1090 /* If target is already mentioned in the known condition, return it. */
1091 if (reg_mentioned_p (target, if_info->cond))
1093 *earliest = if_info->cond_earliest;
1094 return if_info->cond;
1097 set = pc_set (if_info->jump);
1098 cond = XEXP (SET_SRC (set), 0);
1099 reverse
1100 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1101 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (if_info->jump);
1103 cond = canonicalize_condition (if_info->jump, cond, reverse,
1104 earliest, target);
1105 if (! cond || ! reg_mentioned_p (target, cond))
1106 return NULL;
1108 /* We almost certainly searched back to a different place.
1109 Need to re-verify correct lifetimes. */
1111 /* X may not be mentioned in the range (cond_earliest, jump]. */
1112 for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
1113 if (INSN_P (insn) && reg_mentioned_p (if_info->x, insn))
1114 return NULL;
1116 /* A and B may not be modified in the range [cond_earliest, jump). */
1117 for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
1118 if (INSN_P (insn)
1119 && (modified_in_p (if_info->a, insn)
1120 || modified_in_p (if_info->b, insn)))
1121 return NULL;
1123 return cond;
1126 /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
1128 static int
1129 noce_try_minmax (if_info)
1130 struct noce_if_info *if_info;
1132 rtx cond, earliest, target, seq;
1133 enum rtx_code code;
1134 int unsignedp;
1135 optab op;
1137 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1138 if (no_new_pseudos)
1139 return FALSE;
1141 /* ??? Reject FP modes since we don't know how 0 vs -0 or NaNs
1142 will be resolved with an SMIN/SMAX. It wouldn't be too hard
1143 to get the target to tell us... */
1144 if (FLOAT_MODE_P (GET_MODE (if_info->x))
1145 && TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
1146 && ! flag_unsafe_math_optimizations)
1147 return FALSE;
1149 cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
1150 if (!cond)
1151 return FALSE;
1153 /* Verify the condition is of the form we expect, and canonicalize
1154 the comparison code. */
1155 code = GET_CODE (cond);
1156 if (rtx_equal_p (XEXP (cond, 0), if_info->a))
1158 if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
1159 return FALSE;
1161 else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
1163 if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
1164 return FALSE;
1165 code = swap_condition (code);
1167 else
1168 return FALSE;
1170 /* Determine what sort of operation this is. Note that the code is for
1171 a taken branch, so the code->operation mapping appears backwards. */
1172 switch (code)
1174 case LT:
1175 case LE:
1176 case UNLT:
1177 case UNLE:
1178 op = smax_optab;
1179 unsignedp = 0;
1180 break;
1181 case GT:
1182 case GE:
1183 case UNGT:
1184 case UNGE:
1185 op = smin_optab;
1186 unsignedp = 0;
1187 break;
1188 case LTU:
1189 case LEU:
1190 op = umax_optab;
1191 unsignedp = 1;
1192 break;
1193 case GTU:
1194 case GEU:
1195 op = umin_optab;
1196 unsignedp = 1;
1197 break;
1198 default:
1199 return FALSE;
1202 start_sequence ();
1204 target = expand_binop (GET_MODE (if_info->x), op, if_info->a, if_info->b,
1205 if_info->x, unsignedp, OPTAB_WIDEN);
1206 if (! target)
1208 end_sequence ();
1209 return FALSE;
1211 if (target != if_info->x)
1212 emit_move_insn (if_info->x, target);
1214 seq = get_insns ();
1215 end_sequence ();
1217 if (seq_contains_jump (seq))
1218 return FALSE;
1220 emit_insns_before (seq, earliest);
1221 if_info->cond = cond;
1222 if_info->cond_earliest = earliest;
1224 return TRUE;
1227 /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);", etc. */
1229 static int
1230 noce_try_abs (if_info)
1231 struct noce_if_info *if_info;
1233 rtx cond, earliest, target, seq, a, b, c;
1234 int negate;
1236 /* ??? Can't guarantee that expand_binop won't create pseudos. */
1237 if (no_new_pseudos)
1238 return FALSE;
1240 /* Recognize A and B as constituting an ABS or NABS. */
1241 a = if_info->a;
1242 b = if_info->b;
1243 if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
1244 negate = 0;
1245 else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
1247 c = a; a = b; b = c;
1248 negate = 1;
1250 else
1251 return FALSE;
1253 cond = noce_get_alt_condition (if_info, b, &earliest);
1254 if (!cond)
1255 return FALSE;
1257 /* Verify the condition is of the form we expect. */
1258 if (rtx_equal_p (XEXP (cond, 0), b))
1259 c = XEXP (cond, 1);
1260 else if (rtx_equal_p (XEXP (cond, 1), b))
1261 c = XEXP (cond, 0);
1262 else
1263 return FALSE;
1265 /* Verify that C is zero. Search backward through the block for
1266 a REG_EQUAL note if necessary. */
1267 if (REG_P (c))
1269 rtx insn, note = NULL;
1270 for (insn = earliest;
1271 insn != if_info->test_bb->head;
1272 insn = PREV_INSN (insn))
1273 if (INSN_P (insn)
1274 && ((note = find_reg_note (insn, REG_EQUAL, c))
1275 || (note = find_reg_note (insn, REG_EQUIV, c))))
1276 break;
1277 if (! note)
1278 return FALSE;
1279 c = XEXP (note, 0);
1281 if (GET_CODE (c) == MEM
1282 && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
1283 && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
1284 c = get_pool_constant (XEXP (c, 0));
1286 /* Work around funny ideas get_condition has wrt canonicalization.
1287 Note that these rtx constants are known to be CONST_INT, and
1288 therefore imply integer comparisons. */
1289 if (c == constm1_rtx && GET_CODE (cond) == GT)
1291 else if (c == const1_rtx && GET_CODE (cond) == LT)
1293 else if (c != CONST0_RTX (GET_MODE (b)))
1294 return FALSE;
1296 /* Determine what sort of operation this is. */
1297 switch (GET_CODE (cond))
1299 case LT:
1300 case LE:
1301 case UNLT:
1302 case UNLE:
1303 negate = !negate;
1304 break;
1305 case GT:
1306 case GE:
1307 case UNGT:
1308 case UNGE:
1309 break;
1310 default:
1311 return FALSE;
1314 start_sequence ();
1316 target = expand_unop (GET_MODE (if_info->x), abs_optab, b, if_info->x, 0);
1318 /* ??? It's a quandry whether cmove would be better here, especially
1319 for integers. Perhaps combine will clean things up. */
1320 if (target && negate)
1321 target = expand_unop (GET_MODE (target), neg_optab, target, if_info->x, 0);
1323 if (! target)
1325 end_sequence ();
1326 return FALSE;
1329 if (target != if_info->x)
1330 emit_move_insn (if_info->x, target);
1332 seq = get_insns ();
1333 end_sequence ();
1335 if (seq_contains_jump (seq))
1336 return FALSE;
1338 emit_insns_before (seq, earliest);
1339 if_info->cond = cond;
1340 if_info->cond_earliest = earliest;
1342 return TRUE;
1345 /* Look for the condition for the jump first. We'd prefer to avoid
1346 get_condition if we can -- it tries to look back for the contents
1347 of an original compare. On targets that use normal integers for
1348 comparisons, e.g. alpha, this is wasteful. */
1350 static rtx
1351 noce_get_condition (jump, earliest)
1352 rtx jump;
1353 rtx *earliest;
1355 rtx cond;
1356 rtx set;
1358 /* If the condition variable is a register and is MODE_INT, accept it.
1359 Otherwise, fall back on get_condition. */
1361 if (! any_condjump_p (jump))
1362 return NULL_RTX;
1364 set = pc_set (jump);
1366 cond = XEXP (SET_SRC (set), 0);
1367 if (GET_CODE (XEXP (cond, 0)) == REG
1368 && GET_MODE_CLASS (GET_MODE (XEXP (cond, 0))) == MODE_INT)
1370 *earliest = jump;
1372 /* If this branches to JUMP_LABEL when the condition is false,
1373 reverse the condition. */
1374 if (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
1375 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump))
1376 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
1377 GET_MODE (cond), XEXP (cond, 0),
1378 XEXP (cond, 1));
1380 else
1381 cond = get_condition (jump, earliest);
1383 return cond;
1386 /* Return true if OP is ok for if-then-else processing. */
1388 static int
1389 noce_operand_ok (op)
1390 rtx op;
1392 /* We special-case memories, so handle any of them with
1393 no address side effects. */
1394 if (GET_CODE (op) == MEM)
1395 return ! side_effects_p (XEXP (op, 0));
1397 if (side_effects_p (op))
1398 return FALSE;
1400 /* ??? Unfortuantely may_trap_p can't look at flag_trapping_math, due to
1401 being linked into the genfoo programs. This is probably a mistake.
1402 With finite operands, most fp operations don't trap. */
1403 if (!flag_trapping_math && FLOAT_MODE_P (GET_MODE (op)))
1404 switch (GET_CODE (op))
1406 case DIV:
1407 case MOD:
1408 case UDIV:
1409 case UMOD:
1410 /* ??? This is kinda lame -- almost every target will have forced
1411 the constant into a register first. But given the expense of
1412 division, this is probably for the best. */
1413 return (CONSTANT_P (XEXP (op, 1))
1414 && XEXP (op, 1) != CONST0_RTX (GET_MODE (op))
1415 && ! may_trap_p (XEXP (op, 0)));
1417 default:
1418 switch (GET_RTX_CLASS (GET_CODE (op)))
1420 case '1':
1421 return ! may_trap_p (XEXP (op, 0));
1422 case 'c':
1423 case '2':
1424 return ! may_trap_p (XEXP (op, 0)) && ! may_trap_p (XEXP (op, 1));
1426 break;
1429 return ! may_trap_p (op);
1432 /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
1433 without using conditional execution. Return TRUE if we were
1434 successful at converting the the block. */
1436 static int
1437 noce_process_if_block (test_bb, then_bb, else_bb, join_bb)
1438 basic_block test_bb; /* Basic block test is in */
1439 basic_block then_bb; /* Basic block for THEN block */
1440 basic_block else_bb; /* Basic block for ELSE block */
1441 basic_block join_bb; /* Basic block the join label is in */
1443 /* We're looking for patterns of the form
1445 (1) if (...) x = a; else x = b;
1446 (2) x = b; if (...) x = a;
1447 (3) if (...) x = a; // as if with an initial x = x.
1449 The later patterns require jumps to be more expensive.
1451 ??? For future expansion, look for multiple X in such patterns. */
1453 struct noce_if_info if_info;
1454 rtx insn_a, insn_b;
1455 rtx set_a, set_b;
1456 rtx orig_x, x, a, b;
1457 rtx jump, cond, insn;
1459 /* If this is not a standard conditional jump, we can't parse it. */
1460 jump = test_bb->end;
1461 cond = noce_get_condition (jump, &if_info.cond_earliest);
1462 if (! cond)
1463 return FALSE;
1465 /* If the conditional jump is more than just a conditional jump,
1466 then we can not do if-conversion on this block. */
1467 if (! onlyjump_p (jump))
1468 return FALSE;
1470 /* We must be comparing objects whose modes imply the size. */
1471 if (GET_MODE (XEXP (cond, 0)) == BLKmode)
1472 return FALSE;
1474 /* Look for one of the potential sets. */
1475 insn_a = first_active_insn (then_bb);
1476 if (! insn_a
1477 || ! last_active_insn_p (then_bb, insn_a)
1478 || (set_a = single_set (insn_a)) == NULL_RTX)
1479 return FALSE;
1481 x = SET_DEST (set_a);
1482 a = SET_SRC (set_a);
1484 /* Look for the other potential set. Make sure we've got equivalent
1485 destinations. */
1486 /* ??? This is overconservative. Storing to two different mems is
1487 as easy as conditionally computing the address. Storing to a
1488 single mem merely requires a scratch memory to use as one of the
1489 destination addresses; often the memory immediately below the
1490 stack pointer is available for this. */
1491 set_b = NULL_RTX;
1492 if (else_bb)
1494 insn_b = first_active_insn (else_bb);
1495 if (! insn_b
1496 || ! last_active_insn_p (else_bb, insn_b)
1497 || (set_b = single_set (insn_b)) == NULL_RTX
1498 || ! rtx_equal_p (x, SET_DEST (set_b)))
1499 return FALSE;
1501 else
1503 insn_b = prev_nonnote_insn (if_info.cond_earliest);
1504 if (! insn_b
1505 || GET_CODE (insn_b) != INSN
1506 || (set_b = single_set (insn_b)) == NULL_RTX
1507 || ! rtx_equal_p (x, SET_DEST (set_b))
1508 || reg_mentioned_p (x, cond)
1509 || reg_mentioned_p (x, a)
1510 || reg_mentioned_p (x, SET_SRC (set_b)))
1511 insn_b = set_b = NULL_RTX;
1513 b = (set_b ? SET_SRC (set_b) : x);
1515 /* X may not be mentioned in the range (cond_earliest, jump]. */
1516 for (insn = jump; insn != if_info.cond_earliest; insn = PREV_INSN (insn))
1517 if (INSN_P (insn) && reg_mentioned_p (x, insn))
1518 return FALSE;
1520 /* A and B may not be modified in the range [cond_earliest, jump). */
1521 for (insn = if_info.cond_earliest; insn != jump; insn = NEXT_INSN (insn))
1522 if (INSN_P (insn)
1523 && (modified_in_p (a, insn) || modified_in_p (b, insn)))
1524 return FALSE;
1526 /* Only operate on register destinations, and even then avoid extending
1527 the lifetime of hard registers on small register class machines. */
1528 orig_x = x;
1529 if (GET_CODE (x) != REG
1530 || (SMALL_REGISTER_CLASSES
1531 && REGNO (x) < FIRST_PSEUDO_REGISTER))
1533 if (no_new_pseudos)
1534 return FALSE;
1535 x = gen_reg_rtx (GET_MODE (x));
1538 /* Don't operate on sources that may trap or are volatile. */
1539 if (! noce_operand_ok (a) || ! noce_operand_ok (b))
1540 return FALSE;
1542 /* Set up the info block for our subroutines. */
1543 if_info.test_bb = test_bb;
1544 if_info.cond = cond;
1545 if_info.jump = jump;
1546 if_info.insn_a = insn_a;
1547 if_info.insn_b = insn_b;
1548 if_info.x = x;
1549 if_info.a = a;
1550 if_info.b = b;
1552 /* Try optimizations in some approximation of a useful order. */
1553 /* ??? Should first look to see if X is live incoming at all. If it
1554 isn't, we don't need anything but an unconditional set. */
1556 /* Look and see if A and B are really the same. Avoid creating silly
1557 cmove constructs that no one will fix up later. */
1558 if (rtx_equal_p (a, b))
1560 /* If we have an INSN_B, we don't have to create any new rtl. Just
1561 move the instruction that we already have. If we don't have an
1562 INSN_B, that means that A == X, and we've got a noop move. In
1563 that case don't do anything and let the code below delete INSN_A. */
1564 if (insn_b && else_bb)
1566 rtx note;
1568 if (else_bb && insn_b == else_bb->end)
1569 else_bb->end = PREV_INSN (insn_b);
1570 reorder_insns (insn_b, insn_b, PREV_INSN (if_info.cond_earliest));
1572 /* If there was a REG_EQUAL note, delete it since it may have been
1573 true due to this insn being after a jump. */
1574 if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
1575 remove_note (insn_b, note);
1577 insn_b = NULL_RTX;
1579 /* If we have "x = b; if (...) x = a;", and x has side-effects, then
1580 x must be executed twice. */
1581 else if (insn_b && side_effects_p (orig_x))
1582 return FALSE;
1584 x = orig_x;
1585 goto success;
1588 if (noce_try_store_flag (&if_info))
1589 goto success;
1590 if (noce_try_minmax (&if_info))
1591 goto success;
1592 if (noce_try_abs (&if_info))
1593 goto success;
1594 if (HAVE_conditional_move
1595 && noce_try_cmove (&if_info))
1596 goto success;
1597 if (! HAVE_conditional_execution)
1599 if (noce_try_store_flag_constants (&if_info))
1600 goto success;
1601 if (noce_try_store_flag_inc (&if_info))
1602 goto success;
1603 if (noce_try_store_flag_mask (&if_info))
1604 goto success;
1605 if (HAVE_conditional_move
1606 && noce_try_cmove_arith (&if_info))
1607 goto success;
1610 return FALSE;
1612 success:
1613 /* The original sets may now be killed. */
1614 if (insn_a == then_bb->end)
1615 then_bb->end = PREV_INSN (insn_a);
1616 flow_delete_insn (insn_a);
1618 /* Several special cases here: First, we may have reused insn_b above,
1619 in which case insn_b is now NULL. Second, we want to delete insn_b
1620 if it came from the ELSE block, because follows the now correct
1621 write that appears in the TEST block. However, if we got insn_b from
1622 the TEST block, it may in fact be loading data needed for the comparison.
1623 We'll let life_analysis remove the insn if it's really dead. */
1624 if (insn_b && else_bb)
1626 if (insn_b == else_bb->end)
1627 else_bb->end = PREV_INSN (insn_b);
1628 flow_delete_insn (insn_b);
1631 /* The new insns will have been inserted before cond_earliest. We should
1632 be able to remove the jump with impunity, but the condition itself may
1633 have been modified by gcse to be shared across basic blocks. */
1634 test_bb->end = PREV_INSN (jump);
1635 flow_delete_insn (jump);
1637 /* If we used a temporary, fix it up now. */
1638 if (orig_x != x)
1640 start_sequence ();
1641 emit_move_insn (orig_x, x);
1642 insn_b = gen_sequence ();
1643 end_sequence ();
1645 test_bb->end = emit_insn_after (insn_b, test_bb->end);
1648 /* Merge the blocks! */
1649 merge_if_block (test_bb, then_bb, else_bb, join_bb);
1651 return TRUE;
1654 /* Attempt to convert an IF-THEN or IF-THEN-ELSE block into
1655 straight line code. Return true if successful. */
1657 static int
1658 process_if_block (test_bb, then_bb, else_bb, join_bb)
1659 basic_block test_bb; /* Basic block test is in */
1660 basic_block then_bb; /* Basic block for THEN block */
1661 basic_block else_bb; /* Basic block for ELSE block */
1662 basic_block join_bb; /* Basic block the join label is in */
1664 if (! reload_completed
1665 && noce_process_if_block (test_bb, then_bb, else_bb, join_bb))
1666 return TRUE;
1668 if (HAVE_conditional_execution
1669 && reload_completed
1670 && cond_exec_process_if_block (test_bb, then_bb, else_bb, join_bb))
1671 return TRUE;
1673 return FALSE;
1676 /* Merge the blocks and mark for local life update. */
1678 static void
1679 merge_if_block (test_bb, then_bb, else_bb, join_bb)
1680 basic_block test_bb; /* Basic block test is in */
1681 basic_block then_bb; /* Basic block for THEN block */
1682 basic_block else_bb; /* Basic block for ELSE block */
1683 basic_block join_bb; /* Basic block the join label is in */
1685 basic_block combo_bb;
1687 /* All block merging is done into the lower block numbers. */
1689 combo_bb = test_bb;
1691 /* First merge TEST block into THEN block. This is a no-brainer since
1692 the THEN block did not have a code label to begin with. */
1694 if (combo_bb->global_live_at_end)
1695 COPY_REG_SET (combo_bb->global_live_at_end, then_bb->global_live_at_end);
1696 merge_blocks_nomove (combo_bb, then_bb);
1697 num_removed_blocks++;
1699 /* The ELSE block, if it existed, had a label. That label count
1700 will almost always be zero, but odd things can happen when labels
1701 get their addresses taken. */
1702 if (else_bb)
1704 merge_blocks_nomove (combo_bb, else_bb);
1705 num_removed_blocks++;
1708 /* If there was no join block reported, that means it was not adjacent
1709 to the others, and so we cannot merge them. */
1711 if (! join_bb)
1713 /* The outgoing edge for the current COMBO block should already
1714 be correct. Verify this. */
1715 if (combo_bb->succ == NULL_EDGE)
1716 abort ();
1718 /* There should sill be a branch at the end of the THEN or ELSE
1719 blocks taking us to our final destination. */
1720 if (! simplejump_p (combo_bb->end)
1721 && ! returnjump_p (combo_bb->end))
1722 abort ();
1725 /* The JOIN block may have had quite a number of other predecessors too.
1726 Since we've already merged the TEST, THEN and ELSE blocks, we should
1727 have only one remaining edge from our if-then-else diamond. If there
1728 is more than one remaining edge, it must come from elsewhere. There
1729 may be zero incoming edges if the THEN block didn't actually join
1730 back up (as with a call to abort). */
1731 else if (join_bb->pred == NULL || join_bb->pred->pred_next == NULL)
1733 /* We can merge the JOIN. */
1734 if (combo_bb->global_live_at_end)
1735 COPY_REG_SET (combo_bb->global_live_at_end,
1736 join_bb->global_live_at_end);
1737 merge_blocks_nomove (combo_bb, join_bb);
1738 num_removed_blocks++;
1740 else
1742 /* We cannot merge the JOIN. */
1744 /* The outgoing edge for the current COMBO block should already
1745 be correct. Verify this. */
1746 if (combo_bb->succ->succ_next != NULL_EDGE
1747 || combo_bb->succ->dest != join_bb)
1748 abort ();
1750 /* Remove the jump and cruft from the end of the COMBO block. */
1751 tidy_fallthru_edge (combo_bb->succ, combo_bb, join_bb);
1754 /* Make sure we update life info properly. */
1755 SET_UPDATE_LIFE (combo_bb);
1757 num_updated_if_blocks++;
1760 /* Find a block ending in a simple IF condition. Return TRUE if
1761 we were able to transform it in some way. */
1763 static int
1764 find_if_header (test_bb)
1765 basic_block test_bb;
1767 edge then_edge;
1768 edge else_edge;
1770 /* The kind of block we're looking for has exactly two successors. */
1771 if ((then_edge = test_bb->succ) == NULL_EDGE
1772 || (else_edge = then_edge->succ_next) == NULL_EDGE
1773 || else_edge->succ_next != NULL_EDGE)
1774 return FALSE;
1776 /* Neither edge should be abnormal. */
1777 if ((then_edge->flags & EDGE_COMPLEX)
1778 || (else_edge->flags & EDGE_COMPLEX))
1779 return FALSE;
1781 /* The THEN edge is canonically the one that falls through. */
1782 if (then_edge->flags & EDGE_FALLTHRU)
1784 else if (else_edge->flags & EDGE_FALLTHRU)
1786 edge e = else_edge;
1787 else_edge = then_edge;
1788 then_edge = e;
1790 else
1791 /* Otherwise this must be a multiway branch of some sort. */
1792 return FALSE;
1794 if (find_if_block (test_bb, then_edge, else_edge))
1795 goto success;
1796 if (post_dominators
1797 && (! HAVE_conditional_execution || reload_completed))
1799 if (find_if_case_1 (test_bb, then_edge, else_edge))
1800 goto success;
1801 if (find_if_case_2 (test_bb, then_edge, else_edge))
1802 goto success;
1805 return FALSE;
1807 success:
1808 if (rtl_dump_file)
1809 fprintf (rtl_dump_file, "Conversion succeeded.\n");
1810 return TRUE;
1813 /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
1814 block. If so, we'll try to convert the insns to not require the branch.
1815 Return TRUE if we were successful at converting the the block. */
1817 static int
1818 find_if_block (test_bb, then_edge, else_edge)
1819 basic_block test_bb;
1820 edge then_edge, else_edge;
1822 basic_block then_bb = then_edge->dest;
1823 basic_block else_bb = else_edge->dest;
1824 basic_block join_bb = NULL_BLOCK;
1825 edge then_succ = then_bb->succ;
1826 edge else_succ = else_bb->succ;
1827 int next_index;
1829 /* The THEN block of an IF-THEN combo must have exactly one predecessor. */
1830 if (then_bb->pred->pred_next != NULL_EDGE)
1831 return FALSE;
1833 /* The THEN block of an IF-THEN combo must have zero or one successors. */
1834 if (then_succ != NULL_EDGE
1835 && (then_succ->succ_next != NULL_EDGE
1836 || (then_succ->flags & EDGE_COMPLEX)))
1837 return FALSE;
1839 /* If the THEN block has no successors, conditional execution can still
1840 make a conditional call. Don't do this unless the ELSE block has
1841 only one incoming edge -- the CFG manipulation is too ugly otherwise.
1842 Check for the last insn of the THEN block being an indirect jump, which
1843 is listed as not having any successors, but confuses the rest of the CE
1844 code processing. XXX we should fix this in the future. */
1845 if (then_succ == NULL)
1847 if (else_bb->pred->pred_next == NULL_EDGE)
1849 rtx last_insn = then_bb->end;
1851 while (last_insn
1852 && GET_CODE (last_insn) == NOTE
1853 && last_insn != then_bb->head)
1854 last_insn = PREV_INSN (last_insn);
1856 if (last_insn
1857 && GET_CODE (last_insn) == JUMP_INSN
1858 && ! simplejump_p (last_insn))
1859 return FALSE;
1861 join_bb = else_bb;
1862 else_bb = NULL_BLOCK;
1864 else
1865 return FALSE;
1868 /* If the THEN block's successor is the other edge out of the TEST block,
1869 then we have an IF-THEN combo without an ELSE. */
1870 else if (then_succ->dest == else_bb)
1872 join_bb = else_bb;
1873 else_bb = NULL_BLOCK;
1876 /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
1877 has exactly one predecessor and one successor, and the outgoing edge
1878 is not complex, then we have an IF-THEN-ELSE combo. */
1879 else if (else_succ != NULL_EDGE
1880 && then_succ->dest == else_succ->dest
1881 && else_bb->pred->pred_next == NULL_EDGE
1882 && else_succ->succ_next == NULL_EDGE
1883 && ! (else_succ->flags & EDGE_COMPLEX))
1884 join_bb = else_succ->dest;
1886 /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
1887 else
1888 return FALSE;
1890 num_possible_if_blocks++;
1892 if (rtl_dump_file)
1894 if (else_bb)
1895 fprintf (rtl_dump_file,
1896 "\nIF-THEN-ELSE block found, start %d, then %d, else %d, join %d\n",
1897 test_bb->index, then_bb->index, else_bb->index,
1898 join_bb->index);
1899 else
1900 fprintf (rtl_dump_file,
1901 "\nIF-THEN block found, start %d, then %d, join %d\n",
1902 test_bb->index, then_bb->index, join_bb->index);
1905 /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we
1906 get the first condition for free, since we've already asserted that
1907 there's a fallthru edge from IF to THEN. */
1908 /* ??? As an enhancement, move the ELSE block. Have to deal with EH and
1909 BLOCK notes, if by no other means than aborting the merge if they
1910 exist. Sticky enough I don't want to think about it now. */
1911 next_index = then_bb->index;
1912 if (else_bb && ++next_index != else_bb->index)
1913 return FALSE;
1914 if (++next_index != join_bb->index)
1916 if (else_bb)
1917 join_bb = NULL;
1918 else
1919 return FALSE;
1922 /* Do the real work. */
1923 return process_if_block (test_bb, then_bb, else_bb, join_bb);
1926 /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
1927 transformable, but not necessarily the other. There need be no
1928 JOIN block.
1930 Return TRUE if we were successful at converting the the block.
1932 Cases we'd like to look at:
1935 if (test) goto over; // x not live
1936 x = a;
1937 goto label;
1938 over:
1940 becomes
1942 x = a;
1943 if (! test) goto label;
1946 if (test) goto E; // x not live
1947 x = big();
1948 goto L;
1950 x = b;
1951 goto M;
1953 becomes
1955 x = b;
1956 if (test) goto M;
1957 x = big();
1958 goto L;
1960 (3) // This one's really only interesting for targets that can do
1961 // multiway branching, e.g. IA-64 BBB bundles. For other targets
1962 // it results in multiple branches on a cache line, which often
1963 // does not sit well with predictors.
1965 if (test1) goto E; // predicted not taken
1966 x = a;
1967 if (test2) goto F;
1970 x = b;
1973 becomes
1975 x = a;
1976 if (test1) goto E;
1977 if (test2) goto F;
1979 Notes:
1981 (A) Don't do (2) if the branch is predicted against the block we're
1982 eliminating. Do it anyway if we can eliminate a branch; this requires
1983 that the sole successor of the eliminated block postdominate the other
1984 side of the if.
1986 (B) With CE, on (3) we can steal from both sides of the if, creating
1988 if (test1) x = a;
1989 if (!test1) x = b;
1990 if (test1) goto J;
1991 if (test2) goto F;
1995 Again, this is most useful if J postdominates.
1997 (C) CE substitutes for helpful life information.
1999 (D) These heuristics need a lot of work. */
2001 /* Tests for case 1 above. */
2003 static int
2004 find_if_case_1 (test_bb, then_edge, else_edge)
2005 basic_block test_bb;
2006 edge then_edge, else_edge;
2008 basic_block then_bb = then_edge->dest;
2009 basic_block else_bb = else_edge->dest;
2010 edge then_succ = then_bb->succ;
2011 rtx new_lab;
2013 /* THEN has one successor. */
2014 if (!then_succ || then_succ->succ_next != NULL)
2015 return FALSE;
2017 /* THEN does not fall through, but is not strange either. */
2018 if (then_succ->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
2019 return FALSE;
2021 /* THEN has one predecessor. */
2022 if (then_bb->pred->pred_next != NULL)
2023 return FALSE;
2025 /* ELSE follows THEN. (??? could be moved) */
2026 if (else_bb->index != then_bb->index + 1)
2027 return FALSE;
2029 num_possible_if_blocks++;
2030 if (rtl_dump_file)
2031 fprintf (rtl_dump_file,
2032 "\nIF-CASE-1 found, start %d, then %d\n",
2033 test_bb->index, then_bb->index);
2035 /* THEN is small. */
2036 if (count_bb_insns (then_bb) > BRANCH_COST)
2037 return FALSE;
2039 /* Find the label for THEN's destination. */
2040 if (then_succ->dest == EXIT_BLOCK_PTR)
2041 new_lab = NULL_RTX;
2042 else
2044 new_lab = JUMP_LABEL (then_bb->end);
2045 if (! new_lab)
2046 abort ();
2049 /* Registers set are dead, or are predicable. */
2050 if (! dead_or_predicable (test_bb, then_bb, else_bb, new_lab, 1))
2051 return FALSE;
2053 /* Conversion went ok, including moving the insns and fixing up the
2054 jump. Adjust the CFG to match. */
2056 SET_UPDATE_LIFE (test_bb);
2057 bitmap_operation (test_bb->global_live_at_end,
2058 else_bb->global_live_at_start,
2059 then_bb->global_live_at_end, BITMAP_IOR);
2061 make_edge (NULL, test_bb, then_succ->dest, 0);
2062 flow_delete_block (then_bb);
2063 tidy_fallthru_edge (else_edge, test_bb, else_bb);
2065 num_removed_blocks++;
2066 num_updated_if_blocks++;
2068 return TRUE;
2071 /* Test for case 2 above. */
2073 static int
2074 find_if_case_2 (test_bb, then_edge, else_edge)
2075 basic_block test_bb;
2076 edge then_edge, else_edge;
2078 basic_block then_bb = then_edge->dest;
2079 basic_block else_bb = else_edge->dest;
2080 edge else_succ = else_bb->succ;
2081 rtx new_lab, note;
2083 /* ELSE has one successor. */
2084 if (!else_succ || else_succ->succ_next != NULL)
2085 return FALSE;
2087 /* ELSE outgoing edge is not complex. */
2088 if (else_succ->flags & EDGE_COMPLEX)
2089 return FALSE;
2091 /* ELSE has one predecessor. */
2092 if (else_bb->pred->pred_next != NULL)
2093 return FALSE;
2095 /* THEN is not EXIT. */
2096 if (then_bb->index < 0)
2097 return FALSE;
2099 /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
2100 note = find_reg_note (test_bb->end, REG_BR_PROB, NULL_RTX);
2101 if (note && INTVAL (XEXP (note, 0)) >= REG_BR_PROB_BASE / 2)
2103 else if (else_succ->dest->index < 0
2104 || TEST_BIT (post_dominators[ORIG_INDEX (then_bb)],
2105 ORIG_INDEX (else_succ->dest)))
2107 else
2108 return FALSE;
2110 num_possible_if_blocks++;
2111 if (rtl_dump_file)
2112 fprintf (rtl_dump_file,
2113 "\nIF-CASE-2 found, start %d, else %d\n",
2114 test_bb->index, else_bb->index);
2116 /* ELSE is small. */
2117 if (count_bb_insns (then_bb) > BRANCH_COST)
2118 return FALSE;
2120 /* Find the label for ELSE's destination. */
2121 if (else_succ->dest == EXIT_BLOCK_PTR)
2122 new_lab = NULL_RTX;
2123 else
2125 if (else_succ->flags & EDGE_FALLTHRU)
2127 new_lab = else_succ->dest->head;
2128 if (GET_CODE (new_lab) != CODE_LABEL)
2129 abort ();
2131 else
2133 new_lab = JUMP_LABEL (else_bb->end);
2134 if (! new_lab)
2135 abort ();
2139 /* Registers set are dead, or are predicable. */
2140 if (! dead_or_predicable (test_bb, else_bb, then_bb, new_lab, 0))
2141 return FALSE;
2143 /* Conversion went ok, including moving the insns and fixing up the
2144 jump. Adjust the CFG to match. */
2146 SET_UPDATE_LIFE (test_bb);
2147 bitmap_operation (test_bb->global_live_at_end,
2148 then_bb->global_live_at_start,
2149 else_bb->global_live_at_end, BITMAP_IOR);
2151 remove_edge (else_edge);
2152 make_edge (NULL, test_bb, else_succ->dest, 0);
2153 flow_delete_block (else_bb);
2155 num_removed_blocks++;
2156 num_updated_if_blocks++;
2158 /* ??? We may now fallthru from one of THEN's successors into a join
2159 block. Rerun cleanup_cfg? Examine things manually? Wait? */
2161 return TRUE;
2164 /* A subroutine of dead_or_predicable called through for_each_rtx.
2165 Return 1 if a memory is found. */
2167 static int
2168 find_memory (px, data)
2169 rtx *px;
2170 void *data ATTRIBUTE_UNUSED;
2172 return GET_CODE (*px) == MEM;
2175 /* Used by the code above to perform the actual rtl transformations.
2176 Return TRUE if successful.
2178 TEST_BB is the block containing the conditional branch. MERGE_BB
2179 is the block containing the code to manipulate. NEW_DEST is the
2180 label TEST_BB should be branching to after the conversion.
2181 REVERSEP is true if the sense of the branch should be reversed. */
2183 static int
2184 dead_or_predicable (test_bb, merge_bb, other_bb, new_dest, reversep)
2185 basic_block test_bb, merge_bb, other_bb;
2186 rtx new_dest;
2187 int reversep;
2189 rtx head, end, jump, earliest, old_dest;
2191 /* No code movement can occur if we'd be scrogging EH regions.
2192 Within MERGE_BB, ensure that we've not got stray EH_BEG or EH_END
2193 notes within the block. Between the blocks, checking that the end
2194 region numbers match ensures that we won't disrupt the nesting
2195 between regions. */
2196 if (merge_bb->eh_beg != merge_bb->eh_end
2197 || merge_bb->eh_end != test_bb->eh_end)
2198 return FALSE;
2200 jump = test_bb->end;
2202 /* Find the extent of the real code in the merge block. */
2203 head = merge_bb->head;
2204 end = merge_bb->end;
2206 if (GET_CODE (head) == CODE_LABEL)
2207 head = NEXT_INSN (head);
2208 if (GET_CODE (head) == NOTE)
2210 if (head == end)
2212 head = end = NULL_RTX;
2213 goto no_body;
2215 head = NEXT_INSN (head);
2218 if (GET_CODE (end) == JUMP_INSN)
2220 if (head == end)
2222 head = end = NULL_RTX;
2223 goto no_body;
2225 end = PREV_INSN (end);
2228 /* Disable handling dead code by conditional execution if the machine needs
2229 to do anything funny with the tests, etc. */
2230 #ifndef IFCVT_MODIFY_TESTS
2231 if (HAVE_conditional_execution)
2233 /* In the conditional execution case, we have things easy. We know
2234 the condition is reversable. We don't have to check life info,
2235 becase we're going to conditionally execute the code anyway.
2236 All that's left is making sure the insns involved can actually
2237 be predicated. */
2239 rtx cond, prob_val;
2241 cond = cond_exec_get_condition (jump);
2243 prob_val = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
2244 if (prob_val)
2245 prob_val = XEXP (prob_val, 0);
2247 if (reversep)
2249 cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
2250 GET_MODE (cond), XEXP (cond, 0),
2251 XEXP (cond, 1));
2252 if (prob_val)
2253 prob_val = GEN_INT (REG_BR_PROB_BASE - INTVAL (prob_val));
2256 if (! cond_exec_process_insns (head, end, cond, prob_val, 0))
2257 goto cancel;
2259 earliest = jump;
2261 else
2262 #endif
2264 /* In the non-conditional execution case, we have to verify that there
2265 are no trapping operations, no calls, no references to memory, and
2266 that any registers modified are dead at the branch site. */
2268 rtx insn, cond, prev;
2269 regset_head merge_set_head, tmp_head, test_live_head, test_set_head;
2270 regset merge_set, tmp, test_live, test_set;
2271 struct propagate_block_info *pbi;
2272 int i, fail = 0;
2274 /* Check for no calls or trapping operations. */
2275 for (insn = head; ; insn = NEXT_INSN (insn))
2277 if (GET_CODE (insn) == CALL_INSN)
2278 return FALSE;
2279 if (INSN_P (insn))
2281 if (may_trap_p (PATTERN (insn)))
2282 return FALSE;
2284 /* ??? Even non-trapping memories such as stack frame
2285 references must be avoided. For stores, we collect
2286 no lifetime info; for reads, we'd have to assert
2287 true_dependance false against every store in the
2288 TEST range. */
2289 if (for_each_rtx (&PATTERN (insn), find_memory, NULL))
2290 return FALSE;
2292 if (insn == end)
2293 break;
2296 if (! any_condjump_p (jump))
2297 return FALSE;
2299 /* Find the extent of the conditional. */
2300 cond = noce_get_condition (jump, &earliest);
2301 if (! cond)
2302 return FALSE;
2304 /* Collect:
2305 MERGE_SET = set of registers set in MERGE_BB
2306 TEST_LIVE = set of registers live at EARLIEST
2307 TEST_SET = set of registers set between EARLIEST and the
2308 end of the block. */
2310 tmp = INITIALIZE_REG_SET (tmp_head);
2311 merge_set = INITIALIZE_REG_SET (merge_set_head);
2312 test_live = INITIALIZE_REG_SET (test_live_head);
2313 test_set = INITIALIZE_REG_SET (test_set_head);
2315 /* ??? bb->local_set is only valid during calculate_global_regs_live,
2316 so we must recompute usage for MERGE_BB. Not so bad, I suppose,
2317 since we've already asserted that MERGE_BB is small. */
2318 propagate_block (merge_bb, tmp, merge_set, merge_set, 0);
2320 /* For small register class machines, don't lengthen lifetimes of
2321 hard registers before reload. */
2322 if (SMALL_REGISTER_CLASSES && ! reload_completed)
2324 EXECUTE_IF_SET_IN_BITMAP
2325 (merge_set, 0, i,
2327 if (i < FIRST_PSEUDO_REGISTER
2328 && ! fixed_regs[i]
2329 && ! global_regs[i])
2330 fail = 1;
2334 /* For TEST, we're interested in a range of insns, not a whole block.
2335 Moreover, we're interested in the insns live from OTHER_BB. */
2337 COPY_REG_SET (test_live, other_bb->global_live_at_start);
2338 pbi = init_propagate_block_info (test_bb, test_live, test_set, test_set,
2341 for (insn = jump; ; insn = prev)
2343 prev = propagate_one_insn (pbi, insn);
2344 if (insn == earliest)
2345 break;
2348 free_propagate_block_info (pbi);
2350 /* We can perform the transformation if
2351 MERGE_SET & (TEST_SET | TEST_LIVE)
2353 TEST_SET & merge_bb->global_live_at_start
2354 are empty. */
2356 bitmap_operation (tmp, test_set, test_live, BITMAP_IOR);
2357 bitmap_operation (tmp, tmp, merge_set, BITMAP_AND);
2358 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
2360 bitmap_operation (tmp, test_set, merge_bb->global_live_at_start,
2361 BITMAP_AND);
2362 EXECUTE_IF_SET_IN_BITMAP(tmp, 0, i, fail = 1);
2364 FREE_REG_SET (tmp);
2365 FREE_REG_SET (merge_set);
2366 FREE_REG_SET (test_live);
2367 FREE_REG_SET (test_set);
2369 if (fail)
2370 return FALSE;
2373 no_body:
2374 /* We don't want to use normal invert_jump or redirect_jump because
2375 we don't want to delete_insn called. Also, we want to do our own
2376 change group management. */
2378 old_dest = JUMP_LABEL (jump);
2379 if (reversep
2380 ? ! invert_jump_1 (jump, new_dest)
2381 : ! redirect_jump_1 (jump, new_dest))
2382 goto cancel;
2384 if (! apply_change_group ())
2385 return FALSE;
2387 if (old_dest)
2388 LABEL_NUSES (old_dest) -= 1;
2389 if (new_dest)
2390 LABEL_NUSES (new_dest) += 1;
2391 JUMP_LABEL (jump) = new_dest;
2393 if (reversep)
2395 rtx note = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
2396 if (note)
2397 XEXP (note, 0) = GEN_INT (REG_BR_PROB_BASE - INTVAL (XEXP (note, 0)));
2400 /* Move the insns out of MERGE_BB to before the branch. */
2401 if (head != NULL)
2403 if (end == merge_bb->end)
2404 merge_bb->end = PREV_INSN (head);
2406 head = squeeze_notes (head, end);
2407 if (GET_CODE (end) == NOTE
2408 && (NOTE_LINE_NUMBER (end) == NOTE_INSN_BLOCK_END
2409 || NOTE_LINE_NUMBER (end) == NOTE_INSN_BLOCK_BEG
2410 || NOTE_LINE_NUMBER (end) == NOTE_INSN_LOOP_BEG
2411 || NOTE_LINE_NUMBER (end) == NOTE_INSN_LOOP_END
2412 || NOTE_LINE_NUMBER (end) == NOTE_INSN_LOOP_CONT
2413 || NOTE_LINE_NUMBER (end) == NOTE_INSN_LOOP_VTOP))
2415 if (head == end)
2416 return TRUE;
2417 end = PREV_INSN (end);
2420 reorder_insns (head, end, PREV_INSN (earliest));
2422 return TRUE;
2424 cancel:
2425 cancel_changes (0);
2426 return FALSE;
2429 /* Main entry point for all if-conversion. */
2431 void
2432 if_convert (life_data_ok)
2433 int life_data_ok;
2435 int block_num;
2437 num_possible_if_blocks = 0;
2438 num_updated_if_blocks = 0;
2439 num_removed_blocks = 0;
2441 /* Free up basic_block_for_insn so that we don't have to keep it
2442 up to date, either here or in merge_blocks_nomove. */
2443 free_basic_block_vars (1);
2445 /* Compute postdominators if we think we'll use them. */
2446 post_dominators = NULL;
2447 if (HAVE_conditional_execution || life_data_ok)
2449 post_dominators = sbitmap_vector_alloc (n_basic_blocks, n_basic_blocks);
2450 calculate_dominance_info (NULL, post_dominators, CDI_POST_DOMINATORS);
2453 /* Record initial block numbers. */
2454 for (block_num = 0; block_num < n_basic_blocks; block_num++)
2455 SET_ORIG_INDEX (BASIC_BLOCK (block_num), block_num);
2457 /* Go through each of the basic blocks looking for things to convert. */
2458 for (block_num = 0; block_num < n_basic_blocks; )
2460 basic_block bb = BASIC_BLOCK (block_num);
2461 if (find_if_header (bb))
2462 block_num = bb->index;
2463 else
2464 block_num++;
2467 if (post_dominators)
2468 sbitmap_vector_free (post_dominators);
2470 if (rtl_dump_file)
2471 fflush (rtl_dump_file);
2473 /* Rebuild basic_block_for_insn for update_life_info and for gcse. */
2474 compute_bb_for_insn (get_max_uid ());
2476 /* Rebuild life info for basic blocks that require it. */
2477 if (num_removed_blocks && life_data_ok)
2479 sbitmap update_life_blocks = sbitmap_alloc (n_basic_blocks);
2480 sbitmap_zero (update_life_blocks);
2482 /* If we allocated new pseudos, we must resize the array for sched1. */
2483 if (max_regno < max_reg_num ())
2485 max_regno = max_reg_num ();
2486 allocate_reg_info (max_regno, FALSE, FALSE);
2489 for (block_num = 0; block_num < n_basic_blocks; block_num++)
2490 if (UPDATE_LIFE (BASIC_BLOCK (block_num)))
2491 SET_BIT (update_life_blocks, block_num);
2493 count_or_remove_death_notes (update_life_blocks, 1);
2494 /* ??? See about adding a mode that verifies that the initial
2495 set of blocks don't let registers come live. */
2496 update_life_info (update_life_blocks, UPDATE_LIFE_GLOBAL,
2497 PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE
2498 | PROP_KILL_DEAD_CODE);
2500 sbitmap_free (update_life_blocks);
2503 /* Write the final stats. */
2504 if (rtl_dump_file && num_possible_if_blocks > 0)
2506 fprintf (rtl_dump_file,
2507 "\n%d possible IF blocks searched.\n",
2508 num_possible_if_blocks);
2509 fprintf (rtl_dump_file,
2510 "%d IF blocks converted.\n",
2511 num_updated_if_blocks);
2512 fprintf (rtl_dump_file,
2513 "%d basic blocks deleted.\n\n\n",
2514 num_removed_blocks);
2517 #ifdef ENABLE_CHECKING
2518 verify_flow_info ();
2519 #endif