Replaced set_irn_n(*, -1, *) and get_irn_n(*, -1) by new get_nodes_block()/set_nodes_...
[libfirm] / ir / ir / iredges.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Always available outs.
23  * @author  Sebastian Hack, Michael Beck, Andreas Schoesser
24  * @date    14.1.2005
25  * @version $Id$
26  * @summary
27  *   This are out-edges (also called def-use edges) that are dynamically
28  *   updated as the graph changes.
29  */
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif
33
34 #include "irnode_t.h"
35 #include "iropt_t.h"
36 #include "iredgekinds.h"
37 #include "iredges_t.h"
38 #include "irgwalk.h"
39 #include "irdump_t.h"
40 #include "irprintf.h"
41 #include "irhooks.h"
42 #include "debug.h"
43 #include "set.h"
44 #include "bitset.h"
45 #include "xmalloc.h"
46
47 /**
48  * A function that allows for setting an edge.
49  * This abstraction is necessary since different edge kind have
50  * different methods of setting edges.
51  */
52 typedef void (set_edge_func_t)(ir_node *src, int pos, ir_node *tgt);
53
54 typedef int (get_edge_src_arity_func_t)(const ir_node *src);
55
56 typedef int (get_edge_src_first_func_t)(const ir_node *src);
57
58 typedef ir_node *(get_edge_src_n_func_t)(const ir_node *src, int pos);
59
60 /**
61  * Additional data for an edge kind.
62  */
63 typedef struct {
64         const char                *name;
65         set_edge_func_t           *set_edge;
66         get_edge_src_first_func_t *get_first;
67         get_edge_src_arity_func_t *get_arity;
68         get_edge_src_n_func_t     *get_n;
69 } ir_edge_kind_info_t;
70
71 static int get_zero(const ir_node *irn)
72 {
73         (void) irn;
74         return 0;
75 }
76
77 static int get_irn_first(const ir_node *irn)
78 {
79         return 0 - !is_Block(irn);
80 }
81
82 static ir_node *get_block_n(const ir_node *irn, int pos)
83 {
84         return is_Block(irn) ? get_Block_cfgpred_block((ir_node *) irn, pos) : 0;
85 }
86
87 static const ir_edge_kind_info_t edge_kind_info[EDGE_KIND_LAST] = {
88         { "normal"     , set_irn_n,   get_irn_first, get_irn_arity,  get_irn_n   },
89         { "block succs", NULL,        get_zero,      get_irn_arity,  get_block_n },
90         { "dependency",  set_irn_dep, get_zero,      get_irn_deps,   get_irn_dep }
91 };
92
93 #define foreach_tgt(irn, i, n, kind) for(i = edge_kind_info[kind].get_first(irn), n = edge_kind_info[kind].get_arity(irn); i < n; ++i)
94 #define get_n(irn, pos, kind)        (edge_kind_info[kind].get_n(irn, pos))
95 #define get_kind_str(kind)           (edge_kind_info[kind].name)
96
97 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
98
99 /**
100  * This flag is set to 1, if the edges get initialized for an irg.
101  * Then register additional data is forbidden.
102  */
103 static int edges_used = 0;
104
105 /**
106  * Summed size of all users private data
107  */
108
109 static int edges_private_size = 0;
110 #define EDGE_SIZE (sizeof(ir_edge_t) + edges_private_size)
111
112 /**
113  * If set to 1, the list heads are checked every time an edge is changed.
114  */
115 static int edges_dbg = 0;
116
117 #ifdef DEBUG_libfirm
118 /* a static variable holding the last number assigned to a new edge */
119 static long last_edge_num = -1;
120 #endif
121
122 static INLINE long edge_get_id(const ir_edge_t *e) {
123 #ifdef DEBUG_libfirm
124         return e->edge_nr;
125 #else /* DEBUG_libfirm */
126         return (long)e;
127 #endif /* DEBUG_libfirm */
128 }
129
130 /**
131  * Announce to reserve extra space for each edge to be allocated.
132  * @Param n: Size of the space to reserve
133  * @ Returns: Offset at which the private data will begin
134  * Several users can reserve extra space for private usage.
135  * Each user has to remember his given offset and the size of his private data.
136  * To be called before FIRM is initialized.
137  */
138 int edges_register_private_data(size_t n)
139 {
140         int res = edges_private_size;
141
142         assert(!edges_used && "you cannot register private edge data, if edges have been initialized");
143
144         edges_private_size += n;
145         return res;
146 }
147
148 /**
149  * Reset the user's private data at offset 'offset'
150  * The user has to remember his offset and the size of his data!
151  * Caution: Using wrong values here can destroy other users private data!
152  */
153
154 void edges_reset_private_data(ir_graph *irg, int offset, size_t size)
155 {
156         irg_edge_info_t *info = _get_irg_edge_info(irg, EDGE_KIND_NORMAL);
157         ir_edge_t       *edge;
158
159         foreach_set(info->edges, edge)
160         {
161                 memset(edge + sizeof(*edge) + offset, 0, size);
162         }
163 }
164
165 #define TIMES37(x) (((x) << 5) + ((x) << 2) + (x))
166
167 #define get_irn_out_list_head(irn) (&get_irn_out_info(irn)->outs)
168
169 static int edge_cmp(const void *p1, const void *p2, size_t len)
170 {
171         const ir_edge_t *e1 = p1;
172         const ir_edge_t *e2 = p2;
173         (void) len;
174
175         if(e1->src != e2->src)
176                 return 1;
177         if(e1->pos != e1->pos)
178                 return 1;
179
180         return 0;
181 }
182
183 #define edge_hash(edge) (TIMES37((edge)->pos) + HASH_PTR((edge)->src))
184
185 /**
186  * Initialize the out information for a graph.
187  * @note Dead node elimination can call this on an already initialized graph.
188  */
189 void edges_init_graph_kind(ir_graph *irg, ir_edge_kind_t kind)
190 {
191         if(edges_activated_kind(irg, kind)) {
192                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
193                 int amount = 2048;
194
195                 edges_used = 1;
196                 if(info->edges) {
197                         amount = set_count(info->edges);
198                         del_set(info->edges);
199                 }
200                 info->edges = new_set(edge_cmp, amount);
201         }
202 }
203
204 /**
205  * Get the edge object of an outgoing edge at a node.
206  * @param   irg The graph, the node is in.
207  * @param   src The node at which the edge originates.
208  * @param   pos The position of the edge.
209  * @return      The corresponding edge object or NULL,
210  *              if no such edge exists.
211  */
212 const ir_edge_t *get_irn_edge_kind(ir_graph *irg, const ir_node *src, int pos, ir_edge_kind_t kind)
213 {
214         if (edges_activated_kind(irg, kind)) {
215                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
216                 ir_edge_t       key;
217
218                 key.src = (ir_node *)src;
219                 key.pos = pos;
220                 return set_find(info->edges, &key, EDGE_SIZE, edge_hash(&key));
221         }
222
223         return NULL;
224 }
225
226 /**
227  * Get the edge object of an outgoing edge at a node.
228  * Looks for an edge for all kinds.
229  */
230
231 const ir_edge_t *get_irn_edge(ir_graph *irg, const ir_node *src, int pos)
232 {
233         const ir_edge_t *edge;
234         if((edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_NORMAL)) == NULL)
235                 edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_BLOCK);
236         return(edge);
237 }
238
239 /**
240  * Change the out count
241  */
242 static INLINE void edge_change_cnt(ir_node *tgt, ir_edge_kind_t kind, int ofs) {
243         irn_edge_info_t *info = _get_irn_edge_info(tgt, kind);
244         info->out_count += ofs;
245 }
246
247 /**
248  * Verify the edge list of a node, ie. ensure it's a loop:
249  * head -> e_1 -> ... -> e_n -> head
250  */
251 static INLINE void vrfy_list_head(ir_node *irn, ir_edge_kind_t kind) {
252         int                    err       = 0;
253         int                    num       = 0;
254         pset                   *lh_set   = pset_new_ptr(16);
255         const struct list_head *head     = _get_irn_outs_head(irn, kind);
256         const struct list_head *pos;
257
258         list_for_each(pos, head) {
259                 if (pset_find_ptr(lh_set, pos)) {
260                         const ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
261
262                         ir_fprintf(stderr, "EDGE Verifier: edge list broken (self loop not to head) for %+F:\n", irn);
263                         fprintf(stderr, "- at list entry %d\n", num);
264                         if (edge->invalid)
265                                 fprintf(stderr, "- edge(%ld) is invalid\n", edge_get_id(edge));
266                         if (edge->src)
267                                 ir_fprintf(stderr, "- edge(%ld) %+F(%d)\n", edge_get_id(edge), edge->src, edge->pos);
268                         err = 1;
269                         break;
270                 }
271                 num++;
272                 pset_insert_ptr(lh_set, pos);
273         }
274
275         del_pset(lh_set);
276
277         assert(err == 0);
278 }
279
280 /* The edge from (src, pos) -> old_tgt is redirected to tgt */
281 void edges_notify_edge_kind(ir_node *src, int pos, ir_node *tgt,
282                             ir_node *old_tgt, ir_edge_kind_t kind,
283                             ir_graph *irg)
284 {
285         const char *msg = "";
286         irg_edge_info_t *info;
287         set *edges;
288         ir_edge_t *templ;
289         ir_edge_t *edge;
290
291         assert(edges_activated_kind(irg, kind));
292
293         /*
294          * Only do something, if the old and new target differ.
295          */
296         if(tgt == old_tgt)
297                 return;
298
299         info  = _get_irg_edge_info(irg, kind);
300         edges = info->edges;
301         templ = alloca(EDGE_SIZE);
302
303         /* Initialize the edge template to search in the set. */
304         memset(templ, 0, EDGE_SIZE);
305         templ->src     = src;
306         templ->pos     = pos;
307         templ->invalid = 0;
308         templ->present = 0;
309         templ->kind    = kind;
310         DEBUG_ONLY(templ->src_nr = get_irn_node_nr(src));
311
312         /*
313          * If the target is NULL, the edge shall be deleted.
314          */
315         if (tgt == NULL) {
316                 /* search the edge in the set. */
317                 edge = set_find(edges, templ, EDGE_SIZE, edge_hash(templ));
318
319                 /* mark the edge invalid if it was found */
320                 if (edge) {
321                         msg = "deleting";
322                         list_del(&edge->list);
323                         edge->invalid = 1;
324                         edge->pos = -2;
325                         edge->src = NULL;
326 #ifdef DEBUG_libfirm
327                         edge->edge_nr = -1;
328 #endif /* DEBUG_libfirm */
329                         edge_change_cnt(old_tgt, kind, -1);
330                 }
331
332                 /* If the edge was not found issue a warning on the debug stream */
333                 else {
334                         msg = "edge to delete not found!\n";
335                 }
336         } /* if */
337
338         /*
339          * The target is not NULL and the old target differs
340          * from the new target, the edge shall be moved (if the
341          * old target was != NULL) or added (if the old target was
342          * NULL).
343          */
344         else {
345                 struct list_head *head = _get_irn_outs_head(tgt, kind);
346
347                 assert(head->next && head->prev &&
348                                 "target list head must have been initialized");
349
350                 /* If the old target is not null, the edge is moved. */
351                 if (old_tgt) {
352                         edge = set_find(edges, templ, EDGE_SIZE, edge_hash(templ));
353                         assert(edge && "edge to redirect not found!");
354                         assert(! edge->invalid && "Invalid edge encountered");
355
356                         msg = "redirecting";
357
358                         list_move(&edge->list, head);
359                         edge_change_cnt(old_tgt, kind, -1);
360                 }
361
362                 /* The old target was null, thus, the edge is newly created. */
363                 else {
364                         edge = set_insert(edges, templ, EDGE_SIZE, edge_hash(templ));
365
366                         assert(! edge->invalid && "Freshly inserted edge is invalid?!?");
367                         assert(edge->list.next == NULL && edge->list.prev == NULL &&
368                                 "New edge must not have list head initialized");
369
370                         msg = "adding";
371                         list_add(&edge->list, head);
372 #ifdef DEBUG_libfirm
373                         edge->edge_nr = ++last_edge_num;
374 #endif /* DEBUG_libfirm */
375                 }
376
377                 edge_change_cnt(tgt, kind, +1);
378         } /* else */
379
380 #ifndef DEBUG_libfirm
381         /* verify list heads */
382         if (edges_dbg) {
383                 if (tgt)
384                         vrfy_list_head(tgt, kind);
385                 if (old_tgt)
386                         vrfy_list_head(old_tgt, kind);
387         }
388 #endif
389
390         DBG((dbg, LEVEL_5, "announce out edge: %+F %d-> %+F(%+F): %s\n", src, pos, tgt, old_tgt, msg));
391 }
392
393 void edges_notify_edge(ir_node *src, int pos, ir_node *tgt, ir_node *old_tgt, ir_graph *irg)
394 {
395         if(edges_activated_kind(irg, EDGE_KIND_NORMAL)) {
396                 edges_notify_edge_kind(src, pos, tgt, old_tgt, EDGE_KIND_NORMAL, irg);
397         }
398
399         if (edges_activated_kind(irg, EDGE_KIND_BLOCK) && is_Block(src)) {
400                 ir_node *bl_old = old_tgt ? get_nodes_block(skip_Proj(old_tgt)) : NULL;
401                 ir_node *bl_tgt = NULL;
402
403                 if (tgt)
404                         bl_tgt = is_Bad(tgt) ? tgt : get_nodes_block(skip_Proj(tgt));
405
406                 edges_notify_edge_kind(src, pos, bl_tgt, bl_old, EDGE_KIND_BLOCK, irg);
407         }
408 }
409
410
411 void edges_node_deleted_kind(ir_node *old, ir_edge_kind_t kind, ir_graph *irg)
412 {
413         int i, n;
414
415         if(!edges_activated_kind(irg, kind))
416                 return;
417
418         DBG((dbg, LEVEL_5, "node deleted (kind: %s): %+F\n", get_kind_str(kind), old));
419
420         foreach_tgt(old, i, n, kind) {
421                 ir_node *old_tgt = get_n(old, i, kind);
422                 edges_notify_edge_kind(old, i, NULL, old_tgt, kind, irg);
423         }
424 }
425
426 struct build_walker {
427         ir_graph       *irg;
428         ir_edge_kind_t kind;
429         bitset_t       *reachable;
430         unsigned       problem_found;
431 };
432
433 /**
434  * Post-Walker: notify all edges
435  */
436 static void build_edges_walker(ir_node *irn, void *data) {
437         struct build_walker *w = data;
438         int                 i, n;
439
440         if (! edges_activated_kind(w->irg, w->kind))
441                 return;
442
443         foreach_tgt(irn, i, n, w->kind)
444                 edges_notify_edge_kind(irn, i, get_n(irn, i, w->kind), NULL, w->kind, w->irg);
445 }
446
447 /**
448  * Pre-Walker: initializes the list-heads and set the out-count
449  * of all nodes to 0.
450  */
451 static void init_lh_walker(ir_node *irn, void *data) {
452         struct build_walker *w = data;
453         INIT_LIST_HEAD(_get_irn_outs_head(irn, w->kind));
454         _get_irn_edge_info(irn, w->kind)->out_count = 0;
455 }
456
457 /**
458  * Visitor: initializes the list-heads and set the out-count
459  * of all nodes to 0 of nodes that are not seen so far.
460  */
461 static void visitor(ir_node *irn, void *data) {
462         if (irn_not_visited(irn)) {
463                 mark_irn_visited(irn);
464                 init_lh_walker(irn, data);
465         }
466 }
467
468 /*
469  * Build the initial edge set.
470  * Beware, this is not a simple task because it suffers from two
471  * difficulties:
472  * - the anchor set allows access to Nodes that may not be reachable from
473  *   the End node
474  * - the identities add nodes to the "root set" that are not yet reachable
475  *   from End. However, after some transformations, the CSE may revival these
476  *   nodes
477  *
478  * These problems can be fixed using different strategies:
479  * - Add an age flag to every node. Whenever the edge of a node is older
480  *   then the current edge, invalidate the edges of this node.
481  *   While this would help for revivaled nodes, it increases memory and runtime.
482  * - Delete the identities set.
483  *   Solves the revival problem, but may increase the memory consumption, as
484  *   nodes cannot be revivaled at all.
485  * - Manually iterate over the identities root set. This did not consume more memory
486  *   but increase the computation time because the |identities| >= |V|
487  *
488  * Currently, we use the last option.
489  */
490 void edges_activate_kind(ir_graph *irg, ir_edge_kind_t kind)
491 {
492         struct build_walker w;
493         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
494
495         w.irg  = irg;
496         w.kind = kind;
497
498         info->activated = 1;
499         edges_init_graph_kind(irg, kind);
500         irg_walk_anchors(irg, init_lh_walker, build_edges_walker, &w);
501         visit_all_identities(irg, visitor, &w);
502 }
503
504 void edges_deactivate_kind(ir_graph *irg, ir_edge_kind_t kind)
505 {
506         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
507
508         info->activated = 0;
509         if (info->edges) {
510                 del_set(info->edges);
511                 info->edges = NULL;
512         }
513 }
514
515 int (edges_activated_kind)(const ir_graph *irg, ir_edge_kind_t kind)
516 {
517         return _edges_activated_kind(irg, kind);
518 }
519
520
521 /**
522  * Reroute all use-edges from a node to another.
523  * @param from The node whose use-edges shall be withdrawn.
524  * @param to   The node to which all the use-edges of @p from shall be
525  *             sent to.
526  * @param irg  The graph.
527  */
528 void edges_reroute_kind(ir_node *from, ir_node *to, ir_edge_kind_t kind, ir_graph *irg)
529 {
530         set_edge_func_t *set_edge = edge_kind_info[kind].set_edge;
531
532         if(set_edge && edges_activated_kind(irg, kind)) {
533                 struct list_head *head = _get_irn_outs_head(from, kind);
534
535                 DBG((dbg, LEVEL_5, "reroute from %+F to %+F\n", from, to));
536
537                 while(head != head->next) {
538                         ir_edge_t *edge = list_entry(head->next, ir_edge_t, list);
539                         assert(edge->pos >= -1);
540                         set_edge(edge->src, edge->pos, to);
541                 }
542         }
543 }
544
545 static void verify_set_presence(ir_node *irn, void *data)
546 {
547         struct build_walker *w     = data;
548         set                 *edges = _get_irg_edge_info(w->irg, w->kind)->edges;
549         int i, n;
550
551         foreach_tgt(irn, i, n, w->kind) {
552                 ir_edge_t templ, *e;
553
554                 templ.src = irn;
555                 templ.pos = i;
556
557                 e = set_find(edges, &templ, EDGE_SIZE, edge_hash(&templ));
558                 if(e != NULL) {
559                         e->present = 1;
560                 } else {
561                         w->problem_found = 1;
562                         ir_fprintf(stderr, "Edge Verifier: edge %+F,%d -> %+F (kind: \"%s\") is missing\n",
563                                 irn, i, get_n(irn, i, w->kind), get_kind_str(w->kind));
564                 }
565         }
566 }
567
568 static void verify_list_presence(ir_node *irn, void *data)
569 {
570         struct build_walker *w = data;
571         const ir_edge_t     *e;
572
573         bitset_set(w->reachable, get_irn_idx(irn));
574
575         /* check list heads */
576         vrfy_list_head(irn, w->kind);
577
578         foreach_out_edge_kind(irn, e, w->kind) {
579                 ir_node *tgt;
580
581                 if (w->kind == EDGE_KIND_NORMAL && get_irn_arity(e->src) <= e->pos) {
582                         w->problem_found = 1;
583                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F -> %+F recorded at src position %d, but src has arity %d\n",
584                                 edge_get_id(e), e->src, irn, e->pos, get_irn_arity(e->src));
585                         continue;
586                 }
587
588                 tgt = get_n(e->src, e->pos, w->kind);
589
590                 if (irn != tgt) {
591                         w->problem_found = 1;
592                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d (kind \"%s\") is no out edge of %+F but of %+F\n",
593                                 edge_get_id(e), e->src, e->pos, get_kind_str(w->kind), irn, tgt);
594                 }
595         }
596 }
597
598 int edges_verify_kind(ir_graph *irg, ir_edge_kind_t kind)
599 {
600         struct build_walker w;
601         set                 *edges = _get_irg_edge_info(irg, kind)->edges;
602         ir_edge_t           *e;
603
604         w.irg           = irg;
605         w.kind          = kind;
606         w.reachable     = bitset_alloca(get_irg_last_idx(irg));
607         w.problem_found = 0;
608
609         /* Clear the present bit in all edges available. */
610         for (e = set_first(edges); e; e = set_next(edges))
611                 e->present = 0;
612
613         irg_walk_graph(irg, verify_set_presence, verify_list_presence, &w);
614
615         /*
616          * Dump all edges which are not invalid and not present.
617          * These edges are superfluous and their presence in the
618          * edge set is wrong.
619          */
620         for (e = set_first(edges); e; e = set_next(edges)) {
621                 if (! e->invalid && ! e->present && bitset_is_set(w.reachable, get_irn_idx(e->src))) {
622                         w.problem_found = 1;
623                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d is superfluous\n", edge_get_id(e), e->src, e->pos);
624                 }
625         }
626
627         return w.problem_found;
628 }
629
630 #define IGNORE_NODE(irn) (is_Bad((irn)) || is_Block((irn)))
631
632 /**
633  * Clear link field of all nodes.
634  */
635 static void clear_links(ir_node *irn, void *env) {
636         struct build_walker *w  = env;
637         bitset_t            *bs;
638
639         if (IGNORE_NODE(irn)) {
640                 set_irn_link(irn, NULL);
641                 return;
642         }
643
644         bs = bitset_malloc(get_irg_last_idx(w->irg));
645         set_irn_link(irn, bs);
646 }
647
648 /**
649  * Increases count (stored in link field) for all operands of a node.
650  */
651 static void count_user(ir_node *irn, void *env) {
652         int i;
653         int first;
654         (void) env;
655
656         first = get_irn_first(irn);
657         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
658                 ir_node  *op = get_irn_n(irn, i);
659                 bitset_t *bs = get_irn_link(op);
660
661                 if (bs)
662                         bitset_set(bs, get_irn_idx(irn));
663         }
664 }
665
666 /**
667  * Verifies if collected count, number of edges in list and stored edge count are in sync.
668  */
669 static void verify_edge_counter(ir_node *irn, void *env) {
670         struct build_walker    *w       = env;
671         bitset_t               *bs;
672         int                    list_cnt;
673         int                    ref_cnt;
674         int                    edge_cnt;
675         unsigned long          idx;
676         const struct list_head *head;
677         const struct list_head *pos;
678
679         if (IGNORE_NODE(irn))
680                 return;
681
682         bs       = get_irn_link(irn);
683         list_cnt = 0;
684         ref_cnt = 0;
685         edge_cnt = _get_irn_edge_info(irn, EDGE_KIND_NORMAL)->out_count;
686         head     = _get_irn_outs_head(irn, EDGE_KIND_NORMAL);
687
688         /* We can iterate safely here, list heads have already been verified. */
689         list_for_each(pos, head) {
690                 list_cnt++;
691         }
692
693         /* check all nodes that reference us and count edges that point number
694          * of ins that actually point to us */
695         ref_cnt = 0;
696         bitset_foreach(bs, idx) {
697                 int i, arity;
698                 ir_node *src = get_idx_irn(w->irg, idx);
699
700                 arity = get_irn_arity(src);
701                 for(i = 0; i < arity; ++i) {
702                         ir_node *in = get_irn_n(src, i);
703                         if(in == irn)
704                                 ref_cnt++;
705                 }
706         }
707
708         if (edge_cnt != list_cnt) {
709                 w->problem_found = 1;
710                 ir_fprintf(stderr, "Edge Verifier: edge count is %d, but %d edge(s) are recorded in list at %+F\n",
711                         edge_cnt, list_cnt, irn);
712         }
713
714         if (ref_cnt != list_cnt) {
715                 w->problem_found = 1;
716                 ir_fprintf(stderr, "Edge Verifier: %+F reachable by %d node(s), but the list contains %d edge(s)\n",
717                         irn, ref_cnt, list_cnt);
718
719                 /* Matze: buggy if a node has multiple ins pointing at irn */
720 #if 0
721                 list_for_each(pos, head) {
722                         ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
723                         bitset_flip(bs, get_irn_idx(edge->src));
724                 }
725
726                 if (ref_cnt < list_cnt)
727                         fprintf(stderr,"               following nodes are recorded in list, but not as user:\n");
728                 else
729                         fprintf(stderr,"               following nodes are user, but not recorded in list:\n");
730
731                 fprintf(stderr,"              ");
732                 bitset_foreach(bs, idx) {
733                         ir_node *src = get_idx_irn(w->irg, idx);
734                         ir_fprintf(stderr, " %+F", src);
735                 }
736                 fprintf(stderr, "\n");
737 #endif
738         }
739
740         bitset_free(bs);
741 }
742
743 /**
744  * Verifies the out edges of an irg.
745  */
746 int edges_verify(ir_graph *irg) {
747         struct build_walker w;
748         int    problem_found = 0;
749
750         /* verify normal edges only */
751         problem_found  = edges_verify_kind(irg, EDGE_KIND_NORMAL);
752
753         w.irg           = irg;
754         w.kind          = EDGE_KIND_NORMAL;
755         w.problem_found = 0;
756
757         /* verify counter */
758         irg_walk_anchors(irg, clear_links, count_user, &w);
759         irg_walk_anchors(irg, NULL, verify_edge_counter, &w);
760
761         return problem_found ? 1 : w.problem_found;
762 }
763
764 void init_edges(void)
765 {
766         FIRM_DBG_REGISTER(dbg, DBG_EDGES);
767         /* firm_dbg_set_mask(dbg, -1); */
768 }
769
770 void edges_init_dbg(int do_dbg) {
771         edges_dbg = do_dbg;
772 }
773
774 void edges_activate(ir_graph *irg)
775 {
776         edges_activate_kind(irg, EDGE_KIND_NORMAL);
777         edges_activate_kind(irg, EDGE_KIND_BLOCK);
778 }
779
780 void edges_deactivate(ir_graph *irg)
781 {
782         edges_deactivate_kind(irg, EDGE_KIND_NORMAL);
783         edges_deactivate_kind(irg, EDGE_KIND_BLOCK);
784 }
785
786 int edges_assure(ir_graph *irg)
787 {
788         int activated = edges_activated(irg);
789
790         if(!activated)
791                 edges_activate(irg);
792
793         return activated;
794 }
795
796 void edges_node_deleted(ir_node *irn, ir_graph *irg)
797 {
798         edges_node_deleted_kind(irn, EDGE_KIND_NORMAL, irg);
799         edges_node_deleted_kind(irn, EDGE_KIND_BLOCK, irg);
800 }
801
802
803 const ir_edge_t *(get_irn_out_edge_first_kind)(const ir_node *irn, ir_edge_kind_t kind)
804 {
805         return _get_irn_out_edge_first_kind(irn, kind);
806 }
807
808 const ir_edge_t *(get_irn_out_edge_next)(const ir_node *irn, const ir_edge_t *last)
809 {
810         return _get_irn_out_edge_next(irn, last);
811 }
812
813 ir_node *(get_edge_src_irn)(const ir_edge_t *edge)
814 {
815         return _get_edge_src_irn(edge);
816 }
817
818 int (get_edge_src_pos)(const ir_edge_t *edge)
819 {
820         return _get_edge_src_pos(edge);
821 }
822
823 int (get_irn_n_edges_kind)(const ir_node *irn, ir_edge_kind_t kind)
824 {
825         return _get_irn_n_edges_kind(irn, kind);
826 }
827
828 void dump_all_out_edges(ir_node *irn)
829 {
830         int i;
831         for(i = 0; i < EDGE_KIND_LAST; ++i) {
832                 const ir_edge_t *edge;
833
834                 printf("kind \"%s\"\n", get_kind_str(i));
835                 foreach_out_edge_kind(irn, edge, i) {
836                         ir_printf("\t%+F(%d)\n", edge->src, edge->pos);
837                 }
838         }
839 }