verify: Clarify assertion message.
[libfirm] / ir / ana / irouts.c
index 92a5755..56e3028 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * @brief    Compute and access out edges (also called def-use edges).
  * @author   Goetz Lindenmaier, Michael Beck
  * @date     1.2002
- * @version  $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
-#ifdef HAVE_STRING_H
 #include <string.h>
-#endif
 
 #include "xmalloc.h"
 #include "irouts.h"
 #include "irgraph_t.h"
 #include "irprog_t.h"
 #include "irgwalk.h"
-#include "irtools.h"
-
-#ifdef DEBUG_libfirm
-/* Note:  ir_node.out_valid and ir_graph.n_outs are only present when DEBUG_libfirm is defined */
-/* Accesses to out_valid and n_outs are fenced out to avoid breakage
-   when compiling with neither DEBUG_libfirm or NDEBUG defined */
-#endif /* defined DEBUG_libfirm */
-
-/*--------------------------------------------------------------------*/
-/** Accessing the out datastructures                                 **/
-/*--------------------------------------------------------------------*/
-
-#ifdef DEBUG_libfirm
-/** Clear the outs of a node */
-static void reset_outs(ir_node *node, void *unused) {
-       (void) unused;
-       node->out       = NULL;
-       node->out_valid = 0;
+#include "util.h"
+#include "irprintf.h"
+#include "error.h"
+#include "ircons.h"
+
+unsigned get_irn_n_outs(const ir_node *node)
+{
+       return node->o.out->n_edges;
 }
-#endif
 
-/* returns the number of successors of the node: */
-int get_irn_n_outs(ir_node *node) {
-       assert(node && node->kind == k_ir_node);
-#ifdef DEBUG_libfirm
-       /* assert(node->out_valid); */
-#endif /* defined DEBUG_libfirm */
-       return PTR_TO_INT(node->out[0]);
+ir_node *get_irn_out(const ir_node *def, unsigned pos)
+{
+       assert(pos < get_irn_n_outs(def));
+       return def->o.out->edges[pos].use;
 }
 
-/* Access successor n */
-ir_node *get_irn_out(ir_node *node, int pos) {
-       assert(pos >= 0 && pos < get_irn_n_outs(node));
-#ifdef DEBUG_libfirm
-       /* assert(node->out_valid); */
-#endif /* defined DEBUG_libfirm */
-return node->out[pos+1];
+ir_node *get_irn_out_ex(const ir_node *def, unsigned pos, int *in_pos)
+{
+       assert(pos < get_irn_n_outs(def));
+       *in_pos = def->o.out->edges[pos].pos;
+       return def->o.out->edges[pos].use;
 }
 
-void set_irn_out(ir_node *node, int pos, ir_node *out) {
-       assert(node && out);
-       assert(pos >= 0 && pos < get_irn_n_outs(node));
-#ifdef DEBUG_libfirm
-       node->out_valid = 1;          /* assume that this function is used correctly */
-#endif /* defined DEBUG_libfirm */
-       node->out[pos+1] = out;
+void set_irn_out(ir_node *def, unsigned pos, ir_node *use, int in_pos)
+{
+       assert(use != NULL);
+       assert(pos < get_irn_n_outs(def));
+       def->o.out->edges[pos].use = use;
+       def->o.out->edges[pos].pos = in_pos;
 }
 
-/* Return the number of control flow successors, ignore keep-alives. */
-int get_Block_n_cfg_outs(ir_node *bl) {
-       int i, n_cfg_outs = 0;
-       assert(bl && is_Block(bl));
-#ifdef DEBUG_libfirm
-       assert(bl->out_valid);
-#endif /* defined DEBUG_libfirm */
-       for (i = 1; i <= PTR_TO_INT(bl->out[0]); ++i) {
-               ir_node *succ = bl->out[i];
-               if (get_irn_mode(succ) == mode_X && get_irn_op(succ) != op_End)
-                       n_cfg_outs += PTR_TO_INT(succ->out[0]);
+unsigned get_Block_n_cfg_outs(const ir_node *bl)
+{
+       assert(is_Block(bl));
+       unsigned n_cfg_outs = 0;
+       for (unsigned i = 0; i < get_irn_n_outs(bl); ++i) {
+               const ir_node *succ = get_irn_out(bl, i);
+               if (get_irn_mode(succ) != mode_X)
+                       continue;
+               if (is_End(succ) || is_Bad(succ))
+                       continue;
+               n_cfg_outs += get_irn_n_outs(succ);
        }
        return n_cfg_outs;
 }
 
-/* Return the number of control flow successors, honor keep-alives. */
-int get_Block_n_cfg_outs_ka(ir_node *bl) {
-       int i, n_cfg_outs = 0;
-       assert(bl && is_Block(bl));
-#ifdef DEBUG_libfirm
-       assert(bl->out_valid);
-#endif /* defined DEBUG_libfirm */
-       for (i = 1; i <= PTR_TO_INT(bl->out[0]); ++i) {
-               ir_node *succ = bl->out[i];
-               if (get_irn_mode(succ) == mode_X) {
-
-                       if (get_irn_op(succ) == op_End) {
-                               /* ignore End if we are in the Endblock */
-                               if (get_irn_n(succ, -1) == bl)
-                                       continue;
-                               else /* count Keep-alive as one */
-                                       n_cfg_outs += 1;
-                       } else
-                               n_cfg_outs += PTR_TO_INT(succ->out[0]);
+unsigned get_Block_n_cfg_outs_ka(const ir_node *bl)
+{
+       assert(is_Block(bl));
+       unsigned n_cfg_outs = 0;
+       for (unsigned i = 0; i < get_irn_n_outs(bl); ++i) {
+               const ir_node *succ = get_irn_out(bl, i);
+               if (get_irn_mode(succ) != mode_X)
+                       continue;
+               if (is_Bad(succ))
+                       continue;
+               if (is_End(succ)) {
+                       ir_node *end_bl = get_nodes_block(succ);
+                       if (end_bl == bl)
+                               continue;
+                       ++n_cfg_outs;
+                       continue;
                }
+               n_cfg_outs += get_irn_n_outs(succ);
        }
        return n_cfg_outs;
 }
 
-/* Access predecessor n, ignore keep-alives. */
-ir_node *get_Block_cfg_out(ir_node *bl, int pos) {
-       int i;
-       assert(bl && is_Block(bl));
-#ifdef DEBUG_libfirm
-       assert (bl->out_valid);
-#endif /* defined DEBUG_libfirm */
-       for (i = 1; i <= PTR_TO_INT(bl->out[0]); ++i) {
-               ir_node *succ = bl->out[i];
-               if (get_irn_mode(succ) == mode_X && get_irn_op(succ) != op_End) {
-                       int n_outs = PTR_TO_INT(succ->out[0]);
-                       if (pos < n_outs)
-                               return succ->out[pos + 1];
-                       else
-                               pos -= n_outs;
-               }
+ir_node *get_Block_cfg_out(const ir_node *bl, unsigned pos)
+{
+       assert(is_Block(bl));
+       for (unsigned i = 0; i < get_irn_n_outs(bl); ++i) {
+               const ir_node *succ = get_irn_out(bl, i);
+               if (get_irn_mode(succ) != mode_X)
+                       continue;
+               if (is_End(succ) || is_Bad(succ))
+                       continue;
+
+               unsigned n_outs = get_irn_n_outs(succ);
+               if (pos < n_outs)
+                       return get_irn_out(succ, pos);
+               else
+                       pos -= n_outs;
        }
        return NULL;
 }
 
-/* Access predecessor n, honor keep-alives. */
-ir_node *get_Block_cfg_out_ka(ir_node *bl, int pos) {
-       int i, n_outs;
-       assert(bl && is_Block(bl));
-#ifdef DEBUG_libfirm
-       assert (bl->out_valid);
-#endif /* defined DEBUG_libfirm */
-       for (i = 1; i <= PTR_TO_INT(bl->out[0]); ++i) {
-               ir_node *succ = bl->out[i];
-               if (get_irn_mode(succ) == mode_X) {
-                       if (get_irn_op(succ) == op_End) {
-                               if (get_irn_n(succ, -1) == bl) {
-                                       /* ignore End if we are in the Endblock */
-                                       continue;
-                               }
-                               if (pos == 0) {
-                                       /* handle keep-alive here: return the Endblock instead of the End node */
-                                       return get_irn_n(succ, -1);
-                               } else
-                                       --pos;
+ir_node *get_Block_cfg_out_ka(const ir_node *bl, unsigned pos)
+{
+       assert(is_Block(bl));
+       for (unsigned i = 0; i < get_irn_n_outs(bl); ++i) {
+               const ir_node *succ = get_irn_out(bl, i);
+               if (get_irn_mode(succ) != mode_X)
+                       continue;
+               if (is_Bad(succ))
+                       continue;
+
+               if (is_End(succ)) {
+                       ir_node *end_bl = get_nodes_block(succ);
+                       if (end_bl == bl) {
+                               /* ignore End if we are in the Endblock */
+                               continue;
+                       }
+                       if (pos == 0) {
+                               /* handle keep-alive here: return the Endblock instead of the End node */
+                               return end_bl;
                        } else {
-                               n_outs = PTR_TO_INT(succ->out[0]);
-                               if (pos < n_outs)
-                                       return succ->out[pos + 1];
-                               else
-                                       pos -= n_outs;
+                               --pos;
+                               continue;
                        }
                }
+               unsigned n_outs = get_irn_n_outs(succ);
+               if (pos < n_outs)
+                       return get_irn_out(succ, pos);
+               else
+                       pos -= n_outs;
        }
        return NULL;
 }
 
 static void irg_out_walk_2(ir_node *node, irg_walk_func *pre,
-            irg_walk_func *post, void *env) {
-       int     i, n;
-       ir_node *succ;
-
-       assert(node);
+                           irg_walk_func *post, void *env)
+{
        assert(get_irn_visited(node) < get_irg_visited(current_ir_graph));
 
        set_irn_visited(node, get_irg_visited(current_ir_graph));
 
        if (pre) pre(node, env);
 
-       for (i = 0, n = get_irn_n_outs(node); i < n; ++i) {
-               succ = get_irn_out(node, i);
+       int n = get_irn_n_outs(node);
+       for (int i = 0; i < n; ++i) {
+               ir_node *succ = get_irn_out(node, i);
                if (get_irn_visited(succ) < get_irg_visited(current_ir_graph))
                        irg_out_walk_2(succ, pre, post, env);
        }
 
        if (post) post(node, env);
-
-       return;
 }
 
-void irg_out_walk(ir_node *node,
-                  irg_walk_func *pre, irg_walk_func *post,
-                  void *env) {
+void irg_out_walk(ir_node *node, irg_walk_func *pre, irg_walk_func *post,
+                  void *env)
+{
        assert(node);
-       if (get_irg_outs_state(current_ir_graph) != outs_none) {
-               inc_irg_visited (current_ir_graph);
+       ir_graph *irg = get_irn_irg(node);
+       if (irg_has_properties(irg, IR_GRAPH_PROPERTY_CONSISTENT_OUTS)) {
+               inc_irg_visited(irg);
                irg_out_walk_2(node, pre, post, env);
        }
-       return;
 }
 
-static void irg_out_block_walk2(ir_node *bl,
-                                irg_walk_func *pre, irg_walk_func *post,
-                                void *env) {
-       int i, n;
+static void irg_out_block_walk2(ir_node *bl, irg_walk_func *pre,
+                                irg_walk_func *post, void *env)
+{
+       if (Block_block_visited(bl))
+               return;
 
-       if (Block_not_block_visited(bl)) {
-               mark_Block_block_visited(bl);
+       mark_Block_block_visited(bl);
 
-               if (pre)
-                       pre(bl, env);
+       if (pre)
+               pre(bl, env);
 
-               for (i = 0, n =  get_Block_n_cfg_outs(bl); i < n; ++i) {
-                       /* find the corresponding predecessor block. */
-                       ir_node *pred = get_Block_cfg_out(bl, i);
-                       /* recursion */
-                       irg_out_block_walk2(pred, pre, post, env);
-               }
-
-               if (post)
-                       post(bl, env);
+       int n = get_Block_n_cfg_outs(bl);
+       for (int i = 0; i < n; ++i) {
+               /* find the corresponding predecessor block. */
+               ir_node *pred = get_Block_cfg_out(bl, i);
+               /* recursion */
+               irg_out_block_walk2(pred, pre, post, env);
        }
-}
 
-/* Walks only over Block nodes in the graph.  Has it's own visited
-   flag, so that it can be interleaved with the other walker.         */
-void irg_out_block_walk(ir_node *node,
-                        irg_walk_func *pre, irg_walk_func *post,
-                        void *env) {
+       if (post)
+               post(bl, env);
+}
 
+void irg_out_block_walk(ir_node *node, irg_walk_func *pre, irg_walk_func *post,
+                        void *env)
+{
+       ir_graph *irg = get_irn_irg(node);
        assert(is_Block(node) || (get_irn_mode(node) == mode_X));
 
-       inc_irg_block_visited(current_ir_graph);
+       ir_graph *rem = current_ir_graph;
+       current_ir_graph = irg;
 
-       if (get_irn_mode(node) == mode_X) {
-               int i, n;
+       inc_irg_block_visited(irg);
 
-               for (i = 0, n = get_irn_n_outs(node); i < n; ++i) {
+       if (get_irn_mode(node) == mode_X) {
+               int n = get_irn_n_outs(node);
+               for (int i = 0; i < n; ++i) {
                        ir_node *succ = get_irn_out(node, i);
-                       if (get_irn_visited(succ) < get_irg_visited(current_ir_graph))
-                               irg_out_walk_2(succ, pre, post, env);
+                       irg_out_block_walk2(succ, pre, post, env);
                }
-       }
-       else {
+       } else {
                irg_out_block_walk2(node, pre, post, env);
        }
+
+       current_ir_graph = rem;
 }
 
 /*--------------------------------------------------------------------*/
@@ -279,384 +251,128 @@ void irg_out_block_walk(ir_node *node,
 
 
 /** Returns the amount of out edges for not yet visited successors. */
-static int _count_outs(ir_node *n) {
-       int start, i, res, irn_arity;
-
-       mark_irn_visited(n);
-       n->out = (ir_node **) 1;     /* Space for array size. */
-
-       start = is_Block(n) ? 0 : -1;
-       irn_arity = get_irn_arity(n);
-       res = irn_arity - start + 1;  /* --1 or --0; 1 for array size. */
-
-       for (i = start; i < irn_arity; ++i) {
-               /* Optimize Tuples.  They annoy if walking the cfg. */
-               ir_node *pred = skip_Tuple(get_irn_n(n, i));
-               set_irn_n(n, i, pred);
-
-               /* count outs for successors */
-               if (irn_not_visited(pred))
-                       res += _count_outs(pred);
-
-               /* Count my outs */
-               pred->out = (ir_node **)INT_TO_PTR(PTR_TO_INT(pred->out) + 1);
+static void count_outs_node(ir_node *n)
+{
+       if (irn_visited_else_mark(n))
+               return;
+
+       /* initialize our counter */
+       n->o.n_outs = 0;
+
+       int start     = is_Block(n) ? 0 : -1;
+       int irn_arity = get_irn_arity(n);
+       for (int i = start; i < irn_arity; ++i) {
+               ir_node *def = get_irn_n(n, i);
+               /* optimize Tuples */
+               ir_node *skipped = skip_Tuple(def);
+               if (skipped != def)
+                       set_irn_n(n, i, skipped);
+
+               count_outs_node(skipped);
+               ++skipped->o.n_outs;
        }
-       return res;
 }
 
 
 /** Returns the amount of out edges for not yet visited successors.
- *  This version handles some special nodes like irg_frame, irg_args etc.
- */
-static int count_outs(ir_graph *irg) {
-       ir_node *n;
-       int res;
-
+ *  This version handles some special nodes like irg_frame, irg_args etc. */
+static void count_outs(ir_graph *irg)
+{
        inc_irg_visited(irg);
-       res = _count_outs(get_irg_end(irg));
-
-       /* Now handle special nodes. We need the out count of those
-          even if they are not visible. */
-       n = get_irg_frame(irg);
-       if (! is_Bad(n) && irn_not_visited(n)) {
-               n->out = (ir_node **)1;
-               ++res;
-       }
-
-       n = get_irg_args(irg);
-       if (! is_Bad(n) && irn_not_visited(n)) {
-               n->out = (ir_node **)1;
-               ++res;
-       }
-
-       n = get_irg_value_param_base(irg);
-       if (! is_Bad(n) && irn_not_visited(n)) {
-               n->out = (ir_node **)1;
-               ++res;
+       count_outs_node(get_irg_end(irg));
+       for (int i = anchor_first; i <= anchor_last; ++i) {
+               ir_node *n = get_irg_anchor(irg, i);
+               if (irn_visited_else_mark(n))
+                       continue;
+               n->o.n_outs = 0;
        }
-
-       return res;
 }
 
-/**
- * Enter memory for the outs to a node.
- *
- * @param n      current node
- * @param free   current free address in the chunk allocated for the outs
- *
- * @return The next free address
- */
-static ir_node **_set_out_edges(ir_node *n, ir_node **free) {
-       int n_outs, start, i, irn_arity;
-       ir_node *pred;
-
-       set_irn_visited(n, get_irg_visited(current_ir_graph));
+static void set_out_edges_node(ir_node *node, struct obstack *obst)
+{
+       if (irn_visited_else_mark(node))
+               return;
 
        /* Allocate my array */
-       n_outs = PTR_TO_INT(n->out);
-       n->out = free;
-#ifdef DEBUG_libfirm
-       n->out_valid = 1;
-#endif /* defined DEBUG_libfirm */
-       free += n_outs;
-       /* We count the successors again, the space will be sufficient.
-          We use this counter to remember the position for the next back
-          edge. */
-       n->out[0] = (ir_node *)0;
-
-       start = is_Block(n) ? 0 : -1;
-       irn_arity = get_irn_arity(n);
-
-       for (i = start; i < irn_arity; ++i) {
-               pred = get_irn_n(n, i);
-               /* Recursion */
-               if (get_irn_visited(pred) < get_irg_visited(current_ir_graph))
-                       free = _set_out_edges(pred, free);
-               /* Remember our back edge */
-               pred->out[get_irn_n_outs(pred)+1] = n;
-               pred->out[0] = INT_TO_PTR(get_irn_n_outs(pred) + 1);
+       unsigned n_outs = node->o.n_outs;
+       node->o.out          = OALLOCF(obst, ir_def_use_edges, edges, n_outs);
+       node->o.out->n_edges = 0;
+
+       /* add def->use edges from my predecessors to me */
+       int start     = is_Block(node) ? 0 : -1;
+       int irn_arity = get_irn_arity(node);
+       for (int i = start; i < irn_arity; ++i) {
+               ir_node *def = get_irn_n(node, i);
+
+               /* recurse, ensures that out array of pred is already allocated */
+               set_out_edges_node(def, obst);
+
+               /* Remember this Def-Use edge */
+               unsigned pos = def->o.out->n_edges++;
+               def->o.out->edges[pos].use = node;
+               def->o.out->edges[pos].pos = i;
        }
-       return free;
 }
 
-/**
- * Enter memory for the outs to a node. Handles special nodes
- *
- * @param irg    the graph
- * @param free   current free address in the chunk allocated for the outs
- *
- * @return The next free address
- */
-static ir_node **set_out_edges(ir_graph *irg, ir_node **free) {
-       ir_node *n, *special[3];
-       int i, n_outs;
-
-       inc_irg_visited(irg);
-       free = _set_out_edges(get_irg_end(irg), free);
+static void set_out_edges(ir_graph *irg)
+{
+       struct obstack *obst = &irg->out_obst;
 
-       /* handle special nodes */
-       special[0] = get_irg_frame(irg);
-       special[1] = get_irg_args(irg);
-       special[2] = get_irg_value_param_base(irg);
+       obstack_init(obst);
+       irg->out_obst_allocated = true;
 
-       for (i = 2; i >= 0; --i) {
-               n = special[i];
-               if (is_Bad(n))
+       inc_irg_visited(irg);
+       set_out_edges_node(get_irg_end(irg), obst);
+       for (int i = anchor_first; i <= anchor_last; ++i) {
+               ir_node *n = get_irg_anchor(irg, i);
+               if (irn_visited_else_mark(n))
                        continue;
-
-               if (get_irn_visited(n) < get_irg_visited(current_ir_graph)) {
-                       n_outs = PTR_TO_INT(n->out);
-                       n->out = free;
-#ifdef DEBUG_libfirm
-                       n->out_valid = 1;
-#endif /* defined DEBUG_libfirm */
-                       free += n_outs;
-               }
+               n->o.out          = OALLOCF(obst, ir_def_use_edges, edges, 0);
+               n->o.out->n_edges = 0;
        }
-
-       return free;
 }
 
-
-/**
- * We want that the out of ProjX from Start contains the next block at
- * position 1, the Start block at position 2.  This is necessary for
- * the out block walker.
- */
-static INLINE void fix_start_proj(ir_graph *irg) {
-       ir_node *proj    = NULL;
-       ir_node *startbl = get_irg_start_block(irg);
-       int i;
-
-       if (get_Block_n_cfg_outs(startbl)) {
-               for (i = get_irn_n_outs(startbl) - 1; i >= 0; --i)
-                       if (get_irn_mode(get_irn_out(startbl, i)) == mode_X) {
-                               proj = get_irn_out(startbl, i);
-                               break;
-                       }
-
-               if (get_irn_out(proj, 0) == startbl) {
-                       assert(get_irn_n_outs(proj) == 2);
-                       set_irn_out(proj, 0, get_irn_out(proj, 1));
-                       set_irn_out(proj, 1, startbl);
-               }
-       }
-}
-
-/* compute the outs for a given graph */
-void compute_irg_outs(ir_graph *irg) {
-       ir_graph *rem = current_ir_graph;
-       int n_out_edges = 0;
-       ir_node **end = NULL;         /* Only for debugging */
-
-       current_ir_graph = irg;
-
-       /* Update graph state */
-       assert(get_irg_phase_state(current_ir_graph) != phase_building);
-
-       if (current_ir_graph->outs_state != outs_none)
-               free_irg_outs(current_ir_graph);
+void compute_irg_outs(ir_graph *irg)
+{
+       free_irg_outs(irg);
 
        /* This first iteration counts the overall number of out edges and the
           number of out edges for each node. */
-       n_out_edges = count_outs(irg);
-
-       /* allocate memory for all out edges. */
-       irg->outs = xcalloc(n_out_edges, sizeof(irg->outs[0]));
-#ifdef DEBUG_libfirm
-       irg->n_outs = n_out_edges;
-#endif /* defined DEBUG_libfirm */
+       count_outs(irg);
 
        /* The second iteration splits the irg->outs array into smaller arrays
           for each node and writes the back edges into this array. */
-       end = set_out_edges(irg, irg->outs);
-
-       /* Check how much memory we have used */
-       assert (end == (irg->outs + n_out_edges));
+       set_out_edges(irg);
 
-       /* We want that the out of ProjX from Start contains the next block at
-          position 1, the Start block at position 2.  This is necessary for
-          the out block walker. */
-       fix_start_proj(irg);
-
-       current_ir_graph->outs_state = outs_consistent;
-       current_ir_graph = rem;
+       add_irg_properties(irg, IR_GRAPH_PROPERTY_CONSISTENT_OUTS
+                             | IR_GRAPH_PROPERTY_NO_TUPLES);
 }
 
-void assure_irg_outs(ir_graph *irg) {
-       if (get_irg_outs_state(irg) != outs_consistent)
+void assure_irg_outs(ir_graph *irg)
+{
+       if (!irg_has_properties(irg, IR_GRAPH_PROPERTY_CONSISTENT_OUTS))
                compute_irg_outs(irg);
 }
 
-void compute_irp_outs(void) {
-       int i;
-       for (i = get_irp_n_irgs() -1; i >= 0; --i)
-               compute_irg_outs(get_irp_irg(i));
-}
-
-void free_irp_outs(void) {
-       int i;
-       for (i = get_irp_n_irgs() -1; i >= 0; --i)
-               free_irg_outs(get_irp_irg(i));
-}
-
-
-/*------------------------------------------------------------*
- *  This computes the outedges for in interprocedural graph.  *
- *  There is one quirk:                                       *
- *  The number of the outedges for each node is saved in      *
- *  the first member of the ir_node** array. Maybe we should  *
- *  change this to make it more portable...                   *
- *------------------------------------------------------------*/
-
-
-#ifdef INTERPROCEDURAL_VIEW
-/**
- * Inits the number of outedges for each node
- * before counting.
- */
-static void init_count(ir_node * node, void *env) {
-       (void) env;
-       node->out = (ir_node **) 1; /* 1 for the array size */
-}
-
-
-/**
- * Adjusts the out edge count for its predecessors
- * and adds the current arity to the overall count,
- * which is saved in "env"
- */
-static void node_arity_count(ir_node * node, void * env) {
-       int *anz = (int *) env, arity, n_outs, i, start;
-       ir_node *succ;
-
-       arity = get_irn_arity(node);
-       start = (is_Block(node)) ? 0 : -1;
-
-       n_outs = 1 + arity + (-start);  // ((is_Block(node)) ? 0 : 1);   // Why + 1??
-       *anz += n_outs;
-
-       for(i = start; i < arity; i++) {
-               succ = get_irn_n(node, i);
-               succ->out = (ir_node **)INT_TO_PTR(PTR_TO_INT(succ->out) + 1);
-       }
-}
-
-/*
- * Inits all nodes for setting the outedges
- * Returns the overall count of edges
- */
-int count_ip_outs(void) {
-       int res = 0;
-
-       cg_walk(init_count, node_arity_count, &res);
-
-       return(res);
-}
-
-static int dummy_count = 0, global_count; /* Only for debugging */
-
-/**
- * For each node: Sets the pointer to array
- * in which the outedges are written later.
- * The current array start is transported in env
- */
-static void set_array_pointer(ir_node *node, void *env) {
-       int n_outs;
-       ir_node ***free = (ir_node ***) env;
-
-       /* Allocate my array */
-       n_outs = PTR_TO_INT(node->out);  /* We wrote the count here in count_ip_outs */
-       dummy_count += n_outs;
-       assert(dummy_count <= global_count && "More outedges than initially counted!");
-       node -> out = *free;
-       *free = &((*free)[n_outs]);
-       /* We count the successors again, the space will be sufficient.
-          We use this counter to remember the position for the next back
-          edge. */
-       node -> out[0] = (ir_node *) 0;
-}
-
-
-/**
- * Adds an outedge from the predecessor to the
- * current node.
- */
-static void set_out_pointer(ir_node * node, void *env) {
-       int i, arity = get_irn_arity(node);
-       ir_node *succ;
-       int start = (!is_Block(node)) ? -1 : 0;
-       (void) env;
-
-       for (i = start; i < arity; ++i) {
-               succ = get_irn_n(node, i);
-               succ->out[get_irn_n_outs(succ)+1] = node;
-               succ->out[0] = INT_TO_PTR(get_irn_n_outs(succ) + 1);
-       }
-}
-
-
-/*
- * Sets the outedges for all nodes.
- */
-void set_ip_outs(void) {
-       ir_node **outedge_array = get_irp_ip_outedges();
-       cg_walk(set_array_pointer, set_out_pointer, (void *) &outedge_array);
-}
-
-
-
-/*
- * Counts the outedges, allocates memory to save the
- * outedges and fills this outedge array in interprocedural
- * view!
- */
-void compute_ip_outs(void) {
-       int n_out_edges;
-       ir_node **out_edges;
-
-       assert(get_irp_ip_view_state() == ip_view_valid &&
-        "Cannot construct outs for invalid ip view.");
-
-       if (irp->outs_state != outs_none) {
-               free_ip_outs();
-       }
-
-       global_count = n_out_edges = count_ip_outs();
-       out_edges = xcalloc(n_out_edges, sizeof(out_edges[0]));
-       set_irp_ip_outedges(out_edges);
-       set_ip_outs();
-}
-
-void free_ip_outs(void) {
-       ir_node **out_edges = get_irp_ip_outedges();
-       if (out_edges != NULL) {
-               free(out_edges);
-               set_irp_ip_outedges(NULL);
-       }
-       irp->outs_state = outs_none;
+#ifdef DEBUG_libfirm
+/** Clear the outs of a node */
+static void reset_outs(ir_node *node, void *unused)
+{
+       (void) unused;
+       node->o.out = NULL;
 }
 #endif
 
-
-void free_irg_outs(ir_graph *irg) {
-       /*   current_ir_graph->outs_state = outs_none; */
-       irg->outs_state = outs_none;
-
-       if (irg->outs) {
-#ifdef DEBUG_libfirm
-               memset(irg->outs, 0, irg->n_outs);
-#endif /* defined DEBUG_libfirm */
-               free(irg->outs);
-               irg->outs = NULL;
-#ifdef DEBUG_libfirm
-               irg->n_outs = 0;
-#endif /* defined DEBUG_libfirm */
+void free_irg_outs(ir_graph *irg)
+{
+       if (irg->out_obst_allocated) {
+               obstack_free(&irg->out_obst, NULL);
+               irg->out_obst_allocated = false;
        }
 
 #ifdef DEBUG_libfirm
        /* when debugging, *always* reset all nodes' outs!  irg->outs might
           have been lying to us */
        irg_walk_graph (irg, reset_outs, NULL, NULL);
-#endif /* defined DEBUG_libfirm */
+#endif
 }