]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-loop-unswitch.c
i386.c (make_resolver_func): Update.
[thirdparty/gcc.git] / gcc / tree-ssa-loop-unswitch.c
CommitLineData
92fc4a2f 1/* Loop unswitching.
cbe34bb5 2 Copyright (C) 2004-2017 Free Software Foundation, Inc.
b8698a0f 3
92fc4a2f 4This file is part of GCC.
b8698a0f 5
92fc4a2f
ZD
6GCC is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
9dcd6f09 8Free Software Foundation; either version 3, or (at your option) any
92fc4a2f 9later version.
b8698a0f 10
92fc4a2f
ZD
11GCC is distributed in the hope that it will be useful, but WITHOUT
12ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
b8698a0f 15
92fc4a2f 16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
92fc4a2f
ZD
19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
c7131fb2 23#include "backend.h"
92fc4a2f 24#include "tree.h"
c7131fb2 25#include "gimple.h"
957060b5 26#include "tree-pass.h"
c7131fb2 27#include "ssa.h"
40e23961 28#include "fold-const.h"
45b0be94 29#include "gimplify.h"
442b4905 30#include "tree-cfg.h"
f813d16e 31#include "tree-ssa.h"
e28030cf 32#include "tree-ssa-loop-niter.h"
442b4905
AM
33#include "tree-ssa-loop.h"
34#include "tree-into-ssa.h"
92fc4a2f 35#include "cfgloop.h"
92fc4a2f 36#include "params.h"
7f9bc51b 37#include "tree-inline.h"
a01e93f1
YR
38#include "gimple-iterator.h"
39#include "cfghooks.h"
622d8b69 40#include "tree-ssa-loop-manip.h"
92fc4a2f
ZD
41
42/* This file implements the loop unswitching, i.e. transformation of loops like
43
44 while (A)
45 {
46 if (inv)
47 B;
48
49 X;
50
51 if (!inv)
52 C;
53 }
54
55 where inv is the loop invariant, into
56
57 if (inv)
58 {
59 while (A)
60 {
61 B;
62 X;
63 }
64 }
65 else
66 {
67 while (A)
68 {
69 X;
70 C;
71 }
72 }
73
74 Inv is considered invariant iff the values it compares are both invariant;
75 tree-ssa-loop-im.c ensures that all the suitable conditions are in this
76 shape. */
77
d73be268
ZD
78static struct loop *tree_unswitch_loop (struct loop *, basic_block, tree);
79static bool tree_unswitch_single_loop (struct loop *, int);
92fc4a2f 80static tree tree_may_unswitch_on (basic_block, struct loop *);
a01e93f1
YR
81static bool tree_unswitch_outer_loop (struct loop *);
82static edge find_loop_guard (struct loop *);
83static bool empty_bb_without_guard_p (struct loop *, basic_block);
84static bool used_outside_loop_p (struct loop *, tree);
85static void hoist_guard (struct loop *, edge);
86static bool check_exit_phi (struct loop *);
87static tree get_vop_from_header (struct loop *);
92fc4a2f 88
d73be268 89/* Main entry point. Perform loop unswitching on all suitable loops. */
92fc4a2f 90
c7f965b6 91unsigned int
d73be268 92tree_ssa_unswitch_loops (void)
92fc4a2f 93{
92fc4a2f
ZD
94 struct loop *loop;
95 bool changed = false;
96
a01e93f1
YR
97 /* Go through all loops starting from innermost. */
98 FOR_EACH_LOOP (loop, LI_FROM_INNERMOST)
92fc4a2f 99 {
a01e93f1
YR
100 if (!loop->inner)
101 /* Unswitch innermost loop. */
102 changed |= tree_unswitch_single_loop (loop, 0);
103 else
104 changed |= tree_unswitch_outer_loop (loop);
92fc4a2f
ZD
105 }
106
92fc4a2f 107 if (changed)
c7f965b6
AP
108 return TODO_cleanup_cfg;
109 return 0;
92fc4a2f
ZD
110}
111
8b670f93
AH
112/* Return TRUE if an SSA_NAME maybe undefined and is therefore
113 unsuitable for unswitching. STMT is the statement we are
114 considering for unswitching and LOOP is the loop it appears in. */
115
116static bool
117is_maybe_undefined (const tree name, gimple *stmt, struct loop *loop)
118{
119 /* The loop header is the only block we can trivially determine that
120 will always be executed. If the comparison is in the loop
121 header, we know it's OK to unswitch on it. */
122 if (gimple_bb (stmt) == loop->header)
123 return false;
124
125 auto_bitmap visited_ssa;
126 auto_vec<tree> worklist;
127 worklist.safe_push (name);
128 bitmap_set_bit (visited_ssa, SSA_NAME_VERSION (name));
129 while (!worklist.is_empty ())
130 {
131 tree t = worklist.pop ();
132
133 /* If it's obviously undefined, avoid further computations. */
134 if (ssa_undefined_value_p (t, true))
135 return true;
136
c6b0d21d 137 if (ssa_defined_default_def_p (t))
8b670f93
AH
138 continue;
139
140 gimple *def = SSA_NAME_DEF_STMT (t);
141
142 /* Check that all the PHI args are fully defined. */
143 if (gphi *phi = dyn_cast <gphi *> (def))
144 {
145 for (unsigned i = 0; i < gimple_phi_num_args (phi); ++i)
146 {
147 tree t = gimple_phi_arg_def (phi, i);
148 /* If an SSA has already been seen, it may be a loop,
149 but we can continue and ignore this use. Otherwise,
150 add the SSA_NAME to the queue and visit it later. */
151 if (TREE_CODE (t) == SSA_NAME
152 && bitmap_set_bit (visited_ssa, SSA_NAME_VERSION (t)))
153 worklist.safe_push (t);
154 }
155 continue;
156 }
157
158 /* Uses in stmts always executed when the region header executes
159 are fine. */
160 if (dominated_by_p (CDI_DOMINATORS, loop->header, gimple_bb (def)))
161 continue;
162
163 /* Handle calls and memory loads conservatively. */
164 if (!is_gimple_assign (def)
165 || (gimple_assign_single_p (def)
166 && gimple_vuse (def)))
167 return true;
168
169 /* Check that any SSA names used to define NAME are also fully
170 defined. */
171 use_operand_p use_p;
172 ssa_op_iter iter;
173 FOR_EACH_SSA_USE_OPERAND (use_p, def, iter, SSA_OP_USE)
174 {
175 tree t = USE_FROM_PTR (use_p);
176 /* If an SSA has already been seen, it may be a loop,
177 but we can continue and ignore this use. Otherwise,
178 add the SSA_NAME to the queue and visit it later. */
179 if (bitmap_set_bit (visited_ssa, SSA_NAME_VERSION (t)))
180 worklist.safe_push (t);
181 }
182 }
183 return false;
184}
185
92fc4a2f
ZD
186/* Checks whether we can unswitch LOOP on condition at end of BB -- one of its
187 basic blocks (for what it means see comments below). */
188
189static tree
190tree_may_unswitch_on (basic_block bb, struct loop *loop)
191{
355fe088 192 gimple *last, *def;
538dd0b7 193 gcond *stmt;
726a989a 194 tree cond, use;
92fc4a2f 195 basic_block def_bb;
f47c96aa 196 ssa_op_iter iter;
92fc4a2f
ZD
197
198 /* BB must end in a simple conditional jump. */
538dd0b7
DM
199 last = last_stmt (bb);
200 if (!last || gimple_code (last) != GIMPLE_COND)
92fc4a2f 201 return NULL_TREE;
538dd0b7 202 stmt = as_a <gcond *> (last);
92fc4a2f 203
7a2eceff
JJ
204 /* To keep the things simple, we do not directly remove the conditions,
205 but just replace tests with 0 != 0 resp. 1 != 0. Prevent the infinite
206 loop where we would unswitch again on such a condition. */
207 if (gimple_cond_true_p (stmt) || gimple_cond_false_p (stmt))
208 return NULL_TREE;
209
92fc4a2f 210 /* Condition must be invariant. */
f47c96aa 211 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
92fc4a2f 212 {
f47c96aa 213 def = SSA_NAME_DEF_STMT (use);
726a989a 214 def_bb = gimple_bb (def);
92fc4a2f
ZD
215 if (def_bb
216 && flow_bb_inside_loop_p (loop, def_bb))
217 return NULL_TREE;
8b670f93
AH
218 /* Unswitching on undefined values would introduce undefined
219 behavior that the original program might never exercise. */
220 if (is_maybe_undefined (use, stmt, loop))
221 return NULL_TREE;
92fc4a2f
ZD
222 }
223
12aea97a
RG
224 cond = build2 (gimple_cond_code (stmt), boolean_type_node,
225 gimple_cond_lhs (stmt), gimple_cond_rhs (stmt));
726a989a 226
92fc4a2f
ZD
227 return cond;
228}
229
230/* Simplifies COND using checks in front of the entry of the LOOP. Just very
231 simplish (sufficient to prevent us from duplicating loop in unswitching
e75220c8 232 unnecessarily). */
92fc4a2f
ZD
233
234static tree
235simplify_using_entry_checks (struct loop *loop, tree cond)
236{
237 edge e = loop_preheader_edge (loop);
355fe088 238 gimple *stmt;
92fc4a2f
ZD
239
240 while (1)
241 {
242 stmt = last_stmt (e->src);
243 if (stmt
726a989a
RB
244 && gimple_code (stmt) == GIMPLE_COND
245 && gimple_cond_code (stmt) == TREE_CODE (cond)
246 && operand_equal_p (gimple_cond_lhs (stmt),
247 TREE_OPERAND (cond, 0), 0)
248 && operand_equal_p (gimple_cond_rhs (stmt),
249 TREE_OPERAND (cond, 1), 0))
92fc4a2f
ZD
250 return (e->flags & EDGE_TRUE_VALUE
251 ? boolean_true_node
252 : boolean_false_node);
253
c5cbcccf 254 if (!single_pred_p (e->src))
92fc4a2f
ZD
255 return cond;
256
c5cbcccf 257 e = single_pred_edge (e->src);
fefa31b5 258 if (e->src == ENTRY_BLOCK_PTR_FOR_FN (cfun))
92fc4a2f
ZD
259 return cond;
260 }
261}
262
263/* Unswitch single LOOP. NUM is number of unswitchings done; we do not allow
264 it to grow too much, it is too easy to create example on that the code would
265 grow exponentially. */
266
267static bool
d73be268 268tree_unswitch_single_loop (struct loop *loop, int num)
92fc4a2f
ZD
269{
270 basic_block *bbs;
271 struct loop *nloop;
7a2eceff 272 unsigned i, found;
726a989a 273 tree cond = NULL_TREE;
355fe088 274 gimple *stmt;
92fc4a2f 275 bool changed = false;
a01e93f1
YR
276 HOST_WIDE_INT iterations;
277
278 /* Perform initial tests if unswitch is eligible. */
279 if (num == 0)
280 {
281 /* Do not unswitch in cold regions. */
282 if (optimize_loop_for_size_p (loop))
283 {
284 if (dump_file && (dump_flags & TDF_DETAILS))
285 fprintf (dump_file, ";; Not unswitching cold loops\n");
286 return false;
287 }
288
289 /* The loop should not be too large, to limit code growth. */
290 if (tree_num_loop_insns (loop, &eni_size_weights)
291 > (unsigned) PARAM_VALUE (PARAM_MAX_UNSWITCH_INSNS))
292 {
293 if (dump_file && (dump_flags & TDF_DETAILS))
294 fprintf (dump_file, ";; Not unswitching, loop too big\n");
295 return false;
296 }
297
298 /* If the loop is not expected to iterate, there is no need
299 for unswitching. */
300 iterations = estimated_loop_iterations_int (loop);
f0305f3a 301 if (iterations < 0)
ae7a7472 302 iterations = likely_max_loop_iterations_int (loop);
a01e93f1
YR
303 if (iterations >= 0 && iterations <= 1)
304 {
305 if (dump_file && (dump_flags & TDF_DETAILS))
306 fprintf (dump_file, ";; Not unswitching, loop is not expected"
307 " to iterate\n");
308 return false;
309 }
310 }
92fc4a2f 311
92fc4a2f
ZD
312 i = 0;
313 bbs = get_loop_body (loop);
7a2eceff 314 found = loop->num_nodes;
b8698a0f 315
92fc4a2f
ZD
316 while (1)
317 {
318 /* Find a bb to unswitch on. */
319 for (; i < loop->num_nodes; i++)
320 if ((cond = tree_may_unswitch_on (bbs[i], loop)))
321 break;
322
323 if (i == loop->num_nodes)
324 {
7a2eceff
JJ
325 if (dump_file
326 && num > PARAM_VALUE (PARAM_MAX_UNSWITCH_LEVEL)
327 && (dump_flags & TDF_DETAILS))
328 fprintf (dump_file, ";; Not unswitching anymore, hit max level\n");
329
330 if (found == loop->num_nodes)
331 {
332 free (bbs);
333 return changed;
334 }
335 break;
92fc4a2f
ZD
336 }
337
338 cond = simplify_using_entry_checks (loop, cond);
339 stmt = last_stmt (bbs[i]);
340 if (integer_nonzerop (cond))
341 {
342 /* Remove false path. */
538dd0b7
DM
343 gimple_cond_set_condition_from_tree (as_a <gcond *> (stmt),
344 boolean_true_node);
92fc4a2f
ZD
345 changed = true;
346 }
347 else if (integer_zerop (cond))
348 {
349 /* Remove true path. */
538dd0b7
DM
350 gimple_cond_set_condition_from_tree (as_a <gcond *> (stmt),
351 boolean_false_node);
92fc4a2f
ZD
352 changed = true;
353 }
7a2eceff
JJ
354 /* Do not unswitch too much. */
355 else if (num > PARAM_VALUE (PARAM_MAX_UNSWITCH_LEVEL))
356 {
357 i++;
358 continue;
359 }
360 /* In nested tree_unswitch_single_loop first optimize all conditions
361 using entry checks, then discover still reachable blocks in the
362 loop and find the condition only among those still reachable bbs. */
363 else if (num != 0)
364 {
365 if (found == loop->num_nodes)
366 found = i;
367 i++;
368 continue;
369 }
92fc4a2f 370 else
7a2eceff
JJ
371 {
372 found = i;
373 break;
374 }
92fc4a2f 375
f430bae8 376 update_stmt (stmt);
92fc4a2f
ZD
377 i++;
378 }
379
7a2eceff
JJ
380 if (num != 0)
381 {
382 basic_block *tos, *worklist;
383
384 /* When called recursively, first do a quick discovery
385 of reachable bbs after the above changes and only
386 consider conditions in still reachable bbs. */
387 tos = worklist = XNEWVEC (basic_block, loop->num_nodes);
388
389 for (i = 0; i < loop->num_nodes; i++)
390 bbs[i]->flags &= ~BB_REACHABLE;
391
392 /* Start with marking header. */
393 *tos++ = bbs[0];
394 bbs[0]->flags |= BB_REACHABLE;
395
396 /* Iterate: find everything reachable from what we've already seen
397 within the same innermost loop. Don't look through false edges
398 if condition is always true or true edges if condition is
399 always false. */
400 while (tos != worklist)
401 {
402 basic_block b = *--tos;
403 edge e;
404 edge_iterator ei;
405 int flags = 0;
406
407 if (EDGE_COUNT (b->succs) == 2)
408 {
355fe088 409 gimple *stmt = last_stmt (b);
7a2eceff
JJ
410 if (stmt
411 && gimple_code (stmt) == GIMPLE_COND)
412 {
538dd0b7
DM
413 gcond *cond_stmt = as_a <gcond *> (stmt);
414 if (gimple_cond_true_p (cond_stmt))
7a2eceff 415 flags = EDGE_FALSE_VALUE;
538dd0b7 416 else if (gimple_cond_false_p (cond_stmt))
7a2eceff
JJ
417 flags = EDGE_TRUE_VALUE;
418 }
419 }
420
421 FOR_EACH_EDGE (e, ei, b->succs)
422 {
423 basic_block dest = e->dest;
424
425 if (dest->loop_father == loop
426 && !(dest->flags & BB_REACHABLE)
427 && !(e->flags & flags))
428 {
429 *tos++ = dest;
430 dest->flags |= BB_REACHABLE;
431 }
432 }
433 }
434
435 free (worklist);
436
437 /* Find a bb to unswitch on. */
438 for (; found < loop->num_nodes; found++)
439 if ((bbs[found]->flags & BB_REACHABLE)
440 && (cond = tree_may_unswitch_on (bbs[found], loop)))
441 break;
442
443 if (found == loop->num_nodes)
444 {
445 free (bbs);
446 return changed;
447 }
448 }
449
92fc4a2f
ZD
450 if (dump_file && (dump_flags & TDF_DETAILS))
451 fprintf (dump_file, ";; Unswitching loop\n");
452
6580ee77 453 initialize_original_copy_tables ();
92fc4a2f 454 /* Unswitch the loop on this condition. */
7a2eceff 455 nloop = tree_unswitch_loop (loop, bbs[found], cond);
92fc4a2f 456 if (!nloop)
094bb856
JH
457 {
458 free_original_copy_tables ();
77f6ec05 459 free (bbs);
094bb856
JH
460 return changed;
461 }
92fc4a2f 462
84d65814
DN
463 /* Update the SSA form after unswitching. */
464 update_ssa (TODO_update_ssa);
6580ee77 465 free_original_copy_tables ();
84d65814 466
92fc4a2f 467 /* Invoke itself on modified loops. */
d73be268
ZD
468 tree_unswitch_single_loop (nloop, num + 1);
469 tree_unswitch_single_loop (loop, num + 1);
77f6ec05 470 free (bbs);
92fc4a2f
ZD
471 return true;
472}
473
474/* Unswitch a LOOP w.r. to given basic block UNSWITCH_ON. We only support
475 unswitching of innermost loops. COND is the condition determining which
476 loop is entered -- the new loop is entered if COND is true. Returns NULL
477 if impossible, new loop otherwise. */
478
479static struct loop *
d73be268 480tree_unswitch_loop (struct loop *loop,
92fc4a2f
ZD
481 basic_block unswitch_on, tree cond)
482{
03cb2019
ZD
483 unsigned prob_true;
484 edge edge_true, edge_false;
92fc4a2f
ZD
485
486 /* Some sanity checking. */
487 gcc_assert (flow_bb_inside_loop_p (loop, unswitch_on));
628f6a4e 488 gcc_assert (EDGE_COUNT (unswitch_on->succs) == 2);
92fc4a2f
ZD
489 gcc_assert (loop->inner == NULL);
490
03cb2019
ZD
491 extract_true_false_edges_from_block (unswitch_on, &edge_true, &edge_false);
492 prob_true = edge_true->probability;
b8698a0f 493 return loop_version (loop, unshare_expr (cond),
5d3ebb71 494 NULL, prob_true, REG_BR_PROB_BASE - prob_true, prob_true,
03cb2019 495 REG_BR_PROB_BASE - prob_true, false);
92fc4a2f 496}
71343877 497
a01e93f1
YR
498/* Unswitch outer loops by hoisting invariant guard on
499 inner loop without code duplication. */
500static bool
501tree_unswitch_outer_loop (struct loop *loop)
502{
503 edge exit, guard;
504 HOST_WIDE_INT iterations;
505
506 gcc_assert (loop->inner);
507 if (loop->inner->next)
508 return false;
5c846df7 509 /* Accept loops with single exit only which is not from inner loop. */
a01e93f1 510 exit = single_exit (loop);
5c846df7 511 if (!exit || exit->src->loop_father != loop)
a01e93f1
YR
512 return false;
513 /* Check that phi argument of exit edge is not defined inside loop. */
514 if (!check_exit_phi (loop))
515 return false;
516 /* If the loop is not expected to iterate, there is no need
517 for unswitching. */
518 iterations = estimated_loop_iterations_int (loop);
f0305f3a 519 if (iterations < 0)
ae7a7472 520 iterations = likely_max_loop_iterations_int (loop);
a01e93f1
YR
521 if (iterations >= 0 && iterations <= 1)
522 {
523 if (dump_file && (dump_flags & TDF_DETAILS))
524 fprintf (dump_file, ";; Not unswitching, loop is not expected"
525 " to iterate\n");
0581d86f 526 return false;
a01e93f1
YR
527 }
528
622d8b69
RB
529 bool changed = false;
530 while ((guard = find_loop_guard (loop)))
a01e93f1 531 {
622d8b69
RB
532 if (! changed)
533 rewrite_virtuals_into_loop_closed_ssa (loop);
a01e93f1 534 hoist_guard (loop, guard);
622d8b69 535 changed = true;
a01e93f1 536 }
622d8b69 537 return changed;
a01e93f1
YR
538}
539
540/* Checks if the body of the LOOP is within an invariant guard. If this
541 is the case, returns the edge that jumps over the real body of the loop,
542 otherwise returns NULL. */
543
544static edge
545find_loop_guard (struct loop *loop)
546{
547 basic_block header = loop->header;
548 edge guard_edge, te, fe;
a01e93f1
YR
549 basic_block *body = NULL;
550 unsigned i;
551 tree use;
552 ssa_op_iter iter;
553
554 /* We check for the following situation:
555
556 while (1)
557 {
558 [header]]
559 loop_phi_nodes;
560 something1;
561 if (cond1)
562 body;
563 nvar = phi(orig, bvar) ... for all variables changed in body;
564 [guard_end]
565 something2;
566 if (cond2)
567 break;
568 something3;
569 }
570
571 where:
572
573 1) cond1 is loop invariant
574 2) If cond1 is false, then the loop is essentially empty; i.e.,
575 a) nothing in something1, something2 and something3 has side
576 effects
577 b) anything defined in something1, something2 and something3
578 is not used outside of the loop. */
579
622d8b69
RB
580 gcond *cond;
581 do
582 {
583 if (single_succ_p (header))
584 header = single_succ (header);
585 else
586 {
587 cond = dyn_cast <gcond *> (last_stmt (header));
588 if (! cond)
589 return NULL;
590 extract_true_false_edges_from_block (header, &te, &fe);
591 /* Make sure to skip earlier hoisted guards that are left
592 in place as if (true). */
593 if (gimple_cond_true_p (cond))
594 header = te->dest;
595 else if (gimple_cond_false_p (cond))
596 header = fe->dest;
597 else
598 break;
599 }
600 }
601 while (1);
a01e93f1
YR
602 if (!flow_bb_inside_loop_p (loop, te->dest)
603 || !flow_bb_inside_loop_p (loop, fe->dest))
604 return NULL;
605
606 if (just_once_each_iteration_p (loop, te->dest)
607 || (single_succ_p (te->dest)
608 && just_once_each_iteration_p (loop, single_succ (te->dest))))
609 {
610 if (just_once_each_iteration_p (loop, fe->dest))
611 return NULL;
612 guard_edge = te;
613 }
614 else if (just_once_each_iteration_p (loop, fe->dest)
615 || (single_succ_p (fe->dest)
616 && just_once_each_iteration_p (loop, single_succ (fe->dest))))
617 guard_edge = fe;
618 else
619 return NULL;
620
8a18fcf4
YR
621 /* Guard edge must skip inner loop. */
622 if (!dominated_by_p (CDI_DOMINATORS, loop->inner->header,
623 guard_edge == fe ? te->dest : fe->dest))
624 {
625 if (dump_file && (dump_flags & TDF_DETAILS))
626 fprintf (dump_file, "Guard edge %d --> %d is not around the loop!\n",
627 guard_edge->src->index, guard_edge->dest->index);
628 return NULL;
629 }
19aa23d8
YR
630 if (guard_edge->dest == loop->latch)
631 {
632 if (dump_file && (dump_flags & TDF_DETAILS))
633 fprintf (dump_file, "Guard edge destination is loop latch.\n");
634 return NULL;
635 }
8a18fcf4 636
a01e93f1
YR
637 if (dump_file && (dump_flags & TDF_DETAILS))
638 fprintf (dump_file,
639 "Considering guard %d -> %d in loop %d\n",
640 guard_edge->src->index, guard_edge->dest->index, loop->num);
641 /* Check if condition operands do not have definitions inside loop since
642 any bb copying is not performed. */
622d8b69 643 FOR_EACH_SSA_TREE_OPERAND (use, cond, iter, SSA_OP_USE)
a01e93f1
YR
644 {
645 gimple *def = SSA_NAME_DEF_STMT (use);
646 basic_block def_bb = gimple_bb (def);
647 if (def_bb
648 && flow_bb_inside_loop_p (loop, def_bb))
649 {
650 if (dump_file && (dump_flags & TDF_DETAILS))
651 fprintf (dump_file, " guard operands have definitions"
652 " inside loop\n");
653 return NULL;
654 }
655 }
656
657 body = get_loop_body (loop);
658 for (i = 0; i < loop->num_nodes; i++)
659 {
660 basic_block bb = body[i];
661 if (bb->loop_father != loop)
662 continue;
663 if (bb->flags & BB_IRREDUCIBLE_LOOP)
664 {
665 if (dump_file && (dump_flags & TDF_DETAILS))
666 fprintf (dump_file, "Block %d is marked as irreducible in loop\n",
667 bb->index);
668 guard_edge = NULL;
669 goto end;
670 }
671 if (!empty_bb_without_guard_p (loop, bb))
672 {
673 if (dump_file && (dump_flags & TDF_DETAILS))
674 fprintf (dump_file, " block %d has side effects\n", bb->index);
675 guard_edge = NULL;
676 goto end;
677 }
678 }
679
680 if (dump_file && (dump_flags & TDF_DETAILS))
681 fprintf (dump_file, " suitable to hoist\n");
682end:
683 if (body)
684 free (body);
685 return guard_edge;
686}
687
688/* Returns true if
689 1) no statement in BB has side effects
690 2) assuming that edge GUARD is always taken, all definitions in BB
691 are noy used outside of the loop.
692 KNOWN_INVARIANTS is a set of ssa names we know to be invariant, and
693 PROCESSED is a set of ssa names for that we already tested whether they
694 are invariant or not. */
695
696static bool
697empty_bb_without_guard_p (struct loop *loop, basic_block bb)
698{
699 basic_block exit_bb = single_exit (loop)->src;
700 bool may_be_used_outside = (bb == exit_bb
701 || !dominated_by_p (CDI_DOMINATORS, bb, exit_bb));
702 tree name;
703 ssa_op_iter op_iter;
704
705 /* Phi nodes do not have side effects, but their results might be used
706 outside of the loop. */
707 if (may_be_used_outside)
708 {
709 for (gphi_iterator gsi = gsi_start_phis (bb);
710 !gsi_end_p (gsi); gsi_next (&gsi))
711 {
712 gphi *phi = gsi.phi ();
713 name = PHI_RESULT (phi);
714 if (virtual_operand_p (name))
715 continue;
716
717 if (used_outside_loop_p (loop, name))
718 return false;
719 }
720 }
721
722 for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
723 !gsi_end_p (gsi); gsi_next (&gsi))
724 {
725 gimple *stmt = gsi_stmt (gsi);
726 if (gimple_has_side_effects (stmt))
727 return false;
728
729 if (gimple_vdef(stmt))
730 return false;
731
732 FOR_EACH_SSA_TREE_OPERAND (name, stmt, op_iter, SSA_OP_DEF)
733 {
734 if (may_be_used_outside
735 && used_outside_loop_p (loop, name))
736 return false;
737 }
738 }
739 return true;
740}
741
742/* Return true if NAME is used outside of LOOP. */
743
744static bool
745used_outside_loop_p (struct loop *loop, tree name)
746{
747 imm_use_iterator it;
748 use_operand_p use;
749
750 FOR_EACH_IMM_USE_FAST (use, it, name)
751 {
752 gimple *stmt = USE_STMT (use);
753 if (!flow_bb_inside_loop_p (loop, gimple_bb (stmt)))
754 return true;
755 }
756
757 return false;
758}
759
760/* Return argument for loop preheader edge in header virtual phi if any. */
761
762static tree
763get_vop_from_header (struct loop *loop)
764{
765 for (gphi_iterator gsi = gsi_start_phis (loop->header);
766 !gsi_end_p (gsi); gsi_next (&gsi))
767 {
768 gphi *phi = gsi.phi ();
769 if (!virtual_operand_p (gimple_phi_result (phi)))
770 continue;
771 return PHI_ARG_DEF_FROM_EDGE (phi, loop_preheader_edge (loop));
772 }
773 return NULL_TREE;
774}
775
776/* Move the check of GUARD outside of LOOP. */
777
778static void
779hoist_guard (struct loop *loop, edge guard)
780{
781 edge exit = single_exit (loop);
782 edge preh = loop_preheader_edge (loop);
783 basic_block pre_header = preh->src;
784 basic_block bb;
785 edge te, fe, e, new_edge;
786 gimple *stmt;
787 basic_block guard_bb = guard->src;
0b90c541 788 edge not_guard;
a01e93f1
YR
789 gimple_stmt_iterator gsi;
790 int flags = 0;
791 bool fix_dom_of_exit;
792 gcond *cond_stmt, *new_cond_stmt;
793
794 bb = get_immediate_dominator (CDI_DOMINATORS, exit->dest);
795 fix_dom_of_exit = flow_bb_inside_loop_p (loop, bb);
796 gsi = gsi_last_bb (guard_bb);
797 stmt = gsi_stmt (gsi);
798 gcc_assert (gimple_code (stmt) == GIMPLE_COND);
799 cond_stmt = as_a <gcond *> (stmt);
800 extract_true_false_edges_from_block (guard_bb, &te, &fe);
801 /* Insert guard to PRE_HEADER. */
802 if (!empty_block_p (pre_header))
803 gsi = gsi_last_bb (pre_header);
804 else
805 gsi = gsi_start_bb (pre_header);
806 /* Create copy of COND_STMT. */
807 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt),
808 gimple_cond_lhs (cond_stmt),
809 gimple_cond_rhs (cond_stmt),
810 NULL_TREE, NULL_TREE);
811 gsi_insert_after (&gsi, new_cond_stmt, GSI_NEW_STMT);
812 /* Convert COND_STMT to true/false conditional. */
813 if (guard == te)
814 gimple_cond_make_false (cond_stmt);
815 else
816 gimple_cond_make_true (cond_stmt);
817 update_stmt (cond_stmt);
818 /* Create new loop pre-header. */
819 e = split_block (pre_header, last_stmt (pre_header));
0b90c541 820 if (dump_file && (dump_flags & TDF_DETAILS))
da9cd044 821 fprintf (dump_file, " Moving guard %i->%i (prob %i) to bb %i, "
0b90c541
JH
822 "new preheader is %i\n",
823 guard->src->index, guard->dest->index, guard->probability,
824 e->src->index, e->dest->index);
825
a01e93f1 826 gcc_assert (loop_preheader_edge (loop)->src == e->dest);
0b90c541 827
a01e93f1
YR
828 if (guard == fe)
829 {
830 e->flags = EDGE_TRUE_VALUE;
831 flags |= EDGE_FALSE_VALUE;
0b90c541 832 not_guard = te;
a01e93f1
YR
833 }
834 else
835 {
836 e->flags = EDGE_FALSE_VALUE;
837 flags |= EDGE_TRUE_VALUE;
0b90c541 838 not_guard = fe;
a01e93f1
YR
839 }
840 new_edge = make_edge (pre_header, exit->dest, flags);
0b90c541
JH
841
842 /* Determine the probability that we skip the loop. Assume that loop has
843 same average number of iterations regardless outcome of guard. */
844 new_edge->probability = guard->probability;
3995f3a2
JH
845 profile_count skip_count = guard->src->count > 0
846 ? guard->count.apply_scale (pre_header->count,
847 guard->src->count)
848 : guard->count.apply_probability (new_edge->probability);
0b90c541
JH
849
850 if (skip_count > e->count)
851 {
852 fprintf (dump_file, " Capping count; expect profile inconsistency\n");
853 skip_count = e->count;
854 }
855 new_edge->count = skip_count;
856 if (dump_file && (dump_flags & TDF_DETAILS))
857 fprintf (dump_file, " Estimated probability of skipping loop is %i\n",
858 new_edge->probability);
859
860 /* Update profile after the transform:
861
862 First decrease count of path from newly hoisted loop guard
863 to loop header... */
864 e->count -= skip_count;
865 e->probability = REG_BR_PROB_BASE - new_edge->probability;
866 e->dest->count = e->count;
867 e->dest->frequency = EDGE_FREQUENCY (e);
868
869 /* ... now update profile to represent that original guard will be optimized
870 away ... */
871 guard->probability = 0;
3995f3a2 872 guard->count = profile_count::zero ();
0b90c541
JH
873 not_guard->probability = REG_BR_PROB_BASE;
874 /* This count is wrong (frequency of not_guard does not change),
875 but will be scaled later. */
876 not_guard->count = guard->src->count;
877
878 /* ... finally scale everything in the loop except for guarded basic blocks
879 where profile does not change. */
880 basic_block *body = get_loop_body (loop);
da9cd044 881
0b90c541
JH
882 if (dump_file && (dump_flags & TDF_DETAILS))
883 fprintf (dump_file, " Scaling nonguarded BBs in loop:");
884 for (unsigned int i = 0; i < loop->num_nodes; i++)
885 {
886 basic_block bb = body[i];
887 if (!dominated_by_p (CDI_DOMINATORS, bb, not_guard->dest))
888 {
889 if (dump_file && (dump_flags & TDF_DETAILS))
890 fprintf (dump_file, " %i", bb->index);
891 scale_bbs_frequencies_int (&bb, 1, e->probability, REG_BR_PROB_BASE);
892 }
893 }
894
a01e93f1
YR
895 if (fix_dom_of_exit)
896 set_immediate_dominator (CDI_DOMINATORS, exit->dest, pre_header);
897 /* Add NEW_ADGE argument for all phi in post-header block. */
898 bb = exit->dest;
899 for (gphi_iterator gsi = gsi_start_phis (bb);
900 !gsi_end_p (gsi); gsi_next (&gsi))
901 {
902 gphi *phi = gsi.phi ();
903 tree arg;
904 if (virtual_operand_p (gimple_phi_result (phi)))
905 {
906 arg = get_vop_from_header (loop);
907 if (arg == NULL_TREE)
908 /* Use exit edge argument. */
909 arg = PHI_ARG_DEF_FROM_EDGE (phi, exit);
910 add_phi_arg (phi, arg, new_edge, UNKNOWN_LOCATION);
911 }
912 else
913 {
914 /* Use exit edge argument. */
915 arg = PHI_ARG_DEF_FROM_EDGE (phi, exit);
916 add_phi_arg (phi, arg, new_edge, UNKNOWN_LOCATION);
917 }
918 }
919
a01e93f1 920 if (dump_file && (dump_flags & TDF_DETAILS))
0b90c541 921 fprintf (dump_file, "\n guard hoisted.\n");
da9cd044
ML
922
923 free (body);
a01e93f1
YR
924}
925
926/* Return true if phi argument for exit edge can be used
927 for edge around loop. */
928
929static bool
930check_exit_phi (struct loop *loop)
931{
932 edge exit = single_exit (loop);
933 basic_block pre_header = loop_preheader_edge (loop)->src;
934
935 for (gphi_iterator gsi = gsi_start_phis (exit->dest);
936 !gsi_end_p (gsi); gsi_next (&gsi))
937 {
938 gphi *phi = gsi.phi ();
939 tree arg;
940 gimple *def;
941 basic_block def_bb;
942 if (virtual_operand_p (gimple_phi_result (phi)))
943 continue;
944 arg = PHI_ARG_DEF_FROM_EDGE (phi, exit);
945 if (TREE_CODE (arg) != SSA_NAME)
946 continue;
947 def = SSA_NAME_DEF_STMT (arg);
948 if (!def)
949 continue;
950 def_bb = gimple_bb (def);
951 if (!def_bb)
952 continue;
953 if (!dominated_by_p (CDI_DOMINATORS, pre_header, def_bb))
954 /* Definition inside loop! */
955 return false;
956 /* Check loop closed phi invariant. */
957 if (!flow_bb_inside_loop_p (def_bb->loop_father, pre_header))
958 return false;
959 }
960 return true;
961}
962
71343877
AM
963/* Loop unswitching pass. */
964
71343877
AM
965namespace {
966
967const pass_data pass_data_tree_unswitch =
968{
969 GIMPLE_PASS, /* type */
970 "unswitch", /* name */
971 OPTGROUP_LOOP, /* optinfo_flags */
71343877
AM
972 TV_TREE_LOOP_UNSWITCH, /* tv_id */
973 PROP_cfg, /* properties_required */
974 0, /* properties_provided */
975 0, /* properties_destroyed */
976 0, /* todo_flags_start */
977 0, /* todo_flags_finish */
978};
979
980class pass_tree_unswitch : public gimple_opt_pass
981{
982public:
983 pass_tree_unswitch (gcc::context *ctxt)
984 : gimple_opt_pass (pass_data_tree_unswitch, ctxt)
985 {}
986
987 /* opt_pass methods: */
1a3d085c 988 virtual bool gate (function *) { return flag_unswitch_loops != 0; }
be55bfe6 989 virtual unsigned int execute (function *);
71343877
AM
990
991}; // class pass_tree_unswitch
992
be55bfe6
TS
993unsigned int
994pass_tree_unswitch::execute (function *fun)
995{
996 if (number_of_loops (fun) <= 1)
997 return 0;
998
999 return tree_ssa_unswitch_loops ();
1000}
1001
71343877
AM
1002} // anon namespace
1003
1004gimple_opt_pass *
1005make_pass_tree_unswitch (gcc::context *ctxt)
1006{
1007 return new pass_tree_unswitch (ctxt);
1008}
1009
1010