Remove enum tarval_classification_t.
[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                 /* do not use get_nodes_block() here, it fails when running unpinned */
401                 ir_node *bl_old = old_tgt ? get_irn_n(skip_Proj(old_tgt), -1) : NULL;
402                 ir_node *bl_tgt = NULL;
403
404                 if (tgt)
405                         bl_tgt = is_Bad(tgt) ? tgt : get_irn_n(skip_Proj(tgt), -1);
406
407                 edges_notify_edge_kind(src, pos, bl_tgt, bl_old, EDGE_KIND_BLOCK, irg);
408         }
409 }
410
411
412 void edges_node_deleted_kind(ir_node *old, ir_edge_kind_t kind, ir_graph *irg)
413 {
414         int i, n;
415
416         if(!edges_activated_kind(irg, kind))
417                 return;
418
419         DBG((dbg, LEVEL_5, "node deleted (kind: %s): %+F\n", get_kind_str(kind), old));
420
421         foreach_tgt(old, i, n, kind) {
422                 ir_node *old_tgt = get_n(old, i, kind);
423                 edges_notify_edge_kind(old, i, NULL, old_tgt, kind, irg);
424         }
425 }
426
427 struct build_walker {
428         ir_graph       *irg;
429         ir_edge_kind_t kind;
430         bitset_t       *reachable;
431         unsigned       problem_found;
432 };
433
434 /**
435  * Post-Walker: notify all edges
436  */
437 static void build_edges_walker(ir_node *irn, void *data) {
438         struct build_walker *w = data;
439         int                 i, n;
440
441         if (! edges_activated_kind(w->irg, w->kind))
442                 return;
443
444         foreach_tgt(irn, i, n, w->kind)
445                 edges_notify_edge_kind(irn, i, get_n(irn, i, w->kind), NULL, w->kind, w->irg);
446 }
447
448 /**
449  * Pre-Walker: initializes the list-heads and set the out-count
450  * of all nodes to 0.
451  */
452 static void init_lh_walker(ir_node *irn, void *data) {
453         struct build_walker *w = data;
454         INIT_LIST_HEAD(_get_irn_outs_head(irn, w->kind));
455         _get_irn_edge_info(irn, w->kind)->out_count = 0;
456 }
457
458 /**
459  * Visitor: initializes the list-heads and set the out-count
460  * of all nodes to 0 of nodes that are not seen so far.
461  */
462 static void visitor(ir_node *irn, void *data) {
463         if (irn_not_visited(irn)) {
464                 mark_irn_visited(irn);
465                 init_lh_walker(irn, data);
466         }
467 }
468
469 /*
470  * Build the initial edge set.
471  * Beware, this is not a simple task because it suffers from two
472  * difficulties:
473  * - the anchor set allows access to Nodes that may not be reachable from
474  *   the End node
475  * - the identities add nodes to the "root set" that are not yet reachable
476  *   from End. However, after some transformations, the CSE may revival these
477  *   nodes
478  *
479  * These problems can be fixed using different strategies:
480  * - Add an age flag to every node. Whenever the edge of a node is older
481  *   then the current edge, invalidate the edges of this node.
482  *   While this would help for revivaled nodes, it increases memory and runtime.
483  * - Delete the identities set.
484  *   Solves the revival problem, but may increase the memory consumption, as
485  *   nodes cannot be revivaled at all.
486  * - Manually iterate over the identities root set. This did not consume more memory
487  *   but increase the computation time because the |identities| >= |V|
488  *
489  * Currently, we use the last option.
490  */
491 void edges_activate_kind(ir_graph *irg, ir_edge_kind_t kind)
492 {
493         struct build_walker w;
494         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
495
496         w.irg  = irg;
497         w.kind = kind;
498
499         info->activated = 1;
500         edges_init_graph_kind(irg, kind);
501         irg_walk_anchors(irg, init_lh_walker, build_edges_walker, &w);
502         visit_all_identities(irg, visitor, &w);
503 }
504
505 void edges_deactivate_kind(ir_graph *irg, ir_edge_kind_t kind)
506 {
507         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
508
509         info->activated = 0;
510         if (info->edges) {
511                 del_set(info->edges);
512                 info->edges = NULL;
513         }
514 }
515
516 int (edges_activated_kind)(const ir_graph *irg, ir_edge_kind_t kind)
517 {
518         return _edges_activated_kind(irg, kind);
519 }
520
521
522 /**
523  * Reroute all use-edges from a node to another.
524  * @param from The node whose use-edges shall be withdrawn.
525  * @param to   The node to which all the use-edges of @p from shall be
526  *             sent to.
527  * @param irg  The graph.
528  */
529 void edges_reroute_kind(ir_node *from, ir_node *to, ir_edge_kind_t kind, ir_graph *irg)
530 {
531         set_edge_func_t *set_edge = edge_kind_info[kind].set_edge;
532
533         if(set_edge && edges_activated_kind(irg, kind)) {
534                 struct list_head *head = _get_irn_outs_head(from, kind);
535
536                 DBG((dbg, LEVEL_5, "reroute from %+F to %+F\n", from, to));
537
538                 while(head != head->next) {
539                         ir_edge_t *edge = list_entry(head->next, ir_edge_t, list);
540                         assert(edge->pos >= -1);
541                         set_edge(edge->src, edge->pos, to);
542                 }
543         }
544 }
545
546 static void verify_set_presence(ir_node *irn, void *data)
547 {
548         struct build_walker *w     = data;
549         set                 *edges = _get_irg_edge_info(w->irg, w->kind)->edges;
550         int i, n;
551
552         foreach_tgt(irn, i, n, w->kind) {
553                 ir_edge_t templ, *e;
554
555                 templ.src = irn;
556                 templ.pos = i;
557
558                 e = set_find(edges, &templ, EDGE_SIZE, edge_hash(&templ));
559                 if(e != NULL) {
560                         e->present = 1;
561                 } else {
562                         w->problem_found = 1;
563                         ir_fprintf(stderr, "Edge Verifier: edge %+F,%d -> %+F (kind: \"%s\") is missing\n",
564                                 irn, i, get_n(irn, i, w->kind), get_kind_str(w->kind));
565                 }
566         }
567 }
568
569 static void verify_list_presence(ir_node *irn, void *data)
570 {
571         struct build_walker *w = data;
572         const ir_edge_t     *e;
573
574         bitset_set(w->reachable, get_irn_idx(irn));
575
576         /* check list heads */
577         vrfy_list_head(irn, w->kind);
578
579         foreach_out_edge_kind(irn, e, w->kind) {
580                 ir_node *tgt;
581
582                 if (w->kind == EDGE_KIND_NORMAL && get_irn_arity(e->src) <= e->pos) {
583                         w->problem_found = 1;
584                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F -> %+F recorded at src position %d, but src has arity %d\n",
585                                 edge_get_id(e), e->src, irn, e->pos, get_irn_arity(e->src));
586                         continue;
587                 }
588
589                 tgt = get_n(e->src, e->pos, w->kind);
590
591                 if (irn != tgt) {
592                         w->problem_found = 1;
593                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d (kind \"%s\") is no out edge of %+F but of %+F\n",
594                                 edge_get_id(e), e->src, e->pos, get_kind_str(w->kind), irn, tgt);
595                 }
596         }
597 }
598
599 int edges_verify_kind(ir_graph *irg, ir_edge_kind_t kind)
600 {
601         struct build_walker w;
602         set                 *edges = _get_irg_edge_info(irg, kind)->edges;
603         ir_edge_t           *e;
604
605         w.irg           = irg;
606         w.kind          = kind;
607         w.reachable     = bitset_alloca(get_irg_last_idx(irg));
608         w.problem_found = 0;
609
610         /* Clear the present bit in all edges available. */
611         for (e = set_first(edges); e; e = set_next(edges))
612                 e->present = 0;
613
614         irg_walk_graph(irg, verify_set_presence, verify_list_presence, &w);
615
616         /*
617          * Dump all edges which are not invalid and not present.
618          * These edges are superfluous and their presence in the
619          * edge set is wrong.
620          */
621         for (e = set_first(edges); e; e = set_next(edges)) {
622                 if (! e->invalid && ! e->present && bitset_is_set(w.reachable, get_irn_idx(e->src))) {
623                         w.problem_found = 1;
624                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d is superfluous\n", edge_get_id(e), e->src, e->pos);
625                 }
626         }
627
628         return w.problem_found;
629 }
630
631 #define IGNORE_NODE(irn) (is_Bad((irn)) || is_Block((irn)))
632
633 /**
634  * Clear link field of all nodes.
635  */
636 static void clear_links(ir_node *irn, void *env) {
637         struct build_walker *w  = env;
638         bitset_t            *bs;
639
640         if (IGNORE_NODE(irn)) {
641                 set_irn_link(irn, NULL);
642                 return;
643         }
644
645         bs = bitset_malloc(get_irg_last_idx(w->irg));
646         set_irn_link(irn, bs);
647 }
648
649 /**
650  * Increases count (stored in link field) for all operands of a node.
651  */
652 static void count_user(ir_node *irn, void *env) {
653         int i;
654         int first;
655         (void) env;
656
657         first = get_irn_first(irn);
658         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
659                 ir_node  *op = get_irn_n(irn, i);
660                 bitset_t *bs = get_irn_link(op);
661
662                 if (bs)
663                         bitset_set(bs, get_irn_idx(irn));
664         }
665 }
666
667 /**
668  * Verifies if collected count, number of edges in list and stored edge count are in sync.
669  */
670 static void verify_edge_counter(ir_node *irn, void *env) {
671         struct build_walker    *w       = env;
672         bitset_t               *bs;
673         int                    list_cnt;
674         int                    ref_cnt;
675         int                    edge_cnt;
676         unsigned long          idx;
677         const struct list_head *head;
678         const struct list_head *pos;
679
680         if (IGNORE_NODE(irn))
681                 return;
682
683         bs       = get_irn_link(irn);
684         list_cnt = 0;
685         ref_cnt = 0;
686         edge_cnt = _get_irn_edge_info(irn, EDGE_KIND_NORMAL)->out_count;
687         head     = _get_irn_outs_head(irn, EDGE_KIND_NORMAL);
688
689         /* We can iterate safely here, list heads have already been verified. */
690         list_for_each(pos, head) {
691                 list_cnt++;
692         }
693
694         /* check all nodes that reference us and count edges that point number
695          * of ins that actually point to us */
696         ref_cnt = 0;
697         bitset_foreach(bs, idx) {
698                 int i, arity;
699                 ir_node *src = get_idx_irn(w->irg, idx);
700
701                 arity = get_irn_arity(src);
702                 for(i = 0; i < arity; ++i) {
703                         ir_node *in = get_irn_n(src, i);
704                         if(in == irn)
705                                 ref_cnt++;
706                 }
707         }
708
709         if (edge_cnt != list_cnt) {
710                 w->problem_found = 1;
711                 ir_fprintf(stderr, "Edge Verifier: edge count is %d, but %d edge(s) are recorded in list at %+F\n",
712                         edge_cnt, list_cnt, irn);
713         }
714
715         if (ref_cnt != list_cnt) {
716                 w->problem_found = 1;
717                 ir_fprintf(stderr, "Edge Verifier: %+F reachable by %d node(s), but the list contains %d edge(s)\n",
718                         irn, ref_cnt, list_cnt);
719
720                 /* Matze: buggy if a node has multiple ins pointing at irn */
721 #if 0
722                 list_for_each(pos, head) {
723                         ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
724                         bitset_flip(bs, get_irn_idx(edge->src));
725                 }
726
727                 if (ref_cnt < list_cnt)
728                         fprintf(stderr,"               following nodes are recorded in list, but not as user:\n");
729                 else
730                         fprintf(stderr,"               following nodes are user, but not recorded in list:\n");
731
732                 fprintf(stderr,"              ");
733                 bitset_foreach(bs, idx) {
734                         ir_node *src = get_idx_irn(w->irg, idx);
735                         ir_fprintf(stderr, " %+F", src);
736                 }
737                 fprintf(stderr, "\n");
738 #endif
739         }
740
741         bitset_free(bs);
742 }
743
744 /**
745  * Verifies the out edges of an irg.
746  */
747 int edges_verify(ir_graph *irg) {
748         struct build_walker w;
749         int    problem_found = 0;
750
751         /* verify normal edges only */
752         problem_found  = edges_verify_kind(irg, EDGE_KIND_NORMAL);
753
754         w.irg           = irg;
755         w.kind          = EDGE_KIND_NORMAL;
756         w.problem_found = 0;
757
758         /* verify counter */
759         irg_walk_anchors(irg, clear_links, count_user, &w);
760         irg_walk_anchors(irg, NULL, verify_edge_counter, &w);
761
762         return problem_found ? 1 : w.problem_found;
763 }
764
765 void init_edges(void)
766 {
767         FIRM_DBG_REGISTER(dbg, DBG_EDGES);
768         /* firm_dbg_set_mask(dbg, -1); */
769 }
770
771 void edges_init_dbg(int do_dbg) {
772         edges_dbg = do_dbg;
773 }
774
775 void edges_activate(ir_graph *irg)
776 {
777         edges_activate_kind(irg, EDGE_KIND_NORMAL);
778         edges_activate_kind(irg, EDGE_KIND_BLOCK);
779 }
780
781 void edges_deactivate(ir_graph *irg)
782 {
783         edges_deactivate_kind(irg, EDGE_KIND_NORMAL);
784         edges_deactivate_kind(irg, EDGE_KIND_BLOCK);
785 }
786
787 int edges_assure(ir_graph *irg)
788 {
789         int activated = edges_activated(irg);
790
791         if(!activated)
792                 edges_activate(irg);
793
794         return activated;
795 }
796
797 void edges_node_deleted(ir_node *irn, ir_graph *irg)
798 {
799         edges_node_deleted_kind(irn, EDGE_KIND_NORMAL, irg);
800         edges_node_deleted_kind(irn, EDGE_KIND_BLOCK, irg);
801 }
802
803
804 const ir_edge_t *(get_irn_out_edge_first_kind)(const ir_node *irn, ir_edge_kind_t kind)
805 {
806         return _get_irn_out_edge_first_kind(irn, kind);
807 }
808
809 const ir_edge_t *(get_irn_out_edge_next)(const ir_node *irn, const ir_edge_t *last)
810 {
811         return _get_irn_out_edge_next(irn, last);
812 }
813
814 ir_node *(get_edge_src_irn)(const ir_edge_t *edge)
815 {
816         return _get_edge_src_irn(edge);
817 }
818
819 int (get_edge_src_pos)(const ir_edge_t *edge)
820 {
821         return _get_edge_src_pos(edge);
822 }
823
824 int (get_irn_n_edges_kind)(const ir_node *irn, ir_edge_kind_t kind)
825 {
826         return _get_irn_n_edges_kind(irn, kind);
827 }
828
829 void dump_all_out_edges(ir_node *irn)
830 {
831         int i;
832         for(i = 0; i < EDGE_KIND_LAST; ++i) {
833                 const ir_edge_t *edge;
834
835                 printf("kind \"%s\"\n", get_kind_str(i));
836                 foreach_out_edge_kind(irn, edge, i) {
837                         ir_printf("\t%+F(%d)\n", edge->src, edge->pos);
838                 }
839         }
840 }
841
842 static void irg_block_edges_walk2(ir_node *bl,
843                                 irg_walk_func *pre, irg_walk_func *post,
844                                 void *env) {
845         const ir_edge_t *edge, *next;
846
847         if (Block_not_block_visited(bl)) {
848                 mark_Block_block_visited(bl);
849
850                 if (pre)
851                         pre(bl, env);
852
853                 foreach_out_edge_kind_safe(bl, edge, next, EDGE_KIND_BLOCK) {
854                         /* find the corresponding successor block. */
855                         ir_node *pred = get_edge_src_irn(edge);
856                         irg_block_edges_walk2(pred, pre, post, env);
857                 }
858
859                 if (post)
860                         post(bl, env);
861         }
862 }
863
864 /* Walks only over Block nodes in the graph.  Has it's own visited
865    flag, so that it can be interleaved with the other walker.         */
866 void irg_block_edges_walk(ir_node *node,
867                           irg_walk_func *pre, irg_walk_func *post,
868                           void *env) {
869
870         assert(edges_activated(current_ir_graph));
871         assert(is_Block(node));
872
873         inc_irg_block_visited(current_ir_graph);
874         irg_block_edges_walk2(node, pre, post, env);
875 }