lto-cgraph.c (output_profile_summary, [...]): Use gcov streaming; stream hot bb thres...
[gcc.git] / gcc / sese.c
1 /* Single entry single exit control flow regions.
2 Copyright (C) 2008-2013 Free Software Foundation, Inc.
3 Contributed by Jan Sjodin <jan.sjodin@amd.com> and
4 Sebastian Pop <sebastian.pop@amd.com>.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tree-pretty-print.h"
26 #include "tree-flow.h"
27 #include "cfgloop.h"
28 #include "tree-chrec.h"
29 #include "tree-data-ref.h"
30 #include "tree-scalar-evolution.h"
31 #include "tree-pass.h"
32 #include "value-prof.h"
33 #include "sese.h"
34
35 /* Print to stderr the element ELT. */
36
37 static void
38 debug_rename_elt (rename_map_elt elt)
39 {
40 fprintf (stderr, "(");
41 print_generic_expr (stderr, elt->old_name, 0);
42 fprintf (stderr, ", ");
43 print_generic_expr (stderr, elt->expr, 0);
44 fprintf (stderr, ")\n");
45 }
46
47 /* Helper function for debug_rename_map. */
48
49 static int
50 debug_rename_map_1 (void **slot, void *s ATTRIBUTE_UNUSED)
51 {
52 struct rename_map_elt_s *entry = (struct rename_map_elt_s *) *slot;
53 debug_rename_elt (entry);
54 return 1;
55 }
56
57 /* Print to stderr all the elements of RENAME_MAP. */
58
59 DEBUG_FUNCTION void
60 debug_rename_map (htab_t rename_map)
61 {
62 htab_traverse (rename_map, debug_rename_map_1, NULL);
63 }
64
65 /* Computes a hash function for database element ELT. */
66
67 hashval_t
68 rename_map_elt_info (const void *elt)
69 {
70 return SSA_NAME_VERSION (((const struct rename_map_elt_s *) elt)->old_name);
71 }
72
73 /* Compares database elements E1 and E2. */
74
75 int
76 eq_rename_map_elts (const void *e1, const void *e2)
77 {
78 const struct rename_map_elt_s *elt1 = (const struct rename_map_elt_s *) e1;
79 const struct rename_map_elt_s *elt2 = (const struct rename_map_elt_s *) e2;
80
81 return (elt1->old_name == elt2->old_name);
82 }
83
84 \f
85
86 /* Print to stderr the element ELT. */
87
88 static void
89 debug_ivtype_elt (ivtype_map_elt elt)
90 {
91 fprintf (stderr, "(%s, ", elt->cloog_iv);
92 print_generic_expr (stderr, elt->type, 0);
93 fprintf (stderr, ")\n");
94 }
95
96 /* Helper function for debug_ivtype_map. */
97
98 static int
99 debug_ivtype_map_1 (void **slot, void *s ATTRIBUTE_UNUSED)
100 {
101 struct ivtype_map_elt_s *entry = (struct ivtype_map_elt_s *) *slot;
102 debug_ivtype_elt (entry);
103 return 1;
104 }
105
106 /* Print to stderr all the elements of MAP. */
107
108 DEBUG_FUNCTION void
109 debug_ivtype_map (htab_t map)
110 {
111 htab_traverse (map, debug_ivtype_map_1, NULL);
112 }
113
114 /* Compares database elements E1 and E2. */
115
116 int
117 eq_ivtype_map_elts (const void *e1, const void *e2)
118 {
119 const struct ivtype_map_elt_s *elt1 = (const struct ivtype_map_elt_s *) e1;
120 const struct ivtype_map_elt_s *elt2 = (const struct ivtype_map_elt_s *) e2;
121
122 return (elt1->cloog_iv == elt2->cloog_iv);
123 }
124
125 \f
126
127 /* Record LOOP as occurring in REGION. */
128
129 static void
130 sese_record_loop (sese region, loop_p loop)
131 {
132 if (sese_contains_loop (region, loop))
133 return;
134
135 bitmap_set_bit (SESE_LOOPS (region), loop->num);
136 SESE_LOOP_NEST (region).safe_push (loop);
137 }
138
139 /* Build the loop nests contained in REGION. Returns true when the
140 operation was successful. */
141
142 void
143 build_sese_loop_nests (sese region)
144 {
145 unsigned i;
146 basic_block bb;
147 struct loop *loop0, *loop1;
148
149 FOR_EACH_BB (bb)
150 if (bb_in_sese_p (bb, region))
151 {
152 struct loop *loop = bb->loop_father;
153
154 /* Only add loops if they are completely contained in the SCoP. */
155 if (loop->header == bb
156 && bb_in_sese_p (loop->latch, region))
157 sese_record_loop (region, loop);
158 }
159
160 /* Make sure that the loops in the SESE_LOOP_NEST are ordered. It
161 can be the case that an inner loop is inserted before an outer
162 loop. To avoid this, semi-sort once. */
163 FOR_EACH_VEC_ELT (SESE_LOOP_NEST (region), i, loop0)
164 {
165 if (SESE_LOOP_NEST (region).length () == i + 1)
166 break;
167
168 loop1 = SESE_LOOP_NEST (region)[i + 1];
169 if (loop0->num > loop1->num)
170 {
171 SESE_LOOP_NEST (region)[i] = loop1;
172 SESE_LOOP_NEST (region)[i + 1] = loop0;
173 }
174 }
175 }
176
177 /* For a USE in BB, if BB is outside REGION, mark the USE in the
178 LIVEOUTS set. */
179
180 static void
181 sese_build_liveouts_use (sese region, bitmap liveouts, basic_block bb,
182 tree use)
183 {
184 unsigned ver;
185 basic_block def_bb;
186
187 if (TREE_CODE (use) != SSA_NAME)
188 return;
189
190 ver = SSA_NAME_VERSION (use);
191 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
192
193 if (!def_bb
194 || !bb_in_sese_p (def_bb, region)
195 || bb_in_sese_p (bb, region))
196 return;
197
198 bitmap_set_bit (liveouts, ver);
199 }
200
201 /* Marks for rewrite all the SSA_NAMES defined in REGION and that are
202 used in BB that is outside of the REGION. */
203
204 static void
205 sese_build_liveouts_bb (sese region, bitmap liveouts, basic_block bb)
206 {
207 gimple_stmt_iterator bsi;
208 edge e;
209 edge_iterator ei;
210 ssa_op_iter iter;
211 use_operand_p use_p;
212
213 FOR_EACH_EDGE (e, ei, bb->succs)
214 for (bsi = gsi_start_phis (e->dest); !gsi_end_p (bsi); gsi_next (&bsi))
215 sese_build_liveouts_use (region, liveouts, bb,
216 PHI_ARG_DEF_FROM_EDGE (gsi_stmt (bsi), e));
217
218 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
219 {
220 gimple stmt = gsi_stmt (bsi);
221
222 if (is_gimple_debug (stmt))
223 continue;
224
225 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_ALL_USES)
226 sese_build_liveouts_use (region, liveouts, bb, USE_FROM_PTR (use_p));
227 }
228 }
229
230 /* For a USE in BB, return true if BB is outside REGION and it's not
231 in the LIVEOUTS set. */
232
233 static bool
234 sese_bad_liveouts_use (sese region, bitmap liveouts, basic_block bb,
235 tree use)
236 {
237 unsigned ver;
238 basic_block def_bb;
239
240 if (TREE_CODE (use) != SSA_NAME)
241 return false;
242
243 ver = SSA_NAME_VERSION (use);
244
245 /* If it's in liveouts, the variable will get a new PHI node, and
246 the debug use will be properly adjusted. */
247 if (bitmap_bit_p (liveouts, ver))
248 return false;
249
250 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
251
252 if (!def_bb
253 || !bb_in_sese_p (def_bb, region)
254 || bb_in_sese_p (bb, region))
255 return false;
256
257 return true;
258 }
259
260 /* Reset debug stmts that reference SSA_NAMES defined in REGION that
261 are not marked as liveouts. */
262
263 static void
264 sese_reset_debug_liveouts_bb (sese region, bitmap liveouts, basic_block bb)
265 {
266 gimple_stmt_iterator bsi;
267 ssa_op_iter iter;
268 use_operand_p use_p;
269
270 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
271 {
272 gimple stmt = gsi_stmt (bsi);
273
274 if (!is_gimple_debug (stmt))
275 continue;
276
277 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_ALL_USES)
278 if (sese_bad_liveouts_use (region, liveouts, bb,
279 USE_FROM_PTR (use_p)))
280 {
281 gimple_debug_bind_reset_value (stmt);
282 update_stmt (stmt);
283 break;
284 }
285 }
286 }
287
288 /* Build the LIVEOUTS of REGION: the set of variables defined inside
289 and used outside the REGION. */
290
291 static void
292 sese_build_liveouts (sese region, bitmap liveouts)
293 {
294 basic_block bb;
295
296 FOR_EACH_BB (bb)
297 sese_build_liveouts_bb (region, liveouts, bb);
298 if (MAY_HAVE_DEBUG_STMTS)
299 FOR_EACH_BB (bb)
300 sese_reset_debug_liveouts_bb (region, liveouts, bb);
301 }
302
303 /* Builds a new SESE region from edges ENTRY and EXIT. */
304
305 sese
306 new_sese (edge entry, edge exit)
307 {
308 sese region = XNEW (struct sese_s);
309
310 SESE_ENTRY (region) = entry;
311 SESE_EXIT (region) = exit;
312 SESE_LOOPS (region) = BITMAP_ALLOC (NULL);
313 SESE_LOOP_NEST (region).create (3);
314 SESE_ADD_PARAMS (region) = true;
315 SESE_PARAMS (region).create (3);
316
317 return region;
318 }
319
320 /* Deletes REGION. */
321
322 void
323 free_sese (sese region)
324 {
325 if (SESE_LOOPS (region))
326 SESE_LOOPS (region) = BITMAP_ALLOC (NULL);
327
328 SESE_PARAMS (region).release ();
329 SESE_LOOP_NEST (region).release ();
330
331 XDELETE (region);
332 }
333
334 /* Add exit phis for USE on EXIT. */
335
336 static void
337 sese_add_exit_phis_edge (basic_block exit, tree use, edge false_e, edge true_e)
338 {
339 gimple phi = create_phi_node (NULL_TREE, exit);
340 create_new_def_for (use, phi, gimple_phi_result_ptr (phi));
341 add_phi_arg (phi, use, false_e, UNKNOWN_LOCATION);
342 add_phi_arg (phi, use, true_e, UNKNOWN_LOCATION);
343 }
344
345 /* Insert in the block BB phi nodes for variables defined in REGION
346 and used outside the REGION. The code generation moves REGION in
347 the else clause of an "if (1)" and generates code in the then
348 clause that is at this point empty:
349
350 | if (1)
351 | empty;
352 | else
353 | REGION;
354 */
355
356 void
357 sese_insert_phis_for_liveouts (sese region, basic_block bb,
358 edge false_e, edge true_e)
359 {
360 unsigned i;
361 bitmap_iterator bi;
362 bitmap liveouts = BITMAP_ALLOC (NULL);
363
364 update_ssa (TODO_update_ssa);
365
366 sese_build_liveouts (region, liveouts);
367 EXECUTE_IF_SET_IN_BITMAP (liveouts, 0, i, bi)
368 sese_add_exit_phis_edge (bb, ssa_name (i), false_e, true_e);
369 BITMAP_FREE (liveouts);
370
371 update_ssa (TODO_update_ssa);
372 }
373
374 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag set. */
375
376 edge
377 get_true_edge_from_guard_bb (basic_block bb)
378 {
379 edge e;
380 edge_iterator ei;
381
382 FOR_EACH_EDGE (e, ei, bb->succs)
383 if (e->flags & EDGE_TRUE_VALUE)
384 return e;
385
386 gcc_unreachable ();
387 return NULL;
388 }
389
390 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag cleared. */
391
392 edge
393 get_false_edge_from_guard_bb (basic_block bb)
394 {
395 edge e;
396 edge_iterator ei;
397
398 FOR_EACH_EDGE (e, ei, bb->succs)
399 if (!(e->flags & EDGE_TRUE_VALUE))
400 return e;
401
402 gcc_unreachable ();
403 return NULL;
404 }
405
406 /* Returns the expression associated to OLD_NAME in RENAME_MAP. */
407
408 static tree
409 get_rename (htab_t rename_map, tree old_name)
410 {
411 struct rename_map_elt_s tmp;
412 PTR *slot;
413
414 gcc_assert (TREE_CODE (old_name) == SSA_NAME);
415 tmp.old_name = old_name;
416 slot = htab_find_slot (rename_map, &tmp, NO_INSERT);
417
418 if (slot && *slot)
419 return ((rename_map_elt) *slot)->expr;
420
421 return NULL_TREE;
422 }
423
424 /* Register in RENAME_MAP the rename tuple (OLD_NAME, EXPR). */
425
426 static void
427 set_rename (htab_t rename_map, tree old_name, tree expr)
428 {
429 struct rename_map_elt_s tmp;
430 PTR *slot;
431
432 if (old_name == expr)
433 return;
434
435 tmp.old_name = old_name;
436 slot = htab_find_slot (rename_map, &tmp, INSERT);
437
438 if (!slot)
439 return;
440
441 free (*slot);
442
443 *slot = new_rename_map_elt (old_name, expr);
444 }
445
446 /* Renames the scalar uses of the statement COPY, using the
447 substitution map RENAME_MAP, inserting the gimplification code at
448 GSI_TGT, for the translation REGION, with the original copied
449 statement in LOOP, and using the induction variable renaming map
450 IV_MAP. Returns true when something has been renamed. GLOOG_ERROR
451 is set when the code generation cannot continue. */
452
453 static bool
454 rename_uses (gimple copy, htab_t rename_map, gimple_stmt_iterator *gsi_tgt,
455 sese region, loop_p loop, vec<tree> iv_map,
456 bool *gloog_error)
457 {
458 use_operand_p use_p;
459 ssa_op_iter op_iter;
460 bool changed = false;
461
462 if (is_gimple_debug (copy))
463 {
464 if (gimple_debug_bind_p (copy))
465 gimple_debug_bind_reset_value (copy);
466 else if (gimple_debug_source_bind_p (copy))
467 return false;
468 else
469 gcc_unreachable ();
470
471 return false;
472 }
473
474 FOR_EACH_SSA_USE_OPERAND (use_p, copy, op_iter, SSA_OP_USE)
475 {
476 tree old_name = USE_FROM_PTR (use_p);
477 tree new_expr, scev;
478 gimple_seq stmts;
479
480 if (TREE_CODE (old_name) != SSA_NAME
481 || SSA_NAME_IS_DEFAULT_DEF (old_name))
482 continue;
483
484 changed = true;
485 new_expr = get_rename (rename_map, old_name);
486 if (new_expr)
487 {
488 tree type_old_name = TREE_TYPE (old_name);
489 tree type_new_expr = TREE_TYPE (new_expr);
490
491 if (type_old_name != type_new_expr
492 || TREE_CODE (new_expr) != SSA_NAME)
493 {
494 tree var = create_tmp_var (type_old_name, "var");
495
496 if (!useless_type_conversion_p (type_old_name, type_new_expr))
497 new_expr = fold_convert (type_old_name, new_expr);
498
499 new_expr = force_gimple_operand (new_expr, &stmts, true, var);
500 gsi_insert_seq_before (gsi_tgt, stmts, GSI_SAME_STMT);
501 }
502
503 replace_exp (use_p, new_expr);
504 continue;
505 }
506
507 scev = scalar_evolution_in_region (region, loop, old_name);
508
509 /* At this point we should know the exact scev for each
510 scalar SSA_NAME used in the scop: all the other scalar
511 SSA_NAMEs should have been translated out of SSA using
512 arrays with one element. */
513 if (chrec_contains_undetermined (scev))
514 {
515 *gloog_error = true;
516 new_expr = build_zero_cst (TREE_TYPE (old_name));
517 }
518 else
519 new_expr = chrec_apply_map (scev, iv_map);
520
521 /* The apply should produce an expression tree containing
522 the uses of the new induction variables. We should be
523 able to use new_expr instead of the old_name in the newly
524 generated loop nest. */
525 if (chrec_contains_undetermined (new_expr)
526 || tree_contains_chrecs (new_expr, NULL))
527 {
528 *gloog_error = true;
529 new_expr = build_zero_cst (TREE_TYPE (old_name));
530 }
531 else
532 /* Replace the old_name with the new_expr. */
533 new_expr = force_gimple_operand (unshare_expr (new_expr), &stmts,
534 true, NULL_TREE);
535
536 gsi_insert_seq_before (gsi_tgt, stmts, GSI_SAME_STMT);
537 replace_exp (use_p, new_expr);
538
539 if (TREE_CODE (new_expr) == INTEGER_CST
540 && is_gimple_assign (copy))
541 {
542 tree rhs = gimple_assign_rhs1 (copy);
543
544 if (TREE_CODE (rhs) == ADDR_EXPR)
545 recompute_tree_invariant_for_addr_expr (rhs);
546 }
547
548 set_rename (rename_map, old_name, new_expr);
549 }
550
551 return changed;
552 }
553
554 /* Duplicates the statements of basic block BB into basic block NEW_BB
555 and compute the new induction variables according to the IV_MAP.
556 GLOOG_ERROR is set when the code generation cannot continue. */
557
558 static void
559 graphite_copy_stmts_from_block (basic_block bb, basic_block new_bb,
560 htab_t rename_map,
561 vec<tree> iv_map, sese region,
562 bool *gloog_error)
563 {
564 gimple_stmt_iterator gsi, gsi_tgt;
565 loop_p loop = bb->loop_father;
566
567 gsi_tgt = gsi_start_bb (new_bb);
568 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
569 {
570 def_operand_p def_p;
571 ssa_op_iter op_iter;
572 gimple stmt = gsi_stmt (gsi);
573 gimple copy;
574 tree lhs;
575
576 /* Do not copy labels or conditions. */
577 if (gimple_code (stmt) == GIMPLE_LABEL
578 || gimple_code (stmt) == GIMPLE_COND)
579 continue;
580
581 /* Do not copy induction variables. */
582 if (is_gimple_assign (stmt)
583 && (lhs = gimple_assign_lhs (stmt))
584 && TREE_CODE (lhs) == SSA_NAME
585 && is_gimple_reg (lhs)
586 && scev_analyzable_p (lhs, region))
587 continue;
588
589 /* Create a new copy of STMT and duplicate STMT's virtual
590 operands. */
591 copy = gimple_copy (stmt);
592 gsi_insert_after (&gsi_tgt, copy, GSI_NEW_STMT);
593
594 maybe_duplicate_eh_stmt (copy, stmt);
595 gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
596
597 /* Create new names for all the definitions created by COPY and
598 add replacement mappings for each new name. */
599 FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
600 {
601 tree old_name = DEF_FROM_PTR (def_p);
602 tree new_name = create_new_def_for (old_name, copy, def_p);
603 set_rename (rename_map, old_name, new_name);
604 }
605
606 if (rename_uses (copy, rename_map, &gsi_tgt, region, loop, iv_map,
607 gloog_error))
608 {
609 gcc_assert (gsi_stmt (gsi_tgt) == copy);
610 fold_stmt_inplace (&gsi_tgt);
611 }
612
613 update_stmt (copy);
614 }
615 }
616
617 /* Copies BB and includes in the copied BB all the statements that can
618 be reached following the use-def chains from the memory accesses,
619 and returns the next edge following this new block. GLOOG_ERROR is
620 set when the code generation cannot continue. */
621
622 edge
623 copy_bb_and_scalar_dependences (basic_block bb, sese region,
624 edge next_e, vec<tree> iv_map,
625 bool *gloog_error)
626 {
627 basic_block new_bb = split_edge (next_e);
628 htab_t rename_map = htab_create (10, rename_map_elt_info,
629 eq_rename_map_elts, free);
630
631 next_e = single_succ_edge (new_bb);
632 graphite_copy_stmts_from_block (bb, new_bb, rename_map, iv_map, region,
633 gloog_error);
634 remove_phi_nodes (new_bb);
635 htab_delete (rename_map);
636
637 return next_e;
638 }
639
640 /* Returns the outermost loop in SCOP that contains BB. */
641
642 struct loop *
643 outermost_loop_in_sese (sese region, basic_block bb)
644 {
645 struct loop *nest;
646
647 nest = bb->loop_father;
648 while (loop_outer (nest)
649 && loop_in_sese_p (loop_outer (nest), region))
650 nest = loop_outer (nest);
651
652 return nest;
653 }
654
655 /* Sets the false region of an IF_REGION to REGION. */
656
657 void
658 if_region_set_false_region (ifsese if_region, sese region)
659 {
660 basic_block condition = if_region_get_condition_block (if_region);
661 edge false_edge = get_false_edge_from_guard_bb (condition);
662 basic_block dummy = false_edge->dest;
663 edge entry_region = SESE_ENTRY (region);
664 edge exit_region = SESE_EXIT (region);
665 basic_block before_region = entry_region->src;
666 basic_block last_in_region = exit_region->src;
667 void **slot = htab_find_slot_with_hash (current_loops->exits, exit_region,
668 htab_hash_pointer (exit_region),
669 NO_INSERT);
670
671 entry_region->flags = false_edge->flags;
672 false_edge->flags = exit_region->flags;
673
674 redirect_edge_pred (entry_region, condition);
675 redirect_edge_pred (exit_region, before_region);
676 redirect_edge_pred (false_edge, last_in_region);
677 redirect_edge_succ (false_edge, single_succ (dummy));
678 delete_basic_block (dummy);
679
680 exit_region->flags = EDGE_FALLTHRU;
681 recompute_all_dominators ();
682
683 SESE_EXIT (region) = false_edge;
684
685 free (if_region->false_region);
686 if_region->false_region = region;
687
688 if (slot)
689 {
690 struct loop_exit *loop_exit = ggc_alloc_cleared_loop_exit ();
691
692 memcpy (loop_exit, *((struct loop_exit **) slot), sizeof (struct loop_exit));
693 htab_clear_slot (current_loops->exits, slot);
694
695 slot = htab_find_slot_with_hash (current_loops->exits, false_edge,
696 htab_hash_pointer (false_edge),
697 INSERT);
698 loop_exit->e = false_edge;
699 *slot = loop_exit;
700 false_edge->src->loop_father->exits->next = loop_exit;
701 }
702 }
703
704 /* Creates an IFSESE with CONDITION on edge ENTRY. */
705
706 static ifsese
707 create_if_region_on_edge (edge entry, tree condition)
708 {
709 edge e;
710 edge_iterator ei;
711 sese sese_region = XNEW (struct sese_s);
712 sese true_region = XNEW (struct sese_s);
713 sese false_region = XNEW (struct sese_s);
714 ifsese if_region = XNEW (struct ifsese_s);
715 edge exit = create_empty_if_region_on_edge (entry, condition);
716
717 if_region->region = sese_region;
718 if_region->region->entry = entry;
719 if_region->region->exit = exit;
720
721 FOR_EACH_EDGE (e, ei, entry->dest->succs)
722 {
723 if (e->flags & EDGE_TRUE_VALUE)
724 {
725 true_region->entry = e;
726 true_region->exit = single_succ_edge (e->dest);
727 if_region->true_region = true_region;
728 }
729 else if (e->flags & EDGE_FALSE_VALUE)
730 {
731 false_region->entry = e;
732 false_region->exit = single_succ_edge (e->dest);
733 if_region->false_region = false_region;
734 }
735 }
736
737 return if_region;
738 }
739
740 /* Moves REGION in a condition expression:
741 | if (1)
742 | ;
743 | else
744 | REGION;
745 */
746
747 ifsese
748 move_sese_in_condition (sese region)
749 {
750 basic_block pred_block = split_edge (SESE_ENTRY (region));
751 ifsese if_region;
752
753 SESE_ENTRY (region) = single_succ_edge (pred_block);
754 if_region = create_if_region_on_edge (single_pred_edge (pred_block), integer_one_node);
755 if_region_set_false_region (if_region, region);
756
757 return if_region;
758 }
759
760 /* Replaces the condition of the IF_REGION with CONDITION:
761 | if (CONDITION)
762 | true_region;
763 | else
764 | false_region;
765 */
766
767 void
768 set_ifsese_condition (ifsese if_region, tree condition)
769 {
770 sese region = if_region->region;
771 edge entry = region->entry;
772 basic_block bb = entry->dest;
773 gimple last = last_stmt (bb);
774 gimple_stmt_iterator gsi = gsi_last_bb (bb);
775 gimple cond_stmt;
776
777 gcc_assert (gimple_code (last) == GIMPLE_COND);
778
779 gsi_remove (&gsi, true);
780 gsi = gsi_last_bb (bb);
781 condition = force_gimple_operand_gsi (&gsi, condition, true, NULL,
782 false, GSI_NEW_STMT);
783 cond_stmt = gimple_build_cond_from_tree (condition, NULL_TREE, NULL_TREE);
784 gsi = gsi_last_bb (bb);
785 gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
786 }
787
788 /* Returns the scalar evolution of T in REGION. Every variable that
789 is not defined in the REGION is considered a parameter. */
790
791 tree
792 scalar_evolution_in_region (sese region, loop_p loop, tree t)
793 {
794 gimple def;
795 struct loop *def_loop;
796 basic_block before = block_before_sese (region);
797
798 /* SCOP parameters. */
799 if (TREE_CODE (t) == SSA_NAME
800 && !defined_in_sese_p (t, region))
801 return t;
802
803 if (TREE_CODE (t) != SSA_NAME
804 || loop_in_sese_p (loop, region))
805 return instantiate_scev (before, loop,
806 analyze_scalar_evolution (loop, t));
807
808 def = SSA_NAME_DEF_STMT (t);
809 def_loop = loop_containing_stmt (def);
810
811 if (loop_in_sese_p (def_loop, region))
812 {
813 t = analyze_scalar_evolution (def_loop, t);
814 def_loop = superloop_at_depth (def_loop, loop_depth (loop) + 1);
815 t = compute_overall_effect_of_inner_loop (def_loop, t);
816 return t;
817 }
818 else
819 return instantiate_scev (before, loop, t);
820 }