Branch data Line data Source code
1 : : /* If-conversion support.
2 : : Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it
7 : : under the terms of the GNU General Public License as published by
8 : : the Free Software Foundation; either version 3, or (at your option)
9 : : any later version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT
12 : : ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 : : or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 : : License for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #include "config.h"
21 : : #include "system.h"
22 : : #include "coretypes.h"
23 : : #include "backend.h"
24 : : #include "target.h"
25 : : #include "rtl.h"
26 : : #include "tree.h"
27 : : #include "cfghooks.h"
28 : : #include "df.h"
29 : : #include "memmodel.h"
30 : : #include "tm_p.h"
31 : : #include "expmed.h"
32 : : #include "optabs.h"
33 : : #include "regs.h"
34 : : #include "emit-rtl.h"
35 : : #include "recog.h"
36 : :
37 : : #include "cfgrtl.h"
38 : : #include "cfganal.h"
39 : : #include "cfgcleanup.h"
40 : : #include "expr.h"
41 : : #include "output.h"
42 : : #include "cfgloop.h"
43 : : #include "tree-pass.h"
44 : : #include "dbgcnt.h"
45 : : #include "shrink-wrap.h"
46 : : #include "rtl-iter.h"
47 : : #include "ifcvt.h"
48 : :
49 : : #ifndef MAX_CONDITIONAL_EXECUTE
50 : : #define MAX_CONDITIONAL_EXECUTE \
51 : : (BRANCH_COST (optimize_function_for_speed_p (cfun), false) \
52 : : + 1)
53 : : #endif
54 : :
55 : : #define IFCVT_MULTIPLE_DUMPS 1
56 : :
57 : : #define NULL_BLOCK ((basic_block) NULL)
58 : :
59 : : /* True if after combine pass. */
60 : : static bool ifcvt_after_combine;
61 : :
62 : : /* True if the target has the cbranchcc4 optab. */
63 : : static bool have_cbranchcc4;
64 : :
65 : : /* # of IF-THEN or IF-THEN-ELSE blocks we looked at */
66 : : static int num_possible_if_blocks;
67 : :
68 : : /* # of IF-THEN or IF-THEN-ELSE blocks were converted to conditional
69 : : execution. */
70 : : static int num_updated_if_blocks;
71 : :
72 : : /* # of changes made. */
73 : : static int num_true_changes;
74 : :
75 : : /* Whether conditional execution changes were made. */
76 : : static bool cond_exec_changed_p;
77 : :
78 : : /* Forward references. */
79 : : static int count_bb_insns (const_basic_block);
80 : : static bool cheap_bb_rtx_cost_p (const_basic_block, profile_probability, int);
81 : : static rtx_insn *first_active_insn (basic_block);
82 : : static rtx_insn *last_active_insn (basic_block, bool);
83 : : static rtx_insn *find_active_insn_before (basic_block, rtx_insn *);
84 : : static rtx_insn *find_active_insn_after (basic_block, rtx_insn *);
85 : : static basic_block block_fallthru (basic_block);
86 : : static rtx cond_exec_get_condition (rtx_insn *, bool);
87 : : static rtx noce_get_condition (rtx_insn *, rtx_insn **, bool);
88 : : static bool noce_operand_ok (const_rtx);
89 : : static void merge_if_block (ce_if_block *);
90 : : static bool find_cond_trap (basic_block, edge, edge);
91 : : static basic_block find_if_header (basic_block, int);
92 : : static int block_jumps_and_fallthru (basic_block, basic_block);
93 : : static bool noce_find_if_block (basic_block, edge, edge, int);
94 : : static bool cond_exec_find_if_block (ce_if_block *);
95 : : static bool find_if_case_1 (basic_block, edge, edge);
96 : : static bool find_if_case_2 (basic_block, edge, edge);
97 : : static bool dead_or_predicable (basic_block, basic_block, basic_block,
98 : : edge, bool);
99 : : static void noce_emit_move_insn (rtx, rtx);
100 : : static rtx_insn *block_has_only_trap (basic_block);
101 : : static void init_noce_multiple_sets_info (basic_block,
102 : : auto_delete_vec<noce_multiple_sets_info> &);
103 : : static bool noce_convert_multiple_sets_1 (struct noce_if_info *,
104 : : auto_delete_vec<noce_multiple_sets_info> &, int *);
105 : :
106 : : /* Count the number of non-jump active insns in BB. */
107 : :
108 : : static int
109 : 0 : count_bb_insns (const_basic_block bb)
110 : : {
111 : 0 : int count = 0;
112 : 0 : rtx_insn *insn = BB_HEAD (bb);
113 : :
114 : 0 : while (1)
115 : : {
116 : 0 : if (active_insn_p (insn) && !JUMP_P (insn))
117 : 0 : count++;
118 : :
119 : 0 : if (insn == BB_END (bb))
120 : : break;
121 : 0 : insn = NEXT_INSN (insn);
122 : : }
123 : :
124 : 0 : return count;
125 : : }
126 : :
127 : : /* Determine whether the total insn_cost on non-jump insns in
128 : : basic block BB is less than MAX_COST. This function returns
129 : : false if the cost of any instruction could not be estimated.
130 : :
131 : : The cost of the non-jump insns in BB is scaled by REG_BR_PROB_BASE
132 : : as those insns are being speculated. MAX_COST is scaled with SCALE
133 : : plus a small fudge factor. */
134 : :
135 : : static bool
136 : 2868151 : cheap_bb_rtx_cost_p (const_basic_block bb,
137 : : profile_probability prob, int max_cost)
138 : : {
139 : 2868151 : int count = 0;
140 : 2868151 : rtx_insn *insn = BB_HEAD (bb);
141 : 2868151 : bool speed = optimize_bb_for_speed_p (bb);
142 : 2868151 : int scale = prob.initialized_p () ? prob.to_reg_br_prob_base ()
143 : 2868151 : : REG_BR_PROB_BASE;
144 : :
145 : : /* Set scale to REG_BR_PROB_BASE to void the identical scaling
146 : : applied to insn_cost when optimizing for size. Only do
147 : : this after combine because if-conversion might interfere with
148 : : passes before combine.
149 : :
150 : : Use optimize_function_for_speed_p instead of the pre-defined
151 : : variable speed to make sure it is set to same value for all
152 : : basic blocks in one if-conversion transformation. */
153 : 2868151 : if (!optimize_function_for_speed_p (cfun) && ifcvt_after_combine)
154 : : scale = REG_BR_PROB_BASE;
155 : : /* Our branch probability/scaling factors are just estimates and don't
156 : : account for cases where we can get speculation for free and other
157 : : secondary benefits. So we fudge the scale factor to make speculating
158 : : appear a little more profitable when optimizing for performance. */
159 : : else
160 : 2819144 : scale += REG_BR_PROB_BASE / 8;
161 : :
162 : :
163 : 2868151 : max_cost *= scale;
164 : :
165 : 10665000 : while (1)
166 : : {
167 : 13533151 : if (NONJUMP_INSN_P (insn))
168 : : {
169 : 4263783 : int cost = insn_cost (insn, speed) * REG_BR_PROB_BASE;
170 : 4263783 : if (cost == 0)
171 : : return false;
172 : :
173 : : /* If this instruction is the load or set of a "stack" register,
174 : : such as a floating point register on x87, then the cost of
175 : : speculatively executing this insn may need to include
176 : : the additional cost of popping its result off of the
177 : : register stack. Unfortunately, correctly recognizing and
178 : : accounting for this additional overhead is tricky, so for
179 : : now we simply prohibit such speculative execution. */
180 : : #ifdef STACK_REGS
181 : 4211795 : {
182 : 4211795 : rtx set = single_set (insn);
183 : 4211795 : if (set && STACK_REG_P (SET_DEST (set)))
184 : : return false;
185 : : }
186 : : #endif
187 : :
188 : 4207993 : count += cost;
189 : 4207993 : if (count >= max_cost)
190 : : return false;
191 : : }
192 : 9269368 : else if (CALL_P (insn))
193 : : return false;
194 : :
195 : 11257521 : if (insn == BB_END (bb))
196 : : break;
197 : 10665000 : insn = NEXT_INSN (insn);
198 : 10665000 : }
199 : :
200 : : return true;
201 : : }
202 : :
203 : : /* Return the first non-jump active insn in the basic block. */
204 : :
205 : : static rtx_insn *
206 : 1474970 : first_active_insn (basic_block bb)
207 : : {
208 : 1474970 : rtx_insn *insn = BB_HEAD (bb);
209 : :
210 : 1474970 : if (LABEL_P (insn))
211 : : {
212 : 269010 : if (insn == BB_END (bb))
213 : : return NULL;
214 : 269010 : insn = NEXT_INSN (insn);
215 : : }
216 : :
217 : 4411474 : while (NOTE_P (insn) || DEBUG_INSN_P (insn))
218 : : {
219 : 2936508 : if (insn == BB_END (bb))
220 : : return NULL;
221 : 2936504 : insn = NEXT_INSN (insn);
222 : : }
223 : :
224 : 1474966 : if (JUMP_P (insn))
225 : : return NULL;
226 : :
227 : : return insn;
228 : : }
229 : :
230 : : /* Return the last non-jump active (non-jump) insn in the basic block. */
231 : :
232 : : static rtx_insn *
233 : 2421773 : last_active_insn (basic_block bb, bool skip_use_p)
234 : : {
235 : 2421773 : rtx_insn *insn = BB_END (bb);
236 : 2421773 : rtx_insn *head = BB_HEAD (bb);
237 : :
238 : 2421773 : while (NOTE_P (insn)
239 : : || JUMP_P (insn)
240 : : || DEBUG_INSN_P (insn)
241 : 5395025 : || (skip_use_p
242 : 0 : && NONJUMP_INSN_P (insn)
243 : 0 : && GET_CODE (PATTERN (insn)) == USE))
244 : : {
245 : 2973585 : if (insn == head)
246 : : return NULL;
247 : 2973252 : insn = PREV_INSN (insn);
248 : : }
249 : :
250 : 2421440 : if (LABEL_P (insn))
251 : 97 : return NULL;
252 : :
253 : : return insn;
254 : : }
255 : :
256 : : /* Return the active insn before INSN inside basic block CURR_BB. */
257 : :
258 : : static rtx_insn *
259 : 0 : find_active_insn_before (basic_block curr_bb, rtx_insn *insn)
260 : : {
261 : 0 : if (!insn || insn == BB_HEAD (curr_bb))
262 : : return NULL;
263 : :
264 : 0 : while ((insn = PREV_INSN (insn)) != NULL_RTX)
265 : : {
266 : 0 : if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
267 : : break;
268 : :
269 : : /* No other active insn all the way to the start of the basic block. */
270 : 0 : if (insn == BB_HEAD (curr_bb))
271 : : return NULL;
272 : : }
273 : :
274 : : return insn;
275 : : }
276 : :
277 : : /* Return the active insn after INSN inside basic block CURR_BB. */
278 : :
279 : : static rtx_insn *
280 : 0 : find_active_insn_after (basic_block curr_bb, rtx_insn *insn)
281 : : {
282 : 0 : if (!insn || insn == BB_END (curr_bb))
283 : : return NULL;
284 : :
285 : 0 : while ((insn = NEXT_INSN (insn)) != NULL_RTX)
286 : : {
287 : 0 : if (NONJUMP_INSN_P (insn) || JUMP_P (insn) || CALL_P (insn))
288 : : break;
289 : :
290 : : /* No other active insn all the way to the end of the basic block. */
291 : 0 : if (insn == BB_END (curr_bb))
292 : : return NULL;
293 : : }
294 : :
295 : : return insn;
296 : : }
297 : :
298 : : /* Return the basic block reached by falling though the basic block BB. */
299 : :
300 : : static basic_block
301 : 0 : block_fallthru (basic_block bb)
302 : : {
303 : 0 : edge e = find_fallthru_edge (bb->succs);
304 : :
305 : 0 : return (e) ? e->dest : NULL_BLOCK;
306 : : }
307 : :
308 : : /* Return true if RTXs A and B can be safely interchanged. */
309 : :
310 : : static bool
311 : 489770 : rtx_interchangeable_p (const_rtx a, const_rtx b)
312 : : {
313 : 489770 : if (!rtx_equal_p (a, b))
314 : : return false;
315 : :
316 : 173963 : if (GET_CODE (a) != MEM)
317 : : return true;
318 : :
319 : : /* A dead type-unsafe memory reference is legal, but a live type-unsafe memory
320 : : reference is not. Interchanging a dead type-unsafe memory reference with
321 : : a live type-safe one creates a live type-unsafe memory reference, in other
322 : : words, it makes the program illegal.
323 : : We check here conservatively whether the two memory references have equal
324 : : memory attributes. */
325 : :
326 : 2974 : return mem_attrs_eq_p (get_mem_attrs (a), get_mem_attrs (b));
327 : : }
328 : :
329 : :
330 : : /* Go through a bunch of insns, converting them to conditional
331 : : execution format if possible. Return TRUE if all of the non-note
332 : : insns were processed. */
333 : :
334 : : static bool
335 : 0 : cond_exec_process_insns (ce_if_block *ce_info ATTRIBUTE_UNUSED,
336 : : /* if block information */rtx_insn *start,
337 : : /* first insn to look at */rtx end,
338 : : /* last insn to look at */rtx test,
339 : : /* conditional execution test */profile_probability
340 : : prob_val,
341 : : /* probability of branch taken. */bool mod_ok)
342 : : {
343 : 0 : bool must_be_last = false;
344 : 0 : rtx_insn *insn;
345 : 0 : rtx xtest;
346 : 0 : rtx pattern;
347 : :
348 : 0 : if (!start || !end)
349 : : return false;
350 : :
351 : 0 : for (insn = start; ; insn = NEXT_INSN (insn))
352 : : {
353 : : /* dwarf2out can't cope with conditional prologues. */
354 : 0 : if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
355 : : return false;
356 : :
357 : 0 : if (NOTE_P (insn) || DEBUG_INSN_P (insn))
358 : 0 : goto insn_done;
359 : :
360 : 0 : gcc_assert (NONJUMP_INSN_P (insn) || CALL_P (insn));
361 : :
362 : : /* dwarf2out can't cope with conditional unwind info. */
363 : 0 : if (RTX_FRAME_RELATED_P (insn))
364 : : return false;
365 : :
366 : : /* Remove USE insns that get in the way. */
367 : 0 : if (reload_completed && GET_CODE (PATTERN (insn)) == USE)
368 : : {
369 : : /* ??? Ug. Actually unlinking the thing is problematic,
370 : : given what we'd have to coordinate with our callers. */
371 : 0 : SET_INSN_DELETED (insn);
372 : 0 : goto insn_done;
373 : : }
374 : :
375 : : /* Last insn wasn't last? */
376 : 0 : if (must_be_last)
377 : : return false;
378 : :
379 : 0 : if (modified_in_p (test, insn))
380 : : {
381 : 0 : if (!mod_ok)
382 : : return false;
383 : : must_be_last = true;
384 : : }
385 : :
386 : : /* Now build the conditional form of the instruction. */
387 : 0 : pattern = PATTERN (insn);
388 : 0 : xtest = copy_rtx (test);
389 : :
390 : : /* If this is already a COND_EXEC, rewrite the test to be an AND of the
391 : : two conditions. */
392 : 0 : if (GET_CODE (pattern) == COND_EXEC)
393 : : {
394 : 0 : if (GET_MODE (xtest) != GET_MODE (COND_EXEC_TEST (pattern)))
395 : : return false;
396 : :
397 : 0 : xtest = gen_rtx_AND (GET_MODE (xtest), xtest,
398 : : COND_EXEC_TEST (pattern));
399 : 0 : pattern = COND_EXEC_CODE (pattern);
400 : : }
401 : :
402 : 0 : pattern = gen_rtx_COND_EXEC (VOIDmode, xtest, pattern);
403 : :
404 : : /* If the machine needs to modify the insn being conditionally executed,
405 : : say for example to force a constant integer operand into a temp
406 : : register, do so here. */
407 : : #ifdef IFCVT_MODIFY_INSN
408 : : IFCVT_MODIFY_INSN (ce_info, pattern, insn);
409 : : if (! pattern)
410 : : return false;
411 : : #endif
412 : :
413 : 0 : validate_change (insn, &PATTERN (insn), pattern, 1);
414 : :
415 : 0 : if (CALL_P (insn) && prob_val.initialized_p ())
416 : 0 : validate_change (insn, ®_NOTES (insn),
417 : : gen_rtx_INT_LIST ((machine_mode) REG_BR_PROB,
418 : : prob_val.to_reg_br_prob_note (),
419 : : REG_NOTES (insn)), 1);
420 : :
421 : 0 : insn_done:
422 : 0 : if (insn == end)
423 : : break;
424 : 0 : }
425 : :
426 : : return true;
427 : : }
428 : :
429 : : /* Return the condition for a jump. Do not do any special processing. */
430 : :
431 : : static rtx
432 : 151872 : cond_exec_get_condition (rtx_insn *jump, bool get_reversed = false)
433 : : {
434 : 151872 : rtx test_if, cond;
435 : :
436 : 151872 : if (any_condjump_p (jump))
437 : 151872 : test_if = SET_SRC (pc_set (jump));
438 : : else
439 : : return NULL_RTX;
440 : 151872 : cond = XEXP (test_if, 0);
441 : :
442 : : /* If this branches to JUMP_LABEL when the condition is false,
443 : : reverse the condition. */
444 : 151872 : if (get_reversed
445 : 151872 : || (GET_CODE (XEXP (test_if, 2)) == LABEL_REF
446 : 0 : && label_ref_label (XEXP (test_if, 2))
447 : 0 : == JUMP_LABEL (jump)))
448 : : {
449 : 75936 : enum rtx_code rev = reversed_comparison_code (cond, jump);
450 : 75936 : if (rev == UNKNOWN)
451 : : return NULL_RTX;
452 : :
453 : 75936 : cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
454 : : XEXP (cond, 1));
455 : : }
456 : :
457 : : return cond;
458 : : }
459 : :
460 : : /* Given a simple IF-THEN or IF-THEN-ELSE block, attempt to convert it
461 : : to conditional execution. Return TRUE if we were successful at
462 : : converting the block. */
463 : :
464 : : static bool
465 : 0 : cond_exec_process_if_block (ce_if_block * ce_info,
466 : : /* if block information */bool do_multiple_p)
467 : : {
468 : 0 : basic_block test_bb = ce_info->test_bb; /* last test block */
469 : 0 : basic_block then_bb = ce_info->then_bb; /* THEN */
470 : 0 : basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
471 : 0 : rtx test_expr; /* expression in IF_THEN_ELSE that is tested */
472 : 0 : rtx_insn *then_start; /* first insn in THEN block */
473 : 0 : rtx_insn *then_end; /* last insn + 1 in THEN block */
474 : 0 : rtx_insn *else_start = NULL; /* first insn in ELSE block or NULL */
475 : 0 : rtx_insn *else_end = NULL; /* last insn + 1 in ELSE block */
476 : 0 : int max; /* max # of insns to convert. */
477 : 0 : bool then_mod_ok; /* whether conditional mods are ok in THEN */
478 : 0 : rtx true_expr; /* test for else block insns */
479 : 0 : rtx false_expr; /* test for then block insns */
480 : 0 : profile_probability true_prob_val;/* probability of else block */
481 : 0 : profile_probability false_prob_val;/* probability of then block */
482 : 0 : rtx_insn *then_last_head = NULL; /* Last match at the head of THEN */
483 : 0 : rtx_insn *else_last_head = NULL; /* Last match at the head of ELSE */
484 : 0 : rtx_insn *then_first_tail = NULL; /* First match at the tail of THEN */
485 : 0 : rtx_insn *else_first_tail = NULL; /* First match at the tail of ELSE */
486 : 0 : int then_n_insns, else_n_insns, n_insns;
487 : 0 : enum rtx_code false_code;
488 : 0 : rtx note;
489 : :
490 : : /* If test is comprised of && or || elements, and we've failed at handling
491 : : all of them together, just use the last test if it is the special case of
492 : : && elements without an ELSE block. */
493 : 0 : if (!do_multiple_p && ce_info->num_multiple_test_blocks)
494 : : {
495 : 0 : if (else_bb || ! ce_info->and_and_p)
496 : : return false;
497 : :
498 : 0 : ce_info->test_bb = test_bb = ce_info->last_test_bb;
499 : 0 : ce_info->num_multiple_test_blocks = 0;
500 : 0 : ce_info->num_and_and_blocks = 0;
501 : 0 : ce_info->num_or_or_blocks = 0;
502 : : }
503 : :
504 : : /* Find the conditional jump to the ELSE or JOIN part, and isolate
505 : : the test. */
506 : 0 : test_expr = cond_exec_get_condition (BB_END (test_bb));
507 : 0 : if (! test_expr)
508 : : return false;
509 : :
510 : : /* If the conditional jump is more than just a conditional jump,
511 : : then we cannot do conditional execution conversion on this block. */
512 : 0 : if (! onlyjump_p (BB_END (test_bb)))
513 : : return false;
514 : :
515 : : /* Collect the bounds of where we're to search, skipping any labels, jumps
516 : : and notes at the beginning and end of the block. Then count the total
517 : : number of insns and see if it is small enough to convert. */
518 : 0 : then_start = first_active_insn (then_bb);
519 : 0 : then_end = last_active_insn (then_bb, true);
520 : 0 : then_n_insns = ce_info->num_then_insns = count_bb_insns (then_bb);
521 : 0 : n_insns = then_n_insns;
522 : 0 : max = MAX_CONDITIONAL_EXECUTE;
523 : :
524 : 0 : if (else_bb)
525 : : {
526 : 0 : int n_matching;
527 : :
528 : 0 : max *= 2;
529 : 0 : else_start = first_active_insn (else_bb);
530 : 0 : else_end = last_active_insn (else_bb, true);
531 : 0 : else_n_insns = ce_info->num_else_insns = count_bb_insns (else_bb);
532 : 0 : n_insns += else_n_insns;
533 : :
534 : : /* Look for matching sequences at the head and tail of the two blocks,
535 : : and limit the range of insns to be converted if possible. */
536 : 0 : n_matching = flow_find_cross_jump (then_bb, else_bb,
537 : : &then_first_tail, &else_first_tail,
538 : : NULL);
539 : 0 : if (then_first_tail == BB_HEAD (then_bb))
540 : 0 : then_start = then_end = NULL;
541 : 0 : if (else_first_tail == BB_HEAD (else_bb))
542 : 0 : else_start = else_end = NULL;
543 : :
544 : 0 : if (n_matching > 0)
545 : : {
546 : 0 : if (then_end)
547 : 0 : then_end = find_active_insn_before (then_bb, then_first_tail);
548 : 0 : if (else_end)
549 : 0 : else_end = find_active_insn_before (else_bb, else_first_tail);
550 : 0 : n_insns -= 2 * n_matching;
551 : : }
552 : :
553 : 0 : if (then_start
554 : 0 : && else_start
555 : : && then_n_insns > n_matching
556 : 0 : && else_n_insns > n_matching)
557 : : {
558 : 0 : int longest_match = MIN (then_n_insns - n_matching,
559 : : else_n_insns - n_matching);
560 : 0 : n_matching
561 : 0 : = flow_find_head_matching_sequence (then_bb, else_bb,
562 : : &then_last_head,
563 : : &else_last_head,
564 : : longest_match);
565 : :
566 : 0 : if (n_matching > 0)
567 : : {
568 : 0 : rtx_insn *insn;
569 : :
570 : : /* We won't pass the insns in the head sequence to
571 : : cond_exec_process_insns, so we need to test them here
572 : : to make sure that they don't clobber the condition. */
573 : 0 : for (insn = BB_HEAD (then_bb);
574 : 0 : insn != NEXT_INSN (then_last_head);
575 : 0 : insn = NEXT_INSN (insn))
576 : 0 : if (!LABEL_P (insn) && !NOTE_P (insn)
577 : 0 : && !DEBUG_INSN_P (insn)
578 : 0 : && modified_in_p (test_expr, insn))
579 : : return false;
580 : : }
581 : :
582 : 0 : if (then_last_head == then_end)
583 : 0 : then_start = then_end = NULL;
584 : 0 : if (else_last_head == else_end)
585 : 0 : else_start = else_end = NULL;
586 : :
587 : 0 : if (n_matching > 0)
588 : : {
589 : 0 : if (then_start)
590 : 0 : then_start = find_active_insn_after (then_bb, then_last_head);
591 : 0 : if (else_start)
592 : 0 : else_start = find_active_insn_after (else_bb, else_last_head);
593 : 0 : n_insns -= 2 * n_matching;
594 : : }
595 : : }
596 : : }
597 : :
598 : 0 : if (n_insns > max)
599 : : return false;
600 : :
601 : : /* Map test_expr/test_jump into the appropriate MD tests to use on
602 : : the conditionally executed code. */
603 : :
604 : 0 : true_expr = test_expr;
605 : :
606 : 0 : false_code = reversed_comparison_code (true_expr, BB_END (test_bb));
607 : 0 : if (false_code != UNKNOWN)
608 : 0 : false_expr = gen_rtx_fmt_ee (false_code, GET_MODE (true_expr),
609 : : XEXP (true_expr, 0), XEXP (true_expr, 1));
610 : : else
611 : : false_expr = NULL_RTX;
612 : :
613 : : #ifdef IFCVT_MODIFY_TESTS
614 : : /* If the machine description needs to modify the tests, such as setting a
615 : : conditional execution register from a comparison, it can do so here. */
616 : : IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
617 : :
618 : : /* See if the conversion failed. */
619 : : if (!true_expr || !false_expr)
620 : : goto fail;
621 : : #endif
622 : :
623 : 0 : note = find_reg_note (BB_END (test_bb), REG_BR_PROB, NULL_RTX);
624 : 0 : if (note)
625 : : {
626 : 0 : true_prob_val = profile_probability::from_reg_br_prob_note (XINT (note, 0));
627 : 0 : false_prob_val = true_prob_val.invert ();
628 : : }
629 : : else
630 : : {
631 : : true_prob_val = profile_probability::uninitialized ();
632 : : false_prob_val = profile_probability::uninitialized ();
633 : : }
634 : :
635 : : /* If we have && or || tests, do them here. These tests are in the adjacent
636 : : blocks after the first block containing the test. */
637 : 0 : if (ce_info->num_multiple_test_blocks > 0)
638 : : {
639 : 0 : basic_block bb = test_bb;
640 : 0 : basic_block last_test_bb = ce_info->last_test_bb;
641 : :
642 : 0 : if (! false_expr)
643 : 0 : goto fail;
644 : :
645 : 0 : do
646 : : {
647 : 0 : rtx_insn *start, *end;
648 : 0 : rtx t, f;
649 : 0 : enum rtx_code f_code;
650 : :
651 : 0 : bb = block_fallthru (bb);
652 : 0 : start = first_active_insn (bb);
653 : 0 : end = last_active_insn (bb, true);
654 : 0 : if (start
655 : 0 : && ! cond_exec_process_insns (ce_info, start, end, false_expr,
656 : : false_prob_val, false))
657 : 0 : goto fail;
658 : :
659 : : /* If the conditional jump is more than just a conditional jump, then
660 : : we cannot do conditional execution conversion on this block. */
661 : 0 : if (! onlyjump_p (BB_END (bb)))
662 : 0 : goto fail;
663 : :
664 : : /* Find the conditional jump and isolate the test. */
665 : 0 : t = cond_exec_get_condition (BB_END (bb));
666 : 0 : if (! t)
667 : 0 : goto fail;
668 : :
669 : 0 : f_code = reversed_comparison_code (t, BB_END (bb));
670 : 0 : if (f_code == UNKNOWN)
671 : 0 : goto fail;
672 : :
673 : 0 : f = gen_rtx_fmt_ee (f_code, GET_MODE (t), XEXP (t, 0), XEXP (t, 1));
674 : 0 : if (ce_info->and_and_p)
675 : : {
676 : 0 : t = gen_rtx_AND (GET_MODE (t), true_expr, t);
677 : 0 : f = gen_rtx_IOR (GET_MODE (t), false_expr, f);
678 : : }
679 : : else
680 : : {
681 : 0 : t = gen_rtx_IOR (GET_MODE (t), true_expr, t);
682 : 0 : f = gen_rtx_AND (GET_MODE (t), false_expr, f);
683 : : }
684 : :
685 : : /* If the machine description needs to modify the tests, such as
686 : : setting a conditional execution register from a comparison, it can
687 : : do so here. */
688 : : #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
689 : : IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
690 : :
691 : : /* See if the conversion failed. */
692 : : if (!t || !f)
693 : : goto fail;
694 : : #endif
695 : :
696 : 0 : true_expr = t;
697 : 0 : false_expr = f;
698 : : }
699 : 0 : while (bb != last_test_bb);
700 : : }
701 : :
702 : : /* For IF-THEN-ELSE blocks, we don't allow modifications of the test
703 : : on then THEN block. */
704 : 0 : then_mod_ok = (else_bb == NULL_BLOCK);
705 : :
706 : : /* Go through the THEN and ELSE blocks converting the insns if possible
707 : : to conditional execution. */
708 : :
709 : 0 : if (then_end
710 : 0 : && (! false_expr
711 : 0 : || ! cond_exec_process_insns (ce_info, then_start, then_end,
712 : : false_expr, false_prob_val,
713 : : then_mod_ok)))
714 : 0 : goto fail;
715 : :
716 : 0 : if (else_bb && else_end
717 : 0 : && ! cond_exec_process_insns (ce_info, else_start, else_end,
718 : : true_expr, true_prob_val, true))
719 : 0 : goto fail;
720 : :
721 : : /* If we cannot apply the changes, fail. Do not go through the normal fail
722 : : processing, since apply_change_group will call cancel_changes. */
723 : 0 : if (! apply_change_group ())
724 : : {
725 : : #ifdef IFCVT_MODIFY_CANCEL
726 : : /* Cancel any machine dependent changes. */
727 : : IFCVT_MODIFY_CANCEL (ce_info);
728 : : #endif
729 : : return false;
730 : : }
731 : :
732 : : #ifdef IFCVT_MODIFY_FINAL
733 : : /* Do any machine dependent final modifications. */
734 : : IFCVT_MODIFY_FINAL (ce_info);
735 : : #endif
736 : :
737 : : /* Conversion succeeded. */
738 : 0 : if (dump_file)
739 : 0 : fprintf (dump_file, "%d insn%s converted to conditional execution.\n",
740 : : n_insns, (n_insns == 1) ? " was" : "s were");
741 : :
742 : : /* Merge the blocks! If we had matching sequences, make sure to delete one
743 : : copy at the appropriate location first: delete the copy in the THEN branch
744 : : for a tail sequence so that the remaining one is executed last for both
745 : : branches, and delete the copy in the ELSE branch for a head sequence so
746 : : that the remaining one is executed first for both branches. */
747 : 0 : if (then_first_tail)
748 : : {
749 : 0 : rtx_insn *from = then_first_tail;
750 : 0 : if (!INSN_P (from))
751 : 0 : from = find_active_insn_after (then_bb, from);
752 : 0 : delete_insn_chain (from, get_last_bb_insn (then_bb), false);
753 : : }
754 : 0 : if (else_last_head)
755 : 0 : delete_insn_chain (first_active_insn (else_bb), else_last_head, false);
756 : :
757 : 0 : merge_if_block (ce_info);
758 : 0 : cond_exec_changed_p = true;
759 : 0 : return true;
760 : :
761 : 0 : fail:
762 : : #ifdef IFCVT_MODIFY_CANCEL
763 : : /* Cancel any machine dependent changes. */
764 : : IFCVT_MODIFY_CANCEL (ce_info);
765 : : #endif
766 : :
767 : 0 : cancel_changes (0);
768 : 0 : return false;
769 : : }
770 : :
771 : : static rtx noce_emit_store_flag (struct noce_if_info *, rtx, bool, int);
772 : : static bool noce_try_move (struct noce_if_info *);
773 : : static bool noce_try_ifelse_collapse (struct noce_if_info *);
774 : : static bool noce_try_store_flag (struct noce_if_info *);
775 : : static bool noce_try_addcc (struct noce_if_info *);
776 : : static bool noce_try_store_flag_constants (struct noce_if_info *);
777 : : static bool noce_try_store_flag_mask (struct noce_if_info *);
778 : : static rtx noce_emit_cmove (struct noce_if_info *, rtx, enum rtx_code, rtx,
779 : : rtx, rtx, rtx, rtx = NULL, rtx = NULL);
780 : : static bool noce_try_cmove (struct noce_if_info *);
781 : : static bool noce_try_cmove_arith (struct noce_if_info *);
782 : : static rtx noce_get_alt_condition (struct noce_if_info *, rtx, rtx_insn **);
783 : : static bool noce_try_minmax (struct noce_if_info *);
784 : : static bool noce_try_abs (struct noce_if_info *);
785 : : static bool noce_try_sign_mask (struct noce_if_info *);
786 : : static int noce_try_cond_zero_arith (struct noce_if_info *);
787 : :
788 : : /* Return the comparison code for reversed condition for IF_INFO,
789 : : or UNKNOWN if reversing the condition is not possible. */
790 : :
791 : : static inline enum rtx_code
792 : 351530 : noce_reversed_cond_code (struct noce_if_info *if_info)
793 : : {
794 : 351530 : if (if_info->rev_cond)
795 : 351530 : return GET_CODE (if_info->rev_cond);
796 : 0 : return reversed_comparison_code (if_info->cond, if_info->jump);
797 : : }
798 : :
799 : : /* Return true if SEQ is a good candidate as a replacement for the
800 : : if-convertible sequence described in IF_INFO.
801 : : This is the default implementation that targets can override
802 : : through a target hook. */
803 : :
804 : : bool
805 : 197641 : default_noce_conversion_profitable_p (rtx_insn *seq,
806 : : struct noce_if_info *if_info)
807 : : {
808 : 197641 : bool speed_p = if_info->speed_p;
809 : :
810 : : /* Cost up the new sequence. */
811 : 197641 : unsigned int cost = seq_cost (seq, speed_p);
812 : :
813 : 197641 : if (cost <= if_info->original_cost)
814 : : return true;
815 : :
816 : : /* When compiling for size, we can make a reasonably accurately guess
817 : : at the size growth. When compiling for speed, use the maximum. */
818 : 168198 : return speed_p && cost <= if_info->max_seq_cost;
819 : : }
820 : :
821 : : /* Helper function for noce_try_store_flag*. */
822 : :
823 : : static rtx
824 : 44402 : noce_emit_store_flag (struct noce_if_info *if_info, rtx x, bool reversep,
825 : : int normalize)
826 : : {
827 : 44402 : rtx cond = if_info->cond;
828 : 44402 : bool cond_complex;
829 : 44402 : enum rtx_code code;
830 : :
831 : 44402 : cond_complex = (! general_operand (XEXP (cond, 0), VOIDmode)
832 : 44402 : || ! general_operand (XEXP (cond, 1), VOIDmode));
833 : :
834 : : /* If earliest == jump, or when the condition is complex, try to
835 : : build the store_flag insn directly. */
836 : :
837 : 44402 : if (cond_complex)
838 : : {
839 : 23049 : rtx set = pc_set (if_info->jump);
840 : 23049 : cond = XEXP (SET_SRC (set), 0);
841 : 23049 : if (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
842 : 23049 : && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump))
843 : 0 : reversep = !reversep;
844 : 23049 : if (if_info->then_else_reversed)
845 : 20523 : reversep = !reversep;
846 : : }
847 : 21353 : else if (reversep
848 : 14663 : && if_info->rev_cond
849 : 14663 : && general_operand (XEXP (if_info->rev_cond, 0), VOIDmode)
850 : 36016 : && general_operand (XEXP (if_info->rev_cond, 1), VOIDmode))
851 : : {
852 : 14663 : cond = if_info->rev_cond;
853 : 14663 : reversep = false;
854 : : }
855 : :
856 : 44402 : if (reversep)
857 : 4243 : code = reversed_comparison_code (cond, if_info->jump);
858 : : else
859 : 40159 : code = GET_CODE (cond);
860 : :
861 : 44402 : if ((if_info->cond_earliest == if_info->jump || cond_complex)
862 : 23049 : && (normalize == 0 || STORE_FLAG_VALUE == normalize))
863 : : {
864 : 17627 : rtx src = gen_rtx_fmt_ee (code, GET_MODE (x), XEXP (cond, 0),
865 : : XEXP (cond, 1));
866 : 17627 : rtx set = gen_rtx_SET (x, src);
867 : :
868 : 17627 : start_sequence ();
869 : 17627 : rtx_insn *insn = emit_insn (set);
870 : :
871 : 17627 : if (recog_memoized (insn) >= 0)
872 : : {
873 : 7505 : rtx_insn *seq = get_insns ();
874 : 7505 : end_sequence ();
875 : 7505 : emit_insn (seq);
876 : :
877 : 7505 : if_info->cond_earliest = if_info->jump;
878 : :
879 : 7505 : return x;
880 : : }
881 : :
882 : 10122 : end_sequence ();
883 : : }
884 : :
885 : : /* Don't even try if the comparison operands or the mode of X are weird. */
886 : 36897 : if (cond_complex || !SCALAR_INT_MODE_P (GET_MODE (x)))
887 : 15544 : return NULL_RTX;
888 : :
889 : 21353 : return emit_store_flag (x, code, XEXP (cond, 0),
890 : : XEXP (cond, 1), VOIDmode,
891 : 21353 : (code == LTU || code == LEU
892 : 42706 : || code == GEU || code == GTU), normalize);
893 : : }
894 : :
895 : : /* Return true if X can be safely forced into a register by copy_to_mode_reg
896 : : / force_operand. */
897 : :
898 : : static bool
899 : 1780764 : noce_can_force_operand (rtx x)
900 : : {
901 : 1780764 : if (general_operand (x, VOIDmode))
902 : : return true;
903 : 390468 : if (SUBREG_P (x))
904 : : {
905 : 1176 : if (!noce_can_force_operand (SUBREG_REG (x)))
906 : : return false;
907 : : return true;
908 : : }
909 : 389292 : if (ARITHMETIC_P (x))
910 : : {
911 : 334334 : if (!noce_can_force_operand (XEXP (x, 0))
912 : 334334 : || !noce_can_force_operand (XEXP (x, 1)))
913 : 4038 : return false;
914 : 330296 : switch (GET_CODE (x))
915 : : {
916 : : case MULT:
917 : : case DIV:
918 : : case MOD:
919 : : case UDIV:
920 : : case UMOD:
921 : : return true;
922 : 322069 : default:
923 : 322069 : return code_to_optab (GET_CODE (x));
924 : : }
925 : : }
926 : 54958 : if (UNARY_P (x))
927 : : {
928 : 48216 : if (!noce_can_force_operand (XEXP (x, 0)))
929 : : return false;
930 : 48204 : switch (GET_CODE (x))
931 : : {
932 : : case ZERO_EXTEND:
933 : : case SIGN_EXTEND:
934 : : case TRUNCATE:
935 : : case FLOAT_EXTEND:
936 : : case FLOAT_TRUNCATE:
937 : : case FIX:
938 : : case UNSIGNED_FIX:
939 : : case FLOAT:
940 : : case UNSIGNED_FLOAT:
941 : : return true;
942 : 8551 : default:
943 : 8551 : return code_to_optab (GET_CODE (x));
944 : : }
945 : : }
946 : : return false;
947 : : }
948 : :
949 : : /* Emit instruction to move an rtx, possibly into STRICT_LOW_PART.
950 : : X is the destination/target and Y is the value to copy. */
951 : :
952 : : static void
953 : 110647 : noce_emit_move_insn (rtx x, rtx y)
954 : : {
955 : 110647 : machine_mode outmode;
956 : 110647 : rtx outer, inner;
957 : 110647 : poly_int64 bitpos;
958 : :
959 : 110647 : if (GET_CODE (x) != STRICT_LOW_PART)
960 : : {
961 : 110647 : rtx_insn *seq, *insn;
962 : 110647 : rtx target;
963 : 110647 : optab ot;
964 : :
965 : 110647 : start_sequence ();
966 : : /* Check that the SET_SRC is reasonable before calling emit_move_insn,
967 : : otherwise construct a suitable SET pattern ourselves. */
968 : 84429 : insn = (OBJECT_P (y) || CONSTANT_P (y) || GET_CODE (y) == SUBREG)
969 : 110717 : ? emit_move_insn (x, y)
970 : 84359 : : emit_insn (gen_rtx_SET (x, y));
971 : 110647 : seq = get_insns ();
972 : 110647 : end_sequence ();
973 : :
974 : 110647 : if (recog_memoized (insn) <= 0)
975 : : {
976 : 54858 : if (GET_CODE (x) == ZERO_EXTRACT)
977 : : {
978 : 0 : rtx op = XEXP (x, 0);
979 : 0 : unsigned HOST_WIDE_INT size = INTVAL (XEXP (x, 1));
980 : 0 : unsigned HOST_WIDE_INT start = INTVAL (XEXP (x, 2));
981 : :
982 : : /* store_bit_field expects START to be relative to
983 : : BYTES_BIG_ENDIAN and adjusts this value for machines with
984 : : BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN. In order to be able to
985 : : invoke store_bit_field again it is necessary to have the START
986 : : value from the first call. */
987 : 0 : if (BITS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
988 : : {
989 : : if (MEM_P (op))
990 : : start = BITS_PER_UNIT - start - size;
991 : : else
992 : : {
993 : : gcc_assert (REG_P (op));
994 : : start = BITS_PER_WORD - start - size;
995 : : }
996 : : }
997 : :
998 : 0 : gcc_assert (start < (MEM_P (op) ? BITS_PER_UNIT : BITS_PER_WORD));
999 : 0 : store_bit_field (op, size, start, 0, 0, GET_MODE (x), y, false,
1000 : : false);
1001 : 0 : return;
1002 : : }
1003 : :
1004 : 54858 : switch (GET_RTX_CLASS (GET_CODE (y)))
1005 : : {
1006 : 1118 : case RTX_UNARY:
1007 : 1118 : ot = code_to_optab (GET_CODE (y));
1008 : 1118 : if (ot && noce_can_force_operand (XEXP (y, 0)))
1009 : : {
1010 : 844 : start_sequence ();
1011 : 844 : target = expand_unop (GET_MODE (y), ot, XEXP (y, 0), x, 0);
1012 : 844 : if (target != NULL_RTX)
1013 : : {
1014 : 844 : if (target != x)
1015 : 0 : emit_move_insn (x, target);
1016 : 844 : seq = get_insns ();
1017 : : }
1018 : 844 : end_sequence ();
1019 : : }
1020 : : break;
1021 : :
1022 : 32838 : case RTX_BIN_ARITH:
1023 : 32838 : case RTX_COMM_ARITH:
1024 : 32838 : ot = code_to_optab (GET_CODE (y));
1025 : 32838 : if (ot
1026 : 32838 : && noce_can_force_operand (XEXP (y, 0))
1027 : 65676 : && noce_can_force_operand (XEXP (y, 1)))
1028 : : {
1029 : 32838 : start_sequence ();
1030 : 32838 : target = expand_binop (GET_MODE (y), ot,
1031 : : XEXP (y, 0), XEXP (y, 1),
1032 : : x, 0, OPTAB_DIRECT);
1033 : 32838 : if (target != NULL_RTX)
1034 : : {
1035 : 32810 : if (target != x)
1036 : 0 : emit_move_insn (x, target);
1037 : 32810 : seq = get_insns ();
1038 : : }
1039 : 32838 : end_sequence ();
1040 : : }
1041 : : break;
1042 : :
1043 : : default:
1044 : : break;
1045 : : }
1046 : : }
1047 : :
1048 : 110647 : emit_insn (seq);
1049 : 110647 : return;
1050 : : }
1051 : :
1052 : 0 : outer = XEXP (x, 0);
1053 : 0 : inner = XEXP (outer, 0);
1054 : 0 : outmode = GET_MODE (outer);
1055 : 0 : bitpos = SUBREG_BYTE (outer) * BITS_PER_UNIT;
1056 : 0 : store_bit_field (inner, GET_MODE_BITSIZE (outmode), bitpos,
1057 : 0 : 0, 0, outmode, y, false, false);
1058 : : }
1059 : :
1060 : : /* Return the CC reg if it is used in COND. */
1061 : :
1062 : : static rtx
1063 : 3947633 : cc_in_cond (rtx cond)
1064 : : {
1065 : 3947633 : if (have_cbranchcc4 && cond
1066 : 3947633 : && GET_MODE_CLASS (GET_MODE (XEXP (cond, 0))) == MODE_CC)
1067 : 67685 : return XEXP (cond, 0);
1068 : :
1069 : : return NULL_RTX;
1070 : : }
1071 : :
1072 : : /* Return sequence of instructions generated by if conversion. This
1073 : : function calls end_sequence() to end the current stream, ensures
1074 : : that the instructions are unshared, recognizable non-jump insns.
1075 : : On failure, this function returns a NULL_RTX. */
1076 : :
1077 : : static rtx_insn *
1078 : 227911 : end_ifcvt_sequence (struct noce_if_info *if_info)
1079 : : {
1080 : 227911 : rtx_insn *insn;
1081 : 227911 : rtx_insn *seq = get_insns ();
1082 : 227911 : rtx cc = cc_in_cond (if_info->cond);
1083 : :
1084 : 227911 : set_used_flags (if_info->x);
1085 : 227911 : set_used_flags (if_info->cond);
1086 : 227911 : set_used_flags (if_info->a);
1087 : 227911 : set_used_flags (if_info->b);
1088 : :
1089 : 1274393 : for (insn = seq; insn; insn = NEXT_INSN (insn))
1090 : 818571 : set_used_flags (insn);
1091 : :
1092 : 227911 : unshare_all_rtl_in_chain (seq);
1093 : 227911 : end_sequence ();
1094 : :
1095 : : /* Make sure that all of the instructions emitted are recognizable,
1096 : : and that we haven't introduced a new jump instruction.
1097 : : As an exercise for the reader, build a general mechanism that
1098 : : allows proper placement of required clobbers. */
1099 : 1249983 : for (insn = seq; insn; insn = NEXT_INSN (insn))
1100 : 815847 : if (JUMP_P (insn)
1101 : 815847 : || recog_memoized (insn) == -1
1102 : : /* Make sure new generated code does not clobber CC. */
1103 : 1610086 : || (cc && set_of (cc, insn)))
1104 : 21686 : return NULL;
1105 : :
1106 : : return seq;
1107 : : }
1108 : :
1109 : : /* Return true iff the then and else basic block (if it exists)
1110 : : consist of a single simple set instruction. */
1111 : :
1112 : : static bool
1113 : 3206314 : noce_simple_bbs (struct noce_if_info *if_info)
1114 : : {
1115 : 0 : if (!if_info->then_simple)
1116 : : return false;
1117 : :
1118 : 2946420 : if (if_info->else_bb)
1119 : 0 : return if_info->else_simple;
1120 : :
1121 : : return true;
1122 : : }
1123 : :
1124 : : /* Convert "if (a != b) x = a; else x = b" into "x = a" and
1125 : : "if (a == b) x = a; else x = b" into "x = b". */
1126 : :
1127 : : static bool
1128 : 263322 : noce_try_move (struct noce_if_info *if_info)
1129 : : {
1130 : 263322 : rtx cond = if_info->cond;
1131 : 263322 : enum rtx_code code = GET_CODE (cond);
1132 : 263322 : rtx y;
1133 : 263322 : rtx_insn *seq;
1134 : :
1135 : 263322 : if (code != NE && code != EQ)
1136 : : return false;
1137 : :
1138 : 501260 : if (!noce_simple_bbs (if_info))
1139 : : return false;
1140 : :
1141 : : /* This optimization isn't valid if either A or B could be a NaN
1142 : : or a signed zero. */
1143 : 187341 : if (HONOR_NANS (if_info->x)
1144 : 187341 : || HONOR_SIGNED_ZEROS (if_info->x))
1145 : 54632 : return false;
1146 : :
1147 : : /* Check whether the operands of the comparison are A and in
1148 : : either order. */
1149 : 132709 : if ((rtx_equal_p (if_info->a, XEXP (cond, 0))
1150 : 2043 : && rtx_equal_p (if_info->b, XEXP (cond, 1)))
1151 : 134741 : || (rtx_equal_p (if_info->a, XEXP (cond, 1))
1152 : 1977 : && rtx_equal_p (if_info->b, XEXP (cond, 0))))
1153 : : {
1154 : 22 : if (!rtx_interchangeable_p (if_info->a, if_info->b))
1155 : : return false;
1156 : :
1157 : 0 : y = (code == EQ) ? if_info->a : if_info->b;
1158 : :
1159 : : /* Avoid generating the move if the source is the destination. */
1160 : 0 : if (! rtx_equal_p (if_info->x, y))
1161 : : {
1162 : 0 : start_sequence ();
1163 : 0 : noce_emit_move_insn (if_info->x, y);
1164 : 0 : seq = end_ifcvt_sequence (if_info);
1165 : 0 : if (!seq)
1166 : : return false;
1167 : :
1168 : 0 : emit_insn_before_setloc (seq, if_info->jump,
1169 : 0 : INSN_LOCATION (if_info->insn_a));
1170 : : }
1171 : 0 : if_info->transform_name = "noce_try_move";
1172 : 0 : return true;
1173 : : }
1174 : : return false;
1175 : : }
1176 : :
1177 : : /* Try forming an IF_THEN_ELSE (cond, b, a) and collapsing that
1178 : : through simplify_rtx. Sometimes that can eliminate the IF_THEN_ELSE.
1179 : : If that is the case, emit the result into x. */
1180 : :
1181 : : static bool
1182 : 263322 : noce_try_ifelse_collapse (struct noce_if_info * if_info)
1183 : : {
1184 : 563129 : if (!noce_simple_bbs (if_info))
1185 : : return false;
1186 : :
1187 : 240613 : machine_mode mode = GET_MODE (if_info->x);
1188 : 240613 : rtx if_then_else = simplify_gen_ternary (IF_THEN_ELSE, mode, mode,
1189 : : if_info->cond, if_info->b,
1190 : : if_info->a);
1191 : :
1192 : 240613 : if (GET_CODE (if_then_else) == IF_THEN_ELSE)
1193 : : return false;
1194 : :
1195 : 22994 : rtx_insn *seq;
1196 : 22994 : start_sequence ();
1197 : 22994 : noce_emit_move_insn (if_info->x, if_then_else);
1198 : 22994 : seq = end_ifcvt_sequence (if_info);
1199 : 22994 : if (!seq)
1200 : : return false;
1201 : :
1202 : 2092 : emit_insn_before_setloc (seq, if_info->jump,
1203 : 2092 : INSN_LOCATION (if_info->insn_a));
1204 : :
1205 : 2092 : if_info->transform_name = "noce_try_ifelse_collapse";
1206 : 2092 : return true;
1207 : : }
1208 : :
1209 : :
1210 : : /* Convert "if (test) x = 1; else x = 0".
1211 : :
1212 : : Only try 0 and STORE_FLAG_VALUE here. Other combinations will be
1213 : : tried in noce_try_store_flag_constants after noce_try_cmove has had
1214 : : a go at the conversion. */
1215 : :
1216 : : static bool
1217 : 261230 : noce_try_store_flag (struct noce_if_info *if_info)
1218 : : {
1219 : 261230 : bool reversep;
1220 : 261230 : rtx target;
1221 : 261230 : rtx_insn *seq;
1222 : :
1223 : 544741 : if (!noce_simple_bbs (if_info))
1224 : : return false;
1225 : :
1226 : 238521 : if (CONST_INT_P (if_info->b)
1227 : 65301 : && INTVAL (if_info->b) == STORE_FLAG_VALUE
1228 : 3824 : && if_info->a == const0_rtx)
1229 : : reversep = false;
1230 : 237333 : else if (if_info->b == const0_rtx
1231 : 33318 : && CONST_INT_P (if_info->a)
1232 : 20135 : && INTVAL (if_info->a) == STORE_FLAG_VALUE
1233 : 257048 : && noce_reversed_cond_code (if_info) != UNKNOWN)
1234 : : reversep = true;
1235 : : else
1236 : 217618 : return false;
1237 : :
1238 : 20903 : start_sequence ();
1239 : :
1240 : 20903 : target = noce_emit_store_flag (if_info, if_info->x, reversep, 0);
1241 : 20903 : if (target)
1242 : : {
1243 : 16263 : if (target != if_info->x)
1244 : 3045 : noce_emit_move_insn (if_info->x, target);
1245 : :
1246 : 16263 : seq = end_ifcvt_sequence (if_info);
1247 : 16263 : if (! seq)
1248 : : return false;
1249 : :
1250 : 16261 : emit_insn_before_setloc (seq, if_info->jump,
1251 : 16261 : INSN_LOCATION (if_info->insn_a));
1252 : 16261 : if_info->transform_name = "noce_try_store_flag";
1253 : 16261 : return true;
1254 : : }
1255 : : else
1256 : : {
1257 : 4640 : end_sequence ();
1258 : 4640 : return false;
1259 : : }
1260 : : }
1261 : :
1262 : :
1263 : : /* Convert "if (test) x = -A; else x = A" into
1264 : : x = A; if (test) x = -x if the machine can do the
1265 : : conditional negate form of this cheaply.
1266 : : Try this before noce_try_cmove that will just load the
1267 : : immediates into two registers and do a conditional select
1268 : : between them. If the target has a conditional negate or
1269 : : conditional invert operation we can save a potentially
1270 : : expensive constant synthesis. */
1271 : :
1272 : : static bool
1273 : 244887 : noce_try_inverse_constants (struct noce_if_info *if_info)
1274 : : {
1275 : 527929 : if (!noce_simple_bbs (if_info))
1276 : : return false;
1277 : :
1278 : 222178 : if (!CONST_INT_P (if_info->a)
1279 : 49315 : || !CONST_INT_P (if_info->b)
1280 : 18909 : || !REG_P (if_info->x))
1281 : : return false;
1282 : :
1283 : 18909 : machine_mode mode = GET_MODE (if_info->x);
1284 : :
1285 : 18909 : HOST_WIDE_INT val_a = INTVAL (if_info->a);
1286 : 18909 : HOST_WIDE_INT val_b = INTVAL (if_info->b);
1287 : :
1288 : 18909 : rtx cond = if_info->cond;
1289 : :
1290 : 18909 : rtx x = if_info->x;
1291 : 18909 : rtx target;
1292 : :
1293 : 18909 : start_sequence ();
1294 : :
1295 : 18909 : rtx_code code;
1296 : 18909 : if (val_b != HOST_WIDE_INT_MIN && val_a == -val_b)
1297 : : code = NEG;
1298 : 17945 : else if (val_a == ~val_b)
1299 : : code = NOT;
1300 : : else
1301 : : {
1302 : 17827 : end_sequence ();
1303 : 17827 : return false;
1304 : : }
1305 : :
1306 : 1082 : rtx tmp = gen_reg_rtx (mode);
1307 : 1082 : noce_emit_move_insn (tmp, if_info->a);
1308 : :
1309 : 1082 : target = emit_conditional_neg_or_complement (x, code, mode, cond, tmp, tmp);
1310 : :
1311 : 1082 : if (target)
1312 : : {
1313 : 0 : rtx_insn *seq = get_insns ();
1314 : :
1315 : 0 : if (!seq)
1316 : : {
1317 : 0 : end_sequence ();
1318 : 0 : return false;
1319 : : }
1320 : :
1321 : 0 : if (target != if_info->x)
1322 : 0 : noce_emit_move_insn (if_info->x, target);
1323 : :
1324 : 0 : seq = end_ifcvt_sequence (if_info);
1325 : :
1326 : 0 : if (!seq)
1327 : : return false;
1328 : :
1329 : 0 : emit_insn_before_setloc (seq, if_info->jump,
1330 : 0 : INSN_LOCATION (if_info->insn_a));
1331 : 0 : if_info->transform_name = "noce_try_inverse_constants";
1332 : 0 : return true;
1333 : : }
1334 : :
1335 : 1082 : end_sequence ();
1336 : 1082 : return false;
1337 : : }
1338 : :
1339 : :
1340 : : /* Convert "if (test) x = a; else x = b", for A and B constant.
1341 : : Also allow A = y + c1, B = y + c2, with a common y between A
1342 : : and B. */
1343 : :
1344 : : static bool
1345 : 244887 : noce_try_store_flag_constants (struct noce_if_info *if_info)
1346 : : {
1347 : 244887 : rtx target;
1348 : 244887 : rtx_insn *seq;
1349 : 244887 : bool reversep;
1350 : 244887 : HOST_WIDE_INT itrue, ifalse, diff, tmp;
1351 : 244887 : int normalize;
1352 : 244887 : bool can_reverse;
1353 : 244887 : machine_mode mode = GET_MODE (if_info->x);
1354 : 244887 : rtx common = NULL_RTX;
1355 : :
1356 : 244887 : rtx a = if_info->a;
1357 : 244887 : rtx b = if_info->b;
1358 : :
1359 : : /* Handle cases like x := test ? y + 3 : y + 4. */
1360 : 244887 : if (GET_CODE (a) == PLUS
1361 : 28167 : && GET_CODE (b) == PLUS
1362 : 1754 : && CONST_INT_P (XEXP (a, 1))
1363 : 725 : && CONST_INT_P (XEXP (b, 1))
1364 : 634 : && rtx_equal_p (XEXP (a, 0), XEXP (b, 0))
1365 : : /* Allow expressions that are not using the result or plain
1366 : : registers where we handle overlap below. */
1367 : 245425 : && (REG_P (XEXP (a, 0))
1368 : 13 : || (noce_operand_ok (XEXP (a, 0))
1369 : 13 : && ! reg_overlap_mentioned_p (if_info->x, XEXP (a, 0)))))
1370 : : {
1371 : 538 : common = XEXP (a, 0);
1372 : 538 : a = XEXP (a, 1);
1373 : 538 : b = XEXP (b, 1);
1374 : : }
1375 : :
1376 : 305751 : if (!noce_simple_bbs (if_info))
1377 : : return false;
1378 : :
1379 : 222178 : if (CONST_INT_P (a)
1380 : 49841 : && CONST_INT_P (b))
1381 : : {
1382 : 19435 : ifalse = INTVAL (a);
1383 : 19435 : itrue = INTVAL (b);
1384 : 19435 : bool subtract_flag_p = false;
1385 : :
1386 : 19435 : diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
1387 : : /* Make sure we can represent the difference between the two values. */
1388 : 19435 : if ((diff > 0)
1389 : 19435 : != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
1390 : : return false;
1391 : :
1392 : 19410 : diff = trunc_int_for_mode (diff, mode);
1393 : :
1394 : 19410 : can_reverse = noce_reversed_cond_code (if_info) != UNKNOWN;
1395 : 19410 : reversep = false;
1396 : 19410 : if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1397 : : {
1398 : 11136 : normalize = 0;
1399 : : /* We could collapse these cases but it is easier to follow the
1400 : : diff/STORE_FLAG_VALUE combinations when they are listed
1401 : : explicitly. */
1402 : :
1403 : : /* test ? 3 : 4
1404 : : => 4 + (test != 0). */
1405 : 11136 : if (diff < 0 && STORE_FLAG_VALUE < 0)
1406 : : reversep = false;
1407 : : /* test ? 4 : 3
1408 : : => can_reverse | 4 + (test == 0)
1409 : : !can_reverse | 3 - (test != 0). */
1410 : 11136 : else if (diff > 0 && STORE_FLAG_VALUE < 0)
1411 : : {
1412 : : reversep = can_reverse;
1413 : : subtract_flag_p = !can_reverse;
1414 : : /* If we need to subtract the flag and we have PLUS-immediate
1415 : : A and B then it is unlikely to be beneficial to play tricks
1416 : : here. */
1417 : : if (subtract_flag_p && common)
1418 : : return false;
1419 : : }
1420 : : /* test ? 3 : 4
1421 : : => can_reverse | 3 + (test == 0)
1422 : : !can_reverse | 4 - (test != 0). */
1423 : 11136 : else if (diff < 0 && STORE_FLAG_VALUE > 0)
1424 : : {
1425 : 5344 : reversep = can_reverse;
1426 : 5344 : subtract_flag_p = !can_reverse;
1427 : : /* If we need to subtract the flag and we have PLUS-immediate
1428 : : A and B then it is unlikely to be beneficial to play tricks
1429 : : here. */
1430 : 5344 : if (subtract_flag_p && common)
1431 : : return false;
1432 : : }
1433 : : /* test ? 4 : 3
1434 : : => 4 + (test != 0). */
1435 : : else if (diff > 0 && STORE_FLAG_VALUE > 0)
1436 : : reversep = false;
1437 : : else
1438 : : gcc_unreachable ();
1439 : : }
1440 : : /* Is this (cond) ? 2^n : 0? */
1441 : 1183 : else if (ifalse == 0 && pow2p_hwi (itrue)
1442 : 8274 : && STORE_FLAG_VALUE == 1)
1443 : : normalize = 1;
1444 : : /* Is this (cond) ? 0 : 2^n? */
1445 : 243100 : else if (itrue == 0 && pow2p_hwi (ifalse) && can_reverse
1446 : 8268 : && STORE_FLAG_VALUE == 1)
1447 : : {
1448 : : normalize = 1;
1449 : : reversep = true;
1450 : : }
1451 : : /* Is this (cond) ? -1 : x? */
1452 : : else if (itrue == -1
1453 : : && STORE_FLAG_VALUE == -1)
1454 : : normalize = -1;
1455 : : /* Is this (cond) ? x : -1? */
1456 : : else if (ifalse == -1 && can_reverse
1457 : : && STORE_FLAG_VALUE == -1)
1458 : : {
1459 : : normalize = -1;
1460 : : reversep = true;
1461 : : }
1462 : : else
1463 : : return false;
1464 : :
1465 : 5344 : if (reversep)
1466 : : {
1467 : 5345 : std::swap (itrue, ifalse);
1468 : 5345 : diff = trunc_int_for_mode (-(unsigned HOST_WIDE_INT) diff, mode);
1469 : : }
1470 : :
1471 : 11144 : start_sequence ();
1472 : :
1473 : : /* If we have x := test ? x + 3 : x + 4 then move the original
1474 : : x out of the way while we store flags. */
1475 : 11144 : if (common && rtx_equal_p (common, if_info->x))
1476 : : {
1477 : 11 : common = gen_reg_rtx (mode);
1478 : 11 : noce_emit_move_insn (common, if_info->x);
1479 : : }
1480 : :
1481 : 11144 : target = noce_emit_store_flag (if_info, if_info->x, reversep, normalize);
1482 : 11144 : if (! target)
1483 : : {
1484 : 4640 : end_sequence ();
1485 : 4640 : return false;
1486 : : }
1487 : :
1488 : : /* if (test) x = 3; else x = 4;
1489 : : => x = 3 + (test == 0); */
1490 : 6504 : if (diff == STORE_FLAG_VALUE || diff == -STORE_FLAG_VALUE)
1491 : : {
1492 : : /* Add the common part now. This may allow combine to merge this
1493 : : with the store flag operation earlier into some sort of conditional
1494 : : increment/decrement if the target allows it. */
1495 : 6496 : if (common)
1496 : 94 : target = expand_simple_binop (mode, PLUS,
1497 : : target, common,
1498 : : target, 0, OPTAB_WIDEN);
1499 : :
1500 : : /* Always use ifalse here. It should have been swapped with itrue
1501 : : when appropriate when reversep is true. */
1502 : 12992 : target = expand_simple_binop (mode, subtract_flag_p ? MINUS : PLUS,
1503 : 6496 : gen_int_mode (ifalse, mode), target,
1504 : : if_info->x, 0, OPTAB_WIDEN);
1505 : : }
1506 : : /* Other cases are not beneficial when the original A and B are PLUS
1507 : : expressions. */
1508 : 8 : else if (common)
1509 : : {
1510 : 0 : end_sequence ();
1511 : 0 : return false;
1512 : : }
1513 : : /* if (test) x = 8; else x = 0;
1514 : : => x = (test != 0) << 3; */
1515 : 8 : else if (ifalse == 0 && (tmp = exact_log2 (itrue)) >= 0)
1516 : : {
1517 : 8 : target = expand_simple_binop (mode, ASHIFT,
1518 : : target, GEN_INT (tmp), if_info->x, 0,
1519 : : OPTAB_WIDEN);
1520 : : }
1521 : :
1522 : : /* if (test) x = -1; else x = b;
1523 : : => x = -(test != 0) | b; */
1524 : 0 : else if (itrue == -1)
1525 : : {
1526 : 0 : target = expand_simple_binop (mode, IOR,
1527 : 0 : target, gen_int_mode (ifalse, mode),
1528 : : if_info->x, 0, OPTAB_WIDEN);
1529 : : }
1530 : : else
1531 : : {
1532 : 0 : end_sequence ();
1533 : 0 : return false;
1534 : : }
1535 : :
1536 : 6504 : if (! target)
1537 : : {
1538 : 0 : end_sequence ();
1539 : 0 : return false;
1540 : : }
1541 : :
1542 : 6504 : if (target != if_info->x)
1543 : 0 : noce_emit_move_insn (if_info->x, target);
1544 : :
1545 : 6504 : seq = end_ifcvt_sequence (if_info);
1546 : 6504 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1547 : 4412 : return false;
1548 : :
1549 : 2092 : emit_insn_before_setloc (seq, if_info->jump,
1550 : 2092 : INSN_LOCATION (if_info->insn_a));
1551 : 2092 : if_info->transform_name = "noce_try_store_flag_constants";
1552 : :
1553 : 2092 : return true;
1554 : : }
1555 : :
1556 : : return false;
1557 : : }
1558 : :
1559 : : /* Convert "if (test) foo++" into "foo += (test != 0)", and
1560 : : similarly for "foo--". */
1561 : :
1562 : : static bool
1563 : 201277 : noce_try_addcc (struct noce_if_info *if_info)
1564 : : {
1565 : 201277 : rtx target;
1566 : 201277 : rtx_insn *seq;
1567 : 201277 : bool subtract;
1568 : 201277 : int normalize;
1569 : :
1570 : 418446 : if (!noce_simple_bbs (if_info))
1571 : : return false;
1572 : :
1573 : 178568 : if (GET_CODE (if_info->a) == PLUS
1574 : 23545 : && rtx_equal_p (XEXP (if_info->a, 0), if_info->b)
1575 : 196990 : && noce_reversed_cond_code (if_info) != UNKNOWN)
1576 : : {
1577 : 18422 : rtx cond = if_info->rev_cond;
1578 : 18422 : enum rtx_code code;
1579 : :
1580 : 18422 : if (cond == NULL_RTX)
1581 : : {
1582 : 0 : cond = if_info->cond;
1583 : 0 : code = reversed_comparison_code (cond, if_info->jump);
1584 : : }
1585 : : else
1586 : 18422 : code = GET_CODE (cond);
1587 : :
1588 : : /* First try to use addcc pattern. */
1589 : 18422 : if (general_operand (XEXP (cond, 0), VOIDmode)
1590 : 18422 : && general_operand (XEXP (cond, 1), VOIDmode))
1591 : : {
1592 : 16769 : start_sequence ();
1593 : 50307 : target = emit_conditional_add (if_info->x, code,
1594 : : XEXP (cond, 0),
1595 : : XEXP (cond, 1),
1596 : : VOIDmode,
1597 : : if_info->b,
1598 : 16769 : XEXP (if_info->a, 1),
1599 : 16769 : GET_MODE (if_info->x),
1600 : 16769 : (code == LTU || code == GEU
1601 : 16769 : || code == LEU || code == GTU));
1602 : 16769 : if (target)
1603 : : {
1604 : 908 : if (target != if_info->x)
1605 : 0 : noce_emit_move_insn (if_info->x, target);
1606 : :
1607 : 908 : seq = end_ifcvt_sequence (if_info);
1608 : 908 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1609 : 64 : return false;
1610 : :
1611 : 844 : emit_insn_before_setloc (seq, if_info->jump,
1612 : 844 : INSN_LOCATION (if_info->insn_a));
1613 : 844 : if_info->transform_name = "noce_try_addcc";
1614 : :
1615 : 844 : return true;
1616 : : }
1617 : 15861 : end_sequence ();
1618 : : }
1619 : :
1620 : : /* If that fails, construct conditional increment or decrement using
1621 : : setcc. We're changing a branch and an increment to a comparison and
1622 : : an ADD/SUB. */
1623 : 17514 : if (XEXP (if_info->a, 1) == const1_rtx
1624 : 12754 : || XEXP (if_info->a, 1) == constm1_rtx)
1625 : : {
1626 : 6031 : start_sequence ();
1627 : 6031 : if (STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1628 : : subtract = false, normalize = 0;
1629 : 1271 : else if (-STORE_FLAG_VALUE == INTVAL (XEXP (if_info->a, 1)))
1630 : : subtract = true, normalize = 0;
1631 : : else
1632 : 0 : subtract = false, normalize = INTVAL (XEXP (if_info->a, 1));
1633 : :
1634 : :
1635 : 6031 : target = noce_emit_store_flag (if_info,
1636 : 6031 : gen_reg_rtx (GET_MODE (if_info->x)),
1637 : : true, normalize);
1638 : :
1639 : 6031 : if (target)
1640 : 9107 : target = expand_simple_binop (GET_MODE (if_info->x),
1641 : : subtract ? MINUS : PLUS,
1642 : : if_info->b, target, if_info->x,
1643 : : 0, OPTAB_WIDEN);
1644 : 5189 : if (target)
1645 : : {
1646 : 5189 : if (target != if_info->x)
1647 : 0 : noce_emit_move_insn (if_info->x, target);
1648 : :
1649 : 5189 : seq = end_ifcvt_sequence (if_info);
1650 : 5189 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1651 : 1201 : return false;
1652 : :
1653 : 3988 : emit_insn_before_setloc (seq, if_info->jump,
1654 : 3988 : INSN_LOCATION (if_info->insn_a));
1655 : 3988 : if_info->transform_name = "noce_try_addcc";
1656 : 3988 : return true;
1657 : : }
1658 : 842 : end_sequence ();
1659 : : }
1660 : : }
1661 : :
1662 : : return false;
1663 : : }
1664 : :
1665 : : /* Convert "if (test) x = 0;" to "x &= -(test == 0);" */
1666 : :
1667 : : static bool
1668 : 196445 : noce_try_store_flag_mask (struct noce_if_info *if_info)
1669 : : {
1670 : 196445 : rtx target;
1671 : 196445 : rtx_insn *seq;
1672 : 196445 : bool reversep;
1673 : :
1674 : 413521 : if (!noce_simple_bbs (if_info))
1675 : : return false;
1676 : :
1677 : 173736 : reversep = false;
1678 : :
1679 : 173736 : if ((if_info->a == const0_rtx
1680 : 2799 : && (REG_P (if_info->b) || rtx_equal_p (if_info->b, if_info->x)))
1681 : 175162 : || ((reversep = (noce_reversed_cond_code (if_info) != UNKNOWN))
1682 : 172363 : && if_info->b == const0_rtx
1683 : 16997 : && (REG_P (if_info->a) || rtx_equal_p (if_info->a, if_info->x))))
1684 : : {
1685 : 1383 : start_sequence ();
1686 : 1383 : target = noce_emit_store_flag (if_info,
1687 : 1383 : gen_reg_rtx (GET_MODE (if_info->x)),
1688 : : reversep, -1);
1689 : 1383 : if (target)
1690 : 618 : target = expand_simple_binop (GET_MODE (if_info->x), AND,
1691 : : reversep ? if_info->a : if_info->b,
1692 : : target, if_info->x, 0,
1693 : : OPTAB_WIDEN);
1694 : :
1695 : 618 : if (target)
1696 : : {
1697 : 618 : if (target != if_info->x)
1698 : 0 : noce_emit_move_insn (if_info->x, target);
1699 : :
1700 : 618 : seq = end_ifcvt_sequence (if_info);
1701 : 618 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1702 : 616 : return false;
1703 : :
1704 : 2 : emit_insn_before_setloc (seq, if_info->jump,
1705 : 2 : INSN_LOCATION (if_info->insn_a));
1706 : 2 : if_info->transform_name = "noce_try_store_flag_mask";
1707 : :
1708 : 2 : return true;
1709 : : }
1710 : :
1711 : 765 : end_sequence ();
1712 : : }
1713 : :
1714 : : return false;
1715 : : }
1716 : :
1717 : : /* Helper function for noce_try_cmove and noce_try_cmove_arith. */
1718 : :
1719 : : static rtx
1720 : 556530 : noce_emit_cmove (struct noce_if_info *if_info, rtx x, enum rtx_code code,
1721 : : rtx cmp_a, rtx cmp_b, rtx vfalse, rtx vtrue, rtx cc_cmp,
1722 : : rtx rev_cc_cmp)
1723 : : {
1724 : 556530 : rtx target ATTRIBUTE_UNUSED;
1725 : 556530 : bool unsignedp ATTRIBUTE_UNUSED;
1726 : :
1727 : : /* If earliest == jump, try to build the cmove insn directly.
1728 : : This is helpful when combine has created some complex condition
1729 : : (like for alpha's cmovlbs) that we can't hope to regenerate
1730 : : through the normal interface. */
1731 : :
1732 : 556530 : if (if_info->cond_earliest == if_info->jump)
1733 : : {
1734 : 4627 : rtx cond = gen_rtx_fmt_ee (code, GET_MODE (if_info->cond), cmp_a, cmp_b);
1735 : 4627 : rtx if_then_else = gen_rtx_IF_THEN_ELSE (GET_MODE (x),
1736 : : cond, vtrue, vfalse);
1737 : 4627 : rtx set = gen_rtx_SET (x, if_then_else);
1738 : :
1739 : 4627 : start_sequence ();
1740 : 4627 : rtx_insn *insn = emit_insn (set);
1741 : :
1742 : 4627 : if (recog_memoized (insn) >= 0)
1743 : : {
1744 : 1388 : rtx_insn *seq = get_insns ();
1745 : 1388 : end_sequence ();
1746 : 1388 : emit_insn (seq);
1747 : :
1748 : 1388 : return x;
1749 : : }
1750 : :
1751 : 3239 : end_sequence ();
1752 : : }
1753 : :
1754 : 1110284 : unsignedp = (code == LTU || code == GEU
1755 : 555142 : || code == LEU || code == GTU);
1756 : :
1757 : 555142 : if (cc_cmp != NULL_RTX && rev_cc_cmp != NULL_RTX)
1758 : 117672 : target = emit_conditional_move (x, cc_cmp, rev_cc_cmp,
1759 : 117672 : vtrue, vfalse, GET_MODE (x));
1760 : : else
1761 : : {
1762 : : /* Don't even try if the comparison operands are weird
1763 : : except that the target supports cbranchcc4. */
1764 : 437470 : if (! general_operand (cmp_a, GET_MODE (cmp_a))
1765 : 437470 : || ! general_operand (cmp_b, GET_MODE (cmp_b)))
1766 : : {
1767 : 39677 : if (!have_cbranchcc4
1768 : 39677 : || GET_MODE_CLASS (GET_MODE (cmp_a)) != MODE_CC
1769 : 2765 : || cmp_b != const0_rtx)
1770 : : return NULL_RTX;
1771 : : }
1772 : :
1773 : 400558 : target = emit_conditional_move (x, { code, cmp_a, cmp_b, VOIDmode },
1774 : 400558 : vtrue, vfalse, GET_MODE (x),
1775 : : unsignedp);
1776 : : }
1777 : :
1778 : 518230 : if (target)
1779 : : return target;
1780 : :
1781 : : /* We might be faced with a situation like:
1782 : :
1783 : : x = (reg:M TARGET)
1784 : : vtrue = (subreg:M (reg:N VTRUE) BYTE)
1785 : : vfalse = (subreg:M (reg:N VFALSE) BYTE)
1786 : :
1787 : : We can't do a conditional move in mode M, but it's possible that we
1788 : : could do a conditional move in mode N instead and take a subreg of
1789 : : the result.
1790 : :
1791 : : If we can't create new pseudos, though, don't bother. */
1792 : 43498 : if (reload_completed)
1793 : : return NULL_RTX;
1794 : :
1795 : 43498 : if (GET_CODE (vtrue) == SUBREG && GET_CODE (vfalse) == SUBREG)
1796 : : {
1797 : 30 : rtx reg_vtrue = SUBREG_REG (vtrue);
1798 : 30 : rtx reg_vfalse = SUBREG_REG (vfalse);
1799 : 30 : poly_uint64 byte_vtrue = SUBREG_BYTE (vtrue);
1800 : 30 : poly_uint64 byte_vfalse = SUBREG_BYTE (vfalse);
1801 : 30 : rtx promoted_target;
1802 : :
1803 : 30 : if (GET_MODE (reg_vtrue) != GET_MODE (reg_vfalse)
1804 : 30 : || maybe_ne (byte_vtrue, byte_vfalse)
1805 : 30 : || (SUBREG_PROMOTED_VAR_P (vtrue)
1806 : 30 : != SUBREG_PROMOTED_VAR_P (vfalse))
1807 : 30 : || (SUBREG_PROMOTED_GET (vtrue)
1808 : 30 : != SUBREG_PROMOTED_GET (vfalse)))
1809 : : return NULL_RTX;
1810 : :
1811 : 30 : promoted_target = gen_reg_rtx (GET_MODE (reg_vtrue));
1812 : :
1813 : 60 : target = emit_conditional_move (promoted_target,
1814 : : { code, cmp_a, cmp_b, VOIDmode },
1815 : : reg_vtrue, reg_vfalse,
1816 : 30 : GET_MODE (reg_vtrue), unsignedp);
1817 : : /* Nope, couldn't do it in that mode either. */
1818 : 30 : if (!target)
1819 : : return NULL_RTX;
1820 : :
1821 : 7 : target = gen_rtx_SUBREG (GET_MODE (vtrue), promoted_target, byte_vtrue);
1822 : 7 : SUBREG_PROMOTED_VAR_P (target) = SUBREG_PROMOTED_VAR_P (vtrue);
1823 : 7 : SUBREG_PROMOTED_SET (target, SUBREG_PROMOTED_GET (vtrue));
1824 : 7 : emit_move_insn (x, target);
1825 : 7 : return x;
1826 : : }
1827 : : else
1828 : : return NULL_RTX;
1829 : : }
1830 : :
1831 : : /* Emit a conditional zero, returning TARGET or NULL_RTX upon failure.
1832 : : IF_INFO describes the if-conversion scenario under consideration.
1833 : : CZERO_CODE selects the condition (EQ/NE).
1834 : : NON_ZERO_OP is the nonzero operand of the conditional move
1835 : : TARGET is the desired output register. */
1836 : :
1837 : : static rtx
1838 : 98 : noce_emit_czero (struct noce_if_info *if_info, enum rtx_code czero_code,
1839 : : rtx non_zero_op, rtx target)
1840 : : {
1841 : 98 : machine_mode mode = GET_MODE (target);
1842 : 98 : rtx cond_op0 = XEXP (if_info->cond, 0);
1843 : 98 : rtx czero_cond
1844 : 98 : = gen_rtx_fmt_ee (czero_code, GET_MODE (cond_op0), cond_op0, const0_rtx);
1845 : 98 : rtx if_then_else
1846 : 98 : = gen_rtx_IF_THEN_ELSE (mode, czero_cond, const0_rtx, non_zero_op);
1847 : 98 : rtx set = gen_rtx_SET (target, if_then_else);
1848 : :
1849 : 98 : rtx_insn *insn = make_insn_raw (set);
1850 : :
1851 : 98 : if (recog_memoized (insn) >= 0)
1852 : : {
1853 : 0 : add_insn (insn);
1854 : 0 : return target;
1855 : : }
1856 : :
1857 : : return NULL_RTX;
1858 : : }
1859 : :
1860 : : /* Try only simple constants and registers here. More complex cases
1861 : : are handled in noce_try_cmove_arith after noce_try_store_flag_arith
1862 : : has had a go at it. */
1863 : :
1864 : : static bool
1865 : 242795 : noce_try_cmove (struct noce_if_info *if_info)
1866 : : {
1867 : 242795 : enum rtx_code code;
1868 : 242795 : rtx target;
1869 : 242795 : rtx_insn *seq;
1870 : :
1871 : 480156 : if (!noce_simple_bbs (if_info))
1872 : : return false;
1873 : :
1874 : 160452 : if ((CONSTANT_P (if_info->a) || register_operand (if_info->a, VOIDmode))
1875 : 253634 : && (CONSTANT_P (if_info->b) || register_operand (if_info->b, VOIDmode)))
1876 : : {
1877 : 87205 : start_sequence ();
1878 : :
1879 : 87205 : code = GET_CODE (if_info->cond);
1880 : 87205 : target = noce_emit_cmove (if_info, if_info->x, code,
1881 : : XEXP (if_info->cond, 0),
1882 : : XEXP (if_info->cond, 1),
1883 : : if_info->a, if_info->b);
1884 : :
1885 : 87205 : if (target)
1886 : : {
1887 : 59586 : if (target != if_info->x)
1888 : 0 : noce_emit_move_insn (if_info->x, target);
1889 : :
1890 : 59586 : seq = end_ifcvt_sequence (if_info);
1891 : 59586 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1892 : 18093 : return false;
1893 : :
1894 : 41493 : emit_insn_before_setloc (seq, if_info->jump,
1895 : 41493 : INSN_LOCATION (if_info->insn_a));
1896 : 41493 : if_info->transform_name = "noce_try_cmove";
1897 : :
1898 : 41493 : return true;
1899 : : }
1900 : : /* If both a and b are constants try a last-ditch transformation:
1901 : : if (test) x = a; else x = b;
1902 : : => x = (-(test != 0) & (b - a)) + a;
1903 : : Try this only if the target-specific expansion above has failed.
1904 : : The target-specific expander may want to generate sequences that
1905 : : we don't know about, so give them a chance before trying this
1906 : : approach. */
1907 : 27619 : else if (!targetm.have_conditional_execution ()
1908 : 27619 : && CONST_INT_P (if_info->a) && CONST_INT_P (if_info->b))
1909 : : {
1910 : 4941 : machine_mode mode = GET_MODE (if_info->x);
1911 : 4941 : HOST_WIDE_INT ifalse = INTVAL (if_info->a);
1912 : 4941 : HOST_WIDE_INT itrue = INTVAL (if_info->b);
1913 : 4941 : rtx target = noce_emit_store_flag (if_info, if_info->x, false, -1);
1914 : 4941 : if (!target)
1915 : : {
1916 : 4657 : end_sequence ();
1917 : 4657 : return false;
1918 : : }
1919 : :
1920 : 284 : HOST_WIDE_INT diff = (unsigned HOST_WIDE_INT) itrue - ifalse;
1921 : : /* Make sure we can represent the difference
1922 : : between the two values. */
1923 : 284 : if ((diff > 0)
1924 : 284 : != ((ifalse < 0) != (itrue < 0) ? ifalse < 0 : ifalse < itrue))
1925 : : {
1926 : 9 : end_sequence ();
1927 : 9 : return false;
1928 : : }
1929 : :
1930 : 275 : diff = trunc_int_for_mode (diff, mode);
1931 : 275 : target = expand_simple_binop (mode, AND,
1932 : 275 : target, gen_int_mode (diff, mode),
1933 : : if_info->x, 0, OPTAB_WIDEN);
1934 : 275 : if (target)
1935 : 275 : target = expand_simple_binop (mode, PLUS,
1936 : 275 : target, gen_int_mode (ifalse, mode),
1937 : : if_info->x, 0, OPTAB_WIDEN);
1938 : 275 : if (target)
1939 : : {
1940 : 275 : if (target != if_info->x)
1941 : 0 : noce_emit_move_insn (if_info->x, target);
1942 : :
1943 : 275 : seq = end_ifcvt_sequence (if_info);
1944 : 275 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
1945 : 250 : return false;
1946 : :
1947 : 25 : emit_insn_before_setloc (seq, if_info->jump,
1948 : 25 : INSN_LOCATION (if_info->insn_a));
1949 : 25 : if_info->transform_name = "noce_try_cmove";
1950 : 25 : return true;
1951 : : }
1952 : : else
1953 : : {
1954 : 0 : end_sequence ();
1955 : 0 : return false;
1956 : : }
1957 : : }
1958 : : else
1959 : 22678 : end_sequence ();
1960 : : }
1961 : :
1962 : : return false;
1963 : : }
1964 : :
1965 : : /* Return true if X contains a conditional code mode rtx. */
1966 : :
1967 : : static bool
1968 : 2788425 : contains_ccmode_rtx_p (rtx x)
1969 : : {
1970 : 2788425 : subrtx_iterator::array_type array;
1971 : 6973561 : FOR_EACH_SUBRTX (iter, array, x, ALL)
1972 : 4235987 : if (GET_MODE_CLASS (GET_MODE (*iter)) == MODE_CC)
1973 : 50851 : return true;
1974 : :
1975 : 2737574 : return false;
1976 : 2788425 : }
1977 : :
1978 : : /* Helper for bb_valid_for_noce_process_p. Validate that
1979 : : the rtx insn INSN is a single set that does not set
1980 : : the conditional register CC and is in general valid for
1981 : : if-conversion. */
1982 : :
1983 : : static bool
1984 : 3433807 : insn_valid_noce_process_p (rtx_insn *insn, rtx cc)
1985 : : {
1986 : 3433807 : if (!insn
1987 : 3433377 : || !NONJUMP_INSN_P (insn)
1988 : 6247141 : || (cc && set_of (cc, insn)))
1989 : 628712 : return false;
1990 : :
1991 : 2805095 : rtx sset = single_set (insn);
1992 : :
1993 : : /* Currently support only simple single sets in test_bb. */
1994 : 2805095 : if (!sset
1995 : 2801701 : || !noce_operand_ok (SET_DEST (sset))
1996 : 2788425 : || contains_ccmode_rtx_p (SET_DEST (sset))
1997 : 5542669 : || !noce_operand_ok (SET_SRC (sset)))
1998 : 130456 : return false;
1999 : :
2000 : : return true;
2001 : : }
2002 : :
2003 : :
2004 : : /* Return true iff the registers that the insns in BB_A set do not get
2005 : : used in BB_B. If TO_RENAME is non-NULL then it is a location that will be
2006 : : renamed later by the caller and so conflicts on it should be ignored
2007 : : in this function. */
2008 : :
2009 : : static bool
2010 : 71626 : bbs_ok_for_cmove_arith (basic_block bb_a, basic_block bb_b, rtx to_rename)
2011 : : {
2012 : 71626 : rtx_insn *a_insn;
2013 : 71626 : bitmap bba_sets = BITMAP_ALLOC (®_obstack);
2014 : :
2015 : 71626 : df_ref def;
2016 : 71626 : df_ref use;
2017 : :
2018 : 360117 : FOR_BB_INSNS (bb_a, a_insn)
2019 : : {
2020 : 288491 : if (!active_insn_p (a_insn))
2021 : 190383 : continue;
2022 : :
2023 : 98108 : rtx sset_a = single_set (a_insn);
2024 : :
2025 : 98108 : if (!sset_a)
2026 : : {
2027 : 0 : BITMAP_FREE (bba_sets);
2028 : 0 : return false;
2029 : : }
2030 : : /* Record all registers that BB_A sets. */
2031 : 238373 : FOR_EACH_INSN_DEF (def, a_insn)
2032 : 140265 : if (!(to_rename && DF_REF_REG (def) == to_rename))
2033 : 69443 : bitmap_set_bit (bba_sets, DF_REF_REGNO (def));
2034 : : }
2035 : :
2036 : 71626 : rtx_insn *b_insn;
2037 : :
2038 : 360102 : FOR_BB_INSNS (bb_b, b_insn)
2039 : : {
2040 : 288586 : if (!active_insn_p (b_insn))
2041 : 190474 : continue;
2042 : :
2043 : 98112 : rtx sset_b = single_set (b_insn);
2044 : :
2045 : 98112 : if (!sset_b)
2046 : : {
2047 : 0 : BITMAP_FREE (bba_sets);
2048 : 0 : return false;
2049 : : }
2050 : :
2051 : : /* Make sure this is a REG and not some instance
2052 : : of ZERO_EXTRACT or non-paradoxical SUBREG or other dangerous stuff.
2053 : : If we have a memory destination then we have a pair of simple
2054 : : basic blocks performing an operation of the form [addr] = c ? a : b.
2055 : : bb_valid_for_noce_process_p will have ensured that these are
2056 : : the only stores present. In that case [addr] should be the location
2057 : : to be renamed. Assert that the callers set this up properly. */
2058 : 98112 : if (MEM_P (SET_DEST (sset_b)))
2059 : 792 : gcc_assert (rtx_equal_p (SET_DEST (sset_b), to_rename));
2060 : 97320 : else if (!REG_P (SET_DEST (sset_b))
2061 : 97320 : && !paradoxical_subreg_p (SET_DEST (sset_b)))
2062 : : {
2063 : 47 : BITMAP_FREE (bba_sets);
2064 : 47 : return false;
2065 : : }
2066 : :
2067 : : /* If the insn uses a reg set in BB_A return false. */
2068 : 189809 : FOR_EACH_INSN_USE (use, b_insn)
2069 : : {
2070 : 91807 : if (bitmap_bit_p (bba_sets, DF_REF_REGNO (use)))
2071 : : {
2072 : 63 : BITMAP_FREE (bba_sets);
2073 : 63 : return false;
2074 : : }
2075 : : }
2076 : :
2077 : : }
2078 : :
2079 : 71516 : BITMAP_FREE (bba_sets);
2080 : 71516 : return true;
2081 : : }
2082 : :
2083 : : /* Emit copies of all the active instructions in BB except the last.
2084 : : This is a helper for noce_try_cmove_arith. */
2085 : :
2086 : : static void
2087 : 19853 : noce_emit_all_but_last (basic_block bb)
2088 : : {
2089 : 19853 : rtx_insn *last = last_active_insn (bb, false);
2090 : 19853 : rtx_insn *insn;
2091 : 171557 : FOR_BB_INSNS (bb, insn)
2092 : : {
2093 : 131851 : if (insn != last && active_insn_p (insn))
2094 : : {
2095 : 49181 : rtx_insn *to_emit = as_a <rtx_insn *> (copy_rtx (insn));
2096 : :
2097 : 49181 : emit_insn (PATTERN (to_emit));
2098 : : }
2099 : : }
2100 : 19853 : }
2101 : :
2102 : : /* Helper for noce_try_cmove_arith. Emit the pattern TO_EMIT and return
2103 : : the resulting insn or NULL if it's not a valid insn. */
2104 : :
2105 : : static rtx_insn *
2106 : 240732 : noce_emit_insn (rtx to_emit)
2107 : : {
2108 : 240732 : gcc_assert (to_emit);
2109 : 240732 : rtx_insn *insn = emit_insn (to_emit);
2110 : :
2111 : 240732 : if (recog_memoized (insn) < 0)
2112 : 211 : return NULL;
2113 : :
2114 : : return insn;
2115 : : }
2116 : :
2117 : : /* Helper for noce_try_cmove_arith. Emit a copy of the insns up to
2118 : : and including the penultimate one in BB if it is not simple
2119 : : (as indicated by SIMPLE). Then emit LAST_INSN as the last
2120 : : insn in the block. The reason for that is that LAST_INSN may
2121 : : have been modified by the preparation in noce_try_cmove_arith. */
2122 : :
2123 : : static bool
2124 : 242947 : noce_emit_bb (rtx last_insn, basic_block bb, bool simple)
2125 : : {
2126 : 242947 : if (bb && !simple)
2127 : 19853 : noce_emit_all_but_last (bb);
2128 : :
2129 : 242947 : if (last_insn && !noce_emit_insn (last_insn))
2130 : : return false;
2131 : :
2132 : : return true;
2133 : : }
2134 : :
2135 : : /* Try more complex cases involving conditional_move. */
2136 : :
2137 : : static bool
2138 : 196443 : noce_try_cmove_arith (struct noce_if_info *if_info)
2139 : : {
2140 : 196443 : rtx a = if_info->a;
2141 : 196443 : rtx b = if_info->b;
2142 : 196443 : rtx x = if_info->x;
2143 : 196443 : rtx orig_a, orig_b;
2144 : 196443 : rtx_insn *insn_a, *insn_b;
2145 : 196443 : bool a_simple = if_info->then_simple;
2146 : 196443 : bool b_simple = if_info->else_simple;
2147 : 196443 : basic_block then_bb = if_info->then_bb;
2148 : 196443 : basic_block else_bb = if_info->else_bb;
2149 : 196443 : rtx target;
2150 : 196443 : bool is_mem = false;
2151 : 196443 : enum rtx_code code;
2152 : 196443 : rtx cond = if_info->cond;
2153 : 196443 : rtx_insn *ifcvt_seq;
2154 : :
2155 : : /* A conditional move from two memory sources is equivalent to a
2156 : : conditional on their addresses followed by a load. Don't do this
2157 : : early because it'll screw alias analysis. Note that we've
2158 : : already checked for no side effects. */
2159 : 196443 : if (cse_not_expected
2160 : 67546 : && MEM_P (a) && MEM_P (b)
2161 : 200814 : && MEM_ADDR_SPACE (a) == MEM_ADDR_SPACE (b))
2162 : : {
2163 : 4371 : machine_mode address_mode = get_address_mode (a);
2164 : :
2165 : 4371 : a = XEXP (a, 0);
2166 : 4371 : b = XEXP (b, 0);
2167 : 4371 : x = gen_reg_rtx (address_mode);
2168 : 4371 : is_mem = true;
2169 : : }
2170 : :
2171 : : /* ??? We could handle this if we knew that a load from A or B could
2172 : : not trap or fault. This is also true if we've already loaded
2173 : : from the address along the path from ENTRY. */
2174 : 192072 : else if (may_trap_or_fault_p (a) || may_trap_or_fault_p (b))
2175 : 55901 : return false;
2176 : :
2177 : : /* if (test) x = a + b; else x = c - d;
2178 : : => y = a + b;
2179 : : x = c - d;
2180 : : if (test)
2181 : : x = y;
2182 : : */
2183 : :
2184 : 140542 : code = GET_CODE (cond);
2185 : 140542 : insn_a = if_info->insn_a;
2186 : 140542 : insn_b = if_info->insn_b;
2187 : :
2188 : 140542 : machine_mode x_mode = GET_MODE (x);
2189 : :
2190 : 140542 : if (!can_conditionally_move_p (x_mode))
2191 : : return false;
2192 : :
2193 : : /* Possibly rearrange operands to make things come out more natural. */
2194 : 121588 : if (noce_reversed_cond_code (if_info) != UNKNOWN)
2195 : : {
2196 : 121588 : bool reversep = false;
2197 : 121588 : if (rtx_equal_p (b, x))
2198 : : reversep = true;
2199 : 65717 : else if (general_operand (b, GET_MODE (b)))
2200 : : reversep = true;
2201 : :
2202 : : if (reversep)
2203 : : {
2204 : 112054 : if (if_info->rev_cond)
2205 : : {
2206 : 112054 : cond = if_info->rev_cond;
2207 : 112054 : code = GET_CODE (cond);
2208 : : }
2209 : : else
2210 : 0 : code = reversed_comparison_code (cond, if_info->jump);
2211 : : std::swap (a, b);
2212 : : std::swap (insn_a, insn_b);
2213 : : std::swap (a_simple, b_simple);
2214 : : std::swap (then_bb, else_bb);
2215 : : }
2216 : : }
2217 : :
2218 : 36963 : if (then_bb && else_bb
2219 : 157456 : && (!bbs_ok_for_cmove_arith (then_bb, else_bb, if_info->orig_x)
2220 : 35758 : || !bbs_ok_for_cmove_arith (else_bb, then_bb, if_info->orig_x)))
2221 : 110 : return false;
2222 : :
2223 : 121478 : start_sequence ();
2224 : :
2225 : : /* If one of the blocks is empty then the corresponding B or A value
2226 : : came from the test block. The non-empty complex block that we will
2227 : : emit might clobber the register used by B or A, so move it to a pseudo
2228 : : first. */
2229 : :
2230 : 121478 : rtx tmp_a = NULL_RTX;
2231 : 121478 : rtx tmp_b = NULL_RTX;
2232 : :
2233 : 121478 : if (b_simple || !else_bb)
2234 : 105156 : tmp_b = gen_reg_rtx (x_mode);
2235 : :
2236 : 121478 : if (a_simple || !then_bb)
2237 : 117947 : tmp_a = gen_reg_rtx (x_mode);
2238 : :
2239 : 121478 : orig_a = a;
2240 : 121478 : orig_b = b;
2241 : :
2242 : 121478 : rtx emit_a = NULL_RTX;
2243 : 121478 : rtx emit_b = NULL_RTX;
2244 : 121478 : rtx_insn *tmp_insn = NULL;
2245 : 121478 : bool modified_in_a = false;
2246 : 121478 : bool modified_in_b = false;
2247 : : /* If either operand is complex, load it into a register first.
2248 : : The best way to do this is to copy the original insn. In this
2249 : : way we preserve any clobbers etc that the insn may have had.
2250 : : This is of course not possible in the IS_MEM case. */
2251 : :
2252 : 121478 : if (! general_operand (a, GET_MODE (a)) || tmp_a)
2253 : : {
2254 : :
2255 : 120623 : if (is_mem)
2256 : : {
2257 : 4371 : rtx reg = gen_reg_rtx (GET_MODE (a));
2258 : 4371 : emit_a = gen_rtx_SET (reg, a);
2259 : : }
2260 : : else
2261 : : {
2262 : 116252 : if (insn_a)
2263 : : {
2264 : 60339 : a = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
2265 : :
2266 : 60339 : rtx_insn *copy_of_a = as_a <rtx_insn *> (copy_rtx (insn_a));
2267 : 60339 : rtx set = single_set (copy_of_a);
2268 : 60339 : SET_DEST (set) = a;
2269 : :
2270 : 60339 : emit_a = PATTERN (copy_of_a);
2271 : : }
2272 : : else
2273 : : {
2274 : 55913 : rtx tmp_reg = tmp_a ? tmp_a : gen_reg_rtx (GET_MODE (a));
2275 : 55913 : emit_a = gen_rtx_SET (tmp_reg, a);
2276 : 55913 : a = tmp_reg;
2277 : : }
2278 : : }
2279 : : }
2280 : :
2281 : 121478 : if (! general_operand (b, GET_MODE (b)) || tmp_b)
2282 : : {
2283 : 120118 : if (is_mem)
2284 : : {
2285 : 4371 : rtx reg = gen_reg_rtx (GET_MODE (b));
2286 : 4371 : emit_b = gen_rtx_SET (reg, b);
2287 : : }
2288 : : else
2289 : : {
2290 : 115747 : if (insn_b)
2291 : : {
2292 : 115565 : b = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
2293 : 115565 : rtx_insn *copy_of_b = as_a <rtx_insn *> (copy_rtx (insn_b));
2294 : 115565 : rtx set = single_set (copy_of_b);
2295 : :
2296 : 115565 : SET_DEST (set) = b;
2297 : 115565 : emit_b = PATTERN (copy_of_b);
2298 : : }
2299 : : else
2300 : : {
2301 : 182 : rtx tmp_reg = tmp_b ? tmp_b : gen_reg_rtx (GET_MODE (b));
2302 : 182 : emit_b = gen_rtx_SET (tmp_reg, b);
2303 : 182 : b = tmp_reg;
2304 : : }
2305 : : }
2306 : : }
2307 : :
2308 : 121478 : modified_in_a = emit_a != NULL_RTX && modified_in_p (orig_b, emit_a);
2309 : 121478 : if (tmp_b && then_bb)
2310 : : {
2311 : 114883 : FOR_BB_INSNS (then_bb, tmp_insn)
2312 : : /* Don't check inside insn_a. We will have changed it to emit_a
2313 : : with a destination that doesn't conflict. */
2314 : 88322 : if (!(insn_a && tmp_insn == insn_a)
2315 : 150083 : && modified_in_p (orig_b, tmp_insn))
2316 : : {
2317 : : modified_in_a = true;
2318 : : break;
2319 : : }
2320 : :
2321 : : }
2322 : :
2323 : 121478 : modified_in_b = emit_b != NULL_RTX && modified_in_p (orig_a, emit_b);
2324 : 121478 : if (tmp_a && else_bb)
2325 : : {
2326 : 489410 : FOR_BB_INSNS (else_bb, tmp_insn)
2327 : : /* Don't check inside insn_b. We will have changed it to emit_b
2328 : : with a destination that doesn't conflict. */
2329 : 372487 : if (!(insn_b && tmp_insn == insn_b)
2330 : 628051 : && modified_in_p (orig_a, tmp_insn))
2331 : : {
2332 : : modified_in_b = true;
2333 : : break;
2334 : : }
2335 : : }
2336 : :
2337 : : /* If insn to set up A clobbers any registers B depends on, try to
2338 : : swap insn that sets up A with the one that sets up B. If even
2339 : : that doesn't help, punt. */
2340 : 121478 : if (modified_in_a && !modified_in_b)
2341 : : {
2342 : 0 : if (!noce_emit_bb (emit_b, else_bb, b_simple))
2343 : 0 : goto end_seq_and_fail;
2344 : :
2345 : 0 : if (!noce_emit_bb (emit_a, then_bb, a_simple))
2346 : 0 : goto end_seq_and_fail;
2347 : : }
2348 : 121478 : else if (!modified_in_a)
2349 : : {
2350 : 121478 : if (!noce_emit_bb (emit_a, then_bb, a_simple))
2351 : 9 : goto end_seq_and_fail;
2352 : :
2353 : 121469 : if (!noce_emit_bb (emit_b, else_bb, b_simple))
2354 : 202 : goto end_seq_and_fail;
2355 : : }
2356 : : else
2357 : 0 : goto end_seq_and_fail;
2358 : :
2359 : 121267 : target = noce_emit_cmove (if_info, x, code, XEXP (cond, 0), XEXP (cond, 1),
2360 : : a, b);
2361 : :
2362 : 121267 : if (! target)
2363 : 30050 : goto end_seq_and_fail;
2364 : :
2365 : : /* If we're handling a memory for above, emit the load now. */
2366 : 91217 : if (is_mem)
2367 : : {
2368 : 2255 : rtx mem = gen_rtx_MEM (GET_MODE (if_info->x), target);
2369 : :
2370 : : /* Copy over flags as appropriate. */
2371 : 2255 : if (MEM_VOLATILE_P (if_info->a) || MEM_VOLATILE_P (if_info->b))
2372 : 0 : MEM_VOLATILE_P (mem) = 1;
2373 : 2255 : if (MEM_ALIAS_SET (if_info->a) == MEM_ALIAS_SET (if_info->b))
2374 : 2225 : set_mem_alias_set (mem, MEM_ALIAS_SET (if_info->a));
2375 : 4510 : set_mem_align (mem,
2376 : 2255 : MIN (MEM_ALIGN (if_info->a), MEM_ALIGN (if_info->b)));
2377 : :
2378 : 2255 : gcc_assert (MEM_ADDR_SPACE (if_info->a) == MEM_ADDR_SPACE (if_info->b));
2379 : 2255 : set_mem_addr_space (mem, MEM_ADDR_SPACE (if_info->a));
2380 : :
2381 : 2255 : noce_emit_move_insn (if_info->x, mem);
2382 : : }
2383 : 88962 : else if (target != x)
2384 : 0 : noce_emit_move_insn (x, target);
2385 : :
2386 : 91217 : ifcvt_seq = end_ifcvt_sequence (if_info);
2387 : 91217 : if (!ifcvt_seq || !targetm.noce_conversion_profitable_p (ifcvt_seq, if_info))
2388 : 55676 : return false;
2389 : :
2390 : 35541 : emit_insn_before_setloc (ifcvt_seq, if_info->jump,
2391 : 35541 : INSN_LOCATION (if_info->insn_a));
2392 : 35541 : if_info->transform_name = "noce_try_cmove_arith";
2393 : 35541 : return true;
2394 : :
2395 : 30261 : end_seq_and_fail:
2396 : 30261 : end_sequence ();
2397 : 30261 : return false;
2398 : : }
2399 : :
2400 : : /* For most cases, the simplified condition we found is the best
2401 : : choice, but this is not the case for the min/max/abs transforms.
2402 : : For these we wish to know that it is A or B in the condition. */
2403 : :
2404 : : static rtx
2405 : 164375 : noce_get_alt_condition (struct noce_if_info *if_info, rtx target,
2406 : : rtx_insn **earliest)
2407 : : {
2408 : 164375 : rtx cond, set;
2409 : 164375 : rtx_insn *insn;
2410 : 164375 : bool reverse;
2411 : :
2412 : : /* If target is already mentioned in the known condition, return it. */
2413 : 164375 : if (reg_mentioned_p (target, if_info->cond))
2414 : : {
2415 : 7845 : *earliest = if_info->cond_earliest;
2416 : 7845 : return if_info->cond;
2417 : : }
2418 : :
2419 : 156530 : set = pc_set (if_info->jump);
2420 : 156530 : cond = XEXP (SET_SRC (set), 0);
2421 : 156530 : reverse
2422 : 313060 : = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
2423 : 156530 : && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (if_info->jump);
2424 : 156530 : if (if_info->then_else_reversed)
2425 : 24802 : reverse = !reverse;
2426 : :
2427 : : /* If we're looking for a constant, try to make the conditional
2428 : : have that constant in it. There are two reasons why it may
2429 : : not have the constant we want:
2430 : :
2431 : : 1. GCC may have needed to put the constant in a register, because
2432 : : the target can't compare directly against that constant. For
2433 : : this case, we look for a SET immediately before the comparison
2434 : : that puts a constant in that register.
2435 : :
2436 : : 2. GCC may have canonicalized the conditional, for example
2437 : : replacing "if x < 4" with "if x <= 3". We can undo that (or
2438 : : make equivalent types of changes) to get the constants we need
2439 : : if they're off by one in the right direction. */
2440 : :
2441 : 156530 : if (CONST_INT_P (target))
2442 : : {
2443 : 44390 : enum rtx_code code = GET_CODE (if_info->cond);
2444 : 44390 : rtx op_a = XEXP (if_info->cond, 0);
2445 : 44390 : rtx op_b = XEXP (if_info->cond, 1);
2446 : 44390 : rtx_insn *prev_insn;
2447 : :
2448 : : /* First, look to see if we put a constant in a register. */
2449 : 44390 : prev_insn = prev_nonnote_nondebug_insn (if_info->cond_earliest);
2450 : 44390 : if (prev_insn
2451 : 44286 : && BLOCK_FOR_INSN (prev_insn)
2452 : 44286 : == BLOCK_FOR_INSN (if_info->cond_earliest)
2453 : 35611 : && INSN_P (prev_insn)
2454 : 75657 : && GET_CODE (PATTERN (prev_insn)) == SET)
2455 : : {
2456 : 24629 : rtx src = find_reg_equal_equiv_note (prev_insn);
2457 : 24629 : if (!src)
2458 : 24521 : src = SET_SRC (PATTERN (prev_insn));
2459 : 24629 : if (CONST_INT_P (src))
2460 : : {
2461 : 12906 : if (rtx_equal_p (op_a, SET_DEST (PATTERN (prev_insn))))
2462 : : op_a = src;
2463 : 12657 : else if (rtx_equal_p (op_b, SET_DEST (PATTERN (prev_insn))))
2464 : 1073 : op_b = src;
2465 : :
2466 : 12906 : if (CONST_INT_P (op_a))
2467 : : {
2468 : 249 : std::swap (op_a, op_b);
2469 : 249 : code = swap_condition (code);
2470 : : }
2471 : : }
2472 : : }
2473 : :
2474 : : /* Now, look to see if we can get the right constant by
2475 : : adjusting the conditional. */
2476 : 44390 : if (CONST_INT_P (op_b))
2477 : : {
2478 : 21837 : HOST_WIDE_INT desired_val = INTVAL (target);
2479 : 21837 : HOST_WIDE_INT actual_val = INTVAL (op_b);
2480 : :
2481 : 21837 : switch (code)
2482 : : {
2483 : 847 : case LT:
2484 : 847 : if (desired_val != HOST_WIDE_INT_MAX
2485 : 829 : && actual_val == desired_val + 1)
2486 : : {
2487 : 156 : code = LE;
2488 : 156 : op_b = GEN_INT (desired_val);
2489 : : }
2490 : : break;
2491 : 3 : case LE:
2492 : 3 : if (desired_val != HOST_WIDE_INT_MIN
2493 : 3 : && actual_val == desired_val - 1)
2494 : : {
2495 : 0 : code = LT;
2496 : 0 : op_b = GEN_INT (desired_val);
2497 : : }
2498 : : break;
2499 : 1559 : case GT:
2500 : 1559 : if (desired_val != HOST_WIDE_INT_MIN
2501 : 1559 : && actual_val == desired_val - 1)
2502 : : {
2503 : 243 : code = GE;
2504 : 243 : op_b = GEN_INT (desired_val);
2505 : : }
2506 : : break;
2507 : 39 : case GE:
2508 : 39 : if (desired_val != HOST_WIDE_INT_MAX
2509 : 24 : && actual_val == desired_val + 1)
2510 : : {
2511 : 3 : code = GT;
2512 : 3 : op_b = GEN_INT (desired_val);
2513 : : }
2514 : : break;
2515 : : default:
2516 : : break;
2517 : : }
2518 : : }
2519 : :
2520 : : /* If we made any changes, generate a new conditional that is
2521 : : equivalent to what we started with, but has the right
2522 : : constants in it. */
2523 : 44390 : if (code != GET_CODE (if_info->cond)
2524 : 43739 : || op_a != XEXP (if_info->cond, 0)
2525 : 43739 : || op_b != XEXP (if_info->cond, 1))
2526 : : {
2527 : 1724 : cond = gen_rtx_fmt_ee (code, GET_MODE (cond), op_a, op_b);
2528 : 1724 : *earliest = if_info->cond_earliest;
2529 : 1724 : return cond;
2530 : : }
2531 : : }
2532 : :
2533 : 154806 : cond = canonicalize_condition (if_info->jump, cond, reverse,
2534 : : earliest, target, have_cbranchcc4, true);
2535 : 154806 : if (! cond || ! reg_mentioned_p (target, cond))
2536 : 154806 : return NULL;
2537 : :
2538 : : /* We almost certainly searched back to a different place.
2539 : : Need to re-verify correct lifetimes. */
2540 : :
2541 : : /* X may not be mentioned in the range (cond_earliest, jump]. */
2542 : 0 : for (insn = if_info->jump; insn != *earliest; insn = PREV_INSN (insn))
2543 : 0 : if (INSN_P (insn) && reg_overlap_mentioned_p (if_info->x, PATTERN (insn)))
2544 : : return NULL;
2545 : :
2546 : : /* A and B may not be modified in the range [cond_earliest, jump). */
2547 : 0 : for (insn = *earliest; insn != if_info->jump; insn = NEXT_INSN (insn))
2548 : 0 : if (INSN_P (insn)
2549 : 0 : && (modified_in_p (if_info->a, insn)
2550 : 0 : || modified_in_p (if_info->b, insn)))
2551 : 0 : return NULL;
2552 : :
2553 : : return cond;
2554 : : }
2555 : :
2556 : : /* Convert "if (a < b) x = a; else x = b;" to "x = min(a, b);", etc. */
2557 : :
2558 : : static bool
2559 : 244969 : noce_try_minmax (struct noce_if_info *if_info)
2560 : : {
2561 : 244969 : rtx cond, target;
2562 : 244969 : rtx_insn *earliest, *seq;
2563 : 244969 : enum rtx_code code, op;
2564 : 244969 : bool unsignedp;
2565 : :
2566 : 528066 : if (!noce_simple_bbs (if_info))
2567 : : return false;
2568 : :
2569 : : /* ??? Reject modes with NaNs or signed zeros since we don't know how
2570 : : they will be resolved with an SMIN/SMAX. It wouldn't be too hard
2571 : : to get the target to tell us... */
2572 : 222260 : if (HONOR_SIGNED_ZEROS (if_info->x)
2573 : 222260 : || HONOR_NANS (if_info->x))
2574 : 59031 : return false;
2575 : :
2576 : 163229 : cond = noce_get_alt_condition (if_info, if_info->a, &earliest);
2577 : 163229 : if (!cond)
2578 : : return false;
2579 : :
2580 : : /* Verify the condition is of the form we expect, and canonicalize
2581 : : the comparison code. */
2582 : 9538 : code = GET_CODE (cond);
2583 : 9538 : if (rtx_equal_p (XEXP (cond, 0), if_info->a))
2584 : : {
2585 : 2278 : if (! rtx_equal_p (XEXP (cond, 1), if_info->b))
2586 : : return false;
2587 : : }
2588 : 7260 : else if (rtx_equal_p (XEXP (cond, 1), if_info->a))
2589 : : {
2590 : 4902 : if (! rtx_equal_p (XEXP (cond, 0), if_info->b))
2591 : : return false;
2592 : 40 : code = swap_condition (code);
2593 : : }
2594 : : else
2595 : : return false;
2596 : :
2597 : : /* Determine what sort of operation this is. Note that the code is for
2598 : : a taken branch, so the code->operation mapping appears backwards. */
2599 : 58 : switch (code)
2600 : : {
2601 : : case LT:
2602 : : case LE:
2603 : : case UNLT:
2604 : : case UNLE:
2605 : : op = SMAX;
2606 : : unsignedp = false;
2607 : : break;
2608 : 8 : case GT:
2609 : 8 : case GE:
2610 : 8 : case UNGT:
2611 : 8 : case UNGE:
2612 : 8 : op = SMIN;
2613 : 8 : unsignedp = false;
2614 : 8 : break;
2615 : 3 : case LTU:
2616 : 3 : case LEU:
2617 : 3 : op = UMAX;
2618 : 3 : unsignedp = true;
2619 : 3 : break;
2620 : 22 : case GTU:
2621 : 22 : case GEU:
2622 : 22 : op = UMIN;
2623 : 22 : unsignedp = true;
2624 : 22 : break;
2625 : : default:
2626 : : return false;
2627 : : }
2628 : :
2629 : 58 : start_sequence ();
2630 : :
2631 : 58 : target = expand_simple_binop (GET_MODE (if_info->x), op,
2632 : : if_info->a, if_info->b,
2633 : : if_info->x, unsignedp, OPTAB_WIDEN);
2634 : 58 : if (! target)
2635 : : {
2636 : 0 : end_sequence ();
2637 : 0 : return false;
2638 : : }
2639 : 58 : if (target != if_info->x)
2640 : 0 : noce_emit_move_insn (if_info->x, target);
2641 : :
2642 : 58 : seq = end_ifcvt_sequence (if_info);
2643 : 58 : if (!seq)
2644 : : return false;
2645 : :
2646 : 58 : emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2647 : 58 : if_info->cond = cond;
2648 : 58 : if_info->cond_earliest = earliest;
2649 : 58 : if_info->rev_cond = NULL_RTX;
2650 : 58 : if_info->transform_name = "noce_try_minmax";
2651 : :
2652 : 58 : return true;
2653 : : }
2654 : :
2655 : : /* Convert "if (a < 0) x = -a; else x = a;" to "x = abs(a);",
2656 : : "if (a < 0) x = ~a; else x = a;" to "x = one_cmpl_abs(a);",
2657 : : etc. */
2658 : :
2659 : : static bool
2660 : 244911 : noce_try_abs (struct noce_if_info *if_info)
2661 : : {
2662 : 244911 : rtx cond, target, a, b, c;
2663 : 244911 : rtx_insn *earliest, *seq;
2664 : 244911 : bool negate;
2665 : 244911 : bool one_cmpl = false;
2666 : :
2667 : 527971 : if (!noce_simple_bbs (if_info))
2668 : : return false;
2669 : :
2670 : : /* Reject modes with signed zeros. */
2671 : 222202 : if (HONOR_SIGNED_ZEROS (if_info->x))
2672 : : return false;
2673 : :
2674 : : /* Recognize A and B as constituting an ABS or NABS. The canonical
2675 : : form is a branch around the negation, taken when the object is the
2676 : : first operand of a comparison against 0 that evaluates to true. */
2677 : 163180 : a = if_info->a;
2678 : 163180 : b = if_info->b;
2679 : 163180 : if (GET_CODE (a) == NEG && rtx_equal_p (XEXP (a, 0), b))
2680 : : negate = false;
2681 : 162050 : else if (GET_CODE (b) == NEG && rtx_equal_p (XEXP (b, 0), a))
2682 : : {
2683 : : std::swap (a, b);
2684 : : negate = true;
2685 : : }
2686 : 162034 : else if (GET_CODE (a) == NOT && rtx_equal_p (XEXP (a, 0), b))
2687 : : {
2688 : : negate = false;
2689 : : one_cmpl = true;
2690 : : }
2691 : 162034 : else if (GET_CODE (b) == NOT && rtx_equal_p (XEXP (b, 0), a))
2692 : : {
2693 : : std::swap (a, b);
2694 : : negate = true;
2695 : : one_cmpl = true;
2696 : : }
2697 : : else
2698 : 162034 : return false;
2699 : :
2700 : 1146 : cond = noce_get_alt_condition (if_info, b, &earliest);
2701 : 1146 : if (!cond)
2702 : : return false;
2703 : :
2704 : : /* Verify the condition is of the form we expect. */
2705 : 31 : if (rtx_equal_p (XEXP (cond, 0), b))
2706 : 31 : c = XEXP (cond, 1);
2707 : 0 : else if (rtx_equal_p (XEXP (cond, 1), b))
2708 : : {
2709 : 0 : c = XEXP (cond, 0);
2710 : 0 : negate = !negate;
2711 : : }
2712 : : else
2713 : : return false;
2714 : :
2715 : : /* Verify that C is zero. Search one step backward for a
2716 : : REG_EQUAL note or a simple source if necessary. */
2717 : 31 : if (REG_P (c))
2718 : : {
2719 : 0 : rtx set;
2720 : 0 : rtx_insn *insn = prev_nonnote_nondebug_insn (earliest);
2721 : 0 : if (insn
2722 : 0 : && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (earliest)
2723 : 0 : && (set = single_set (insn))
2724 : 0 : && rtx_equal_p (SET_DEST (set), c))
2725 : : {
2726 : 0 : rtx note = find_reg_equal_equiv_note (insn);
2727 : 0 : if (note)
2728 : 0 : c = XEXP (note, 0);
2729 : : else
2730 : 0 : c = SET_SRC (set);
2731 : : }
2732 : : else
2733 : 0 : return false;
2734 : : }
2735 : 31 : if (MEM_P (c)
2736 : 0 : && GET_CODE (XEXP (c, 0)) == SYMBOL_REF
2737 : 31 : && CONSTANT_POOL_ADDRESS_P (XEXP (c, 0)))
2738 : 0 : c = get_pool_constant (XEXP (c, 0));
2739 : :
2740 : : /* Work around funny ideas get_condition has wrt canonicalization.
2741 : : Note that these rtx constants are known to be CONST_INT, and
2742 : : therefore imply integer comparisons.
2743 : : The one_cmpl case is more complicated, as we want to handle
2744 : : only x < 0 ? ~x : x or x >= 0 ? x : ~x to one_cmpl_abs (x)
2745 : : and x < 0 ? x : ~x or x >= 0 ? ~x : x to ~one_cmpl_abs (x),
2746 : : but not other cases (x > -1 is equivalent of x >= 0). */
2747 : 31 : if (c == constm1_rtx && GET_CODE (cond) == GT)
2748 : : ;
2749 : 7 : else if (c == const1_rtx && GET_CODE (cond) == LT)
2750 : : {
2751 : 0 : if (one_cmpl)
2752 : : return false;
2753 : : }
2754 : 7 : else if (c == CONST0_RTX (GET_MODE (b)))
2755 : : {
2756 : 0 : if (one_cmpl
2757 : 0 : && GET_CODE (cond) != GE
2758 : 0 : && GET_CODE (cond) != LT)
2759 : : return false;
2760 : : }
2761 : : else
2762 : : return false;
2763 : :
2764 : : /* Determine what sort of operation this is. */
2765 : 24 : switch (GET_CODE (cond))
2766 : : {
2767 : 0 : case LT:
2768 : 0 : case LE:
2769 : 0 : case UNLT:
2770 : 0 : case UNLE:
2771 : 0 : negate = !negate;
2772 : 0 : break;
2773 : : case GT:
2774 : : case GE:
2775 : : case UNGT:
2776 : : case UNGE:
2777 : : break;
2778 : : default:
2779 : : return false;
2780 : : }
2781 : :
2782 : 24 : start_sequence ();
2783 : 24 : if (one_cmpl)
2784 : 0 : target = expand_one_cmpl_abs_nojump (GET_MODE (if_info->x), b,
2785 : : if_info->x);
2786 : : else
2787 : 24 : target = expand_abs_nojump (GET_MODE (if_info->x), b, if_info->x, 1);
2788 : :
2789 : : /* ??? It's a quandary whether cmove would be better here, especially
2790 : : for integers. Perhaps combine will clean things up. */
2791 : 24 : if (target && negate)
2792 : : {
2793 : 0 : if (one_cmpl)
2794 : 0 : target = expand_simple_unop (GET_MODE (target), NOT, target,
2795 : : if_info->x, 0);
2796 : : else
2797 : 0 : target = expand_simple_unop (GET_MODE (target), NEG, target,
2798 : : if_info->x, 0);
2799 : : }
2800 : :
2801 : 24 : if (! target)
2802 : : {
2803 : 0 : end_sequence ();
2804 : 0 : return false;
2805 : : }
2806 : :
2807 : 24 : if (target != if_info->x)
2808 : 0 : noce_emit_move_insn (if_info->x, target);
2809 : :
2810 : 24 : seq = end_ifcvt_sequence (if_info);
2811 : 24 : if (!seq)
2812 : : return false;
2813 : :
2814 : 24 : emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2815 : 24 : if_info->cond = cond;
2816 : 24 : if_info->cond_earliest = earliest;
2817 : 24 : if_info->rev_cond = NULL_RTX;
2818 : 24 : if_info->transform_name = "noce_try_abs";
2819 : :
2820 : 24 : return true;
2821 : : }
2822 : :
2823 : : /* Convert "if (m < 0) x = b; else x = 0;" to "x = (m >> C) & b;". */
2824 : :
2825 : : static bool
2826 : 160902 : noce_try_sign_mask (struct noce_if_info *if_info)
2827 : : {
2828 : 160902 : rtx cond, t, m, c;
2829 : 160902 : rtx_insn *seq;
2830 : 160902 : machine_mode mode;
2831 : 160902 : enum rtx_code code;
2832 : 160902 : bool t_unconditional;
2833 : :
2834 : 332486 : if (!noce_simple_bbs (if_info))
2835 : : return false;
2836 : :
2837 : 144224 : cond = if_info->cond;
2838 : 144224 : code = GET_CODE (cond);
2839 : 144224 : m = XEXP (cond, 0);
2840 : 144224 : c = XEXP (cond, 1);
2841 : :
2842 : 144224 : t = NULL_RTX;
2843 : 144224 : if (if_info->a == const0_rtx)
2844 : : {
2845 : 2628 : if ((code == LT && c == const0_rtx)
2846 : 2593 : || (code == LE && c == constm1_rtx))
2847 : 35 : t = if_info->b;
2848 : : }
2849 : 141596 : else if (if_info->b == const0_rtx)
2850 : : {
2851 : 13811 : if ((code == GE && c == const0_rtx)
2852 : 13811 : || (code == GT && c == constm1_rtx))
2853 : : t = if_info->a;
2854 : : }
2855 : :
2856 : 136 : if (! t || side_effects_p (t))
2857 : 144088 : return false;
2858 : :
2859 : : /* We currently don't handle different modes. */
2860 : 136 : mode = GET_MODE (t);
2861 : 136 : if (GET_MODE (m) != mode)
2862 : : return false;
2863 : :
2864 : : /* This is only profitable if T is unconditionally executed/evaluated in the
2865 : : original insn sequence or T is cheap and can't trap or fault. The former
2866 : : happens if B is the non-zero (T) value and if INSN_B was taken from
2867 : : TEST_BB, or there was no INSN_B which can happen for e.g. conditional
2868 : : stores to memory. For the cost computation use the block TEST_BB where
2869 : : the evaluation will end up after the transformation. */
2870 : 64 : t_unconditional
2871 : 149 : = (t == if_info->b
2872 : 64 : && (if_info->insn_b == NULL_RTX
2873 : 0 : || BLOCK_FOR_INSN (if_info->insn_b) == if_info->test_bb));
2874 : 128 : if (!(t_unconditional
2875 : 64 : || ((set_src_cost (t, mode, if_info->speed_p)
2876 : : < COSTS_N_INSNS (2))
2877 : 58 : && !may_trap_or_fault_p (t))))
2878 : 43 : return false;
2879 : :
2880 : 21 : if (!noce_can_force_operand (t))
2881 : : return false;
2882 : :
2883 : 0 : start_sequence ();
2884 : : /* Use emit_store_flag to generate "m < 0 ? -1 : 0" instead of expanding
2885 : : "(signed) m >> 31" directly. This benefits targets with specialized
2886 : : insns to obtain the signmask, but still uses ashr_optab otherwise. */
2887 : 0 : m = emit_store_flag (gen_reg_rtx (mode), LT, m, const0_rtx, mode, 0, -1);
2888 : 0 : t = m ? expand_binop (mode, and_optab, m, t, NULL_RTX, 0, OPTAB_DIRECT)
2889 : : : NULL_RTX;
2890 : :
2891 : 0 : if (!t)
2892 : : {
2893 : 0 : end_sequence ();
2894 : 0 : return false;
2895 : : }
2896 : :
2897 : 0 : noce_emit_move_insn (if_info->x, t);
2898 : :
2899 : 0 : seq = end_ifcvt_sequence (if_info);
2900 : 0 : if (!seq)
2901 : : return false;
2902 : :
2903 : 0 : emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
2904 : 0 : if_info->transform_name = "noce_try_sign_mask";
2905 : :
2906 : 0 : return true;
2907 : : }
2908 : :
2909 : : /* Check if OP is supported by conditional zero based if conversion,
2910 : : returning TRUE if satisfied otherwise FALSE.
2911 : :
2912 : : OP is the operation to check. */
2913 : :
2914 : : static bool
2915 : 91404 : noce_cond_zero_binary_op_supported (rtx op)
2916 : : {
2917 : 91404 : enum rtx_code opcode = GET_CODE (op);
2918 : :
2919 : 91404 : if (opcode == PLUS || opcode == MINUS || opcode == IOR || opcode == XOR
2920 : : || opcode == ASHIFT || opcode == ASHIFTRT || opcode == LSHIFTRT
2921 : : || opcode == ROTATE || opcode == ROTATERT || opcode == AND)
2922 : 4209 : return true;
2923 : :
2924 : : return false;
2925 : : }
2926 : :
2927 : : /* Helper function to return REG itself,
2928 : : otherwise NULL_RTX for other RTX_CODE. */
2929 : :
2930 : : static rtx
2931 : 4074 : get_base_reg (rtx exp)
2932 : : {
2933 : 0 : if (REG_P (exp))
2934 : 0 : return exp;
2935 : :
2936 : : return NULL_RTX;
2937 : : }
2938 : :
2939 : : /* Check if IF-BB and THEN-BB satisfy the condition for conditional zero
2940 : : based if conversion, returning TRUE if satisfied otherwise FALSE.
2941 : :
2942 : : IF_INFO describes the if-conversion scenario under consideration.
2943 : : COMMON_PTR points to the common REG of canonicalized IF_INFO->A and
2944 : : IF_INFO->B.
2945 : : CZERO_CODE_PTR points to the comparison code to use in czero RTX.
2946 : : A_PTR points to the A expression of canonicalized IF_INFO->A.
2947 : : TO_REPLACE points to the RTX to be replaced by czero RTX destnation. */
2948 : :
2949 : : static bool
2950 : 196443 : noce_bbs_ok_for_cond_zero_arith (struct noce_if_info *if_info, rtx *common_ptr,
2951 : : rtx *bin_exp_ptr,
2952 : : enum rtx_code *czero_code_ptr, rtx *a_ptr,
2953 : : rtx **to_replace)
2954 : : {
2955 : 196443 : rtx common = NULL_RTX;
2956 : 196443 : rtx cond = if_info->cond;
2957 : 196443 : rtx a = copy_rtx (if_info->a);
2958 : 196443 : rtx b = copy_rtx (if_info->b);
2959 : 196443 : rtx bin_op1 = NULL_RTX;
2960 : 196443 : enum rtx_code czero_code = UNKNOWN;
2961 : 196443 : bool reverse = false;
2962 : 196443 : rtx op0, op1, bin_exp;
2963 : :
2964 : 413421 : if (!noce_simple_bbs (if_info))
2965 : : return false;
2966 : :
2967 : : /* COND must be EQ or NE comparision of a reg and 0. */
2968 : 173734 : if (GET_CODE (cond) != NE && GET_CODE (cond) != EQ)
2969 : : return false;
2970 : 142500 : if (!REG_P (XEXP (cond, 0)) || !rtx_equal_p (XEXP (cond, 1), const0_rtx))
2971 : 62481 : return false;
2972 : :
2973 : : /* Canonicalize x = y : (y op z) to x = (y op z) : y. */
2974 : 80019 : if (REG_P (a) && noce_cond_zero_binary_op_supported (b))
2975 : : {
2976 : : std::swap (a, b);
2977 : : reverse = !reverse;
2978 : : }
2979 : :
2980 : : /* Check if x = (y op z) : y is supported by czero based ifcvt. */
2981 : 80019 : if (!(noce_cond_zero_binary_op_supported (a) && REG_P (b)))
2982 : : return false;
2983 : :
2984 : 2037 : bin_exp = a;
2985 : :
2986 : : /* Canonicalize x = (z op y) : y to x = (y op z) : y */
2987 : 2037 : op1 = get_base_reg (XEXP (bin_exp, 1));
2988 : 147 : if (op1 && rtx_equal_p (op1, b) && COMMUTATIVE_ARITH_P (bin_exp))
2989 : 0 : std::swap (XEXP (bin_exp, 0), XEXP (bin_exp, 1));
2990 : :
2991 : 2037 : op0 = get_base_reg (XEXP (bin_exp, 0));
2992 : 1943 : if (op0 && rtx_equal_p (op0, b))
2993 : : {
2994 : 1413 : common = b;
2995 : 1413 : bin_op1 = XEXP (bin_exp, 1);
2996 : 2826 : czero_code = (reverse ^ (GET_CODE (bin_exp) == AND))
2997 : 1413 : ? noce_reversed_cond_code (if_info)
2998 : 1381 : : GET_CODE (cond);
2999 : : }
3000 : : else
3001 : 624 : return false;
3002 : :
3003 : 1413 : if (czero_code == UNKNOWN)
3004 : : return false;
3005 : :
3006 : 1413 : if (REG_P (bin_op1))
3007 : 98 : *to_replace = &XEXP (bin_exp, 1);
3008 : : else
3009 : : return false;
3010 : :
3011 : 98 : *common_ptr = common;
3012 : 98 : *bin_exp_ptr = bin_exp;
3013 : 98 : *czero_code_ptr = czero_code;
3014 : 98 : *a_ptr = a;
3015 : :
3016 : 98 : return true;
3017 : : }
3018 : :
3019 : : /* Try to covert if-then-else with conditional zero,
3020 : : returning TURE on success or FALSE on failure.
3021 : : IF_INFO describes the if-conversion scenario under consideration. */
3022 : :
3023 : : static int
3024 : 196443 : noce_try_cond_zero_arith (struct noce_if_info *if_info)
3025 : : {
3026 : 196443 : rtx target, rtmp, a;
3027 : 196443 : rtx_insn *seq;
3028 : 196443 : machine_mode mode = GET_MODE (if_info->x);
3029 : 196443 : rtx common = NULL_RTX;
3030 : 196443 : enum rtx_code czero_code = UNKNOWN;
3031 : 196443 : rtx bin_exp = NULL_RTX;
3032 : 196443 : enum rtx_code bin_code = UNKNOWN;
3033 : 196443 : rtx non_zero_op = NULL_RTX;
3034 : 196443 : rtx *to_replace = NULL;
3035 : :
3036 : 196443 : if (!noce_bbs_ok_for_cond_zero_arith (if_info, &common, &bin_exp, &czero_code,
3037 : : &a, &to_replace))
3038 : : return false;
3039 : :
3040 : 98 : start_sequence ();
3041 : :
3042 : 98 : bin_code = GET_CODE (bin_exp);
3043 : :
3044 : 98 : if (bin_code == AND)
3045 : : {
3046 : 2 : rtmp = gen_reg_rtx (mode);
3047 : 2 : noce_emit_move_insn (rtmp, a);
3048 : :
3049 : 2 : target = noce_emit_czero (if_info, czero_code, common, if_info->x);
3050 : 2 : if (!target)
3051 : : {
3052 : 2 : end_sequence ();
3053 : 2 : return false;
3054 : : }
3055 : :
3056 : 0 : target = expand_simple_binop (mode, IOR, rtmp, target, if_info->x, 0,
3057 : : OPTAB_WIDEN);
3058 : 0 : if (!target)
3059 : : {
3060 : 0 : end_sequence ();
3061 : 0 : return false;
3062 : : }
3063 : :
3064 : 0 : if (target != if_info->x)
3065 : 0 : noce_emit_move_insn (if_info->x, target);
3066 : : }
3067 : : else
3068 : : {
3069 : 96 : non_zero_op = *to_replace;
3070 : : /* If x is used in both input and out like x = c ? x + z : x,
3071 : : use a new reg to avoid modifying x */
3072 : 96 : if (common && rtx_equal_p (common, if_info->x))
3073 : 64 : target = gen_reg_rtx (mode);
3074 : : else
3075 : 32 : target = if_info->x;
3076 : :
3077 : 96 : target = noce_emit_czero (if_info, czero_code, non_zero_op, target);
3078 : 96 : if (!target || !to_replace)
3079 : : {
3080 : 96 : end_sequence ();
3081 : 96 : return false;
3082 : : }
3083 : :
3084 : 0 : *to_replace = target;
3085 : 0 : noce_emit_move_insn (if_info->x, a);
3086 : : }
3087 : :
3088 : 0 : seq = end_ifcvt_sequence (if_info);
3089 : 0 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
3090 : 0 : return false;
3091 : :
3092 : 0 : emit_insn_before_setloc (seq, if_info->jump, INSN_LOCATION (if_info->insn_a));
3093 : 0 : if_info->transform_name = "noce_try_cond_zero_arith";
3094 : 0 : return true;
3095 : : }
3096 : :
3097 : : /* Optimize away "if (x & C) x |= C" and similar bit manipulation
3098 : : transformations. */
3099 : :
3100 : : static bool
3101 : 244969 : noce_try_bitop (struct noce_if_info *if_info)
3102 : : {
3103 : 244969 : rtx cond, x, a, result;
3104 : 244969 : rtx_insn *seq;
3105 : 244969 : scalar_int_mode mode;
3106 : 244969 : enum rtx_code code;
3107 : 244969 : int bitnum;
3108 : :
3109 : 244969 : x = if_info->x;
3110 : 244969 : cond = if_info->cond;
3111 : 244969 : code = GET_CODE (cond);
3112 : :
3113 : : /* Check for an integer operation. */
3114 : 244969 : if (!is_a <scalar_int_mode> (GET_MODE (x), &mode))
3115 : : return false;
3116 : :
3117 : 462612 : if (!noce_simple_bbs (if_info))
3118 : : return false;
3119 : :
3120 : : /* Check for no else condition. */
3121 : 161924 : if (! rtx_equal_p (x, if_info->b))
3122 : : return false;
3123 : :
3124 : : /* Check for a suitable condition. */
3125 : 88153 : if (code != NE && code != EQ)
3126 : : return false;
3127 : 61960 : if (XEXP (cond, 1) != const0_rtx)
3128 : : return false;
3129 : 42896 : cond = XEXP (cond, 0);
3130 : :
3131 : : /* ??? We could also handle AND here. */
3132 : 42896 : if (GET_CODE (cond) == ZERO_EXTRACT)
3133 : : {
3134 : 412 : if (XEXP (cond, 1) != const1_rtx
3135 : 192 : || !CONST_INT_P (XEXP (cond, 2))
3136 : 604 : || ! rtx_equal_p (x, XEXP (cond, 0)))
3137 : 409 : return false;
3138 : 3 : bitnum = INTVAL (XEXP (cond, 2));
3139 : 3 : if (BITS_BIG_ENDIAN)
3140 : : bitnum = GET_MODE_BITSIZE (mode) - 1 - bitnum;
3141 : 3 : if (bitnum < 0 || bitnum >= HOST_BITS_PER_WIDE_INT)
3142 : : return false;
3143 : : }
3144 : : else
3145 : : return false;
3146 : :
3147 : 3 : a = if_info->a;
3148 : 3 : if (GET_CODE (a) == IOR || GET_CODE (a) == XOR)
3149 : : {
3150 : : /* Check for "if (X & C) x = x op C". */
3151 : 0 : if (! rtx_equal_p (x, XEXP (a, 0))
3152 : 0 : || !CONST_INT_P (XEXP (a, 1))
3153 : 0 : || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
3154 : 0 : != HOST_WIDE_INT_1U << bitnum)
3155 : : return false;
3156 : :
3157 : : /* if ((x & C) == 0) x |= C; is transformed to x |= C. */
3158 : : /* if ((x & C) != 0) x |= C; is transformed to nothing. */
3159 : 0 : if (GET_CODE (a) == IOR)
3160 : 0 : result = (code == NE) ? a : NULL_RTX;
3161 : 0 : else if (code == NE)
3162 : : {
3163 : : /* if ((x & C) == 0) x ^= C; is transformed to x |= C. */
3164 : 0 : result = gen_int_mode (HOST_WIDE_INT_1 << bitnum, mode);
3165 : 0 : result = simplify_gen_binary (IOR, mode, x, result);
3166 : : }
3167 : : else
3168 : : {
3169 : : /* if ((x & C) != 0) x ^= C; is transformed to x &= ~C. */
3170 : 0 : result = gen_int_mode (~(HOST_WIDE_INT_1 << bitnum), mode);
3171 : 0 : result = simplify_gen_binary (AND, mode, x, result);
3172 : : }
3173 : : }
3174 : 3 : else if (GET_CODE (a) == AND)
3175 : : {
3176 : : /* Check for "if (X & C) x &= ~C". */
3177 : 0 : if (! rtx_equal_p (x, XEXP (a, 0))
3178 : 0 : || !CONST_INT_P (XEXP (a, 1))
3179 : 0 : || (INTVAL (XEXP (a, 1)) & GET_MODE_MASK (mode))
3180 : 0 : != (~(HOST_WIDE_INT_1 << bitnum) & GET_MODE_MASK (mode)))
3181 : : return false;
3182 : :
3183 : : /* if ((x & C) == 0) x &= ~C; is transformed to nothing. */
3184 : : /* if ((x & C) != 0) x &= ~C; is transformed to x &= ~C. */
3185 : 0 : result = (code == EQ) ? a : NULL_RTX;
3186 : : }
3187 : : else
3188 : : return false;
3189 : :
3190 : 0 : if (result)
3191 : : {
3192 : 0 : start_sequence ();
3193 : 0 : noce_emit_move_insn (x, result);
3194 : 0 : seq = end_ifcvt_sequence (if_info);
3195 : 0 : if (!seq)
3196 : : return false;
3197 : :
3198 : 0 : emit_insn_before_setloc (seq, if_info->jump,
3199 : 0 : INSN_LOCATION (if_info->insn_a));
3200 : : }
3201 : 0 : if_info->transform_name = "noce_try_bitop";
3202 : 0 : return true;
3203 : : }
3204 : :
3205 : :
3206 : : /* Similar to get_condition, only the resulting condition must be
3207 : : valid at JUMP, instead of at EARLIEST.
3208 : :
3209 : : If THEN_ELSE_REVERSED is true, the fallthrough does not go to the
3210 : : THEN block of the caller, and we have to reverse the condition. */
3211 : :
3212 : : static rtx
3213 : 4126204 : noce_get_condition (rtx_insn *jump, rtx_insn **earliest,
3214 : : bool then_else_reversed)
3215 : : {
3216 : 4126204 : rtx cond, set, tmp;
3217 : 4126204 : bool reverse;
3218 : :
3219 : 4126204 : if (! any_condjump_p (jump))
3220 : : return NULL_RTX;
3221 : :
3222 : 4126204 : set = pc_set (jump);
3223 : :
3224 : : /* If this branches to JUMP_LABEL when the condition is false,
3225 : : reverse the condition. */
3226 : 8252408 : reverse = (GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
3227 : 4126204 : && label_ref_label (XEXP (SET_SRC (set), 2)) == JUMP_LABEL (jump));
3228 : :
3229 : : /* We may have to reverse because the caller's if block is not canonical,
3230 : : i.e. the THEN block isn't the fallthrough block for the TEST block
3231 : : (see find_if_header). */
3232 : 4126204 : if (then_else_reversed)
3233 : 1778700 : reverse = !reverse;
3234 : :
3235 : : /* If the condition variable is a register and is MODE_INT, accept it. */
3236 : :
3237 : 4126204 : cond = XEXP (SET_SRC (set), 0);
3238 : 4126204 : tmp = XEXP (cond, 0);
3239 : 4125076 : if (REG_P (tmp) && GET_MODE_CLASS (GET_MODE (tmp)) == MODE_INT
3240 : 4126234 : && (GET_MODE (tmp) != BImode
3241 : 0 : || !targetm.small_register_classes_for_mode_p (BImode)))
3242 : : {
3243 : 30 : *earliest = jump;
3244 : :
3245 : 30 : if (reverse)
3246 : 13 : cond = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond)),
3247 : : GET_MODE (cond), tmp, XEXP (cond, 1));
3248 : 30 : return cond;
3249 : : }
3250 : :
3251 : : /* Otherwise, fall back on canonicalize_condition to do the dirty
3252 : : work of manipulating MODE_CC values and COMPARE rtx codes. */
3253 : 4126174 : tmp = canonicalize_condition (jump, cond, reverse, earliest,
3254 : : NULL_RTX, have_cbranchcc4, true);
3255 : :
3256 : : /* We don't handle side-effects in the condition, like handling
3257 : : REG_INC notes and making sure no duplicate conditions are emitted. */
3258 : 4126174 : if (tmp != NULL_RTX && side_effects_p (tmp))
3259 : : return NULL_RTX;
3260 : :
3261 : : return tmp;
3262 : : }
3263 : :
3264 : : /* Return true if OP is ok for if-then-else processing. */
3265 : :
3266 : : static bool
3267 : 8687452 : noce_operand_ok (const_rtx op)
3268 : : {
3269 : 8687452 : if (side_effects_p (op))
3270 : : return false;
3271 : :
3272 : : /* We special-case memories, so handle any of them with
3273 : : no address side effects. */
3274 : 8665851 : if (MEM_P (op))
3275 : 1520436 : return ! side_effects_p (XEXP (op, 0));
3276 : :
3277 : 7145415 : return ! may_trap_p (op);
3278 : : }
3279 : :
3280 : : /* Return true iff basic block TEST_BB is valid for noce if-conversion.
3281 : : The condition used in this if-conversion is in COND.
3282 : : In practice, check that TEST_BB ends with a single set
3283 : : x := a and all previous computations
3284 : : in TEST_BB don't produce any values that are live after TEST_BB.
3285 : : In other words, all the insns in TEST_BB are there only
3286 : : to compute a value for x. Add the rtx cost of the insns
3287 : : in TEST_BB to COST. Record whether TEST_BB is a single simple
3288 : : set instruction in SIMPLE_P. */
3289 : :
3290 : : static bool
3291 : 2030190 : bb_valid_for_noce_process_p (basic_block test_bb, rtx cond,
3292 : : unsigned int *cost, bool *simple_p)
3293 : : {
3294 : 2030190 : if (!test_bb)
3295 : : return false;
3296 : :
3297 : 2030190 : rtx_insn *last_insn = last_active_insn (test_bb, false);
3298 : 2030190 : rtx last_set = NULL_RTX;
3299 : :
3300 : 2030190 : rtx cc = cc_in_cond (cond);
3301 : :
3302 : 2030190 : if (!insn_valid_noce_process_p (last_insn, cc))
3303 : : return false;
3304 : :
3305 : : /* Punt on blocks ending with asm goto or jumps with other side-effects,
3306 : : last_active_insn ignores JUMP_INSNs. */
3307 : 1471288 : if (JUMP_P (BB_END (test_bb)) && !onlyjump_p (BB_END (test_bb)))
3308 : : return false;
3309 : :
3310 : 1471286 : last_set = single_set (last_insn);
3311 : :
3312 : 1471286 : rtx x = SET_DEST (last_set);
3313 : 1471286 : rtx_insn *first_insn = first_active_insn (test_bb);
3314 : 1471286 : rtx first_set = single_set (first_insn);
3315 : :
3316 : 1471286 : if (!first_set)
3317 : : return false;
3318 : :
3319 : : /* We have a single simple set, that's okay. */
3320 : 1458559 : bool speed_p = optimize_bb_for_speed_p (test_bb);
3321 : :
3322 : 1458559 : if (first_insn == last_insn)
3323 : : {
3324 : 520639 : *simple_p = noce_operand_ok (SET_DEST (first_set));
3325 : 520639 : *cost += pattern_cost (first_set, speed_p);
3326 : 520639 : return *simple_p;
3327 : : }
3328 : :
3329 : 937920 : rtx_insn *prev_last_insn = PREV_INSN (last_insn);
3330 : 937920 : gcc_assert (prev_last_insn);
3331 : :
3332 : : /* For now, disallow setting x multiple times in test_bb. */
3333 : 937920 : if (REG_P (x) && reg_set_between_p (x, first_insn, prev_last_insn))
3334 : : return false;
3335 : :
3336 : 788037 : bitmap test_bb_temps = BITMAP_ALLOC (®_obstack);
3337 : :
3338 : : /* The regs that are live out of test_bb. */
3339 : 788037 : bitmap test_bb_live_out = df_get_live_out (test_bb);
3340 : :
3341 : 788037 : int potential_cost = pattern_cost (last_set, speed_p);
3342 : 788037 : rtx_insn *insn;
3343 : 3829258 : FOR_BB_INSNS (test_bb, insn)
3344 : : {
3345 : 3727878 : if (insn != last_insn)
3346 : : {
3347 : 3626498 : if (!active_insn_p (insn))
3348 : 2222881 : continue;
3349 : :
3350 : 1403617 : if (!insn_valid_noce_process_p (insn, cc))
3351 : 200266 : goto free_bitmap_and_fail;
3352 : :
3353 : 1203351 : rtx sset = single_set (insn);
3354 : 1203351 : gcc_assert (sset);
3355 : 1203351 : rtx dest = SET_DEST (sset);
3356 : 1203351 : if (SUBREG_P (dest))
3357 : 23990 : dest = SUBREG_REG (dest);
3358 : :
3359 : 1203351 : if (contains_mem_rtx_p (SET_SRC (sset))
3360 : 819568 : || !REG_P (dest)
3361 : 1936490 : || reg_overlap_mentioned_p (dest, cond))
3362 : 486391 : goto free_bitmap_and_fail;
3363 : :
3364 : 716960 : potential_cost += pattern_cost (sset, speed_p);
3365 : 716960 : bitmap_set_bit (test_bb_temps, REGNO (dest));
3366 : : }
3367 : : }
3368 : :
3369 : : /* If any of the intermediate results in test_bb are live after test_bb
3370 : : then fail. */
3371 : 101380 : if (bitmap_intersect_p (test_bb_live_out, test_bb_temps))
3372 : 63126 : goto free_bitmap_and_fail;
3373 : :
3374 : 38254 : BITMAP_FREE (test_bb_temps);
3375 : 38254 : *cost += potential_cost;
3376 : 38254 : *simple_p = false;
3377 : 38254 : return true;
3378 : :
3379 : 749783 : free_bitmap_and_fail:
3380 : 749783 : BITMAP_FREE (test_bb_temps);
3381 : 749783 : return false;
3382 : : }
3383 : :
3384 : : /* Helper function to emit a cmov sequence encapsulated in
3385 : : start_sequence () and end_sequence (). If NEED_CMOV is true
3386 : : we call noce_emit_cmove to create a cmove sequence. Otherwise emit
3387 : : a simple move. If successful, store the first instruction of the
3388 : : sequence in TEMP_DEST and the sequence costs in SEQ_COST. */
3389 : :
3390 : : static rtx_insn*
3391 : 366625 : try_emit_cmove_seq (struct noce_if_info *if_info, rtx temp,
3392 : : rtx cond, rtx new_val, rtx old_val, bool need_cmov,
3393 : : unsigned *cost, rtx *temp_dest,
3394 : : rtx cc_cmp = NULL, rtx rev_cc_cmp = NULL)
3395 : : {
3396 : 366625 : rtx_insn *seq = NULL;
3397 : 366625 : *cost = 0;
3398 : :
3399 : 366625 : rtx x = XEXP (cond, 0);
3400 : 366625 : rtx y = XEXP (cond, 1);
3401 : 366625 : rtx_code cond_code = GET_CODE (cond);
3402 : :
3403 : 366625 : start_sequence ();
3404 : :
3405 : 366625 : if (need_cmov)
3406 : 289780 : *temp_dest = noce_emit_cmove (if_info, temp, cond_code,
3407 : : x, y, new_val, old_val, cc_cmp, rev_cc_cmp);
3408 : : else
3409 : : {
3410 : 76845 : *temp_dest = temp;
3411 : 76845 : if (if_info->then_else_reversed)
3412 : 2792 : noce_emit_move_insn (temp, old_val);
3413 : : else
3414 : 74053 : noce_emit_move_insn (temp, new_val);
3415 : : }
3416 : :
3417 : 366625 : if (*temp_dest != NULL_RTX)
3418 : : {
3419 : 359400 : seq = get_insns ();
3420 : 359400 : *cost = seq_cost (seq, if_info->speed_p);
3421 : : }
3422 : :
3423 : 366625 : end_sequence ();
3424 : :
3425 : 366625 : return seq;
3426 : : }
3427 : :
3428 : : /* We have something like:
3429 : :
3430 : : if (x > y)
3431 : : { i = EXPR_A; j = EXPR_B; k = EXPR_C; }
3432 : :
3433 : : Make it:
3434 : :
3435 : : tmp_i = (x > y) ? EXPR_A : i;
3436 : : tmp_j = (x > y) ? EXPR_B : j;
3437 : : tmp_k = (x > y) ? EXPR_C : k;
3438 : : i = tmp_i;
3439 : : j = tmp_j;
3440 : : k = tmp_k;
3441 : :
3442 : : Subsequent passes are expected to clean up the extra moves.
3443 : :
3444 : : Look for special cases such as writes to one register which are
3445 : : read back in another SET, as might occur in a swap idiom or
3446 : : similar.
3447 : :
3448 : : These look like:
3449 : :
3450 : : if (x > y)
3451 : : i = a;
3452 : : j = i;
3453 : :
3454 : : Which we want to rewrite to:
3455 : :
3456 : : tmp_i = (x > y) ? a : i;
3457 : : tmp_j = (x > y) ? tmp_i : j;
3458 : : i = tmp_i;
3459 : : j = tmp_j;
3460 : :
3461 : : We can catch these when looking at (SET x y) by keeping a list of the
3462 : : registers we would have targeted before if-conversion and looking back
3463 : : through it for an overlap with Y. If we find one, we rewire the
3464 : : conditional set to use the temporary we introduced earlier.
3465 : :
3466 : : IF_INFO contains the useful information about the block structure and
3467 : : jump instructions. */
3468 : :
3469 : : static bool
3470 : 38748 : noce_convert_multiple_sets (struct noce_if_info *if_info)
3471 : : {
3472 : 38748 : basic_block test_bb = if_info->test_bb;
3473 : 38748 : basic_block then_bb = if_info->then_bb;
3474 : 38748 : basic_block join_bb = if_info->join_bb;
3475 : 38748 : rtx_insn *jump = if_info->jump;
3476 : 38748 : rtx_insn *cond_earliest;
3477 : 38748 : rtx_insn *insn;
3478 : :
3479 : 38748 : start_sequence ();
3480 : :
3481 : : /* Decompose the condition attached to the jump. */
3482 : 38748 : rtx cond = noce_get_condition (jump, &cond_earliest, false);
3483 : 38748 : rtx x = XEXP (cond, 0);
3484 : 38748 : rtx y = XEXP (cond, 1);
3485 : :
3486 : 38748 : auto_delete_vec<noce_multiple_sets_info> insn_info;
3487 : 38748 : init_noce_multiple_sets_info (then_bb, insn_info);
3488 : :
3489 : 38748 : int last_needs_comparison = -1;
3490 : :
3491 : 38748 : bool ok = noce_convert_multiple_sets_1
3492 : 38748 : (if_info, insn_info, &last_needs_comparison);
3493 : 38748 : if (!ok)
3494 : : return false;
3495 : :
3496 : : /* If there are insns that overwrite part of the initial
3497 : : comparison, we can still omit creating temporaries for
3498 : : the last of them.
3499 : : As the second try will always create a less expensive,
3500 : : valid sequence, we do not need to compare and can discard
3501 : : the first one. */
3502 : 37188 : if (last_needs_comparison != -1)
3503 : : {
3504 : 37188 : end_sequence ();
3505 : 37188 : start_sequence ();
3506 : 37188 : ok = noce_convert_multiple_sets_1
3507 : 37188 : (if_info, insn_info, &last_needs_comparison);
3508 : : /* Actually we should not fail anymore if we reached here,
3509 : : but better still check. */
3510 : 37188 : if (!ok)
3511 : : return false;
3512 : : }
3513 : :
3514 : : /* We must have seen some sort of insn to insert, otherwise we were
3515 : : given an empty BB to convert, and we can't handle that. */
3516 : 37188 : gcc_assert (!insn_info.is_empty ());
3517 : :
3518 : : /* Now fixup the assignments.
3519 : : PR116405: Iterate in reverse order and keep track of the targets so that
3520 : : a move does not overwrite a subsequent value when multiple instructions
3521 : : have the same target. */
3522 : 37188 : unsigned i;
3523 : 37188 : noce_multiple_sets_info *info;
3524 : 37188 : bitmap set_targets = BITMAP_ALLOC (®_obstack);
3525 : 145384 : FOR_EACH_VEC_ELT_REVERSE (insn_info, i, info)
3526 : : {
3527 : 108196 : gcc_checking_assert (REG_P (info->target));
3528 : :
3529 : 108196 : if (info->target != info->temporary
3530 : 108196 : && !bitmap_bit_p (set_targets, REGNO (info->target)))
3531 : 3655 : noce_emit_move_insn (info->target, info->temporary);
3532 : :
3533 : 108196 : bitmap_set_bit (set_targets, REGNO (info->target));
3534 : : }
3535 : 37188 : BITMAP_FREE (set_targets);
3536 : :
3537 : : /* Actually emit the sequence if it isn't too expensive. */
3538 : 37188 : rtx_insn *seq = get_insns ();
3539 : :
3540 : 37188 : if (!targetm.noce_conversion_profitable_p (seq, if_info))
3541 : : {
3542 : 17180 : end_sequence ();
3543 : 17180 : return false;
3544 : : }
3545 : :
3546 : 108996 : for (insn = seq; insn; insn = NEXT_INSN (insn))
3547 : 88988 : set_used_flags (insn);
3548 : :
3549 : : /* Mark all our temporaries and targets as used. */
3550 : 65853 : for (unsigned i = 0; i < insn_info.length (); i++)
3551 : : {
3552 : 45845 : set_used_flags (insn_info[i]->temporary);
3553 : 45845 : set_used_flags (insn_info[i]->target);
3554 : : }
3555 : :
3556 : 20008 : set_used_flags (cond);
3557 : 20008 : set_used_flags (x);
3558 : 20008 : set_used_flags (y);
3559 : :
3560 : 20008 : unshare_all_rtl_in_chain (seq);
3561 : 20008 : end_sequence ();
3562 : :
3563 : 20008 : if (!seq)
3564 : : return false;
3565 : :
3566 : 108974 : for (insn = seq; insn; insn = NEXT_INSN (insn))
3567 : 88977 : if (JUMP_P (insn) || CALL_P (insn)
3568 : 88977 : || recog_memoized (insn) == -1)
3569 : 11 : return false;
3570 : :
3571 : 19997 : emit_insn_before_setloc (seq, if_info->jump,
3572 : 19997 : INSN_LOCATION (insn_info.last ()->unmodified_insn));
3573 : :
3574 : : /* Clean up THEN_BB and the edges in and out of it. */
3575 : 19997 : remove_edge (find_edge (test_bb, join_bb));
3576 : 19997 : remove_edge (find_edge (then_bb, join_bb));
3577 : 19997 : redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3578 : 19997 : delete_basic_block (then_bb);
3579 : 19997 : num_true_changes++;
3580 : :
3581 : : /* Maybe merge blocks now the jump is simple enough. */
3582 : 19997 : if (can_merge_blocks_p (test_bb, join_bb))
3583 : : {
3584 : 13397 : merge_blocks (test_bb, join_bb);
3585 : 13397 : num_true_changes++;
3586 : : }
3587 : :
3588 : 19997 : num_updated_if_blocks++;
3589 : 19997 : if_info->transform_name = "noce_convert_multiple_sets";
3590 : 19997 : return true;
3591 : 38748 : }
3592 : :
3593 : : /* This goes through all relevant insns of IF_INFO->then_bb and tries to create
3594 : : conditional moves. Information for the insns is kept in INSN_INFO. */
3595 : :
3596 : : static bool
3597 : 75936 : noce_convert_multiple_sets_1 (struct noce_if_info *if_info,
3598 : : auto_delete_vec<noce_multiple_sets_info> &insn_info,
3599 : : int *last_needs_comparison)
3600 : : {
3601 : 75936 : basic_block then_bb = if_info->then_bb;
3602 : 75936 : rtx_insn *jump = if_info->jump;
3603 : 75936 : rtx_insn *cond_earliest;
3604 : :
3605 : : /* Decompose the condition attached to the jump. */
3606 : 75936 : rtx cond = noce_get_condition (jump, &cond_earliest, false);
3607 : :
3608 : 75936 : rtx cc_cmp = cond_exec_get_condition (jump);
3609 : 75936 : if (cc_cmp)
3610 : 75936 : cc_cmp = copy_rtx (cc_cmp);
3611 : 75936 : rtx rev_cc_cmp = cond_exec_get_condition (jump, /* get_reversed */ true);
3612 : 75936 : if (rev_cc_cmp)
3613 : 75936 : rev_cc_cmp = copy_rtx (rev_cc_cmp);
3614 : :
3615 : 75936 : rtx_insn *insn;
3616 : 75936 : int count = 0;
3617 : 75936 : bool second_try = *last_needs_comparison != -1;
3618 : :
3619 : 479043 : FOR_BB_INSNS (then_bb, insn)
3620 : : {
3621 : : /* Skip over non-insns. */
3622 : 404667 : if (!active_insn_p (insn))
3623 : 184311 : continue;
3624 : :
3625 : 220356 : noce_multiple_sets_info *info = insn_info[count];
3626 : :
3627 : 220356 : rtx set = single_set (insn);
3628 : 220356 : gcc_checking_assert (set);
3629 : :
3630 : 220356 : rtx target = SET_DEST (set);
3631 : 220356 : rtx temp;
3632 : :
3633 : 220356 : rtx new_val = SET_SRC (set);
3634 : :
3635 : 220356 : int i, ii;
3636 : 278206 : FOR_EACH_VEC_ELT (info->rewired_src, i, ii)
3637 : 57850 : new_val = simplify_replace_rtx (new_val, insn_info[ii]->target,
3638 : 57850 : insn_info[ii]->temporary);
3639 : :
3640 : 220356 : rtx old_val = target;
3641 : :
3642 : : /* As we are transforming
3643 : : if (x > y)
3644 : : {
3645 : : a = b;
3646 : : c = d;
3647 : : }
3648 : : into
3649 : : a = (x > y) ...
3650 : : c = (x > y) ...
3651 : :
3652 : : we potentially check x > y before every set.
3653 : : Even though the check might be removed by subsequent passes, this means
3654 : : that we cannot transform
3655 : : if (x > y)
3656 : : {
3657 : : x = y;
3658 : : ...
3659 : : }
3660 : : into
3661 : : x = (x > y) ...
3662 : : ...
3663 : : since this would invalidate x and the following to-be-removed checks.
3664 : : Therefore we introduce a temporary every time we are about to
3665 : : overwrite a variable used in the check. Costing of a sequence with
3666 : : these is going to be inaccurate so only use temporaries when
3667 : : needed.
3668 : :
3669 : : If performing a second try, we know how many insns require a
3670 : : temporary. For the last of these, we can omit creating one. */
3671 : 220356 : if (reg_overlap_mentioned_p (target, cond)
3672 : 220356 : && (!second_try || count < *last_needs_comparison))
3673 : 25740 : temp = gen_reg_rtx (GET_MODE (target));
3674 : : else
3675 : : temp = target;
3676 : :
3677 : : /* We have identified swap-style idioms before. A normal
3678 : : set will need to be a cmov while the first instruction of a swap-style
3679 : : idiom can be a regular move. This helps with costing. */
3680 : 220356 : bool need_cmov = info->need_cmov;
3681 : :
3682 : : /* If we had a non-canonical conditional jump (i.e. one where
3683 : : the fallthrough is to the "else" case) we need to reverse
3684 : : the conditional select. */
3685 : 220356 : if (if_info->then_else_reversed)
3686 : 56675 : std::swap (old_val, new_val);
3687 : :
3688 : : /* Try emitting a conditional move passing the backend the
3689 : : canonicalized comparison. The backend is then able to
3690 : : recognize expressions like
3691 : :
3692 : : if (x > y)
3693 : : y = x;
3694 : :
3695 : : as min/max and emit an insn, accordingly. */
3696 : 220356 : unsigned cost1 = 0, cost2 = 0;
3697 : 220356 : rtx_insn *seq, *seq1, *seq2 = NULL;
3698 : 220356 : rtx temp_dest = NULL_RTX, temp_dest1 = NULL_RTX, temp_dest2 = NULL_RTX;
3699 : 220356 : bool read_comparison = false;
3700 : :
3701 : 220356 : seq1 = try_emit_cmove_seq (if_info, temp, cond,
3702 : : new_val, old_val, need_cmov,
3703 : : &cost1, &temp_dest1);
3704 : :
3705 : : /* Here, we try to pass the backend a non-canonicalized cc comparison
3706 : : as well. This allows the backend to emit a cmov directly without
3707 : : creating an additional compare for each. If successful, costing
3708 : : is easier and this sequence is usually preferred. */
3709 : 220356 : if (cc_cmp)
3710 : : {
3711 : 146269 : seq2 = try_emit_cmove_seq (if_info, temp, cond,
3712 : : new_val, old_val, need_cmov,
3713 : : &cost2, &temp_dest2, cc_cmp, rev_cc_cmp);
3714 : :
3715 : : /* The if_then_else in SEQ2 may be affected when cc_cmp/rev_cc_cmp is
3716 : : clobbered. We can't safely use the sequence in this case. */
3717 : 278928 : for (rtx_insn *iter = seq2; iter; iter = NEXT_INSN (iter))
3718 : 180718 : if (modified_in_p (cc_cmp, iter)
3719 : 180718 : || (rev_cc_cmp && modified_in_p (rev_cc_cmp, iter)))
3720 : : {
3721 : : seq2 = NULL;
3722 : : break;
3723 : : }
3724 : : }
3725 : :
3726 : : /* The backend might have created a sequence that uses the
3727 : : condition as a value. Check this. */
3728 : :
3729 : : /* We cannot handle anything more complex than a reg or constant. */
3730 : 220356 : if (!REG_P (XEXP (cond, 0)) && !CONSTANT_P (XEXP (cond, 0)))
3731 : 220356 : read_comparison = true;
3732 : :
3733 : 220356 : if (!REG_P (XEXP (cond, 1)) && !CONSTANT_P (XEXP (cond, 1)))
3734 : 220356 : read_comparison = true;
3735 : :
3736 : : rtx_insn *walk = seq2;
3737 : : int if_then_else_count = 0;
3738 : 343942 : while (walk && !read_comparison)
3739 : : {
3740 : 123586 : rtx exprs_to_check[2];
3741 : 123586 : unsigned int exprs_count = 0;
3742 : :
3743 : 123586 : rtx set = single_set (walk);
3744 : 123586 : if (set && XEXP (set, 1)
3745 : 123586 : && GET_CODE (XEXP (set, 1)) == IF_THEN_ELSE)
3746 : : {
3747 : : /* We assume that this is the cmove created by the backend that
3748 : : naturally uses the condition. */
3749 : 72879 : exprs_to_check[exprs_count++] = XEXP (XEXP (set, 1), 1);
3750 : 72879 : exprs_to_check[exprs_count++] = XEXP (XEXP (set, 1), 2);
3751 : 72879 : if_then_else_count++;
3752 : : }
3753 : 50707 : else if (NONDEBUG_INSN_P (walk))
3754 : 50707 : exprs_to_check[exprs_count++] = PATTERN (walk);
3755 : :
3756 : : /* Bail if we get more than one if_then_else because the assumption
3757 : : above may be incorrect. */
3758 : 123586 : if (if_then_else_count > 1)
3759 : : {
3760 : 0 : read_comparison = true;
3761 : 0 : break;
3762 : : }
3763 : :
3764 : 320051 : for (unsigned int i = 0; i < exprs_count; i++)
3765 : : {
3766 : 196465 : subrtx_iterator::array_type array;
3767 : 456386 : FOR_EACH_SUBRTX (iter, array, exprs_to_check[i], NONCONST)
3768 : 299111 : if (*iter != NULL_RTX
3769 : 299111 : && (reg_overlap_mentioned_p (XEXP (cond, 0), *iter)
3770 : 277099 : || reg_overlap_mentioned_p (XEXP (cond, 1), *iter)))
3771 : : {
3772 : : read_comparison = true;
3773 : : break;
3774 : : }
3775 : 196465 : }
3776 : :
3777 : 123586 : walk = NEXT_INSN (walk);
3778 : : }
3779 : :
3780 : : /* Check which version is less expensive. */
3781 : 220356 : if (seq1 != NULL_RTX && (cost1 <= cost2 || seq2 == NULL_RTX))
3782 : : {
3783 : 143354 : seq = seq1;
3784 : 143354 : temp_dest = temp_dest1;
3785 : 143354 : if (!second_try)
3786 : 72939 : *last_needs_comparison = count;
3787 : : }
3788 : 1668 : else if (seq2 != NULL_RTX)
3789 : : {
3790 : 75595 : seq = seq2;
3791 : 75595 : temp_dest = temp_dest2;
3792 : 75595 : if (!second_try && read_comparison)
3793 : 11210 : *last_needs_comparison = count;
3794 : : }
3795 : : else
3796 : : {
3797 : : /* Nothing worked, bail out. */
3798 : 1407 : end_sequence ();
3799 : 1560 : return false;
3800 : : }
3801 : :
3802 : : /* Although we use temporaries if there is register overlap of COND and
3803 : : TARGET, it is possible that SEQ modifies COND anyway. For example,
3804 : : COND may use the flags register and if INSN clobbers flags then
3805 : : we may be unable to emit a valid sequence (e.g. in x86 that would
3806 : : require saving and restoring the flags register). */
3807 : 148534 : if (!second_try)
3808 : 326418 : for (rtx_insn *iter = seq; iter; iter = NEXT_INSN (iter))
3809 : 215818 : if (modified_in_p (cond, iter))
3810 : : {
3811 : 153 : end_sequence ();
3812 : 153 : return false;
3813 : : }
3814 : :
3815 : 218796 : if (cc_cmp && seq == seq1)
3816 : : {
3817 : : /* Check if SEQ can clobber registers mentioned in cc_cmp/rev_cc_cmp.
3818 : : If yes, we need to use only SEQ1 from that point on.
3819 : : Only check when we use SEQ1 since we have already tested SEQ2. */
3820 : 96077 : for (rtx_insn *iter = seq; iter; iter = NEXT_INSN (iter))
3821 : 73641 : if (modified_in_p (cc_cmp, iter)
3822 : 73641 : || (rev_cc_cmp && modified_in_p (rev_cc_cmp, iter)))
3823 : : {
3824 : : cc_cmp = NULL_RTX;
3825 : : rev_cc_cmp = NULL_RTX;
3826 : : break;
3827 : : }
3828 : : }
3829 : :
3830 : : /* End the sub sequence and emit to the main sequence. */
3831 : 218796 : emit_insn (seq);
3832 : :
3833 : : /* Bookkeeping. */
3834 : 218796 : count++;
3835 : :
3836 : 218796 : info->target = target;
3837 : 218796 : info->temporary = temp_dest;
3838 : 218796 : info->unmodified_insn = insn;
3839 : : }
3840 : :
3841 : : /* Even if we did not actually need the comparison, we want to make sure
3842 : : to try a second time in order to get rid of the temporaries. */
3843 : 74376 : if (*last_needs_comparison == -1)
3844 : 1211 : *last_needs_comparison = 0;
3845 : :
3846 : : return true;
3847 : : }
3848 : :
3849 : : /* Find local swap-style idioms in BB and mark the first insn (1)
3850 : : that is only a temporary as not needing a conditional move as
3851 : : it is going to be dead afterwards anyway.
3852 : :
3853 : : (1) int tmp = a;
3854 : : a = b;
3855 : : b = tmp;
3856 : :
3857 : : ifcvt
3858 : : -->
3859 : :
3860 : : tmp = a;
3861 : : a = cond ? b : a_old;
3862 : : b = cond ? tmp : b_old;
3863 : :
3864 : : Additionally, store the index of insns like (2) when a subsequent
3865 : : SET reads from their destination.
3866 : :
3867 : : (2) int c = a;
3868 : : int d = c;
3869 : :
3870 : : ifcvt
3871 : : -->
3872 : :
3873 : : c = cond ? a : c_old;
3874 : : d = cond ? d : c; // Need to use c rather than c_old here.
3875 : : */
3876 : :
3877 : : static void
3878 : 38748 : init_noce_multiple_sets_info (basic_block bb,
3879 : : auto_delete_vec<noce_multiple_sets_info> &insn_info)
3880 : : {
3881 : 38748 : rtx_insn *insn;
3882 : 38748 : int count = 0;
3883 : 38748 : auto_vec<rtx> dests;
3884 : 38748 : bitmap bb_live_out = df_get_live_out (bb);
3885 : :
3886 : : /* Iterate over all SETs, storing the destinations in DEST.
3887 : : - If we encounter a previously changed register,
3888 : : rewire the read to the original source.
3889 : : - If we encounter a SET that writes to a destination
3890 : : that is not live after this block then the register
3891 : : does not need to be moved conditionally. */
3892 : 251126 : FOR_BB_INSNS (bb, insn)
3893 : : {
3894 : 212378 : if (!active_insn_p (insn))
3895 : 99561 : continue;
3896 : :
3897 : 112817 : noce_multiple_sets_info *info = new noce_multiple_sets_info;
3898 : 112817 : info->target = NULL_RTX;
3899 : 112817 : info->temporary = NULL_RTX;
3900 : 112817 : info->unmodified_insn = NULL;
3901 : 112817 : insn_info.safe_push (info);
3902 : :
3903 : 112817 : rtx set = single_set (insn);
3904 : 112817 : gcc_checking_assert (set);
3905 : :
3906 : 112817 : rtx src = SET_SRC (set);
3907 : 112817 : rtx dest = SET_DEST (set);
3908 : :
3909 : 112817 : gcc_checking_assert (REG_P (dest));
3910 : 112817 : info->need_cmov = bitmap_bit_p (bb_live_out, REGNO (dest));
3911 : :
3912 : : /* Check if the current SET's source is the same
3913 : : as any previously seen destination.
3914 : : This is quadratic but the number of insns in BB
3915 : : is bounded by PARAM_MAX_RTL_IF_CONVERSION_INSNS. */
3916 : 255141 : for (int i = count - 1; i >= 0; --i)
3917 : 142324 : if (reg_mentioned_p (dests[i], src))
3918 : 30216 : insn_info[count]->rewired_src.safe_push (i);
3919 : :
3920 : 112817 : dests.safe_push (dest);
3921 : 112817 : count++;
3922 : : }
3923 : 38748 : }
3924 : :
3925 : : /* Return true iff basic block TEST_BB is suitable for conversion to a
3926 : : series of conditional moves. Also check that we have more than one
3927 : : set (other routines can handle a single set better than we would),
3928 : : and fewer than PARAM_MAX_RTL_IF_CONVERSION_INSNS sets. While going
3929 : : through the insns store the sum of their potential costs in COST. */
3930 : :
3931 : : static bool
3932 : 1044066 : bb_ok_for_noce_convert_multiple_sets (basic_block test_bb, unsigned *cost)
3933 : : {
3934 : 1044066 : rtx_insn *insn;
3935 : 1044066 : unsigned count = 0;
3936 : 1044066 : unsigned param = param_max_rtl_if_conversion_insns;
3937 : 1044066 : bool speed_p = optimize_bb_for_speed_p (test_bb);
3938 : 1044066 : unsigned potential_cost = 0;
3939 : :
3940 : 6936875 : FOR_BB_INSNS (test_bb, insn)
3941 : : {
3942 : : /* Skip over notes etc. */
3943 : 6811092 : if (!active_insn_p (insn))
3944 : 4951258 : continue;
3945 : :
3946 : : /* We only handle SET insns. */
3947 : 1859834 : rtx set = single_set (insn);
3948 : 1859834 : if (set == NULL_RTX)
3949 : : return false;
3950 : :
3951 : 1665894 : rtx dest = SET_DEST (set);
3952 : 1665894 : rtx src = SET_SRC (set);
3953 : :
3954 : : /* Do not handle anything involving memory loads/stores since it might
3955 : : violate data-race-freedom guarantees. Make sure we can force SRC
3956 : : to a register as that may be needed in try_emit_cmove_seq. */
3957 : 1474612 : if (!REG_P (dest) || contains_mem_rtx_p (src)
3958 : 2663726 : || !noce_can_force_operand (src))
3959 : 676304 : return false;
3960 : :
3961 : : /* Destination and source must be appropriate. */
3962 : 989590 : if (!noce_operand_ok (dest) || !noce_operand_ok (src))
3963 : 6236 : return false;
3964 : :
3965 : : /* We must be able to conditionally move in this mode. */
3966 : 983354 : if (!can_conditionally_move_p (GET_MODE (dest)))
3967 : : return false;
3968 : :
3969 : 941551 : potential_cost += insn_cost (insn, speed_p);
3970 : :
3971 : 941551 : count++;
3972 : : }
3973 : :
3974 : 125783 : *cost += potential_cost;
3975 : :
3976 : : /* If we would only put out one conditional move, the other strategies
3977 : : this pass tries are better optimized and will be more appropriate.
3978 : : Some targets want to strictly limit the number of conditional moves
3979 : : that are emitted, they set this through PARAM, we need to respect
3980 : : that. */
3981 : 125783 : return count > 1 && count <= param;
3982 : : }
3983 : :
3984 : : /* Compute average of two given costs weighted by relative probabilities
3985 : : of respective basic blocks in an IF-THEN-ELSE. E is the IF-THEN edge.
3986 : : With P as the probability to take the IF-THEN branch, return
3987 : : P * THEN_COST + (1 - P) * ELSE_COST. */
3988 : : static unsigned
3989 : 243491 : average_cost (unsigned then_cost, unsigned else_cost, edge e)
3990 : : {
3991 : 243491 : return else_cost + e->probability.apply ((signed) (then_cost - else_cost));
3992 : : }
3993 : :
3994 : : /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
3995 : : it without using conditional execution. Return TRUE if we were successful
3996 : : at converting the block. */
3997 : :
3998 : : static bool
3999 : 1778700 : noce_process_if_block (struct noce_if_info *if_info)
4000 : : {
4001 : 1778700 : basic_block test_bb = if_info->test_bb; /* test block */
4002 : 1778700 : basic_block then_bb = if_info->then_bb; /* THEN */
4003 : 1778700 : basic_block else_bb = if_info->else_bb; /* ELSE or NULL */
4004 : 1778700 : basic_block join_bb = if_info->join_bb; /* JOIN */
4005 : 1778700 : rtx_insn *jump = if_info->jump;
4006 : 1778700 : rtx cond = if_info->cond;
4007 : 1778700 : rtx_insn *insn_a, *insn_b;
4008 : 1778700 : rtx set_a, set_b;
4009 : 1778700 : rtx orig_x, x, a, b;
4010 : :
4011 : : /* We're looking for patterns of the form
4012 : :
4013 : : (1) if (...) x = a; else x = b;
4014 : : (2) x = b; if (...) x = a;
4015 : : (3) if (...) x = a; // as if with an initial x = x.
4016 : : (4) if (...) { x = a; y = b; z = c; } // Like 3, for multiple SETS.
4017 : : The later patterns require jumps to be more expensive.
4018 : : For the if (...) x = a; else x = b; case we allow multiple insns
4019 : : inside the then and else blocks as long as their only effect is
4020 : : to calculate a value for x.
4021 : : ??? For future expansion, further expand the "multiple X" rules. */
4022 : :
4023 : : /* First look for multiple SETS. The original costs already include
4024 : : a base cost of COSTS_N_INSNS (2): one instruction for the compare
4025 : : (which we will be needing either way) and one instruction for the
4026 : : branch. When comparing costs we want to use the branch instruction
4027 : : cost and the sets vs. the cmovs generated here. Therefore subtract
4028 : : the costs of the compare before checking.
4029 : : ??? Actually, instead of the branch instruction costs we might want
4030 : : to use COSTS_N_INSNS (BRANCH_COST ()) as in other places. */
4031 : :
4032 : 1778700 : unsigned potential_cost = if_info->original_cost - COSTS_N_INSNS (1);
4033 : 1778700 : unsigned old_cost = if_info->original_cost;
4034 : 1778700 : if (!else_bb
4035 : : && HAVE_conditional_move
4036 : 1778700 : && bb_ok_for_noce_convert_multiple_sets (then_bb, &potential_cost))
4037 : : {
4038 : : /* Temporarily set the original costs to what we estimated so
4039 : : we can determine if the transformation is worth it. */
4040 : 38748 : if_info->original_cost = potential_cost;
4041 : 38748 : if (noce_convert_multiple_sets (if_info))
4042 : : {
4043 : 19997 : if (dump_file && if_info->transform_name)
4044 : 1 : fprintf (dump_file, "if-conversion succeeded through %s\n",
4045 : : if_info->transform_name);
4046 : 19997 : return true;
4047 : : }
4048 : :
4049 : : /* Restore the original costs. */
4050 : 18751 : if_info->original_cost = old_cost;
4051 : : }
4052 : :
4053 : 1758703 : bool speed_p = optimize_bb_for_speed_p (test_bb);
4054 : 1758703 : unsigned int then_cost = 0, else_cost = 0;
4055 : 1758703 : if (!bb_valid_for_noce_process_p (then_bb, cond, &then_cost,
4056 : : &if_info->then_simple))
4057 : : return false;
4058 : :
4059 : 474569 : if (else_bb
4060 : 474569 : && !bb_valid_for_noce_process_p (else_bb, cond, &else_cost,
4061 : : &if_info->else_simple))
4062 : : return false;
4063 : :
4064 : 287406 : if (speed_p)
4065 : 243491 : if_info->original_cost += average_cost (then_cost, else_cost,
4066 : : find_edge (test_bb, then_bb));
4067 : : else
4068 : 43915 : if_info->original_cost += then_cost + else_cost;
4069 : :
4070 : 287406 : insn_a = last_active_insn (then_bb, false);
4071 : 287406 : set_a = single_set (insn_a);
4072 : 287406 : gcc_assert (set_a);
4073 : :
4074 : 287406 : x = SET_DEST (set_a);
4075 : 287406 : a = SET_SRC (set_a);
4076 : :
4077 : : /* Look for the other potential set. Make sure we've got equivalent
4078 : : destinations. */
4079 : : /* ??? This is overconservative. Storing to two different mems is
4080 : : as easy as conditionally computing the address. Storing to a
4081 : : single mem merely requires a scratch memory to use as one of the
4082 : : destination addresses; often the memory immediately below the
4083 : : stack pointer is available for this. */
4084 : 287406 : set_b = NULL_RTX;
4085 : 287406 : if (else_bb)
4086 : : {
4087 : 84324 : insn_b = last_active_insn (else_bb, false);
4088 : 84324 : set_b = single_set (insn_b);
4089 : 84324 : gcc_assert (set_b);
4090 : :
4091 : 84324 : if (!rtx_interchangeable_p (x, SET_DEST (set_b)))
4092 : : return false;
4093 : : }
4094 : : else
4095 : : {
4096 : 203082 : insn_b = if_info->cond_earliest;
4097 : 535770 : do
4098 : 535770 : insn_b = prev_nonnote_nondebug_insn (insn_b);
4099 : : while (insn_b
4100 : 533242 : && (BLOCK_FOR_INSN (insn_b)
4101 : 533242 : == BLOCK_FOR_INSN (if_info->cond_earliest))
4102 : 1190732 : && !modified_in_p (x, insn_b));
4103 : :
4104 : : /* We're going to be moving the evaluation of B down from above
4105 : : COND_EARLIEST to JUMP. Make sure the relevant data is still
4106 : : intact. */
4107 : 203082 : if (! insn_b
4108 : 200554 : || BLOCK_FOR_INSN (insn_b) != BLOCK_FOR_INSN (if_info->cond_earliest)
4109 : 119192 : || !NONJUMP_INSN_P (insn_b)
4110 : 113732 : || (set_b = single_set (insn_b)) == NULL_RTX
4111 : 112184 : || ! rtx_interchangeable_p (x, SET_DEST (set_b))
4112 : 100645 : || ! noce_operand_ok (SET_SRC (set_b))
4113 : 98565 : || reg_overlap_mentioned_p (x, SET_SRC (set_b))
4114 : 96763 : || modified_between_p (SET_SRC (set_b), insn_b, jump)
4115 : : /* Avoid extending the lifetime of hard registers on small
4116 : : register class machines. */
4117 : 94044 : || (REG_P (SET_SRC (set_b))
4118 : 26495 : && HARD_REGISTER_P (SET_SRC (set_b))
4119 : 3525 : && targetm.small_register_classes_for_mode_p
4120 : 3525 : (GET_MODE (SET_SRC (set_b))))
4121 : : /* Likewise with X. In particular this can happen when
4122 : : noce_get_condition looks farther back in the instruction
4123 : : stream than one might expect. */
4124 : 90519 : || reg_overlap_mentioned_p (x, cond)
4125 : 77095 : || reg_overlap_mentioned_p (x, a)
4126 : 272666 : || modified_between_p (x, insn_b, jump))
4127 : : {
4128 : : insn_b = NULL;
4129 : : set_b = NULL_RTX;
4130 : : }
4131 : : }
4132 : :
4133 : : /* If x has side effects then only the if-then-else form is safe to
4134 : : convert. But even in that case we would need to restore any notes
4135 : : (such as REG_INC) at then end. That can be tricky if
4136 : : noce_emit_move_insn expands to more than one insn, so disable the
4137 : : optimization entirely for now if there are side effects. */
4138 : 274148 : if (side_effects_p (x))
4139 : : return false;
4140 : :
4141 : 274148 : b = (set_b ? SET_SRC (set_b) : x);
4142 : :
4143 : : /* Only operate on register destinations, and even then avoid extending
4144 : : the lifetime of hard registers on small register class machines. */
4145 : 274148 : orig_x = x;
4146 : 274148 : if_info->orig_x = orig_x;
4147 : 274148 : if (!REG_P (x)
4148 : 274148 : || (HARD_REGISTER_P (x)
4149 : 2 : && targetm.small_register_classes_for_mode_p (GET_MODE (x))))
4150 : : {
4151 : 59476 : if (GET_MODE (x) == BLKmode)
4152 : : return false;
4153 : :
4154 : 59178 : if (GET_CODE (x) == ZERO_EXTRACT
4155 : 2 : && (!CONST_INT_P (XEXP (x, 1))
4156 : 2 : || !CONST_INT_P (XEXP (x, 2))))
4157 : : return false;
4158 : :
4159 : 59178 : x = gen_reg_rtx (GET_MODE (GET_CODE (x) == STRICT_LOW_PART
4160 : : ? XEXP (x, 0) : x));
4161 : : }
4162 : :
4163 : : /* Don't operate on sources that may trap or are volatile. */
4164 : 273850 : if (! noce_operand_ok (a) || ! noce_operand_ok (b))
4165 : 0 : return false;
4166 : :
4167 : 321983 : retry:
4168 : : /* Set up the info block for our subroutines. */
4169 : 321983 : if_info->insn_a = insn_a;
4170 : 321983 : if_info->insn_b = insn_b;
4171 : 321983 : if_info->x = x;
4172 : 321983 : if_info->a = a;
4173 : 321983 : if_info->b = b;
4174 : :
4175 : : /* Try optimizations in some approximation of a useful order. */
4176 : : /* ??? Should first look to see if X is live incoming at all. If it
4177 : : isn't, we don't need anything but an unconditional set. */
4178 : :
4179 : : /* Look and see if A and B are really the same. Avoid creating silly
4180 : : cmove constructs that no one will fix up later. */
4181 : 321983 : if (noce_simple_bbs (if_info)
4182 : 296715 : && rtx_interchangeable_p (a, b))
4183 : : {
4184 : : /* If we have an INSN_B, we don't have to create any new rtl. Just
4185 : : move the instruction that we already have. If we don't have an
4186 : : INSN_B, that means that A == X, and we've got a noop move. In
4187 : : that case don't do anything and let the code below delete INSN_A. */
4188 : 1070 : if (insn_b && else_bb)
4189 : : {
4190 : 1056 : rtx note;
4191 : :
4192 : 1056 : if (else_bb && insn_b == BB_END (else_bb))
4193 : 762 : BB_END (else_bb) = PREV_INSN (insn_b);
4194 : 1056 : reorder_insns (insn_b, insn_b, PREV_INSN (jump));
4195 : :
4196 : : /* If there was a REG_EQUAL note, delete it since it may have been
4197 : : true due to this insn being after a jump. */
4198 : 1056 : if ((note = find_reg_note (insn_b, REG_EQUAL, NULL_RTX)) != 0)
4199 : 6 : remove_note (insn_b, note);
4200 : :
4201 : 1070 : insn_b = NULL;
4202 : : }
4203 : : /* If we have "x = b; if (...) x = a;", and x has side-effects, then
4204 : : x must be executed twice. */
4205 : 14 : else if (insn_b && side_effects_p (orig_x))
4206 : : return false;
4207 : :
4208 : 1070 : x = orig_x;
4209 : 1070 : goto success;
4210 : : }
4211 : :
4212 : 320913 : if (!set_b && MEM_P (orig_x))
4213 : : /* We want to avoid store speculation to avoid cases like
4214 : : if (pthread_mutex_trylock(mutex))
4215 : : ++global_variable;
4216 : : Rather than go to much effort here, we rely on the SSA optimizers,
4217 : : which do a good enough job these days. */
4218 : : return false;
4219 : :
4220 : 263322 : if (noce_try_move (if_info))
4221 : 0 : goto success;
4222 : 263322 : if (noce_try_ifelse_collapse (if_info))
4223 : 2092 : goto success;
4224 : 261230 : if (noce_try_store_flag (if_info))
4225 : 16261 : goto success;
4226 : 244969 : if (noce_try_bitop (if_info))
4227 : 0 : goto success;
4228 : 244969 : if (noce_try_minmax (if_info))
4229 : 58 : goto success;
4230 : 244911 : if (noce_try_abs (if_info))
4231 : 24 : goto success;
4232 : 244887 : if (noce_try_inverse_constants (if_info))
4233 : 0 : goto success;
4234 : 244887 : if (!targetm.have_conditional_execution ()
4235 : 244887 : && noce_try_store_flag_constants (if_info))
4236 : 2092 : goto success;
4237 : 242795 : if (HAVE_conditional_move
4238 : 242795 : && noce_try_cmove (if_info))
4239 : 41518 : goto success;
4240 : 201277 : if (! targetm.have_conditional_execution ())
4241 : : {
4242 : 201277 : if (noce_try_addcc (if_info))
4243 : 4832 : goto success;
4244 : 196445 : if (noce_try_store_flag_mask (if_info))
4245 : 2 : goto success;
4246 : 196443 : if (HAVE_conditional_move
4247 : 196443 : && noce_try_cond_zero_arith (if_info))
4248 : 0 : goto success;
4249 : 196443 : if (HAVE_conditional_move
4250 : 196443 : && noce_try_cmove_arith (if_info))
4251 : 35541 : goto success;
4252 : 160902 : if (noce_try_sign_mask (if_info))
4253 : 0 : goto success;
4254 : : }
4255 : :
4256 : 160902 : if (!else_bb && set_b)
4257 : : {
4258 : 48133 : insn_b = NULL;
4259 : 48133 : set_b = NULL_RTX;
4260 : 48133 : b = orig_x;
4261 : 48133 : goto retry;
4262 : : }
4263 : :
4264 : : return false;
4265 : :
4266 : 103490 : success:
4267 : 103490 : if (dump_file && if_info->transform_name)
4268 : 5 : fprintf (dump_file, "if-conversion succeeded through %s\n",
4269 : : if_info->transform_name);
4270 : :
4271 : : /* If we used a temporary, fix it up now. */
4272 : 103490 : if (orig_x != x)
4273 : : {
4274 : 758 : rtx_insn *seq;
4275 : :
4276 : 758 : start_sequence ();
4277 : 758 : noce_emit_move_insn (orig_x, x);
4278 : 758 : seq = get_insns ();
4279 : 758 : set_used_flags (orig_x);
4280 : 758 : unshare_all_rtl_in_chain (seq);
4281 : 758 : end_sequence ();
4282 : :
4283 : 758 : emit_insn_before_setloc (seq, BB_END (test_bb), INSN_LOCATION (insn_a));
4284 : : }
4285 : :
4286 : : /* The original THEN and ELSE blocks may now be removed. The test block
4287 : : must now jump to the join block. If the test block and the join block
4288 : : can be merged, do so. */
4289 : 103490 : if (else_bb)
4290 : : {
4291 : 38825 : delete_basic_block (else_bb);
4292 : 38825 : num_true_changes++;
4293 : : }
4294 : : else
4295 : 64665 : remove_edge (find_edge (test_bb, join_bb));
4296 : :
4297 : 103490 : remove_edge (find_edge (then_bb, join_bb));
4298 : 103490 : redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
4299 : 103490 : delete_basic_block (then_bb);
4300 : 103490 : num_true_changes++;
4301 : :
4302 : 103490 : if (can_merge_blocks_p (test_bb, join_bb))
4303 : : {
4304 : 75859 : merge_blocks (test_bb, join_bb);
4305 : 75859 : num_true_changes++;
4306 : : }
4307 : :
4308 : 103490 : num_updated_if_blocks++;
4309 : 103490 : return true;
4310 : : }
4311 : :
4312 : : /* Check whether a block is suitable for conditional move conversion.
4313 : : Every insn must be a simple set of a register to a constant or a
4314 : : register. For each assignment, store the value in the pointer map
4315 : : VALS, keyed indexed by register pointer, then store the register
4316 : : pointer in REGS. COND is the condition we will test. */
4317 : :
4318 : : static bool
4319 : 1689532 : check_cond_move_block (basic_block bb,
4320 : : hash_map<rtx, rtx> *vals,
4321 : : vec<rtx> *regs,
4322 : : rtx cond)
4323 : : {
4324 : 1689532 : rtx_insn *insn;
4325 : 1689532 : rtx cc = cc_in_cond (cond);
4326 : :
4327 : : /* We can only handle simple jumps at the end of the basic block.
4328 : : It is almost impossible to update the CFG otherwise. */
4329 : 1689532 : insn = BB_END (bb);
4330 : 1689532 : if (JUMP_P (insn) && !onlyjump_p (insn))
4331 : : return false;
4332 : :
4333 : 8002731 : FOR_BB_INSNS (bb, insn)
4334 : : {
4335 : 7926126 : rtx set, dest, src;
4336 : :
4337 : 7926126 : if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
4338 : 6152041 : continue;
4339 : 1774085 : set = single_set (insn);
4340 : 1774085 : if (!set)
4341 : 1612880 : return false;
4342 : :
4343 : 1702846 : dest = SET_DEST (set);
4344 : 1702846 : src = SET_SRC (set);
4345 : 1702846 : if (!REG_P (dest)
4346 : 1702846 : || (HARD_REGISTER_P (dest)
4347 : 264336 : && targetm.small_register_classes_for_mode_p (GET_MODE (dest))))
4348 : 608960 : return false;
4349 : :
4350 : 1093886 : if (!CONSTANT_P (src) && !register_operand (src, VOIDmode))
4351 : : return false;
4352 : :
4353 : 186684 : if (side_effects_p (src) || side_effects_p (dest))
4354 : 0 : return false;
4355 : :
4356 : 186684 : if (may_trap_p (src) || may_trap_p (dest))
4357 : 0 : return false;
4358 : :
4359 : : /* Don't try to handle this if the source register was
4360 : : modified earlier in the block. */
4361 : 186684 : if ((REG_P (src)
4362 : 48930 : && vals->get (src))
4363 : 235377 : || (GET_CODE (src) == SUBREG && REG_P (SUBREG_REG (src))
4364 : 3929 : && vals->get (SUBREG_REG (src))))
4365 : 238 : return false;
4366 : :
4367 : : /* Don't try to handle this if the destination register was
4368 : : modified earlier in the block. */
4369 : 186446 : if (vals->get (dest))
4370 : : return false;
4371 : :
4372 : : /* Don't try to handle this if the condition uses the
4373 : : destination register. */
4374 : 186446 : if (reg_overlap_mentioned_p (dest, cond))
4375 : : return false;
4376 : :
4377 : : /* Don't try to handle this if the source register is modified
4378 : : later in the block. */
4379 : 164401 : if (!CONSTANT_P (src)
4380 : 164401 : && modified_between_p (src, insn, NEXT_INSN (BB_END (bb))))
4381 : : return false;
4382 : :
4383 : : /* Skip it if the instruction to be moved might clobber CC. */
4384 : 161205 : if (cc && set_of (cc, insn))
4385 : : return false;
4386 : :
4387 : 161205 : vals->put (dest, src);
4388 : :
4389 : 161205 : regs->safe_push (dest);
4390 : : }
4391 : :
4392 : : return true;
4393 : : }
4394 : :
4395 : : /* Given a basic block BB suitable for conditional move conversion,
4396 : : a condition COND, and pointer maps THEN_VALS and ELSE_VALS containing
4397 : : the register values depending on COND, emit the insns in the block as
4398 : : conditional moves. If ELSE_BLOCK is true, THEN_BB was already
4399 : : processed. The caller has started a sequence for the conversion.
4400 : : Return true if successful, false if something goes wrong. */
4401 : :
4402 : : static bool
4403 : 54387 : cond_move_convert_if_block (struct noce_if_info *if_infop,
4404 : : basic_block bb, rtx cond,
4405 : : hash_map<rtx, rtx> *then_vals,
4406 : : hash_map<rtx, rtx> *else_vals,
4407 : : bool else_block_p)
4408 : : {
4409 : 54387 : enum rtx_code code;
4410 : 54387 : rtx_insn *insn;
4411 : 54387 : rtx cond_arg0, cond_arg1;
4412 : :
4413 : 54387 : code = GET_CODE (cond);
4414 : 54387 : cond_arg0 = XEXP (cond, 0);
4415 : 54387 : cond_arg1 = XEXP (cond, 1);
4416 : :
4417 : 208353 : FOR_BB_INSNS (bb, insn)
4418 : : {
4419 : 169475 : rtx set, target, dest, t, e;
4420 : :
4421 : : /* ??? Maybe emit conditional debug insn? */
4422 : 169475 : if (!NONDEBUG_INSN_P (insn) || JUMP_P (insn))
4423 : 111197 : continue;
4424 : 86797 : set = single_set (insn);
4425 : 86797 : gcc_assert (set && REG_P (SET_DEST (set)));
4426 : :
4427 : 86797 : dest = SET_DEST (set);
4428 : :
4429 : 86797 : rtx *then_slot = then_vals->get (dest);
4430 : 86797 : rtx *else_slot = else_vals->get (dest);
4431 : 86797 : t = then_slot ? *then_slot : NULL_RTX;
4432 : 86797 : e = else_slot ? *else_slot : NULL_RTX;
4433 : :
4434 : 86797 : if (else_block_p)
4435 : : {
4436 : : /* If this register was set in the then block, we already
4437 : : handled this case there. */
4438 : 30569 : if (t)
4439 : 28519 : continue;
4440 : 2050 : t = dest;
4441 : 2050 : gcc_assert (e);
4442 : : }
4443 : : else
4444 : : {
4445 : 56228 : gcc_assert (t);
4446 : 56228 : if (!e)
4447 : 26866 : e = dest;
4448 : : }
4449 : :
4450 : 58278 : if (if_infop->cond_inverted)
4451 : 0 : std::swap (t, e);
4452 : :
4453 : 58278 : target = noce_emit_cmove (if_infop, dest, code, cond_arg0, cond_arg1,
4454 : : t, e);
4455 : 58278 : if (!target)
4456 : 15509 : return false;
4457 : :
4458 : 42769 : if (target != dest)
4459 : 0 : noce_emit_move_insn (dest, target);
4460 : : }
4461 : :
4462 : : return true;
4463 : : }
4464 : :
4465 : : /* Given a simple IF-THEN-JOIN or IF-THEN-ELSE-JOIN block, attempt to convert
4466 : : it using only conditional moves. Return TRUE if we were successful at
4467 : : converting the block. */
4468 : :
4469 : : static bool
4470 : 1655213 : cond_move_process_if_block (struct noce_if_info *if_info)
4471 : : {
4472 : 1655213 : basic_block test_bb = if_info->test_bb;
4473 : 1655213 : basic_block then_bb = if_info->then_bb;
4474 : 1655213 : basic_block else_bb = if_info->else_bb;
4475 : 1655213 : basic_block join_bb = if_info->join_bb;
4476 : 1655213 : rtx_insn *jump = if_info->jump;
4477 : 1655213 : rtx cond = if_info->cond;
4478 : 1655213 : rtx_insn *seq, *loc_insn;
4479 : 1655213 : int c;
4480 : 1655213 : vec<rtx> then_regs = vNULL;
4481 : 1655213 : vec<rtx> else_regs = vNULL;
4482 : 1655213 : bool success_p = false;
4483 : 1655213 : int limit = param_max_rtl_if_conversion_insns;
4484 : :
4485 : : /* Build a mapping for each block to the value used for each
4486 : : register. */
4487 : 1655213 : hash_map<rtx, rtx> then_vals;
4488 : 1655213 : hash_map<rtx, rtx> else_vals;
4489 : :
4490 : : /* Make sure the blocks are suitable. */
4491 : 1655213 : if (!check_cond_move_block (then_bb, &then_vals, &then_regs, cond)
4492 : 1655213 : || (else_bb
4493 : 34319 : && !check_cond_move_block (else_bb, &else_vals, &else_regs, cond)))
4494 : 1612927 : goto done;
4495 : :
4496 : : /* Make sure the blocks can be used together. If the same register
4497 : : is set in both blocks, and is not set to a constant in both
4498 : : cases, then both blocks must set it to the same register. We
4499 : : have already verified that if it is set to a register, that the
4500 : : source register does not change after the assignment. Also count
4501 : : the number of registers set in only one of the blocks. */
4502 : 42286 : c = 0;
4503 : 183733 : for (rtx reg : then_regs)
4504 : : {
4505 : 59707 : rtx *then_slot = then_vals.get (reg);
4506 : 59707 : rtx *else_slot = else_vals.get (reg);
4507 : :
4508 : 59707 : gcc_checking_assert (then_slot);
4509 : 59707 : if (!else_slot)
4510 : 27464 : ++c;
4511 : : else
4512 : : {
4513 : 32243 : rtx then_val = *then_slot;
4514 : 32243 : rtx else_val = *else_slot;
4515 : 3347 : if (!CONSTANT_P (then_val) && !CONSTANT_P (else_val)
4516 : 34859 : && !rtx_equal_p (then_val, else_val))
4517 : 2482 : goto done;
4518 : : }
4519 : : }
4520 : :
4521 : : /* Finish off c for MAX_CONDITIONAL_EXECUTE. */
4522 : 102756 : for (rtx reg : else_regs)
4523 : : {
4524 : 31922 : gcc_checking_assert (else_vals.get (reg));
4525 : 31922 : if (!then_vals.get (reg))
4526 : 2173 : ++c;
4527 : : }
4528 : :
4529 : : /* Make sure it is reasonable to convert this block. What matters
4530 : : is the number of assignments currently made in only one of the
4531 : : branches, since if we convert we are going to always execute
4532 : : them. */
4533 : 39804 : if (c > MAX_CONDITIONAL_EXECUTE
4534 : 39804 : || c > limit)
4535 : 20 : goto done;
4536 : :
4537 : : /* Try to emit the conditional moves. First do the then block,
4538 : : then do anything left in the else blocks. */
4539 : 39784 : start_sequence ();
4540 : 39784 : if (!cond_move_convert_if_block (if_info, then_bb, cond,
4541 : : &then_vals, &else_vals, false)
4542 : 39784 : || (else_bb
4543 : 14603 : && !cond_move_convert_if_block (if_info, else_bb, cond,
4544 : : &then_vals, &else_vals, true)))
4545 : : {
4546 : 15509 : end_sequence ();
4547 : 15509 : goto done;
4548 : : }
4549 : 24275 : seq = end_ifcvt_sequence (if_info);
4550 : 24275 : if (!seq || !targetm.noce_conversion_profitable_p (seq, if_info))
4551 : 20595 : goto done;
4552 : :
4553 : 3680 : loc_insn = first_active_insn (then_bb);
4554 : 3680 : if (!loc_insn)
4555 : : {
4556 : 4 : loc_insn = first_active_insn (else_bb);
4557 : 4 : gcc_assert (loc_insn);
4558 : : }
4559 : 3680 : emit_insn_before_setloc (seq, jump, INSN_LOCATION (loc_insn));
4560 : :
4561 : 3680 : if (else_bb)
4562 : : {
4563 : 3680 : delete_basic_block (else_bb);
4564 : 3680 : num_true_changes++;
4565 : : }
4566 : : else
4567 : 0 : remove_edge (find_edge (test_bb, join_bb));
4568 : :
4569 : 3680 : remove_edge (find_edge (then_bb, join_bb));
4570 : 3680 : redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
4571 : 3680 : delete_basic_block (then_bb);
4572 : 3680 : num_true_changes++;
4573 : :
4574 : 3680 : if (can_merge_blocks_p (test_bb, join_bb))
4575 : : {
4576 : 646 : merge_blocks (test_bb, join_bb);
4577 : 646 : num_true_changes++;
4578 : : }
4579 : :
4580 : 3680 : num_updated_if_blocks++;
4581 : 3680 : success_p = true;
4582 : :
4583 : 1655213 : done:
4584 : 1655213 : then_regs.release ();
4585 : 1655213 : else_regs.release ();
4586 : 1655213 : return success_p;
4587 : 1655213 : }
4588 : :
4589 : :
4590 : : /* Determine if a given basic block heads a simple IF-THEN-JOIN or an
4591 : : IF-THEN-ELSE-JOIN block.
4592 : :
4593 : : If so, we'll try to convert the insns to not require the branch,
4594 : : using only transformations that do not require conditional execution.
4595 : :
4596 : : Return TRUE if we were successful at converting the block. */
4597 : :
4598 : : static bool
4599 : 9046509 : noce_find_if_block (basic_block test_bb, edge then_edge, edge else_edge,
4600 : : int pass)
4601 : : {
4602 : 9046509 : basic_block then_bb, else_bb, join_bb;
4603 : 9046509 : bool then_else_reversed = false;
4604 : 9046509 : rtx_insn *jump;
4605 : 9046509 : rtx_insn *cond_earliest;
4606 : 9046509 : struct noce_if_info if_info;
4607 : 9046509 : bool speed_p = optimize_bb_for_speed_p (test_bb);
4608 : :
4609 : : /* We only ever should get here before reload. */
4610 : 9046509 : gcc_assert (!reload_completed);
4611 : :
4612 : : /* Recognize an IF-THEN-ELSE-JOIN block. */
4613 : 9046509 : if (single_pred_p (then_edge->dest)
4614 : 7359777 : && single_succ_p (then_edge->dest)
4615 : 3167516 : && single_pred_p (else_edge->dest)
4616 : 9315239 : && single_succ_p (else_edge->dest)
4617 : 10110982 : && single_succ (then_edge->dest) == single_succ (else_edge->dest))
4618 : : {
4619 : : then_bb = then_edge->dest;
4620 : : else_bb = else_edge->dest;
4621 : : join_bb = single_succ (then_bb);
4622 : : }
4623 : : /* Recognize an IF-THEN-JOIN block. */
4624 : 8250766 : else if (single_pred_p (then_edge->dest)
4625 : 9710691 : && single_succ_p (then_edge->dest)
4626 : 10622539 : && single_succ (then_edge->dest) == else_edge->dest)
4627 : : {
4628 : : then_bb = then_edge->dest;
4629 : : else_bb = NULL_BLOCK;
4630 : : join_bb = else_edge->dest;
4631 : : }
4632 : : /* Recognize an IF-ELSE-JOIN block. We can have those because the order
4633 : : of basic blocks in cfglayout mode does not matter, so the fallthrough
4634 : : edge can go to any basic block (and not just to bb->next_bb, like in
4635 : : cfgrtl mode). */
4636 : 16258260 : else if (single_pred_p (else_edge->dest)
4637 : 10391432 : && single_succ_p (else_edge->dest)
4638 : 8811008 : && single_succ (else_edge->dest) == then_edge->dest)
4639 : : {
4640 : : /* The noce transformations do not apply to IF-ELSE-JOIN blocks.
4641 : : To make this work, we have to invert the THEN and ELSE blocks
4642 : : and reverse the jump condition. */
4643 : : then_bb = else_edge->dest;
4644 : : else_bb = NULL_BLOCK;
4645 : : join_bb = single_succ (then_bb);
4646 : : then_else_reversed = true;
4647 : : }
4648 : : else
4649 : : /* Not a form we can handle. */
4650 : : return false;
4651 : :
4652 : : /* The edges of the THEN and ELSE blocks cannot have complex edges. */
4653 : 1839859 : if (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
4654 : : return false;
4655 : 1789181 : if (else_bb
4656 : 1789181 : && single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
4657 : : return false;
4658 : :
4659 : 1778901 : num_possible_if_blocks++;
4660 : :
4661 : 1778901 : if (dump_file)
4662 : : {
4663 : 90 : fprintf (dump_file,
4664 : : "\nIF-THEN%s-JOIN block found, pass %d, test %d, then %d",
4665 : : (else_bb) ? "-ELSE" : "",
4666 : : pass, test_bb->index, then_bb->index);
4667 : :
4668 : 53 : if (else_bb)
4669 : 16 : fprintf (dump_file, ", else %d", else_bb->index);
4670 : :
4671 : 53 : fprintf (dump_file, ", join %d\n", join_bb->index);
4672 : : }
4673 : :
4674 : : /* If the conditional jump is more than just a conditional
4675 : : jump, then we cannot do if-conversion on this block. */
4676 : 1778901 : jump = BB_END (test_bb);
4677 : 1778901 : if (! onlyjump_p (jump))
4678 : : return false;
4679 : :
4680 : : /* Initialize an IF_INFO struct to pass around. */
4681 : 1778700 : memset (&if_info, 0, sizeof if_info);
4682 : 1778700 : if_info.test_bb = test_bb;
4683 : 1778700 : if_info.then_bb = then_bb;
4684 : 1778700 : if_info.else_bb = else_bb;
4685 : 1778700 : if_info.join_bb = join_bb;
4686 : 1778700 : if_info.cond = noce_get_condition (jump, &cond_earliest,
4687 : : then_else_reversed);
4688 : 1778700 : rtx_insn *rev_cond_earliest;
4689 : 3557400 : if_info.rev_cond = noce_get_condition (jump, &rev_cond_earliest,
4690 : 1778700 : !then_else_reversed);
4691 : 1778700 : if (!if_info.cond && !if_info.rev_cond)
4692 : : return false;
4693 : 1778700 : if (!if_info.cond)
4694 : : {
4695 : 0 : std::swap (if_info.cond, if_info.rev_cond);
4696 : 0 : std::swap (cond_earliest, rev_cond_earliest);
4697 : 0 : if_info.cond_inverted = true;
4698 : : }
4699 : : /* We must be comparing objects whose modes imply the size. */
4700 : 1778700 : if (GET_MODE (XEXP (if_info.cond, 0)) == BLKmode)
4701 : : return false;
4702 : 1778700 : gcc_assert (if_info.rev_cond == NULL_RTX
4703 : : || rev_cond_earliest == cond_earliest);
4704 : 1778700 : if_info.cond_earliest = cond_earliest;
4705 : 1778700 : if_info.jump = jump;
4706 : 1778700 : if_info.then_else_reversed = then_else_reversed;
4707 : 1778700 : if_info.speed_p = speed_p;
4708 : 1778700 : if_info.max_seq_cost
4709 : 1778700 : = targetm.max_noce_ifcvt_seq_cost (then_edge);
4710 : : /* We'll add in the cost of THEN_BB and ELSE_BB later, when we check
4711 : : that they are valid to transform. We can't easily get back to the insn
4712 : : for COND (and it may not exist if we had to canonicalize to get COND),
4713 : : and jump_insns are always given a cost of 1 by seq_cost, so treat
4714 : : both instructions as having cost COSTS_N_INSNS (1). */
4715 : 1778700 : if_info.original_cost = COSTS_N_INSNS (2);
4716 : :
4717 : :
4718 : : /* Do the real work. */
4719 : :
4720 : : /* ??? noce_process_if_block has not yet been updated to handle
4721 : : inverted conditions. */
4722 : 1778700 : if (!if_info.cond_inverted && noce_process_if_block (&if_info))
4723 : : return true;
4724 : :
4725 : 1655213 : if (HAVE_conditional_move
4726 : 1655213 : && cond_move_process_if_block (&if_info))
4727 : : return true;
4728 : :
4729 : : return false;
4730 : : }
4731 : :
4732 : :
4733 : : /* Merge the blocks and mark for local life update. */
4734 : :
4735 : : static void
4736 : 0 : merge_if_block (struct ce_if_block * ce_info)
4737 : : {
4738 : 0 : basic_block test_bb = ce_info->test_bb; /* last test block */
4739 : 0 : basic_block then_bb = ce_info->then_bb; /* THEN */
4740 : 0 : basic_block else_bb = ce_info->else_bb; /* ELSE or NULL */
4741 : 0 : basic_block join_bb = ce_info->join_bb; /* join block */
4742 : 0 : basic_block combo_bb;
4743 : :
4744 : : /* All block merging is done into the lower block numbers. */
4745 : :
4746 : 0 : combo_bb = test_bb;
4747 : 0 : df_set_bb_dirty (test_bb);
4748 : :
4749 : : /* Merge any basic blocks to handle && and || subtests. Each of
4750 : : the blocks are on the fallthru path from the predecessor block. */
4751 : 0 : if (ce_info->num_multiple_test_blocks > 0)
4752 : : {
4753 : 0 : basic_block bb = test_bb;
4754 : 0 : basic_block last_test_bb = ce_info->last_test_bb;
4755 : 0 : basic_block fallthru = block_fallthru (bb);
4756 : :
4757 : 0 : do
4758 : : {
4759 : 0 : bb = fallthru;
4760 : 0 : fallthru = block_fallthru (bb);
4761 : 0 : merge_blocks (combo_bb, bb);
4762 : 0 : num_true_changes++;
4763 : : }
4764 : 0 : while (bb != last_test_bb);
4765 : : }
4766 : :
4767 : : /* Merge TEST block into THEN block. Normally the THEN block won't have a
4768 : : label, but it might if there were || tests. That label's count should be
4769 : : zero, and it normally should be removed. */
4770 : :
4771 : 0 : if (then_bb)
4772 : : {
4773 : : /* If THEN_BB has no successors, then there's a BARRIER after it.
4774 : : If COMBO_BB has more than one successor (THEN_BB), then that BARRIER
4775 : : is no longer needed, and in fact it is incorrect to leave it in
4776 : : the insn stream. */
4777 : 0 : if (EDGE_COUNT (then_bb->succs) == 0
4778 : 0 : && EDGE_COUNT (combo_bb->succs) > 1)
4779 : : {
4780 : 0 : rtx_insn *end = NEXT_INSN (BB_END (then_bb));
4781 : 0 : while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
4782 : 0 : end = NEXT_INSN (end);
4783 : :
4784 : 0 : if (end && BARRIER_P (end))
4785 : 0 : delete_insn (end);
4786 : : }
4787 : 0 : merge_blocks (combo_bb, then_bb);
4788 : 0 : num_true_changes++;
4789 : : }
4790 : :
4791 : : /* The ELSE block, if it existed, had a label. That label count
4792 : : will almost always be zero, but odd things can happen when labels
4793 : : get their addresses taken. */
4794 : 0 : if (else_bb)
4795 : : {
4796 : : /* If ELSE_BB has no successors, then there's a BARRIER after it.
4797 : : If COMBO_BB has more than one successor (ELSE_BB), then that BARRIER
4798 : : is no longer needed, and in fact it is incorrect to leave it in
4799 : : the insn stream. */
4800 : 0 : if (EDGE_COUNT (else_bb->succs) == 0
4801 : 0 : && EDGE_COUNT (combo_bb->succs) > 1)
4802 : : {
4803 : 0 : rtx_insn *end = NEXT_INSN (BB_END (else_bb));
4804 : 0 : while (end && NOTE_P (end) && !NOTE_INSN_BASIC_BLOCK_P (end))
4805 : 0 : end = NEXT_INSN (end);
4806 : :
4807 : 0 : if (end && BARRIER_P (end))
4808 : 0 : delete_insn (end);
4809 : : }
4810 : 0 : merge_blocks (combo_bb, else_bb);
4811 : 0 : num_true_changes++;
4812 : : }
4813 : :
4814 : : /* If there was no join block reported, that means it was not adjacent
4815 : : to the others, and so we cannot merge them. */
4816 : :
4817 : 0 : if (! join_bb)
4818 : : {
4819 : 0 : rtx_insn *last = BB_END (combo_bb);
4820 : :
4821 : : /* The outgoing edge for the current COMBO block should already
4822 : : be correct. Verify this. */
4823 : 0 : if (EDGE_COUNT (combo_bb->succs) == 0)
4824 : 0 : gcc_assert (find_reg_note (last, REG_NORETURN, NULL)
4825 : : || (NONJUMP_INSN_P (last)
4826 : : && GET_CODE (PATTERN (last)) == TRAP_IF
4827 : : && (TRAP_CONDITION (PATTERN (last))
4828 : : == const_true_rtx)));
4829 : :
4830 : : else
4831 : : /* There should still be something at the end of the THEN or ELSE
4832 : : blocks taking us to our final destination. */
4833 : 0 : gcc_assert (JUMP_P (last)
4834 : : || (EDGE_SUCC (combo_bb, 0)->dest
4835 : : == EXIT_BLOCK_PTR_FOR_FN (cfun)
4836 : : && CALL_P (last)
4837 : : && SIBLING_CALL_P (last))
4838 : : || ((EDGE_SUCC (combo_bb, 0)->flags & EDGE_EH)
4839 : : && can_throw_internal (last)));
4840 : : }
4841 : :
4842 : : /* The JOIN block may have had quite a number of other predecessors too.
4843 : : Since we've already merged the TEST, THEN and ELSE blocks, we should
4844 : : have only one remaining edge from our if-then-else diamond. If there
4845 : : is more than one remaining edge, it must come from elsewhere. There
4846 : : may be zero incoming edges if the THEN block didn't actually join
4847 : : back up (as with a call to a non-return function). */
4848 : 0 : else if (EDGE_COUNT (join_bb->preds) < 2
4849 : 0 : && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4850 : : {
4851 : : /* We can merge the JOIN cleanly and update the dataflow try
4852 : : again on this pass.*/
4853 : 0 : merge_blocks (combo_bb, join_bb);
4854 : 0 : num_true_changes++;
4855 : : }
4856 : : else
4857 : : {
4858 : : /* We cannot merge the JOIN. */
4859 : :
4860 : : /* The outgoing edge for the current COMBO block should already
4861 : : be correct. Verify this. */
4862 : 0 : gcc_assert (single_succ_p (combo_bb)
4863 : : && single_succ (combo_bb) == join_bb);
4864 : :
4865 : : /* Remove the jump and cruft from the end of the COMBO block. */
4866 : 0 : if (join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
4867 : 0 : tidy_fallthru_edge (single_succ_edge (combo_bb));
4868 : : }
4869 : :
4870 : 0 : num_updated_if_blocks++;
4871 : 0 : }
4872 : :
4873 : : /* Find a block ending in a simple IF condition and try to transform it
4874 : : in some way. When converting a multi-block condition, put the new code
4875 : : in the first such block and delete the rest. Return a pointer to this
4876 : : first block if some transformation was done. Return NULL otherwise. */
4877 : :
4878 : : static basic_block
4879 : 36844927 : find_if_header (basic_block test_bb, int pass)
4880 : : {
4881 : 36844927 : ce_if_block ce_info;
4882 : 36844927 : edge then_edge;
4883 : 36844927 : edge else_edge;
4884 : :
4885 : : /* The kind of block we're looking for has exactly two successors. */
4886 : 55447318 : if (EDGE_COUNT (test_bb->succs) != 2)
4887 : : return NULL;
4888 : :
4889 : 18929558 : then_edge = EDGE_SUCC (test_bb, 0);
4890 : 18929558 : else_edge = EDGE_SUCC (test_bb, 1);
4891 : :
4892 : 18929558 : if (df_get_bb_dirty (then_edge->dest))
4893 : : return NULL;
4894 : 18909168 : if (df_get_bb_dirty (else_edge->dest))
4895 : : return NULL;
4896 : :
4897 : : /* Neither edge should be abnormal. */
4898 : 18860260 : if ((then_edge->flags & EDGE_COMPLEX)
4899 : 17164480 : || (else_edge->flags & EDGE_COMPLEX))
4900 : : return NULL;
4901 : :
4902 : : /* Nor exit the loop. */
4903 : 16735822 : if ((then_edge->flags & EDGE_LOOP_EXIT)
4904 : 15332204 : || (else_edge->flags & EDGE_LOOP_EXIT))
4905 : : return NULL;
4906 : :
4907 : : /* The THEN edge is canonically the one that falls through. */
4908 : 13303210 : if (then_edge->flags & EDGE_FALLTHRU)
4909 : : ;
4910 : 6572017 : else if (else_edge->flags & EDGE_FALLTHRU)
4911 : : std::swap (then_edge, else_edge);
4912 : : else
4913 : : /* Otherwise this must be a multiway branch of some sort. */
4914 : : return NULL;
4915 : :
4916 : 13303030 : memset (&ce_info, 0, sizeof (ce_info));
4917 : 13303030 : ce_info.test_bb = test_bb;
4918 : 13303030 : ce_info.then_bb = then_edge->dest;
4919 : 13303030 : ce_info.else_bb = else_edge->dest;
4920 : 13303030 : ce_info.pass = pass;
4921 : :
4922 : : #ifdef IFCVT_MACHDEP_INIT
4923 : : IFCVT_MACHDEP_INIT (&ce_info);
4924 : : #endif
4925 : :
4926 : 13303030 : if (!reload_completed
4927 : 13303030 : && noce_find_if_block (test_bb, then_edge, else_edge, pass))
4928 : 127167 : goto success;
4929 : :
4930 : 13175863 : if (reload_completed
4931 : 4256521 : && targetm.have_conditional_execution ()
4932 : 13175863 : && cond_exec_find_if_block (&ce_info))
4933 : 0 : goto success;
4934 : :
4935 : 13175863 : if (targetm.have_trap ()
4936 : 13175863 : && optab_handler (ctrap_optab, word_mode) != CODE_FOR_nothing
4937 : 13175863 : && find_cond_trap (test_bb, then_edge, else_edge))
4938 : 0 : goto success;
4939 : :
4940 : 13175863 : if (dom_info_state (CDI_POST_DOMINATORS) >= DOM_NO_FAST_QUERY
4941 : 13175863 : && (reload_completed || !targetm.have_conditional_execution ()))
4942 : : {
4943 : 13175863 : if (find_if_case_1 (test_bb, then_edge, else_edge))
4944 : 17974 : goto success;
4945 : 13157889 : if (find_if_case_2 (test_bb, then_edge, else_edge))
4946 : 182026 : goto success;
4947 : : }
4948 : :
4949 : : return NULL;
4950 : :
4951 : 327167 : success:
4952 : 327167 : if (dump_file)
4953 : 17 : fprintf (dump_file, "Conversion succeeded on pass %d.\n", pass);
4954 : : /* Set this so we continue looking. */
4955 : 327167 : cond_exec_changed_p = true;
4956 : 327167 : return ce_info.test_bb;
4957 : : }
4958 : :
4959 : : /* Return true if a block has two edges, one of which falls through to the next
4960 : : block, and the other jumps to a specific block, so that we can tell if the
4961 : : block is part of an && test or an || test. Returns either -1 or the number
4962 : : of non-note, non-jump, non-USE/CLOBBER insns in the block. */
4963 : :
4964 : : static int
4965 : 0 : block_jumps_and_fallthru (basic_block cur_bb, basic_block target_bb)
4966 : : {
4967 : 0 : edge cur_edge;
4968 : 0 : bool fallthru_p = false;
4969 : 0 : bool jump_p = false;
4970 : 0 : rtx_insn *insn;
4971 : 0 : rtx_insn *end;
4972 : 0 : int n_insns = 0;
4973 : 0 : edge_iterator ei;
4974 : :
4975 : 0 : if (!cur_bb || !target_bb)
4976 : : return -1;
4977 : :
4978 : : /* If no edges, obviously it doesn't jump or fallthru. */
4979 : 0 : if (EDGE_COUNT (cur_bb->succs) == 0)
4980 : : return 0;
4981 : :
4982 : 0 : FOR_EACH_EDGE (cur_edge, ei, cur_bb->succs)
4983 : : {
4984 : 0 : if (cur_edge->flags & EDGE_COMPLEX)
4985 : : /* Anything complex isn't what we want. */
4986 : : return -1;
4987 : :
4988 : 0 : else if (cur_edge->flags & EDGE_FALLTHRU)
4989 : : fallthru_p = true;
4990 : :
4991 : 0 : else if (cur_edge->dest == target_bb)
4992 : : jump_p = true;
4993 : :
4994 : : else
4995 : : return -1;
4996 : : }
4997 : :
4998 : 0 : if ((jump_p & fallthru_p) == 0)
4999 : : return -1;
5000 : :
5001 : : /* Don't allow calls in the block, since this is used to group && and ||
5002 : : together for conditional execution support. ??? we should support
5003 : : conditional execution support across calls for IA-64 some day, but
5004 : : for now it makes the code simpler. */
5005 : 0 : end = BB_END (cur_bb);
5006 : 0 : insn = BB_HEAD (cur_bb);
5007 : :
5008 : 0 : while (insn != NULL_RTX)
5009 : : {
5010 : 0 : if (CALL_P (insn))
5011 : : return -1;
5012 : :
5013 : 0 : if (INSN_P (insn)
5014 : 0 : && !JUMP_P (insn)
5015 : 0 : && !DEBUG_INSN_P (insn)
5016 : 0 : && GET_CODE (PATTERN (insn)) != USE
5017 : 0 : && GET_CODE (PATTERN (insn)) != CLOBBER)
5018 : 0 : n_insns++;
5019 : :
5020 : 0 : if (insn == end)
5021 : : break;
5022 : :
5023 : 0 : insn = NEXT_INSN (insn);
5024 : : }
5025 : :
5026 : : return n_insns;
5027 : : }
5028 : :
5029 : : /* Determine if a given basic block heads a simple IF-THEN or IF-THEN-ELSE
5030 : : block. If so, we'll try to convert the insns to not require the branch.
5031 : : Return TRUE if we were successful at converting the block. */
5032 : :
5033 : : static bool
5034 : 0 : cond_exec_find_if_block (struct ce_if_block * ce_info)
5035 : : {
5036 : 0 : basic_block test_bb = ce_info->test_bb;
5037 : 0 : basic_block then_bb = ce_info->then_bb;
5038 : 0 : basic_block else_bb = ce_info->else_bb;
5039 : 0 : basic_block join_bb = NULL_BLOCK;
5040 : 0 : edge cur_edge;
5041 : 0 : basic_block next;
5042 : 0 : edge_iterator ei;
5043 : :
5044 : 0 : ce_info->last_test_bb = test_bb;
5045 : :
5046 : : /* We only ever should get here after reload,
5047 : : and if we have conditional execution. */
5048 : 0 : gcc_assert (reload_completed && targetm.have_conditional_execution ());
5049 : :
5050 : : /* Discover if any fall through predecessors of the current test basic block
5051 : : were && tests (which jump to the else block) or || tests (which jump to
5052 : : the then block). */
5053 : 0 : if (single_pred_p (test_bb)
5054 : 0 : && single_pred_edge (test_bb)->flags == EDGE_FALLTHRU)
5055 : : {
5056 : 0 : basic_block bb = single_pred (test_bb);
5057 : 0 : basic_block target_bb;
5058 : 0 : int max_insns = MAX_CONDITIONAL_EXECUTE;
5059 : 0 : int n_insns;
5060 : :
5061 : : /* Determine if the preceding block is an && or || block. */
5062 : 0 : if ((n_insns = block_jumps_and_fallthru (bb, else_bb)) >= 0)
5063 : : {
5064 : 0 : ce_info->and_and_p = true;
5065 : 0 : target_bb = else_bb;
5066 : : }
5067 : 0 : else if ((n_insns = block_jumps_and_fallthru (bb, then_bb)) >= 0)
5068 : : {
5069 : 0 : ce_info->and_and_p = false;
5070 : 0 : target_bb = then_bb;
5071 : : }
5072 : : else
5073 : : target_bb = NULL_BLOCK;
5074 : :
5075 : 0 : if (target_bb && n_insns <= max_insns)
5076 : : {
5077 : 0 : int total_insns = 0;
5078 : 0 : int blocks = 0;
5079 : :
5080 : 0 : ce_info->last_test_bb = test_bb;
5081 : :
5082 : : /* Found at least one && or || block, look for more. */
5083 : 0 : do
5084 : : {
5085 : 0 : ce_info->test_bb = test_bb = bb;
5086 : 0 : total_insns += n_insns;
5087 : 0 : blocks++;
5088 : :
5089 : 0 : if (!single_pred_p (bb))
5090 : : break;
5091 : :
5092 : 0 : bb = single_pred (bb);
5093 : 0 : n_insns = block_jumps_and_fallthru (bb, target_bb);
5094 : : }
5095 : 0 : while (n_insns >= 0 && (total_insns + n_insns) <= max_insns);
5096 : :
5097 : 0 : ce_info->num_multiple_test_blocks = blocks;
5098 : 0 : ce_info->num_multiple_test_insns = total_insns;
5099 : :
5100 : 0 : if (ce_info->and_and_p)
5101 : 0 : ce_info->num_and_and_blocks = blocks;
5102 : : else
5103 : 0 : ce_info->num_or_or_blocks = blocks;
5104 : : }
5105 : : }
5106 : :
5107 : : /* The THEN block of an IF-THEN combo must have exactly one predecessor,
5108 : : other than any || blocks which jump to the THEN block. */
5109 : 0 : if ((EDGE_COUNT (then_bb->preds) - ce_info->num_or_or_blocks) != 1)
5110 : : return false;
5111 : :
5112 : : /* The edges of the THEN and ELSE blocks cannot have complex edges. */
5113 : 0 : FOR_EACH_EDGE (cur_edge, ei, then_bb->preds)
5114 : : {
5115 : 0 : if (cur_edge->flags & EDGE_COMPLEX)
5116 : : return false;
5117 : : }
5118 : :
5119 : 0 : FOR_EACH_EDGE (cur_edge, ei, else_bb->preds)
5120 : : {
5121 : 0 : if (cur_edge->flags & EDGE_COMPLEX)
5122 : : return false;
5123 : : }
5124 : :
5125 : : /* The THEN block of an IF-THEN combo must have zero or one successors. */
5126 : 0 : if (EDGE_COUNT (then_bb->succs) > 0
5127 : 0 : && (!single_succ_p (then_bb)
5128 : 0 : || (single_succ_edge (then_bb)->flags & EDGE_COMPLEX)
5129 : 0 : || (epilogue_completed
5130 : 0 : && tablejump_p (BB_END (then_bb), NULL, NULL))))
5131 : 0 : return false;
5132 : :
5133 : : /* If the THEN block has no successors, conditional execution can still
5134 : : make a conditional call. Don't do this unless the ELSE block has
5135 : : only one incoming edge -- the CFG manipulation is too ugly otherwise.
5136 : : Check for the last insn of the THEN block being an indirect jump, which
5137 : : is listed as not having any successors, but confuses the rest of the CE
5138 : : code processing. ??? we should fix this in the future. */
5139 : 0 : if (EDGE_COUNT (then_bb->succs) == 0)
5140 : : {
5141 : 0 : if (single_pred_p (else_bb) && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
5142 : : {
5143 : 0 : rtx_insn *last_insn = BB_END (then_bb);
5144 : :
5145 : 0 : while (last_insn
5146 : 0 : && NOTE_P (last_insn)
5147 : 0 : && last_insn != BB_HEAD (then_bb))
5148 : 0 : last_insn = PREV_INSN (last_insn);
5149 : :
5150 : 0 : if (last_insn
5151 : 0 : && JUMP_P (last_insn)
5152 : 0 : && ! simplejump_p (last_insn))
5153 : : return false;
5154 : :
5155 : : join_bb = else_bb;
5156 : : else_bb = NULL_BLOCK;
5157 : : }
5158 : : else
5159 : : return false;
5160 : : }
5161 : :
5162 : : /* If the THEN block's successor is the other edge out of the TEST block,
5163 : : then we have an IF-THEN combo without an ELSE. */
5164 : 0 : else if (single_succ (then_bb) == else_bb)
5165 : : {
5166 : : join_bb = else_bb;
5167 : : else_bb = NULL_BLOCK;
5168 : : }
5169 : :
5170 : : /* If the THEN and ELSE block meet in a subsequent block, and the ELSE
5171 : : has exactly one predecessor and one successor, and the outgoing edge
5172 : : is not complex, then we have an IF-THEN-ELSE combo. */
5173 : 0 : else if (single_succ_p (else_bb)
5174 : 0 : && single_succ (then_bb) == single_succ (else_bb)
5175 : 0 : && single_pred_p (else_bb)
5176 : 0 : && !(single_succ_edge (else_bb)->flags & EDGE_COMPLEX)
5177 : 0 : && !(epilogue_completed
5178 : 0 : && tablejump_p (BB_END (else_bb), NULL, NULL)))
5179 : 0 : join_bb = single_succ (else_bb);
5180 : :
5181 : : /* Otherwise it is not an IF-THEN or IF-THEN-ELSE combination. */
5182 : : else
5183 : 0 : return false;
5184 : :
5185 : 0 : num_possible_if_blocks++;
5186 : :
5187 : 0 : if (dump_file)
5188 : : {
5189 : 0 : fprintf (dump_file,
5190 : : "\nIF-THEN%s block found, pass %d, start block %d "
5191 : : "[insn %d], then %d [%d]",
5192 : : (else_bb) ? "-ELSE" : "",
5193 : : ce_info->pass,
5194 : : test_bb->index,
5195 : 0 : BB_HEAD (test_bb) ? (int)INSN_UID (BB_HEAD (test_bb)) : -1,
5196 : : then_bb->index,
5197 : 0 : BB_HEAD (then_bb) ? (int)INSN_UID (BB_HEAD (then_bb)) : -1);
5198 : :
5199 : 0 : if (else_bb)
5200 : 0 : fprintf (dump_file, ", else %d [%d]",
5201 : : else_bb->index,
5202 : 0 : BB_HEAD (else_bb) ? (int)INSN_UID (BB_HEAD (else_bb)) : -1);
5203 : :
5204 : 0 : fprintf (dump_file, ", join %d [%d]",
5205 : : join_bb->index,
5206 : 0 : BB_HEAD (join_bb) ? (int)INSN_UID (BB_HEAD (join_bb)) : -1);
5207 : :
5208 : 0 : if (ce_info->num_multiple_test_blocks > 0)
5209 : 0 : fprintf (dump_file, ", %d %s block%s last test %d [%d]",
5210 : : ce_info->num_multiple_test_blocks,
5211 : 0 : (ce_info->and_and_p) ? "&&" : "||",
5212 : : (ce_info->num_multiple_test_blocks == 1) ? "" : "s",
5213 : : ce_info->last_test_bb->index,
5214 : 0 : ((BB_HEAD (ce_info->last_test_bb))
5215 : 0 : ? (int)INSN_UID (BB_HEAD (ce_info->last_test_bb))
5216 : : : -1));
5217 : :
5218 : 0 : fputc ('\n', dump_file);
5219 : : }
5220 : :
5221 : : /* Make sure IF, THEN, and ELSE, blocks are adjacent. Actually, we get the
5222 : : first condition for free, since we've already asserted that there's a
5223 : : fallthru edge from IF to THEN. Likewise for the && and || blocks, since
5224 : : we checked the FALLTHRU flag, those are already adjacent to the last IF
5225 : : block. */
5226 : : /* ??? As an enhancement, move the ELSE block. Have to deal with
5227 : : BLOCK notes, if by no other means than backing out the merge if they
5228 : : exist. Sticky enough I don't want to think about it now. */
5229 : 0 : next = then_bb;
5230 : 0 : if (else_bb && (next = next->next_bb) != else_bb)
5231 : : return false;
5232 : 0 : if ((next = next->next_bb) != join_bb
5233 : 0 : && join_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
5234 : : {
5235 : 0 : if (else_bb)
5236 : : join_bb = NULL;
5237 : : else
5238 : : return false;
5239 : : }
5240 : :
5241 : : /* Do the real work. */
5242 : :
5243 : 0 : ce_info->else_bb = else_bb;
5244 : 0 : ce_info->join_bb = join_bb;
5245 : :
5246 : : /* If we have && and || tests, try to first handle combining the && and ||
5247 : : tests into the conditional code, and if that fails, go back and handle
5248 : : it without the && and ||, which at present handles the && case if there
5249 : : was no ELSE block. */
5250 : 0 : if (cond_exec_process_if_block (ce_info, true))
5251 : : return true;
5252 : :
5253 : 0 : if (ce_info->num_multiple_test_blocks)
5254 : : {
5255 : 0 : cancel_changes (0);
5256 : :
5257 : 0 : if (cond_exec_process_if_block (ce_info, false))
5258 : : return true;
5259 : : }
5260 : :
5261 : : return false;
5262 : : }
5263 : :
5264 : : /* Convert a branch over a trap, or a branch
5265 : : to a trap, into a conditional trap. */
5266 : :
5267 : : static bool
5268 : 0 : find_cond_trap (basic_block test_bb, edge then_edge, edge else_edge)
5269 : : {
5270 : 0 : basic_block then_bb = then_edge->dest;
5271 : 0 : basic_block else_bb = else_edge->dest;
5272 : 0 : basic_block other_bb, trap_bb;
5273 : 0 : rtx_insn *trap, *jump;
5274 : 0 : rtx cond;
5275 : 0 : rtx_insn *cond_earliest;
5276 : :
5277 : : /* Locate the block with the trap instruction. */
5278 : : /* ??? While we look for no successors, we really ought to allow
5279 : : EH successors. Need to fix merge_if_block for that to work. */
5280 : 0 : if ((trap = block_has_only_trap (then_bb)) != NULL)
5281 : : trap_bb = then_bb, other_bb = else_bb;
5282 : 0 : else if ((trap = block_has_only_trap (else_bb)) != NULL)
5283 : : trap_bb = else_bb, other_bb = then_bb;
5284 : : else
5285 : : return false;
5286 : :
5287 : 0 : if (dump_file)
5288 : : {
5289 : 0 : fprintf (dump_file, "\nTRAP-IF block found, start %d, trap %d\n",
5290 : : test_bb->index, trap_bb->index);
5291 : : }
5292 : :
5293 : : /* If this is not a standard conditional jump, we can't parse it. */
5294 : 0 : jump = BB_END (test_bb);
5295 : 0 : cond = noce_get_condition (jump, &cond_earliest, then_bb == trap_bb);
5296 : 0 : if (! cond)
5297 : : return false;
5298 : :
5299 : : /* If the conditional jump is more than just a conditional jump, then
5300 : : we cannot do if-conversion on this block. Give up for returnjump_p,
5301 : : changing a conditional return followed by unconditional trap for
5302 : : conditional trap followed by unconditional return is likely not
5303 : : beneficial and harder to handle. */
5304 : 0 : if (! onlyjump_p (jump) || returnjump_p (jump))
5305 : 0 : return false;
5306 : :
5307 : : /* We must be comparing objects whose modes imply the size. */
5308 : 0 : if (GET_MODE (XEXP (cond, 0)) == BLKmode)
5309 : : return false;
5310 : :
5311 : : /* Attempt to generate the conditional trap. */
5312 : 0 : rtx_insn *seq = gen_cond_trap (GET_CODE (cond), copy_rtx (XEXP (cond, 0)),
5313 : : copy_rtx (XEXP (cond, 1)),
5314 : 0 : TRAP_CODE (PATTERN (trap)));
5315 : 0 : if (seq == NULL)
5316 : : return false;
5317 : :
5318 : : /* If that results in an invalid insn, back out. */
5319 : 0 : for (rtx_insn *x = seq; x; x = NEXT_INSN (x))
5320 : 0 : if (reload_completed
5321 : 0 : ? !valid_insn_p (x)
5322 : 0 : : recog_memoized (x) < 0)
5323 : : return false;
5324 : :
5325 : : /* Emit the new insns before cond_earliest. */
5326 : 0 : emit_insn_before_setloc (seq, cond_earliest, INSN_LOCATION (trap));
5327 : :
5328 : : /* Delete the trap block if possible. */
5329 : 0 : remove_edge (trap_bb == then_bb ? then_edge : else_edge);
5330 : 0 : df_set_bb_dirty (test_bb);
5331 : 0 : df_set_bb_dirty (then_bb);
5332 : 0 : df_set_bb_dirty (else_bb);
5333 : :
5334 : 0 : if (EDGE_COUNT (trap_bb->preds) == 0)
5335 : : {
5336 : 0 : delete_basic_block (trap_bb);
5337 : 0 : num_true_changes++;
5338 : : }
5339 : :
5340 : : /* Wire together the blocks again. */
5341 : 0 : if (current_ir_type () == IR_RTL_CFGLAYOUT)
5342 : 0 : single_succ_edge (test_bb)->flags |= EDGE_FALLTHRU;
5343 : 0 : else if (trap_bb == then_bb)
5344 : : {
5345 : 0 : rtx lab = JUMP_LABEL (jump);
5346 : 0 : rtx_insn *seq = targetm.gen_jump (lab);
5347 : 0 : rtx_jump_insn *newjump = emit_jump_insn_after (seq, jump);
5348 : 0 : LABEL_NUSES (lab) += 1;
5349 : 0 : JUMP_LABEL (newjump) = lab;
5350 : 0 : emit_barrier_after (newjump);
5351 : : }
5352 : 0 : delete_insn (jump);
5353 : :
5354 : 0 : if (can_merge_blocks_p (test_bb, other_bb))
5355 : : {
5356 : 0 : merge_blocks (test_bb, other_bb);
5357 : 0 : num_true_changes++;
5358 : : }
5359 : :
5360 : 0 : num_updated_if_blocks++;
5361 : 0 : return true;
5362 : : }
5363 : :
5364 : : /* Subroutine of find_cond_trap: if BB contains only a trap insn,
5365 : : return it. */
5366 : :
5367 : : static rtx_insn *
5368 : 0 : block_has_only_trap (basic_block bb)
5369 : : {
5370 : 0 : rtx_insn *trap;
5371 : :
5372 : : /* We're not the exit block. */
5373 : 0 : if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
5374 : : return NULL;
5375 : :
5376 : : /* The block must have no successors. */
5377 : 0 : if (EDGE_COUNT (bb->succs) > 0)
5378 : : return NULL;
5379 : :
5380 : : /* The only instruction in the THEN block must be the trap. */
5381 : 0 : trap = first_active_insn (bb);
5382 : 0 : if (! (trap == BB_END (bb)
5383 : 0 : && GET_CODE (PATTERN (trap)) == TRAP_IF
5384 : 0 : && TRAP_CONDITION (PATTERN (trap)) == const_true_rtx))
5385 : 0 : return NULL;
5386 : :
5387 : : return trap;
5388 : : }
5389 : :
5390 : : /* Look for IF-THEN-ELSE cases in which one of THEN or ELSE is
5391 : : transformable, but not necessarily the other. There need be no
5392 : : JOIN block.
5393 : :
5394 : : Return TRUE if we were successful at converting the block.
5395 : :
5396 : : Cases we'd like to look at:
5397 : :
5398 : : (1)
5399 : : if (test) goto over; // x not live
5400 : : x = a;
5401 : : goto label;
5402 : : over:
5403 : :
5404 : : becomes
5405 : :
5406 : : x = a;
5407 : : if (! test) goto label;
5408 : :
5409 : : (2)
5410 : : if (test) goto E; // x not live
5411 : : x = big();
5412 : : goto L;
5413 : : E:
5414 : : x = b;
5415 : : goto M;
5416 : :
5417 : : becomes
5418 : :
5419 : : x = b;
5420 : : if (test) goto M;
5421 : : x = big();
5422 : : goto L;
5423 : :
5424 : : (3) // This one's really only interesting for targets that can do
5425 : : // multiway branching, e.g. IA-64 BBB bundles. For other targets
5426 : : // it results in multiple branches on a cache line, which often
5427 : : // does not sit well with predictors.
5428 : :
5429 : : if (test1) goto E; // predicted not taken
5430 : : x = a;
5431 : : if (test2) goto F;
5432 : : ...
5433 : : E:
5434 : : x = b;
5435 : : J:
5436 : :
5437 : : becomes
5438 : :
5439 : : x = a;
5440 : : if (test1) goto E;
5441 : : if (test2) goto F;
5442 : :
5443 : : Notes:
5444 : :
5445 : : (A) Don't do (2) if the branch is predicted against the block we're
5446 : : eliminating. Do it anyway if we can eliminate a branch; this requires
5447 : : that the sole successor of the eliminated block postdominate the other
5448 : : side of the if.
5449 : :
5450 : : (B) With CE, on (3) we can steal from both sides of the if, creating
5451 : :
5452 : : if (test1) x = a;
5453 : : if (!test1) x = b;
5454 : : if (test1) goto J;
5455 : : if (test2) goto F;
5456 : : ...
5457 : : J:
5458 : :
5459 : : Again, this is most useful if J postdominates.
5460 : :
5461 : : (C) CE substitutes for helpful life information.
5462 : :
5463 : : (D) These heuristics need a lot of work. */
5464 : :
5465 : : /* Tests for case 1 above. */
5466 : :
5467 : : static bool
5468 : 13175863 : find_if_case_1 (basic_block test_bb, edge then_edge, edge else_edge)
5469 : : {
5470 : 13175863 : basic_block then_bb = then_edge->dest;
5471 : 13175863 : basic_block else_bb = else_edge->dest;
5472 : 13175863 : basic_block new_bb;
5473 : 13175863 : int then_bb_index;
5474 : 13175863 : profile_probability then_prob;
5475 : 13175863 : rtx else_target = NULL_RTX;
5476 : :
5477 : : /* If we are partitioning hot/cold basic blocks, we don't want to
5478 : : mess up unconditional or indirect jumps that cross between hot
5479 : : and cold sections.
5480 : :
5481 : : Basic block partitioning may result in some jumps that appear to
5482 : : be optimizable (or blocks that appear to be mergeable), but which really
5483 : : must be left untouched (they are required to make it safely across
5484 : : partition boundaries). See the comments at the top of
5485 : : bb-reorder.cc:partition_hot_cold_basic_blocks for complete details. */
5486 : :
5487 : 13175863 : if ((BB_END (then_bb)
5488 : 13175863 : && JUMP_P (BB_END (then_bb))
5489 : 6930701 : && CROSSING_JUMP_P (BB_END (then_bb)))
5490 : 12952892 : || (JUMP_P (BB_END (test_bb))
5491 : 12952892 : && CROSSING_JUMP_P (BB_END (test_bb)))
5492 : 26034730 : || (BB_END (else_bb)
5493 : 12858867 : && JUMP_P (BB_END (else_bb))
5494 : 6397145 : && CROSSING_JUMP_P (BB_END (else_bb))))
5495 : : return false;
5496 : :
5497 : : /* Verify test_bb ends in a conditional jump with no other side-effects. */
5498 : 12841073 : if (!onlyjump_p (BB_END (test_bb)))
5499 : : return false;
5500 : :
5501 : : /* THEN has one successor. */
5502 : 18912609 : if (!single_succ_p (then_bb))
5503 : : return false;
5504 : :
5505 : : /* THEN does not fall through, but is not strange either. */
5506 : 5754720 : if (single_succ_edge (then_bb)->flags & (EDGE_COMPLEX | EDGE_FALLTHRU))
5507 : : return false;
5508 : :
5509 : : /* THEN has one predecessor. */
5510 : 14204771 : if (!single_pred_p (then_bb))
5511 : : return false;
5512 : :
5513 : : /* THEN must do something. */
5514 : 1046882 : if (forwarder_block_p (then_bb))
5515 : : return false;
5516 : :
5517 : 633341 : num_possible_if_blocks++;
5518 : 633341 : if (dump_file)
5519 : 4 : fprintf (dump_file,
5520 : : "\nIF-CASE-1 found, start %d, then %d\n",
5521 : : test_bb->index, then_bb->index);
5522 : :
5523 : 633341 : then_prob = then_edge->probability.invert ();
5524 : :
5525 : : /* We're speculating from the THEN path, we want to make sure the cost
5526 : : of speculation is within reason. */
5527 : 1201110 : if (! cheap_bb_rtx_cost_p (then_bb, then_prob,
5528 : 1201110 : COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (then_edge->src),
5529 : : predictable_edge_p (then_edge)))))
5530 : : return false;
5531 : :
5532 : 126004 : if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
5533 : : {
5534 : 0 : rtx_insn *jump = BB_END (else_edge->src);
5535 : 0 : gcc_assert (JUMP_P (jump));
5536 : 0 : else_target = JUMP_LABEL (jump);
5537 : : }
5538 : :
5539 : : /* Registers set are dead, or are predicable. */
5540 : 126004 : if (! dead_or_predicable (test_bb, then_bb, else_bb,
5541 : : single_succ_edge (then_bb), true))
5542 : : return false;
5543 : :
5544 : : /* Conversion went ok, including moving the insns and fixing up the
5545 : : jump. Adjust the CFG to match. */
5546 : :
5547 : : /* We can avoid creating a new basic block if then_bb is immediately
5548 : : followed by else_bb, i.e. deleting then_bb allows test_bb to fall
5549 : : through to else_bb. */
5550 : :
5551 : 17974 : if (then_bb->next_bb == else_bb
5552 : 7341 : && then_bb->prev_bb == test_bb
5553 : 7341 : && else_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
5554 : : {
5555 : 7341 : redirect_edge_succ (FALLTHRU_EDGE (test_bb), else_bb);
5556 : 7341 : new_bb = 0;
5557 : : }
5558 : 10633 : else if (else_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
5559 : 0 : new_bb = force_nonfallthru_and_redirect (FALLTHRU_EDGE (test_bb),
5560 : : else_bb, else_target);
5561 : : else
5562 : 10633 : new_bb = redirect_edge_and_branch_force (FALLTHRU_EDGE (test_bb),
5563 : : else_bb);
5564 : :
5565 : 17974 : df_set_bb_dirty (test_bb);
5566 : 17974 : df_set_bb_dirty (else_bb);
5567 : :
5568 : 17974 : then_bb_index = then_bb->index;
5569 : 17974 : delete_basic_block (then_bb);
5570 : :
5571 : : /* Make rest of code believe that the newly created block is the THEN_BB
5572 : : block we removed. */
5573 : 17974 : if (new_bb)
5574 : : {
5575 : 10633 : df_bb_replace (then_bb_index, new_bb);
5576 : : /* This should have been done above via force_nonfallthru_and_redirect
5577 : : (possibly called from redirect_edge_and_branch_force). */
5578 : 10633 : gcc_checking_assert (BB_PARTITION (new_bb) == BB_PARTITION (test_bb));
5579 : : }
5580 : :
5581 : 17974 : num_true_changes++;
5582 : 17974 : num_updated_if_blocks++;
5583 : 17974 : return true;
5584 : : }
5585 : :
5586 : : /* Test for case 2 above. */
5587 : :
5588 : : static bool
5589 : 13157889 : find_if_case_2 (basic_block test_bb, edge then_edge, edge else_edge)
5590 : : {
5591 : 13157889 : basic_block then_bb = then_edge->dest;
5592 : 13157889 : basic_block else_bb = else_edge->dest;
5593 : 13157889 : edge else_succ;
5594 : 13157889 : profile_probability then_prob, else_prob;
5595 : :
5596 : : /* We do not want to speculate (empty) loop latches. */
5597 : 13157889 : if (current_loops
5598 : 5200126 : && else_bb->loop_father->latch == else_bb)
5599 : : return false;
5600 : :
5601 : : /* If we are partitioning hot/cold basic blocks, we don't want to
5602 : : mess up unconditional or indirect jumps that cross between hot
5603 : : and cold sections.
5604 : :
5605 : : Basic block partitioning may result in some jumps that appear to
5606 : : be optimizable (or blocks that appear to be mergeable), but which really
5607 : : must be left untouched (they are required to make it safely across
5608 : : partition boundaries). See the comments at the top of
5609 : : bb-reorder.cc:partition_hot_cold_basic_blocks for complete details. */
5610 : :
5611 : 13009054 : if ((BB_END (then_bb)
5612 : 13009054 : && JUMP_P (BB_END (then_bb))
5613 : 6840597 : && CROSSING_JUMP_P (BB_END (then_bb)))
5614 : 12786083 : || (JUMP_P (BB_END (test_bb))
5615 : 12786083 : && CROSSING_JUMP_P (BB_END (test_bb)))
5616 : 25701112 : || (BB_END (else_bb)
5617 : 12692058 : && JUMP_P (BB_END (else_bb))
5618 : 6258982 : && CROSSING_JUMP_P (BB_END (else_bb))))
5619 : : return false;
5620 : :
5621 : : /* Verify test_bb ends in a conditional jump with no other side-effects. */
5622 : 12674264 : if (!onlyjump_p (BB_END (test_bb)))
5623 : : return false;
5624 : :
5625 : : /* ELSE has one successor. */
5626 : 18430014 : if (!single_succ_p (else_bb))
5627 : : return false;
5628 : : else
5629 : 5454151 : else_succ = single_succ_edge (else_bb);
5630 : :
5631 : : /* ELSE outgoing edge is not complex. */
5632 : 5454151 : if (else_succ->flags & EDGE_COMPLEX)
5633 : : return false;
5634 : :
5635 : : /* ELSE has one predecessor. */
5636 : 15886687 : if (!single_pred_p (else_bb))
5637 : : return false;
5638 : :
5639 : : /* THEN is not EXIT. */
5640 : 2910824 : if (then_bb->index < NUM_FIXED_BLOCKS)
5641 : : return false;
5642 : :
5643 : 2910824 : else_prob = else_edge->probability;
5644 : 2910824 : then_prob = else_prob.invert ();
5645 : :
5646 : : /* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
5647 : 2910824 : if (else_prob > then_prob)
5648 : : ;
5649 : 1964329 : else if (else_succ->dest->index < NUM_FIXED_BLOCKS
5650 : 1964329 : || dominated_by_p (CDI_POST_DOMINATORS, then_bb,
5651 : : else_succ->dest))
5652 : : ;
5653 : : else
5654 : : return false;
5655 : :
5656 : 2234810 : num_possible_if_blocks++;
5657 : 2234810 : if (dump_file)
5658 : 42 : fprintf (dump_file,
5659 : : "\nIF-CASE-2 found, start %d, else %d\n",
5660 : : test_bb->index, else_bb->index);
5661 : :
5662 : : /* We're speculating from the ELSE path, we want to make sure the cost
5663 : : of speculation is within reason. */
5664 : 4271492 : if (! cheap_bb_rtx_cost_p (else_bb, else_prob,
5665 : 4271492 : COSTS_N_INSNS (BRANCH_COST (optimize_bb_for_speed_p (else_edge->src),
5666 : : predictable_edge_p (else_edge)))))
5667 : : return false;
5668 : :
5669 : : /* Registers set are dead, or are predicable. */
5670 : 466517 : if (! dead_or_predicable (test_bb, else_bb, then_bb, else_succ, false))
5671 : : return false;
5672 : :
5673 : : /* Conversion went ok, including moving the insns and fixing up the
5674 : : jump. Adjust the CFG to match. */
5675 : :
5676 : 182026 : df_set_bb_dirty (test_bb);
5677 : 182026 : df_set_bb_dirty (then_bb);
5678 : 182026 : delete_basic_block (else_bb);
5679 : :
5680 : 182026 : num_true_changes++;
5681 : 182026 : num_updated_if_blocks++;
5682 : :
5683 : : /* ??? We may now fallthru from one of THEN's successors into a join
5684 : : block. Rerun cleanup_cfg? Examine things manually? Wait? */
5685 : :
5686 : 182026 : return true;
5687 : : }
5688 : :
5689 : : /* Used by the code above to perform the actual rtl transformations.
5690 : : Return TRUE if successful.
5691 : :
5692 : : TEST_BB is the block containing the conditional branch. MERGE_BB
5693 : : is the block containing the code to manipulate. DEST_EDGE is an
5694 : : edge representing a jump to the join block; after the conversion,
5695 : : TEST_BB should be branching to its destination.
5696 : : REVERSEP is true if the sense of the branch should be reversed. */
5697 : :
5698 : : static bool
5699 : 592521 : dead_or_predicable (basic_block test_bb, basic_block merge_bb,
5700 : : basic_block other_bb, edge dest_edge, bool reversep)
5701 : : {
5702 : 592521 : basic_block new_dest = dest_edge->dest;
5703 : 592521 : rtx_insn *head, *end, *jump;
5704 : 592521 : rtx_insn *earliest = NULL;
5705 : 592521 : rtx old_dest;
5706 : 592521 : bitmap merge_set = NULL;
5707 : : /* Number of pending changes. */
5708 : 592521 : int n_validated_changes = 0;
5709 : 592521 : rtx new_dest_label = NULL_RTX;
5710 : :
5711 : 592521 : jump = BB_END (test_bb);
5712 : :
5713 : : /* Find the extent of the real code in the merge block. */
5714 : 592521 : head = BB_HEAD (merge_bb);
5715 : 592521 : end = BB_END (merge_bb);
5716 : :
5717 : 700320 : while (DEBUG_INSN_P (end) && end != head)
5718 : 107799 : end = PREV_INSN (end);
5719 : :
5720 : : /* If merge_bb ends with a tablejump, predicating/moving insn's
5721 : : into test_bb and then deleting merge_bb will result in the jumptable
5722 : : that follows merge_bb being removed along with merge_bb and then we
5723 : : get an unresolved reference to the jumptable. */
5724 : 592521 : if (tablejump_p (end, NULL, NULL))
5725 : : return false;
5726 : :
5727 : 592521 : if (LABEL_P (head))
5728 : 466550 : head = NEXT_INSN (head);
5729 : 592521 : while (DEBUG_INSN_P (head) && head != end)
5730 : 0 : head = NEXT_INSN (head);
5731 : 592521 : if (NOTE_P (head))
5732 : : {
5733 : 592521 : if (head == end)
5734 : : {
5735 : 97062 : head = end = NULL;
5736 : 97062 : goto no_body;
5737 : : }
5738 : 495459 : head = NEXT_INSN (head);
5739 : 1239671 : while (DEBUG_INSN_P (head) && head != end)
5740 : 248753 : head = NEXT_INSN (head);
5741 : : }
5742 : :
5743 : 495459 : if (JUMP_P (end))
5744 : : {
5745 : 178899 : if (!onlyjump_p (end))
5746 : : return false;
5747 : 138207 : if (head == end)
5748 : : {
5749 : 2 : head = end = NULL;
5750 : 2 : goto no_body;
5751 : : }
5752 : 138205 : end = PREV_INSN (end);
5753 : 337624 : while (DEBUG_INSN_P (end) && end != head)
5754 : 61214 : end = PREV_INSN (end);
5755 : : }
5756 : :
5757 : : /* Don't move frame-related insn across the conditional branch. This
5758 : : can lead to one of the paths of the branch having wrong unwind info. */
5759 : 454765 : if (epilogue_completed)
5760 : : {
5761 : : rtx_insn *insn = head;
5762 : 53694 : while (1)
5763 : : {
5764 : 234876 : if (INSN_P (insn) && RTX_FRAME_RELATED_P (insn))
5765 : : return false;
5766 : 234231 : if (insn == end)
5767 : : break;
5768 : 53694 : insn = NEXT_INSN (insn);
5769 : 53694 : }
5770 : : }
5771 : :
5772 : : /* Disable handling dead code by conditional execution if the machine needs
5773 : : to do anything funny with the tests, etc. */
5774 : : #ifndef IFCVT_MODIFY_TESTS
5775 : 454120 : if (targetm.have_conditional_execution ())
5776 : : {
5777 : : /* In the conditional execution case, we have things easy. We know
5778 : : the condition is reversible. We don't have to check life info
5779 : : because we're going to conditionally execute the code anyway.
5780 : : All that's left is making sure the insns involved can actually
5781 : : be predicated. */
5782 : :
5783 : 0 : rtx cond;
5784 : :
5785 : : /* If the conditional jump is more than just a conditional jump,
5786 : : then we cannot do conditional execution conversion on this block. */
5787 : 0 : if (!onlyjump_p (jump))
5788 : 0 : goto nce;
5789 : :
5790 : 0 : cond = cond_exec_get_condition (jump);
5791 : 0 : if (! cond)
5792 : 0 : goto nce;
5793 : :
5794 : 0 : rtx note = find_reg_note (jump, REG_BR_PROB, NULL_RTX);
5795 : 0 : profile_probability prob_val
5796 : 0 : = (note ? profile_probability::from_reg_br_prob_note (XINT (note, 0))
5797 : 0 : : profile_probability::uninitialized ());
5798 : :
5799 : 0 : if (reversep)
5800 : : {
5801 : 0 : enum rtx_code rev = reversed_comparison_code (cond, jump);
5802 : 0 : if (rev == UNKNOWN)
5803 : 0 : return false;
5804 : 0 : cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
5805 : : XEXP (cond, 1));
5806 : 0 : prob_val = prob_val.invert ();
5807 : : }
5808 : :
5809 : 0 : if (cond_exec_process_insns (NULL, head, end, cond, prob_val, false)
5810 : 0 : && verify_changes (0))
5811 : 0 : n_validated_changes = num_validated_changes ();
5812 : : else
5813 : 0 : cancel_changes (0);
5814 : :
5815 : 0 : earliest = jump;
5816 : : }
5817 : 454120 : nce:
5818 : : #endif
5819 : :
5820 : : /* If we allocated new pseudos (e.g. in the conditional move
5821 : : expander called from noce_emit_cmove), we must resize the
5822 : : array first. */
5823 : 454120 : if (max_regno < max_reg_num ())
5824 : 84303 : max_regno = max_reg_num ();
5825 : :
5826 : : /* Try the NCE path if the CE path did not result in any changes. */
5827 : 454120 : if (n_validated_changes == 0)
5828 : : {
5829 : 454120 : rtx cond;
5830 : 454120 : rtx_insn *insn;
5831 : 454120 : regset live;
5832 : 454120 : bool success;
5833 : :
5834 : : /* In the non-conditional execution case, we have to verify that there
5835 : : are no trapping operations, no calls, no references to memory, and
5836 : : that any registers modified are dead at the branch site. */
5837 : :
5838 : 454120 : if (!any_condjump_p (jump))
5839 : : return false;
5840 : :
5841 : : /* Find the extent of the conditional. */
5842 : 454120 : cond = noce_get_condition (jump, &earliest, false);
5843 : 454120 : if (!cond)
5844 : : return false;
5845 : :
5846 : 454120 : live = BITMAP_ALLOC (®_obstack);
5847 : 454120 : simulate_backwards_to_point (merge_bb, live, end);
5848 : 454120 : success = can_move_insns_across (head, end, earliest, jump,
5849 : : merge_bb, live,
5850 : : df_get_live_in (other_bb), NULL);
5851 : 454120 : BITMAP_FREE (live);
5852 : 454120 : if (!success)
5853 : : return false;
5854 : :
5855 : : /* Collect the set of registers set in MERGE_BB. */
5856 : 197339 : merge_set = BITMAP_ALLOC (®_obstack);
5857 : :
5858 : 919665 : FOR_BB_INSNS (merge_bb, insn)
5859 : 722326 : if (NONDEBUG_INSN_P (insn))
5860 : 245875 : df_simulate_find_defs (insn, merge_set);
5861 : :
5862 : : /* If shrink-wrapping, disable this optimization when test_bb is
5863 : : the first basic block and merge_bb exits. The idea is to not
5864 : : move code setting up a return register as that may clobber a
5865 : : register used to pass function parameters, which then must be
5866 : : saved in caller-saved regs. A caller-saved reg requires the
5867 : : prologue, killing a shrink-wrap opportunity. */
5868 : 197339 : if ((SHRINK_WRAPPING_ENABLED && !epilogue_completed)
5869 : 168324 : && ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb == test_bb
5870 : 28163 : && single_succ_p (new_dest)
5871 : 21933 : && single_succ (new_dest) == EXIT_BLOCK_PTR_FOR_FN (cfun)
5872 : 218428 : && bitmap_intersect_p (df_get_live_in (new_dest), merge_set))
5873 : : {
5874 : 21089 : regset return_regs;
5875 : 21089 : unsigned int i;
5876 : :
5877 : 21089 : return_regs = BITMAP_ALLOC (®_obstack);
5878 : :
5879 : : /* Start off with the intersection of regs used to pass
5880 : : params and regs used to return values. */
5881 : 1982366 : for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5882 : 1940188 : if (FUNCTION_ARG_REGNO_P (i)
5883 : 1940188 : && targetm.calls.function_value_regno_p (i))
5884 : 114042 : bitmap_set_bit (return_regs, INCOMING_REGNO (i));
5885 : :
5886 : 21089 : bitmap_and_into (return_regs,
5887 : 21089 : df_get_live_out (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
5888 : 21089 : bitmap_and_into (return_regs,
5889 : 21089 : df_get_live_in (EXIT_BLOCK_PTR_FOR_FN (cfun)));
5890 : 21089 : if (!bitmap_empty_p (return_regs))
5891 : : {
5892 : 6080 : FOR_BB_INSNS_REVERSE (new_dest, insn)
5893 : 5389 : if (NONDEBUG_INSN_P (insn))
5894 : : {
5895 : 2679 : df_ref def;
5896 : :
5897 : : /* If this insn sets any reg in return_regs, add all
5898 : : reg uses to the set of regs we're interested in. */
5899 : 3082 : FOR_EACH_INSN_DEF (def, insn)
5900 : 1762 : if (bitmap_bit_p (return_regs, DF_REF_REGNO (def)))
5901 : : {
5902 : 1359 : df_simulate_uses (insn, return_regs);
5903 : 1359 : break;
5904 : : }
5905 : : }
5906 : 691 : if (bitmap_intersect_p (merge_set, return_regs))
5907 : : {
5908 : 657 : BITMAP_FREE (return_regs);
5909 : 657 : BITMAP_FREE (merge_set);
5910 : 657 : return false;
5911 : : }
5912 : : }
5913 : 20432 : BITMAP_FREE (return_regs);
5914 : : }
5915 : : }
5916 : :
5917 : 293746 : no_body:
5918 : : /* We don't want to use normal invert_jump or redirect_jump because
5919 : : we don't want to delete_insn called. Also, we want to do our own
5920 : : change group management. */
5921 : :
5922 : 293746 : old_dest = JUMP_LABEL (jump);
5923 : 293746 : if (other_bb != new_dest)
5924 : : {
5925 : 293716 : if (!any_condjump_p (jump))
5926 : 0 : goto cancel;
5927 : :
5928 : 293716 : if (JUMP_P (BB_END (dest_edge->src)))
5929 : 18909 : new_dest_label = JUMP_LABEL (BB_END (dest_edge->src));
5930 : 274807 : else if (new_dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
5931 : 93746 : new_dest_label = ret_rtx;
5932 : : else
5933 : 181061 : new_dest_label = block_label (new_dest);
5934 : :
5935 : 293716 : rtx_jump_insn *jump_insn = as_a <rtx_jump_insn *> (jump);
5936 : 293716 : if (reversep
5937 : 569458 : ? ! invert_jump_1 (jump_insn, new_dest_label)
5938 : 275742 : : ! redirect_jump_1 (jump_insn, new_dest_label))
5939 : 0 : goto cancel;
5940 : : }
5941 : :
5942 : 293746 : if (verify_changes (n_validated_changes))
5943 : 200000 : confirm_change_group ();
5944 : : else
5945 : 93746 : goto cancel;
5946 : :
5947 : 200000 : if (other_bb != new_dest)
5948 : : {
5949 : 199970 : redirect_jump_2 (as_a <rtx_jump_insn *> (jump), old_dest, new_dest_label,
5950 : : 0, reversep);
5951 : :
5952 : 199970 : redirect_edge_succ (BRANCH_EDGE (test_bb), new_dest);
5953 : 199970 : if (reversep)
5954 : : {
5955 : 17974 : std::swap (BRANCH_EDGE (test_bb)->probability,
5956 : 17974 : FALLTHRU_EDGE (test_bb)->probability);
5957 : 17974 : update_br_prob_note (test_bb);
5958 : : }
5959 : : }
5960 : :
5961 : : /* Move the insns out of MERGE_BB to before the branch. */
5962 : 200000 : if (head != NULL)
5963 : : {
5964 : 196682 : rtx_insn *insn;
5965 : :
5966 : 196682 : if (end == BB_END (merge_bb))
5967 : 160382 : BB_END (merge_bb) = PREV_INSN (head);
5968 : :
5969 : : /* PR 21767: when moving insns above a conditional branch, the REG_EQUAL
5970 : : notes being moved might become invalid. */
5971 : : insn = head;
5972 : 233132 : do
5973 : : {
5974 : 233132 : rtx note;
5975 : :
5976 : 233132 : if (! INSN_P (insn))
5977 : 2836 : continue;
5978 : 230296 : note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
5979 : 230296 : if (! note)
5980 : 220565 : continue;
5981 : 9731 : remove_note (insn, note);
5982 : 269582 : } while (insn != end && (insn = NEXT_INSN (insn)));
5983 : :
5984 : : /* PR46315: when moving insns above a conditional branch, the REG_EQUAL
5985 : : notes referring to the registers being set might become invalid. */
5986 : 196682 : if (merge_set)
5987 : : {
5988 : 196682 : unsigned i;
5989 : 196682 : bitmap_iterator bi;
5990 : :
5991 : 440061 : EXECUTE_IF_SET_IN_BITMAP (merge_set, 0, i, bi)
5992 : 243379 : remove_reg_equal_equiv_notes_for_regno (i);
5993 : :
5994 : 196682 : BITMAP_FREE (merge_set);
5995 : : }
5996 : :
5997 : 196682 : reorder_insns (head, end, PREV_INSN (earliest));
5998 : : }
5999 : :
6000 : : /* Remove the jump and edge if we can. */
6001 : 200000 : if (other_bb == new_dest)
6002 : : {
6003 : 30 : delete_insn (jump);
6004 : 30 : remove_edge (BRANCH_EDGE (test_bb));
6005 : : /* ??? Can't merge blocks here, as then_bb is still in use.
6006 : : At minimum, the merge will get done just before bb-reorder. */
6007 : : }
6008 : :
6009 : : return true;
6010 : :
6011 : 93746 : cancel:
6012 : 93746 : cancel_changes (0);
6013 : :
6014 : 93746 : if (merge_set)
6015 : 0 : BITMAP_FREE (merge_set);
6016 : :
6017 : : return false;
6018 : : }
6019 : :
6020 : : /* Main entry point for all if-conversion. AFTER_COMBINE is true if
6021 : : we are after combine pass. */
6022 : :
6023 : : static void
6024 : 2987274 : if_convert (bool after_combine)
6025 : : {
6026 : 2987274 : basic_block bb;
6027 : 2987274 : int pass;
6028 : :
6029 : 2987274 : if (optimize == 1)
6030 : : {
6031 : 215182 : df_live_add_problem ();
6032 : 215182 : df_live_set_all_dirty ();
6033 : : }
6034 : :
6035 : : /* Record whether we are after combine pass. */
6036 : 2987274 : ifcvt_after_combine = after_combine;
6037 : 2987274 : have_cbranchcc4 = (direct_optab_handler (cbranch_optab, CCmode)
6038 : 2987274 : != CODE_FOR_nothing);
6039 : 2987274 : num_possible_if_blocks = 0;
6040 : 2987274 : num_updated_if_blocks = 0;
6041 : 2987274 : num_true_changes = 0;
6042 : :
6043 : 2987274 : loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
6044 : 2987274 : mark_loop_exit_edges ();
6045 : 2987274 : loop_optimizer_finalize ();
6046 : 2987274 : free_dominance_info (CDI_DOMINATORS);
6047 : :
6048 : : /* Compute postdominators. */
6049 : 2987274 : calculate_dominance_info (CDI_POST_DOMINATORS);
6050 : :
6051 : 2987274 : df_set_flags (DF_LR_RUN_DCE);
6052 : :
6053 : : /* Go through each of the basic blocks looking for things to convert. If we
6054 : : have conditional execution, we make multiple passes to allow us to handle
6055 : : IF-THEN{-ELSE} blocks within other IF-THEN{-ELSE} blocks. */
6056 : 2987274 : pass = 0;
6057 : 3166641 : do
6058 : : {
6059 : 3166641 : df_analyze ();
6060 : : /* Only need to do dce on the first pass. */
6061 : 3166641 : df_clear_flags (DF_LR_RUN_DCE);
6062 : 3166641 : cond_exec_changed_p = false;
6063 : 3166641 : pass++;
6064 : :
6065 : : #ifdef IFCVT_MULTIPLE_DUMPS
6066 : 3166641 : if (dump_file && pass > 1)
6067 : 17 : fprintf (dump_file, "\n\n========== Pass %d ==========\n", pass);
6068 : : #endif
6069 : :
6070 : 40226580 : FOR_EACH_BB_FN (bb, cfun)
6071 : : {
6072 : : basic_block new_bb;
6073 : 37387106 : while (!df_get_bb_dirty (bb)
6074 : 73904866 : && (new_bb = find_if_header (bb, pass)) != NULL)
6075 : : bb = new_bb;
6076 : : }
6077 : :
6078 : : #ifdef IFCVT_MULTIPLE_DUMPS
6079 : 3166641 : if (dump_file && cond_exec_changed_p)
6080 : 17 : print_rtl_with_bb (dump_file, get_insns (), dump_flags);
6081 : : #endif
6082 : : }
6083 : : while (cond_exec_changed_p);
6084 : :
6085 : : #ifdef IFCVT_MULTIPLE_DUMPS
6086 : 2987274 : if (dump_file)
6087 : 85 : fprintf (dump_file, "\n\n========== no more changes\n");
6088 : : #endif
6089 : :
6090 : 2987274 : free_dominance_info (CDI_POST_DOMINATORS);
6091 : :
6092 : 2987274 : if (dump_file)
6093 : 85 : fflush (dump_file);
6094 : :
6095 : 2987274 : clear_aux_for_blocks ();
6096 : :
6097 : : /* If we allocated new pseudos, we must resize the array for sched1. */
6098 : 2987274 : if (max_regno < max_reg_num ())
6099 : 599791 : max_regno = max_reg_num ();
6100 : :
6101 : : /* Write the final stats. */
6102 : 2987274 : if (dump_file && num_possible_if_blocks > 0)
6103 : : {
6104 : 59 : fprintf (dump_file,
6105 : : "\n%d possible IF blocks searched.\n",
6106 : : num_possible_if_blocks);
6107 : 59 : fprintf (dump_file,
6108 : : "%d IF blocks converted.\n",
6109 : : num_updated_if_blocks);
6110 : 59 : fprintf (dump_file,
6111 : : "%d true changes made.\n\n\n",
6112 : : num_true_changes);
6113 : : }
6114 : :
6115 : 2987274 : if (optimize == 1)
6116 : 215182 : df_remove_problem (df_live);
6117 : :
6118 : : /* Some non-cold blocks may now be only reachable from cold blocks.
6119 : : Fix that up. */
6120 : 2987274 : fixup_partitions ();
6121 : :
6122 : 2987274 : checking_verify_flow_info ();
6123 : 2987274 : }
6124 : :
6125 : : /* If-conversion and CFG cleanup. */
6126 : : static void
6127 : 998412 : rest_of_handle_if_conversion (void)
6128 : : {
6129 : 998412 : int flags = 0;
6130 : :
6131 : 998412 : if (flag_if_conversion)
6132 : : {
6133 : 995756 : if (dump_file)
6134 : : {
6135 : 33 : dump_reg_info (dump_file);
6136 : 33 : dump_flow_info (dump_file, dump_flags);
6137 : : }
6138 : 995756 : cleanup_cfg (CLEANUP_EXPENSIVE);
6139 : 995756 : if_convert (false);
6140 : 995756 : if (num_updated_if_blocks)
6141 : : /* Get rid of any dead CC-related instructions. */
6142 : 998412 : flags |= CLEANUP_FORCE_FAST_DCE;
6143 : : }
6144 : :
6145 : 998412 : cleanup_cfg (flags);
6146 : 998412 : }
6147 : :
6148 : : namespace {
6149 : :
6150 : : const pass_data pass_data_rtl_ifcvt =
6151 : : {
6152 : : RTL_PASS, /* type */
6153 : : "ce1", /* name */
6154 : : OPTGROUP_NONE, /* optinfo_flags */
6155 : : TV_IFCVT, /* tv_id */
6156 : : 0, /* properties_required */
6157 : : 0, /* properties_provided */
6158 : : 0, /* properties_destroyed */
6159 : : 0, /* todo_flags_start */
6160 : : TODO_df_finish, /* todo_flags_finish */
6161 : : };
6162 : :
6163 : : class pass_rtl_ifcvt : public rtl_opt_pass
6164 : : {
6165 : : public:
6166 : 280114 : pass_rtl_ifcvt (gcc::context *ctxt)
6167 : 560228 : : rtl_opt_pass (pass_data_rtl_ifcvt, ctxt)
6168 : : {}
6169 : :
6170 : : /* opt_pass methods: */
6171 : 1415668 : bool gate (function *) final override
6172 : : {
6173 : 1415668 : return (optimize > 0) && dbg_cnt (if_conversion);
6174 : : }
6175 : :
6176 : 998412 : unsigned int execute (function *) final override
6177 : : {
6178 : 998412 : rest_of_handle_if_conversion ();
6179 : 998412 : return 0;
6180 : : }
6181 : :
6182 : : }; // class pass_rtl_ifcvt
6183 : :
6184 : : } // anon namespace
6185 : :
6186 : : rtl_opt_pass *
6187 : 280114 : make_pass_rtl_ifcvt (gcc::context *ctxt)
6188 : : {
6189 : 280114 : return new pass_rtl_ifcvt (ctxt);
6190 : : }
6191 : :
6192 : :
6193 : : /* Rerun if-conversion, as combine may have simplified things enough
6194 : : to now meet sequence length restrictions. */
6195 : :
6196 : : namespace {
6197 : :
6198 : : const pass_data pass_data_if_after_combine =
6199 : : {
6200 : : RTL_PASS, /* type */
6201 : : "ce2", /* name */
6202 : : OPTGROUP_NONE, /* optinfo_flags */
6203 : : TV_IFCVT, /* tv_id */
6204 : : 0, /* properties_required */
6205 : : 0, /* properties_provided */
6206 : : 0, /* properties_destroyed */
6207 : : 0, /* todo_flags_start */
6208 : : TODO_df_finish, /* todo_flags_finish */
6209 : : };
6210 : :
6211 : : class pass_if_after_combine : public rtl_opt_pass
6212 : : {
6213 : : public:
6214 : 280114 : pass_if_after_combine (gcc::context *ctxt)
6215 : 560228 : : rtl_opt_pass (pass_data_if_after_combine, ctxt)
6216 : : {}
6217 : :
6218 : : /* opt_pass methods: */
6219 : 1415668 : bool gate (function *) final override
6220 : : {
6221 : 998413 : return optimize > 0 && flag_if_conversion
6222 : 2411425 : && dbg_cnt (if_after_combine);
6223 : : }
6224 : :
6225 : 995756 : unsigned int execute (function *) final override
6226 : : {
6227 : 995756 : if_convert (true);
6228 : 995756 : return 0;
6229 : : }
6230 : :
6231 : : }; // class pass_if_after_combine
6232 : :
6233 : : } // anon namespace
6234 : :
6235 : : rtl_opt_pass *
6236 : 280114 : make_pass_if_after_combine (gcc::context *ctxt)
6237 : : {
6238 : 280114 : return new pass_if_after_combine (ctxt);
6239 : : }
6240 : :
6241 : :
6242 : : namespace {
6243 : :
6244 : : const pass_data pass_data_if_after_reload =
6245 : : {
6246 : : RTL_PASS, /* type */
6247 : : "ce3", /* name */
6248 : : OPTGROUP_NONE, /* optinfo_flags */
6249 : : TV_IFCVT2, /* tv_id */
6250 : : 0, /* properties_required */
6251 : : 0, /* properties_provided */
6252 : : 0, /* properties_destroyed */
6253 : : 0, /* todo_flags_start */
6254 : : TODO_df_finish, /* todo_flags_finish */
6255 : : };
6256 : :
6257 : : class pass_if_after_reload : public rtl_opt_pass
6258 : : {
6259 : : public:
6260 : 280114 : pass_if_after_reload (gcc::context *ctxt)
6261 : 560228 : : rtl_opt_pass (pass_data_if_after_reload, ctxt)
6262 : : {}
6263 : :
6264 : : /* opt_pass methods: */
6265 : 1415668 : bool gate (function *) final override
6266 : : {
6267 : 998413 : return optimize > 0 && flag_if_conversion2
6268 : 2411431 : && dbg_cnt (if_after_reload);
6269 : : }
6270 : :
6271 : 995762 : unsigned int execute (function *) final override
6272 : : {
6273 : 995762 : if_convert (true);
6274 : 995762 : return 0;
6275 : : }
6276 : :
6277 : : }; // class pass_if_after_reload
6278 : :
6279 : : } // anon namespace
6280 : :
6281 : : rtl_opt_pass *
6282 : 280114 : make_pass_if_after_reload (gcc::context *ctxt)
6283 : : {
6284 : 280114 : return new pass_if_after_reload (ctxt);
6285 : : }
|