More doxygen documentation added.
[libfirm] / ir / ana / irscc.c
1 /* Copyright (C) 2002 by Universitaet Karlsruhe
2 * All rights reserved.
3 *
4 * Authors:  Goetz Lindenmaier
5 *
6 * irscc.c  Computing the strongly connected regions and building
7 * backedge/loop datastructures.
8 *
9 */
10
11 /* $Id$ */
12
13 #include <string.h>
14
15 #include "irloop_t.h"
16 #include "irnode.h"
17 #include "irgraph_t.h"
18 #include "array.h"
19 #include "xprintf.h"
20 #include "irgwalk.h"
21 #include "irprog.h"
22
23 ir_graph *outermost_ir_graph;      /* The outermost graph the scc is computed
24                                       for */
25 static ir_loop *current_loop;      /* Current loop construction is working
26                                       on. */
27 static int loop_node_cnt = 0;      /* Counts the number of allocated loop nodes.
28                                       Each loop node gets a unique number.
29                                       What for? ev. remove. @@@ */
30 static int current_dfn = 1;        /* Counter to generate depth first numbering
31                                       of visited nodes.  */
32
33 /**********************************************************************/
34 /* Node attributes needed for the construction.                      **/
35 /**********************************************************************/
36
37 typedef struct scc_info {
38   bool in_stack;         /* Marks whether node is on the stack. */
39   int dfn;               /* Depth first search number. */
40   int uplink;            /* dfn number of ancestor. */
41   ir_loop *loop;         /* Refers to the containing loop. */
42   /*
43       struct section *section;
44       xset def;
45       xset use;
46   */
47 } scc_info;
48
49 static INLINE scc_info* new_scc_info(void) {
50   scc_info *info = obstack_alloc (outermost_ir_graph->obst, sizeof (scc_info));
51   memset (info, 0, sizeof (scc_info));
52   return info;
53 }
54
55 static INLINE void
56 mark_irn_in_stack (ir_node *n) {
57   assert(get_irn_link(n));
58   ((scc_info *)get_irn_link(n))->in_stack = true;
59 }
60
61 static INLINE void
62 mark_irn_not_in_stack (ir_node *n) {
63   assert(get_irn_link(n));
64   ((scc_info *)get_irn_link(n))->in_stack = false;
65 }
66
67 static INLINE bool
68 irn_is_in_stack (ir_node *n) {
69   assert(get_irn_link(n));
70   return ((scc_info *)get_irn_link(n))->in_stack;
71 }
72
73 static INLINE void
74 set_irn_uplink (ir_node *n, int uplink) {
75   assert(get_irn_link(n));
76   ((scc_info *)get_irn_link(n))->uplink = uplink;
77 }
78
79 static INLINE int
80 get_irn_uplink (ir_node *n) {
81   assert(get_irn_link(n));
82   return ((scc_info *)get_irn_link(n))->uplink;
83 }
84
85 static INLINE void
86 set_irn_dfn (ir_node *n, int dfn) {
87   if (! get_irn_link(n)) { DDMN(n); DDME(get_irg_ent(current_ir_graph));}
88   assert(get_irn_link(n));
89   ((scc_info *)get_irn_link(n))->dfn = dfn;
90 }
91
92 static INLINE int
93 get_irn_dfn (ir_node *n) {
94   assert(get_irn_link(n));
95   return ((scc_info *)get_irn_link(n))->dfn;
96 }
97
98 /* Uses temporary information to set the loop */
99 static INLINE void
100 set_irn_loop_tmp (ir_node *n, ir_loop* loop) {
101   assert(get_irn_link(n));
102   ((scc_info *)get_irn_link(n))->loop = loop;
103 }
104
105 #if 0
106 /* Uses temporary information to get the loop */
107 static INLINE ir_loop *
108 get_irn_loop_tmp (ir_node *n) {
109   assert(get_irn_link(n));
110   return ((scc_info *)get_irn_link(n))->loop;
111 }
112 #endif
113
114 static ir_loop *find_nodes_loop (ir_node *n, ir_loop *l) {
115   int i;
116   ir_loop *res = NULL;
117
118   /* Test whether n is contained in this loop. */
119   for (i = 0; i < get_loop_n_nodes(l); i++)
120     if (n == get_loop_node(l, i)) return l;
121
122   /* Is this a leave in the loop tree? If so loop not found. */
123   if (get_loop_n_sons(l) == 0) return NULL;
124
125   /* Else descend in the loop tree. */
126   for (i = 0; i < get_loop_n_sons(l); i++) {
127     res = find_nodes_loop(n, get_loop_son(l, i));
128     if (res) break;
129   }
130   return res;
131 }
132
133 /* @@@ temporary implementation, costly!!! */
134 ir_loop * get_irn_loop(ir_node *n) {
135   ir_loop *l = get_irg_loop(current_ir_graph);
136   l = find_nodes_loop(n, l);
137   return l;
138 }
139
140 /**********************************************************************/
141 /* A stack.                                                          **/
142 /**********************************************************************/
143
144 static ir_node **stack = NULL;
145 static int tos = 0;                /* top of stack */
146
147 static INLINE void init_stack(void) {
148   if (stack) {
149     ARR_RESIZE (ir_node *, stack, 1000);
150   } else {
151     stack = NEW_ARR_F (ir_node *, 1000);
152   }
153   tos = 0;
154 }
155
156 #if 0
157 static INLINE void free_stack(void) {
158   DEL_ARR_F(stack);
159   stack = NULL;
160   tos = 0;
161 }
162 #endif
163
164 static INLINE void
165 push (ir_node *n)
166 {
167   //DDMN(n);
168
169   if (tos == ARR_LEN (stack)) {
170     int nlen = ARR_LEN (stack) * 2;
171     ARR_RESIZE (ir_node *, stack, nlen);
172   }
173   stack [tos++] = n;
174   mark_irn_in_stack(n);
175 }
176
177 static INLINE ir_node *
178 pop (void)
179 {
180   ir_node *n = stack[--tos];
181   mark_irn_not_in_stack(n);
182   return n;
183 }
184
185 /* The nodes up to n belong to the current loop.
186    Removes them from the stack and adds them to the current loop. */
187 static INLINE void
188 pop_scc_to_loop (ir_node *n)
189 {
190   ir_node *m;
191
192   for (;;) {
193     m = pop();
194     set_irn_dfn(m, loop_node_cnt);
195     loop_node_cnt++;
196     add_loop_node(current_loop, m);
197     set_irn_loop_tmp(m, current_loop);
198     if (m==n) break;
199   }
200 }
201
202 /* Removes and unmarks all nodes up to n from the stack.
203    The nodes must be visited once more to assign them to a scc. */
204 static INLINE void
205 pop_scc_unmark_visit (ir_node *n)
206 {
207   ir_node *m = NULL;
208
209   while (m != n) {
210     m = pop();
211     set_irn_visited(m, 0);
212   }
213 }
214
215 /**********************************************************************/
216 /* The loop datastructure.                                           **/
217 /**********************************************************************/
218
219 /* Allocates a new loop as son of current_loop.  Sets current_loop
220    to the new loop and returns the father. */
221 static ir_loop *new_loop (void) {
222   ir_loop *father, *son;
223
224   father = current_loop;
225
226   son = (ir_loop *) obstack_alloc (outermost_ir_graph->obst, sizeof (ir_loop));
227   memset (son, 0, sizeof (ir_loop));
228   son->kind = k_ir_loop;
229 /*  son->sons = NEW_ARR_F (ir_loop *, 0);
230   son->nodes = NEW_ARR_F (ir_node *, 0);
231   A. Schoesser: Removed, because array children was introduced,
232                 which contains both, nodes AND sons.
233                 This comment may be removed after beeing read by all important persons :) */
234   son->children = NEW_ARR_F (loop_element, 0);
235   son->n_nodes = 0;
236   son->n_sons=0;
237   if (father) {
238     son->outer_loop = father;
239     add_loop_son(father, son);
240     son->depth = father->depth+1;
241   } else {  /* The root loop */
242     son->outer_loop = son;
243     son->depth = 0;
244   }
245
246   current_loop = son;
247   return father;
248 }
249
250 #if 0
251 /* Finishes the datastructures, copies the arrays to the obstack
252    of current_ir_graph.
253    A. Schoesser: Caution: loop -> sons is gone. */
254 static void mature_loop (ir_loop *loop) {
255   ir_loop **new_sons;
256
257   new_sons = NEW_ARR_D (ir_loop *, current_ir_graph->obst, ARR_LEN(loop->sons));
258   memcpy (new_sons, loop->sons, sizeof (ir_loop *) * ARR_LEN(loop->sons));
259   DEL_ARR_F(loop->sons);
260   loop->sons = new_sons;
261 }
262 #endif
263
264 /* Returns outer loop, itself if outermost. */
265 ir_loop *get_loop_outer_loop (ir_loop *loop) {
266   assert(loop && loop->kind == k_ir_loop);
267   return loop->outer_loop;
268 }
269
270 /* Returns nesting depth of this loop */
271 int get_loop_depth (ir_loop *loop) {
272   assert(loop); assert(loop->kind == k_ir_loop);
273   return loop->depth;
274 }
275
276 /* Returns the number of inner loops */
277 int      get_loop_n_sons (ir_loop *loop) {
278   assert(loop && loop->kind == k_ir_loop);
279   return(loop -> n_sons);
280 }
281
282 /* Returns the pos`th loop_node-child              *
283  * TODO: This method isn`t very efficient !        *
284  * Returns NULL if there isnt`t a pos`th loop_node */
285 ir_loop *get_loop_son (ir_loop *loop, int pos) {
286   int child_nr = 0, loop_nr = -1;
287
288   assert(loop && loop->kind == k_ir_loop);
289   while(child_nr < ARR_LEN(loop->children))
290    {
291     if(*(loop -> children[child_nr].kind) == k_ir_loop)
292       loop_nr++;
293     if(loop_nr == pos)
294       return(loop -> children[child_nr].son);
295     child_nr++;
296    }
297   return NULL;
298 }
299
300 /* Use EXCLUSIVELY this function to add sons, otherwise the loop->n_sons
301    is invalid! */
302
303 static INLINE void
304 add_loop_son(ir_loop *loop, ir_loop *son) {
305   assert(loop && loop->kind == k_ir_loop);
306   assert(get_kind(son) == k_ir_loop);
307   ARR_APP1 (loop_element, loop->children, (loop_element) son);
308   loop -> n_sons++;
309 }
310
311 /* Returns the number of nodes in the loop */
312 int      get_loop_n_nodes (ir_loop *loop) {
313   assert(loop); assert(loop->kind == k_ir_loop);
314   return loop -> n_nodes;
315 /*  return ARR_LEN(loop->nodes); */
316 }
317
318 /* Returns the pos`th ir_node-child                *
319  * TODO: This method isn`t very efficient !        *
320  * Returns NULL if there isnt`t a pos`th ir_node   */
321 ir_node *get_loop_node (ir_loop *loop, int pos) {
322   int child_nr, node_nr = -1;
323
324   assert(loop && loop->kind == k_ir_loop);
325   assert(pos < get_loop_n_nodes(loop));
326
327   for (child_nr = 0; child_nr < ARR_LEN(loop->children); child_nr++) {
328     if(*(loop -> children[child_nr].kind) == k_ir_node)
329       node_nr++;
330     if(node_nr == pos)
331       return(loop -> children[child_nr].node);
332   }
333   assert(0 && "no child at pos found");
334   return NULL;
335 }
336
337 /* Use EXCLUSIVELY this function to add nodes, otherwise the loop->n_nodes
338    is invalid! */
339
340 static INLINE void
341 add_loop_node(ir_loop *loop, ir_node *n) {
342   assert(loop && loop->kind == k_ir_loop);
343   assert(get_kind(n) == k_ir_node);
344   ARR_APP1 (loop_element, loop->children, (loop_element) n);
345   loop->n_nodes++;
346 }
347
348 /** Returns the number of elements contained in loop.  */
349 int get_loop_n_elements (ir_loop *loop) {
350   assert(loop && loop->kind == k_ir_loop);
351   return(ARR_LEN(loop->children));
352 }
353
354 /*
355  Returns the pos`th loop element.
356  This may be a loop_node or a ir_node. The caller of this function has
357  to check the *(loop_element.kind) field for "k_ir_node" or "k_ir_loop"
358  and then select the apropriate "loop_element.node" or "loop_element.son".
359 */
360
361 loop_element get_loop_element (ir_loop *loop, int pos) {
362   assert(loop && loop->kind == k_ir_loop && pos < ARR_LEN(loop->children));
363
364   return(loop -> children[pos]);
365 }
366
367 /* The outermost loop is remarked in the surrounding graph. */
368 void     set_irg_loop(ir_graph *irg, ir_loop *loop) {
369   assert(irg);
370   irg->loop = loop;
371 }
372 ir_loop *get_irg_loop(ir_graph *irg) {
373   assert(irg);
374   return irg->loop;
375 }
376
377 /**********************************************************************/
378 /* Constructing and destructing the loop/backedge information.       **/
379 /**********************************************************************/
380
381 /* Initialization steps. **********************************************/
382
383 static INLINE void
384 init_node (ir_node *n, void *env) {
385   set_irn_link (n, new_scc_info());
386   clear_backedges(n);
387 #if 0
388   /* Also init nodes not visible in intraproc_view. */
389     /* @@@ init_node is called for too many nodes -- this wastes memory!.
390        The mem is not lost as its on the obstack. */
391   if (get_irn_op(n) == op_Filter) {
392     for (i = 0; i < get_Filter_n_cg_preds(n); i++)
393       init_node(get_Filter_cg_pred(n, i), NULL);
394   }
395   if (get_irn_op(n) == op_Block) {
396     for (i = 0; i < get_Block_cg_n_cfgpreds(n); i++) {
397       init_node(get_Block_cg_cfgpred(n, i), NULL);
398     }
399   }
400   /* The following pattern matches only after a call from above pattern. */
401   if ((get_irn_op(n) == op_Proj) /*&& (get_Proj_proj(n) == 0)*/) {
402     /* @@@ init_node is called for every proj -- this wastes memory!.
403        The mem is not lost as its on the obstack. */
404     ir_node *cb = get_Proj_pred(n);
405     if ((get_irn_op(cb) == op_CallBegin) ||
406         (get_irn_op(cb) == op_EndReg) ||
407         (get_irn_op(cb) == op_EndExcept)) {
408       init_node(cb, NULL);
409       init_node(get_nodes_Block(cb), NULL);
410     }
411 #endif
412 }
413
414 static INLINE void
415 init_scc (ir_graph *irg) {
416   current_dfn = 1;
417   loop_node_cnt = 0;
418   init_stack();
419   irg_walk_graph (irg, init_node, NULL, NULL);
420   /*
421   irg_walk (irg, link_to_reg_end, NULL, NULL);
422   */
423 }
424
425 static INLINE void
426 init_ip_scc (void) {
427   current_dfn = 1;
428   loop_node_cnt = 0;
429   init_stack();
430   cg_walk (init_node, NULL, NULL);
431 }
432
433 #if 0
434 Works, but is inefficient.
435 static INLINE void
436 init_ip_scc (void) {
437   int i;
438   interprocedural_view = 1;
439   current_dfn = 1;
440   loop_node_cnt = 0;
441   init_stack();
442   for (i = 0; i < get_irp_n_irgs(); i++) {
443     current_ir_graph = get_irp_irg(i);
444     irg_walk_graph (current_ir_graph, init_node, NULL, NULL);
445     /* @@@ decrease max_visited to avoide double walks */
446   }
447 }
448 #endif
449
450 /* Condition for breaking the recursion. */
451 static bool is_outermost_Start(ir_node *n) {
452   /* Test whether this is the outermost Start node.  If so
453      recursion must end. */
454   if ((get_irn_op(n) == op_Block)     &&
455       (get_Block_n_cfgpreds(n) == 1)  &&
456       (get_irn_op(skip_Proj(get_Block_cfgpred(n, 0))) == op_Start) &&
457       (get_nodes_Block(skip_Proj(get_Block_cfgpred(n, 0))) == n)) {
458     return true;
459   }
460 #if 0
461   /*  @@@ Bad condition:
462       not possible in interprocedural view as outermost_graph is
463       not necessarily the only with a dead-end start block.
464       Besides current_ir_graph is not set properly. */
465   if ((get_irn_op(n) == op_Block) &&
466       (n == get_irg_start_block(current_ir_graph))) {
467     if ((!interprocedural_view)  ||
468         (current_ir_graph == outermost_ir_graph))
469       return true;
470   }
471 #endif
472   return false;
473 }
474
475 /* Don't walk from nodes to blocks except for Control flow operations. */
476 static INLINE int
477 get_start_index(ir_node *n) {
478   if (is_cfop(n) || is_fragile_op(n) || get_irn_op(n) == op_Start)
479     return -1;
480   else
481     return 0;
482 }
483
484 /* Returns current_ir_graph and set it to the irg of predecessor index
485    of node n. */
486 static INLINE ir_graph *
487 switch_irg (ir_node *n, int index) {
488   ir_graph *old_current = current_ir_graph;
489
490   if (interprocedural_view) {
491     /* Only Filter and Block nodes can have predecessors in other graphs. */
492     if (get_irn_op(n) == op_Filter)
493       n = get_nodes_Block(n);
494     if (get_irn_op(n) == op_Block) {
495       ir_node *cfop = skip_Proj(get_Block_cfgpred(n, index));
496       if (is_ip_cfop(cfop)) {
497         current_ir_graph = get_irn_irg(cfop);
498         set_irg_visited(current_ir_graph, get_max_irg_visited());
499       }
500     }
501   }
502
503   return old_current;
504 }
505
506 /* Walks up the stack passing n and then finding the node
507    where we walked into the irg n is contained in.
508    Here we switch the irg. */
509 static ir_graph *
510 find_irg_on_stack (ir_node *n) {
511   ir_node *m;
512   ir_graph *old_current = current_ir_graph;
513   int i;
514
515   if (interprocedural_view) {
516     for (i = tos; i >= 0; i--) {
517       if (stack[i] == n) break;
518     }
519     if (i < 0) i = tos;
520
521     //printf(" Here\n");
522
523     assert (i >= 0);
524     for (; i >= 0; i--) {
525       m = stack[i];
526       //printf(" Visiting %d ", i); DDMN(m);
527       if (is_ip_cfop(m)) {
528         current_ir_graph = get_irn_irg(m);
529         break;
530       }
531       if (get_irn_op(m) == op_Filter) {
532         /* Find the corresponding ip_cfop */
533         ir_node *pred = stack[i+1];
534         int j;
535         for (j = 0; j < get_Filter_n_cg_preds(m); j++)
536           if (get_Filter_cg_pred(m, j) == pred) break;
537         if (j >= get_Filter_n_cg_preds(m))
538           /* It is a filter we didn't pass as the predecessors are marked. */
539           continue;
540         assert(get_Filter_cg_pred(m, j) == pred);
541         switch_irg(m, j);
542         break;
543       }
544     }
545   }
546
547   return old_current;
548 }
549
550 #if 0
551 static void test(ir_node *pred, ir_node *root, ir_node *this) {
552   int i;
553   if (get_irn_uplink(pred) >= get_irn_uplink(root)) return;
554
555   printf("this: %d ", get_irn_uplink(this)); DDMN(this);
556   printf("pred: %d ", get_irn_uplink(pred)); DDMN(pred);
557   printf("root: %d ", get_irn_uplink(root)); DDMN(root);
558
559   printf("tos: %d\n", tos);
560
561   for (i = tos; i >= 0; i--) {
562     ir_node *n = stack[i];
563     if (!n) continue;
564     printf(" uplink: %d, pos: %d ", get_irn_uplink(n), i); DDMN(n);
565   }
566 }
567 #endif
568
569 /* Returns true if n is a loop header, i.e., it is a Block, Phi
570    or Filter node and has predecessors within the loop and out
571    of the loop. */
572 static bool
573 is_head (ir_node *n, ir_node *root)
574 {
575   int i;
576   int some_outof_loop = 0,  some_in_loop = 0;
577
578   /* Test for legal loop header */
579   if (!((get_irn_op(n) == op_Block) ||
580         (get_irn_op(n) == op_Phi) ||
581         ((get_irn_op(n) == op_Filter) && interprocedural_view)))
582     return false;
583
584   if (!is_outermost_Start(n)) {
585     for (i = get_start_index(n); i < get_irn_arity(n); i++) {
586       ir_node *pred = get_irn_n(n, i);
587       assert(pred);
588       if (is_backedge(n, i)) continue;
589       if (!irn_is_in_stack(pred)) {
590         some_outof_loop = 1;
591       } else {
592         assert(get_irn_uplink(pred) >= get_irn_uplink(root));
593         some_in_loop = 1;
594       }
595     }
596   }
597   return some_outof_loop && some_in_loop;
598 }
599
600 /* Returns index of the predecessor with the smallest dfn number
601    greater-equal than limit. */
602 static int
603 smallest_dfn_pred (ir_node *n, int limit)
604 {
605   int i, index = -2, min = -1;
606
607   if (!is_outermost_Start(n)) {
608     for (i = get_start_index(n); i < get_irn_arity(n); i++) {
609       ir_node *pred = get_irn_n(n, i);
610       assert(pred);
611       if (is_backedge(n, i) || !irn_is_in_stack(pred)) continue;
612       if (get_irn_dfn(pred) >= limit
613         && (min == -1 || get_irn_dfn(pred) < min)) {
614         index = i;
615         min = get_irn_dfn(pred);
616       }
617     }
618   }
619   return index;
620 }
621
622 /* Returns index of the predecessor with the largest dfn number. */
623 static int
624 largest_dfn_pred (ir_node *n)
625 {
626   int i, index = -2, max = -1;
627
628   if (!is_outermost_Start(n)) {
629     for (i = get_start_index(n); i < get_irn_arity(n); i++) {
630       ir_node *pred = get_irn_n(n, i);
631       if (is_backedge (n, i) || !irn_is_in_stack(pred)) continue;
632       if (get_irn_dfn(pred) > max) {
633         index = i;
634         max = get_irn_dfn(pred);
635       }
636     }
637   }
638   return index;
639 }
640
641 /* Searches the stack for possible loop heads.  Tests these for backedges.
642    If it finds a head with an unmarked backedge it marks this edge and
643    returns the tail of the loop.
644    If it finds no backedge returns NULL. */
645 static ir_node *
646 find_tail (ir_node *n) {
647   ir_node *m;
648   int i, res_index = -2;
649
650   /*
651     if (!icfg && rm_cyclic_phis && remove_cyclic_phis (n)) return NULL;
652   */
653
654   m = stack[tos-1];
655   if (is_head (m, n)) {
656     res_index = smallest_dfn_pred(m, 0);
657     if ((res_index == -2) &&  /* no smallest dfn pred found. */
658         (n == m))
659       return NULL;
660   } else {
661     if (m == n) return NULL;
662     for (i = tos-2; ; --i) {
663       m = stack[i];
664       if (is_head (m, n)) {
665         res_index = smallest_dfn_pred (m, get_irn_dfn(m) + 1);
666         if (res_index == -2)  /* no smallest dfn pred found. */
667           res_index = largest_dfn_pred (m);
668         break;
669       }
670     }
671   }
672   assert (res_index > -2);
673
674   set_backedge (m, res_index);
675   return is_outermost_Start(n) ? NULL : get_irn_n(m, res_index);
676 }
677
678
679 /* The core algorithm. *****************************************/
680
681 static void scc (ir_node *n) {
682   int i;
683   ir_graph *rem;
684
685   if (irn_visited(n)) return;
686   mark_irn_visited(n);
687   //printf("mark: %d ", get_irn_visited(n)); DDMN(n);
688   //DDME(get_irg_ent(current_ir_graph));
689
690   /* Initialize the node */
691   set_irn_dfn(n, current_dfn);      /* Depth first number for this node */
692   set_irn_uplink(n, current_dfn);   /* ... is default uplink. */
693   set_irn_loop_tmp(n, NULL);
694   current_dfn ++;
695
696   /* What's this good for?
697   n->ana.scc.section = NULL;
698   */
699
700   push(n);
701
702   if (!is_outermost_Start(n)) {
703     for (i = get_start_index(n); i < get_irn_arity(n); i++) {
704       ir_node *m;
705       if (is_backedge(n, i)) continue;
706
707       m = get_irn_n(n, i); //get_irn_ip_pred(n, i);
708       if ((!m) || (get_irn_op(m) == op_Unknown)) continue;
709       scc (m);
710       //return_recur(n, i);
711
712       if (irn_is_in_stack(m)) {
713         /* Uplink of m is smaller if n->m is a backedge.
714            Propagate the uplink to mark the loop. */
715         if (get_irn_uplink(m) < get_irn_uplink(n))
716           set_irn_uplink(n, get_irn_uplink(m));
717       }
718     }
719   }
720   if (get_irn_dfn(n) == get_irn_uplink(n)) {
721     /* This condition holds for the node with the incoming backedge. */
722     ir_node *tail = find_tail(n);
723     if (tail) {
724       /* We found a new loop! */
725       ir_loop *l = new_loop();
726       /* Remove the loop from the stack ... */
727       pop_scc_unmark_visit (n);
728       /* and recompute it in a better order; and so that it goes into
729          the new loop. */
730       rem = find_irg_on_stack(tail);
731       scc (tail);
732       current_ir_graph = rem;
733
734       assert (irn_visited(n));
735
736       current_loop = l;
737     } else {
738       pop_scc_to_loop(n);
739     }
740   }
741 }
742
743 /* Constructs backedge information for irg. In interprocedural view constructs
744    backedges for all methods called by irg, too. */
745 void construct_backedges(ir_graph *irg) {
746   ir_graph *rem = current_ir_graph;
747   ir_loop *head_rem;
748   int i;
749
750   assert(!interprocedural_view &&
751          "not implemented, use construct_ip_backedges");
752
753   current_ir_graph = irg;
754   outermost_ir_graph = irg;
755
756   init_scc(irg);
757
758   current_loop = NULL;
759   new_loop();  /* sets current_loop */
760   head_rem = current_loop; /* Just for assertion */
761
762   if (interprocedural_view) {
763     set_irg_visited(irg, inc_max_irg_visited());
764     init_ip_walk ();
765   } else {
766     inc_irg_visited(irg);
767   }
768
769   scc(get_irg_end(irg));
770   for (i = 0; i < get_End_n_keepalives(get_irg_end(irg)); i++)
771     scc(get_End_keepalive(get_irg_end(irg), i));
772
773   if (interprocedural_view) finish_ip_walk();
774
775   assert(head_rem == current_loop);
776   set_irg_loop(irg, current_loop);
777   assert(get_irg_loop(irg)->kind == k_ir_loop);
778   /*
779   irg->loops = current_loop;
780   if (icfg == 1) {
781     int count = 0;
782     int depth = 0;
783     count_loop (the_loop, &count, &depth);
784     }
785   }
786   */
787   current_ir_graph = rem;
788 }
789
790
791
792 void construct_ip_backedges (void) {
793   ir_graph *rem = current_ir_graph;
794   int rem_ipv = interprocedural_view;
795   int i, j;
796
797   outermost_ir_graph = get_irp_main_irg();
798
799   init_ip_scc();
800
801   current_loop = NULL;
802   new_loop();  /* sets current_loop */
803   interprocedural_view = 1;
804
805   inc_max_irg_visited();
806   for (i = 0; i < get_irp_n_irgs(); i++)
807     set_irg_visited(get_irp_irg(i), get_max_irg_visited());
808
809   for (i = 0; i < get_irp_n_irgs(); i++) {
810     ir_node *sb;
811     current_ir_graph = get_irp_irg(i);
812     //DDME(get_irg_ent(current_ir_graph));
813     /* Find real entry points */
814     sb = get_irg_start_block(current_ir_graph);
815     if ((get_Block_n_cfgpreds(sb) > 1) ||
816         (get_nodes_Block(get_Block_cfgpred(sb, 0)) != sb)) continue;
817     //    printf("running scc for "); DDME(get_irg_ent(current_ir_graph));
818     /* Compute scc for this graph */
819     outermost_ir_graph = current_ir_graph;
820     set_irg_visited(outermost_ir_graph, get_max_irg_visited());
821     scc(get_irg_end(current_ir_graph));
822     for (j = 0; j < get_End_n_keepalives(get_irg_end(outermost_ir_graph)); j++)
823       scc(get_End_keepalive(get_irg_end(outermost_ir_graph), j));
824   }
825
826   set_irg_loop(outermost_ir_graph, current_loop);
827   assert(get_irg_loop(outermost_ir_graph)->kind == k_ir_loop);
828
829   current_ir_graph = rem;
830   interprocedural_view = rem_ipv;
831 }