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