2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / sese.c
blob10ccee274fb4df2e088f9af0a494f10d0073d94f
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>.
6 This file is part of GCC.
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.
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.
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/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "hash-table.h"
26 #include "tree-pretty-print.h"
27 #include "tree-flow.h"
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"
33 #include "value-prof.h"
34 #include "sese.h"
36 /* Print to stderr the element ELT. */
38 static void
39 debug_rename_elt (rename_map_elt elt)
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");
48 /* Helper function for debug_rename_map. */
50 int
51 debug_rename_map_1 (rename_map_elt_s **slot, void *s ATTRIBUTE_UNUSED)
53 struct rename_map_elt_s *entry = *slot;
54 debug_rename_elt (entry);
55 return 1;
59 /* Hashtable helpers. */
61 struct rename_map_hasher : typed_free_remove <rename_map_elt_s>
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 *);
69 /* Computes a hash function for database element ELT. */
71 inline hashval_t
72 rename_map_hasher::hash (const value_type *elt)
74 return SSA_NAME_VERSION (elt->old_name);
77 /* Compares database elements E1 and E2. */
79 inline bool
80 rename_map_hasher::equal (const value_type *elt1, const compare_type *elt2)
82 return (elt1->old_name == elt2->old_name);
85 typedef hash_table <rename_map_hasher> rename_map_type;
88 /* Print to stderr all the elements of RENAME_MAP. */
90 DEBUG_FUNCTION void
91 debug_rename_map (rename_map_type rename_map)
93 rename_map.traverse <void *, debug_rename_map_1> (NULL);
96 /* Computes a hash function for database element ELT. */
98 hashval_t
99 rename_map_elt_info (const void *elt)
101 return SSA_NAME_VERSION (((const struct rename_map_elt_s *) elt)->old_name);
104 /* Compares database elements E1 and E2. */
107 eq_rename_map_elts (const void *e1, const void *e2)
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;
112 return (elt1->old_name == elt2->old_name);
117 /* Record LOOP as occurring in REGION. */
119 static void
120 sese_record_loop (sese region, loop_p loop)
122 if (sese_contains_loop (region, loop))
123 return;
125 bitmap_set_bit (SESE_LOOPS (region), loop->num);
126 SESE_LOOP_NEST (region).safe_push (loop);
129 /* Build the loop nests contained in REGION. Returns true when the
130 operation was successful. */
132 void
133 build_sese_loop_nests (sese region)
135 unsigned i;
136 basic_block bb;
137 struct loop *loop0, *loop1;
139 FOR_EACH_BB (bb)
140 if (bb_in_sese_p (bb, region))
142 struct loop *loop = bb->loop_father;
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);
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. */
153 FOR_EACH_VEC_ELT (SESE_LOOP_NEST (region), i, loop0)
155 if (SESE_LOOP_NEST (region).length () == i + 1)
156 break;
158 loop1 = SESE_LOOP_NEST (region)[i + 1];
159 if (loop0->num > loop1->num)
161 SESE_LOOP_NEST (region)[i] = loop1;
162 SESE_LOOP_NEST (region)[i + 1] = loop0;
167 /* For a USE in BB, if BB is outside REGION, mark the USE in the
168 LIVEOUTS set. */
170 static void
171 sese_build_liveouts_use (sese region, bitmap liveouts, basic_block bb,
172 tree use)
174 unsigned ver;
175 basic_block def_bb;
177 if (TREE_CODE (use) != SSA_NAME)
178 return;
180 ver = SSA_NAME_VERSION (use);
181 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
183 if (!def_bb
184 || !bb_in_sese_p (def_bb, region)
185 || bb_in_sese_p (bb, region))
186 return;
188 bitmap_set_bit (liveouts, ver);
191 /* Marks for rewrite all the SSA_NAMES defined in REGION and that are
192 used in BB that is outside of the REGION. */
194 static void
195 sese_build_liveouts_bb (sese region, bitmap liveouts, basic_block bb)
197 gimple_stmt_iterator bsi;
198 edge e;
199 edge_iterator ei;
200 ssa_op_iter iter;
201 use_operand_p use_p;
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));
208 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
210 gimple stmt = gsi_stmt (bsi);
212 if (is_gimple_debug (stmt))
213 continue;
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));
220 /* For a USE in BB, return true if BB is outside REGION and it's not
221 in the LIVEOUTS set. */
223 static bool
224 sese_bad_liveouts_use (sese region, bitmap liveouts, basic_block bb,
225 tree use)
227 unsigned ver;
228 basic_block def_bb;
230 if (TREE_CODE (use) != SSA_NAME)
231 return false;
233 ver = SSA_NAME_VERSION (use);
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;
240 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
242 if (!def_bb
243 || !bb_in_sese_p (def_bb, region)
244 || bb_in_sese_p (bb, region))
245 return false;
247 return true;
250 /* Reset debug stmts that reference SSA_NAMES defined in REGION that
251 are not marked as liveouts. */
253 static void
254 sese_reset_debug_liveouts_bb (sese region, bitmap liveouts, basic_block bb)
256 gimple_stmt_iterator bsi;
257 ssa_op_iter iter;
258 use_operand_p use_p;
260 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
262 gimple stmt = gsi_stmt (bsi);
264 if (!is_gimple_debug (stmt))
265 continue;
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)))
271 gimple_debug_bind_reset_value (stmt);
272 update_stmt (stmt);
273 break;
278 /* Build the LIVEOUTS of REGION: the set of variables defined inside
279 and used outside the REGION. */
281 static void
282 sese_build_liveouts (sese region, bitmap liveouts)
284 basic_block bb;
286 FOR_EACH_BB (bb)
287 sese_build_liveouts_bb (region, liveouts, bb);
288 if (MAY_HAVE_DEBUG_STMTS)
289 FOR_EACH_BB (bb)
290 sese_reset_debug_liveouts_bb (region, liveouts, bb);
293 /* Builds a new SESE region from edges ENTRY and EXIT. */
295 sese
296 new_sese (edge entry, edge exit)
298 sese region = XNEW (struct sese_s);
300 SESE_ENTRY (region) = entry;
301 SESE_EXIT (region) = exit;
302 SESE_LOOPS (region) = BITMAP_ALLOC (NULL);
303 SESE_LOOP_NEST (region).create (3);
304 SESE_ADD_PARAMS (region) = true;
305 SESE_PARAMS (region).create (3);
307 return region;
310 /* Deletes REGION. */
312 void
313 free_sese (sese region)
315 if (SESE_LOOPS (region))
316 SESE_LOOPS (region) = BITMAP_ALLOC (NULL);
318 SESE_PARAMS (region).release ();
319 SESE_LOOP_NEST (region).release ();
321 XDELETE (region);
324 /* Add exit phis for USE on EXIT. */
326 static void
327 sese_add_exit_phis_edge (basic_block exit, tree use, edge false_e, edge true_e)
329 gimple phi = create_phi_node (NULL_TREE, exit);
330 create_new_def_for (use, phi, gimple_phi_result_ptr (phi));
331 add_phi_arg (phi, use, false_e, UNKNOWN_LOCATION);
332 add_phi_arg (phi, use, true_e, UNKNOWN_LOCATION);
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:
340 | if (1)
341 | empty;
342 | else
343 | REGION;
346 void
347 sese_insert_phis_for_liveouts (sese region, basic_block bb,
348 edge false_e, edge true_e)
350 unsigned i;
351 bitmap_iterator bi;
352 bitmap liveouts = BITMAP_ALLOC (NULL);
354 update_ssa (TODO_update_ssa);
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);
361 update_ssa (TODO_update_ssa);
364 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag set. */
366 edge
367 get_true_edge_from_guard_bb (basic_block bb)
369 edge e;
370 edge_iterator ei;
372 FOR_EACH_EDGE (e, ei, bb->succs)
373 if (e->flags & EDGE_TRUE_VALUE)
374 return e;
376 gcc_unreachable ();
377 return NULL;
380 /* Returns the first successor edge of BB with EDGE_TRUE_VALUE flag cleared. */
382 edge
383 get_false_edge_from_guard_bb (basic_block bb)
385 edge e;
386 edge_iterator ei;
388 FOR_EACH_EDGE (e, ei, bb->succs)
389 if (!(e->flags & EDGE_TRUE_VALUE))
390 return e;
392 gcc_unreachable ();
393 return NULL;
396 /* Returns the expression associated to OLD_NAME in RENAME_MAP. */
398 static tree
399 get_rename (rename_map_type rename_map, tree old_name)
401 struct rename_map_elt_s tmp;
402 rename_map_elt_s **slot;
404 gcc_assert (TREE_CODE (old_name) == SSA_NAME);
405 tmp.old_name = old_name;
406 slot = rename_map.find_slot (&tmp, NO_INSERT);
408 if (slot && *slot)
409 return (*slot)->expr;
411 return NULL_TREE;
414 /* Register in RENAME_MAP the rename tuple (OLD_NAME, EXPR). */
416 static void
417 set_rename (rename_map_type rename_map, tree old_name, tree expr)
419 struct rename_map_elt_s tmp;
420 rename_map_elt_s **slot;
422 if (old_name == expr)
423 return;
425 tmp.old_name = old_name;
426 slot = rename_map.find_slot (&tmp, INSERT);
428 if (!slot)
429 return;
431 free (*slot);
433 *slot = new_rename_map_elt (old_name, expr);
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
440 IV_MAP. Returns true when something has been renamed. GLOOG_ERROR
441 is set when the code generation cannot continue. */
443 static bool
444 rename_uses (gimple copy, rename_map_type rename_map,
445 gimple_stmt_iterator *gsi_tgt,
446 sese region, loop_p loop, vec<tree> iv_map,
447 bool *gloog_error)
449 use_operand_p use_p;
450 ssa_op_iter op_iter;
451 bool changed = false;
453 if (is_gimple_debug (copy))
455 if (gimple_debug_bind_p (copy))
456 gimple_debug_bind_reset_value (copy);
457 else if (gimple_debug_source_bind_p (copy))
458 return false;
459 else
460 gcc_unreachable ();
462 return false;
465 FOR_EACH_SSA_USE_OPERAND (use_p, copy, op_iter, SSA_OP_USE)
467 tree old_name = USE_FROM_PTR (use_p);
468 tree new_expr, scev;
469 gimple_seq stmts;
471 if (TREE_CODE (old_name) != SSA_NAME
472 || SSA_NAME_IS_DEFAULT_DEF (old_name))
473 continue;
475 changed = true;
476 new_expr = get_rename (rename_map, old_name);
477 if (new_expr)
479 tree type_old_name = TREE_TYPE (old_name);
480 tree type_new_expr = TREE_TYPE (new_expr);
482 if (type_old_name != type_new_expr
483 || TREE_CODE (new_expr) != SSA_NAME)
485 tree var = create_tmp_var (type_old_name, "var");
487 if (!useless_type_conversion_p (type_old_name, type_new_expr))
488 new_expr = fold_convert (type_old_name, new_expr);
490 new_expr = force_gimple_operand (new_expr, &stmts, true, var);
491 gsi_insert_seq_before (gsi_tgt, stmts, GSI_SAME_STMT);
494 replace_exp (use_p, new_expr);
495 continue;
498 scev = scalar_evolution_in_region (region, loop, old_name);
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. */
504 if (chrec_contains_undetermined (scev))
506 *gloog_error = true;
507 new_expr = build_zero_cst (TREE_TYPE (old_name));
509 else
510 new_expr = chrec_apply_map (scev, iv_map);
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. */
516 if (chrec_contains_undetermined (new_expr)
517 || tree_contains_chrecs (new_expr, NULL))
519 *gloog_error = true;
520 new_expr = build_zero_cst (TREE_TYPE (old_name));
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);
527 gsi_insert_seq_before (gsi_tgt, stmts, GSI_SAME_STMT);
528 replace_exp (use_p, new_expr);
530 if (TREE_CODE (new_expr) == INTEGER_CST
531 && is_gimple_assign (copy))
533 tree rhs = gimple_assign_rhs1 (copy);
535 if (TREE_CODE (rhs) == ADDR_EXPR)
536 recompute_tree_invariant_for_addr_expr (rhs);
539 set_rename (rename_map, old_name, new_expr);
542 return changed;
545 /* Duplicates the statements of basic block BB into basic block NEW_BB
546 and compute the new induction variables according to the IV_MAP.
547 GLOOG_ERROR is set when the code generation cannot continue. */
549 static void
550 graphite_copy_stmts_from_block (basic_block bb, basic_block new_bb,
551 rename_map_type rename_map,
552 vec<tree> iv_map, sese region,
553 bool *gloog_error)
555 gimple_stmt_iterator gsi, gsi_tgt;
556 loop_p loop = bb->loop_father;
558 gsi_tgt = gsi_start_bb (new_bb);
559 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
561 def_operand_p def_p;
562 ssa_op_iter op_iter;
563 gimple stmt = gsi_stmt (gsi);
564 gimple copy;
565 tree lhs;
567 /* Do not copy labels or conditions. */
568 if (gimple_code (stmt) == GIMPLE_LABEL
569 || gimple_code (stmt) == GIMPLE_COND)
570 continue;
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))
578 continue;
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);
585 maybe_duplicate_eh_stmt (copy, stmt);
586 gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
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)
592 tree old_name = DEF_FROM_PTR (def_p);
593 tree new_name = create_new_def_for (old_name, copy, def_p);
594 set_rename (rename_map, old_name, new_name);
597 if (rename_uses (copy, rename_map, &gsi_tgt, region, loop, iv_map,
598 gloog_error))
600 gcc_assert (gsi_stmt (gsi_tgt) == copy);
601 fold_stmt_inplace (&gsi_tgt);
604 update_stmt (copy);
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,
610 and returns the next edge following this new block. GLOOG_ERROR is
611 set when the code generation cannot continue. */
613 edge
614 copy_bb_and_scalar_dependences (basic_block bb, sese region,
615 edge next_e, vec<tree> iv_map,
616 bool *gloog_error)
618 basic_block new_bb = split_edge (next_e);
619 rename_map_type rename_map;
620 rename_map.create (10);
622 next_e = single_succ_edge (new_bb);
623 graphite_copy_stmts_from_block (bb, new_bb, rename_map, iv_map, region,
624 gloog_error);
625 remove_phi_nodes (new_bb);
626 rename_map.dispose ();
628 return next_e;
631 /* Returns the outermost loop in SCOP that contains BB. */
633 struct loop *
634 outermost_loop_in_sese (sese region, basic_block bb)
636 struct loop *nest;
638 nest = bb->loop_father;
639 while (loop_outer (nest)
640 && loop_in_sese_p (loop_outer (nest), region))
641 nest = loop_outer (nest);
643 return nest;
646 /* Sets the false region of an IF_REGION to REGION. */
648 void
649 if_region_set_false_region (ifsese if_region, sese region)
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);
662 entry_region->flags = false_edge->flags;
663 false_edge->flags = exit_region->flags;
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);
671 exit_region->flags = EDGE_FALLTHRU;
672 recompute_all_dominators ();
674 SESE_EXIT (region) = false_edge;
676 free (if_region->false_region);
677 if_region->false_region = region;
679 if (slot)
681 struct loop_exit *loop_exit = ggc_alloc_cleared_loop_exit ();
683 memcpy (loop_exit, *((struct loop_exit **) slot), sizeof (struct loop_exit));
684 htab_clear_slot (current_loops->exits, slot);
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;
695 /* Creates an IFSESE with CONDITION on edge ENTRY. */
697 static ifsese
698 create_if_region_on_edge (edge entry, tree condition)
700 edge e;
701 edge_iterator ei;
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);
706 edge exit = create_empty_if_region_on_edge (entry, condition);
708 if_region->region = sese_region;
709 if_region->region->entry = entry;
710 if_region->region->exit = exit;
712 FOR_EACH_EDGE (e, ei, entry->dest->succs)
714 if (e->flags & EDGE_TRUE_VALUE)
716 true_region->entry = e;
717 true_region->exit = single_succ_edge (e->dest);
718 if_region->true_region = true_region;
720 else if (e->flags & EDGE_FALSE_VALUE)
722 false_region->entry = e;
723 false_region->exit = single_succ_edge (e->dest);
724 if_region->false_region = false_region;
728 return if_region;
731 /* Moves REGION in a condition expression:
732 | if (1)
734 | else
735 | REGION;
738 ifsese
739 move_sese_in_condition (sese region)
741 basic_block pred_block = split_edge (SESE_ENTRY (region));
742 ifsese if_region;
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);
748 return if_region;
751 /* Replaces the condition of the IF_REGION with CONDITION:
752 | if (CONDITION)
753 | true_region;
754 | else
755 | false_region;
758 void
759 set_ifsese_condition (ifsese if_region, tree condition)
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;
768 gcc_assert (gimple_code (last) == GIMPLE_COND);
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);
779 /* Returns the scalar evolution of T in REGION. Every variable that
780 is not defined in the REGION is considered a parameter. */
782 tree
783 scalar_evolution_in_region (sese region, loop_p loop, tree t)
785 gimple def;
786 struct loop *def_loop;
787 basic_block before = block_before_sese (region);
789 /* SCOP parameters. */
790 if (TREE_CODE (t) == SSA_NAME
791 && !defined_in_sese_p (t, region))
792 return t;
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));
799 def = SSA_NAME_DEF_STMT (t);
800 def_loop = loop_containing_stmt (def);
802 if (loop_in_sese_p (def_loop, region))
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;
809 else
810 return instantiate_scev (before, loop, t);