- reenabled callgraph
[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  * @param tgt  the edge target
243  * @param kind the kind of the edge
244  */
245 static INLINE void edge_change_cnt(ir_node *tgt, ir_edge_kind_t kind, int ofs) {
246         irn_edge_info_t *info = _get_irn_edge_info(tgt, kind);
247         info->out_count += ofs;
248
249 #if 0
250         assert(info->out_count >= 0);
251         if (info->out_count == 0 && kind == EDGE_KIND_NORMAL) {
252                 /* tgt lost it's last user */
253                 int i;
254
255                 for (i = get_irn_arity(tgt) - 1; i >= -1; --i) {
256                         ir_node *prev = get_irn_n(tgt, i);
257
258                         edges_notify_edge(tgt, i, NULL, prev, current_ir_graph);
259                 }
260                 for (i = get_irn_deps(tgt) - 1; i >= 0; --i) {
261                         ir_node *prev = get_irn_dep(tgt, i);
262
263                         edges_notify_edge_kind(tgt, i, NULL, prev, EDGE_KIND_DEP, current_ir_graph);
264
265                 }
266         }
267 #endif
268 }
269
270 /**
271  * Verify the edge list of a node, ie. ensure it's a loop:
272  * head -> e_1 -> ... -> e_n -> head
273  */
274 static INLINE void vrfy_list_head(ir_node *irn, ir_edge_kind_t kind) {
275         int                    err       = 0;
276         int                    num       = 0;
277         pset                   *lh_set   = pset_new_ptr(16);
278         const struct list_head *head     = _get_irn_outs_head(irn, kind);
279         const struct list_head *pos;
280
281         list_for_each(pos, head) {
282                 if (pset_find_ptr(lh_set, pos)) {
283                         const ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
284
285                         ir_fprintf(stderr, "EDGE Verifier: edge list broken (self loop not to head) for %+F:\n", irn);
286                         fprintf(stderr, "- at list entry %d\n", num);
287                         if (edge->invalid)
288                                 fprintf(stderr, "- edge(%ld) is invalid\n", edge_get_id(edge));
289                         if (edge->src)
290                                 ir_fprintf(stderr, "- edge(%ld) %+F(%d)\n", edge_get_id(edge), edge->src, edge->pos);
291                         err = 1;
292                         break;
293                 }
294                 num++;
295                 pset_insert_ptr(lh_set, pos);
296         }
297
298         del_pset(lh_set);
299
300         assert(err == 0);
301 }
302
303 /* The edge from (src, pos) -> old_tgt is redirected to tgt */
304 void edges_notify_edge_kind(ir_node *src, int pos, ir_node *tgt,
305                             ir_node *old_tgt, ir_edge_kind_t kind,
306                             ir_graph *irg)
307 {
308         const char *msg = "";
309         irg_edge_info_t *info;
310         set *edges;
311         ir_edge_t *templ;
312         ir_edge_t *edge;
313
314         assert(edges_activated_kind(irg, kind));
315
316         /*
317          * Only do something, if the old and new target differ.
318          */
319         if(tgt == old_tgt)
320                 return;
321
322         info  = _get_irg_edge_info(irg, kind);
323         edges = info->edges;
324         templ = alloca(EDGE_SIZE);
325
326         /* Initialize the edge template to search in the set. */
327         memset(templ, 0, EDGE_SIZE);
328         templ->src     = src;
329         templ->pos     = pos;
330         templ->invalid = 0;
331         templ->present = 0;
332         templ->kind    = kind;
333         DEBUG_ONLY(templ->src_nr = get_irn_node_nr(src));
334
335         /*
336          * If the target is NULL, the edge shall be deleted.
337          */
338         if (tgt == NULL) {
339                 /* search the edge in the set. */
340                 edge = set_find(edges, templ, EDGE_SIZE, edge_hash(templ));
341
342                 /* mark the edge invalid if it was found */
343                 if (edge) {
344                         msg = "deleting";
345                         list_del(&edge->list);
346                         edge->invalid = 1;
347                         edge->pos = -2;
348                         edge->src = NULL;
349 #ifdef DEBUG_libfirm
350                         edge->edge_nr = -1;
351 #endif /* DEBUG_libfirm */
352                         edge_change_cnt(old_tgt, kind, -1);
353                 }
354
355                 /* If the edge was not found issue a warning on the debug stream */
356                 else {
357                         msg = "edge to delete not found!\n";
358                 }
359         } /* if */
360
361         /*
362          * The target is not NULL and the old target differs
363          * from the new target, the edge shall be moved (if the
364          * old target was != NULL) or added (if the old target was
365          * NULL).
366          */
367         else {
368                 struct list_head *head = _get_irn_outs_head(tgt, kind);
369
370                 assert(head->next && head->prev &&
371                                 "target list head must have been initialized");
372
373                 /* If the old target is not null, the edge is moved. */
374                 if (old_tgt) {
375                         edge = set_find(edges, templ, EDGE_SIZE, edge_hash(templ));
376                         assert(edge && "edge to redirect not found!");
377                         assert(! edge->invalid && "Invalid edge encountered");
378
379                         msg = "redirecting";
380
381                         list_move(&edge->list, head);
382                         edge_change_cnt(old_tgt, kind, -1);
383                 }
384
385                 /* The old target was null, thus, the edge is newly created. */
386                 else {
387                         edge = set_insert(edges, templ, EDGE_SIZE, edge_hash(templ));
388
389                         assert(! edge->invalid && "Freshly inserted edge is invalid?!?");
390                         assert(edge->list.next == NULL && edge->list.prev == NULL &&
391                                 "New edge must not have list head initialized");
392
393                         msg = "adding";
394                         list_add(&edge->list, head);
395 #ifdef DEBUG_libfirm
396                         edge->edge_nr = ++last_edge_num;
397 #endif /* DEBUG_libfirm */
398                 }
399
400                 edge_change_cnt(tgt, kind, +1);
401         } /* else */
402
403 #ifndef DEBUG_libfirm
404         /* verify list heads */
405         if (edges_dbg) {
406                 if (tgt)
407                         vrfy_list_head(tgt, kind);
408                 if (old_tgt)
409                         vrfy_list_head(old_tgt, kind);
410         }
411 #endif
412
413         DBG((dbg, LEVEL_5, "announce out edge: %+F %d-> %+F(%+F): %s\n", src, pos, tgt, old_tgt, msg));
414 }
415
416 void edges_notify_edge(ir_node *src, int pos, ir_node *tgt, ir_node *old_tgt, ir_graph *irg)
417 {
418         if(edges_activated_kind(irg, EDGE_KIND_NORMAL)) {
419                 edges_notify_edge_kind(src, pos, tgt, old_tgt, EDGE_KIND_NORMAL, irg);
420         }
421
422         if (edges_activated_kind(irg, EDGE_KIND_BLOCK) && is_Block(src)) {
423                 /* do not use get_nodes_block() here, it fails when running unpinned */
424                 ir_node *bl_old = old_tgt ? get_irn_n(skip_Proj(old_tgt), -1) : NULL;
425                 ir_node *bl_tgt = NULL;
426
427                 if (tgt)
428                         bl_tgt = is_Bad(tgt) ? tgt : get_irn_n(skip_Proj(tgt), -1);
429
430                 edges_notify_edge_kind(src, pos, bl_tgt, bl_old, EDGE_KIND_BLOCK, irg);
431         }
432 }
433
434 /**
435  * Delete all in edges of a given kind from the node old.
436  *
437  * @param old   the node
438  * @param kind  the kind of edges to remove
439  * @param irg   the irg of the old node
440  */
441 static void edges_node_deleted_kind(ir_node *old, ir_edge_kind_t kind, ir_graph *irg)
442 {
443         int i, n;
444
445         if(!edges_activated_kind(irg, kind))
446                 return;
447
448         DBG((dbg, LEVEL_5, "node deleted (kind: %s): %+F\n", get_kind_str(kind), old));
449
450         foreach_tgt(old, i, n, kind) {
451                 ir_node *old_tgt = get_n(old, i, kind);
452                 edges_notify_edge_kind(old, i, NULL, old_tgt, kind, irg);
453         }
454 }
455
456 struct build_walker {
457         ir_graph       *irg;
458         ir_edge_kind_t kind;
459         bitset_t       *reachable;
460         unsigned       problem_found;
461 };
462
463 /**
464  * Post-Walker: notify all edges
465  */
466 static void build_edges_walker(ir_node *irn, void *data) {
467         struct build_walker *w = data;
468         int                 i, n;
469
470         if (! edges_activated_kind(w->irg, w->kind))
471                 return;
472
473         foreach_tgt(irn, i, n, w->kind)
474                 edges_notify_edge_kind(irn, i, get_n(irn, i, w->kind), NULL, w->kind, w->irg);
475 }
476
477 /**
478  * Pre-Walker: initializes the list-heads and set the out-count
479  * of all nodes to 0.
480  */
481 static void init_lh_walker(ir_node *irn, void *data) {
482         struct build_walker *w = data;
483         INIT_LIST_HEAD(_get_irn_outs_head(irn, w->kind));
484         _get_irn_edge_info(irn, w->kind)->out_count = 0;
485 }
486
487 /**
488  * Visitor: initializes the list-heads and set the out-count
489  * of all nodes to 0 of nodes that are not seen so far.
490  */
491 static void visitor(ir_node *irn, void *data) {
492         if (irn_not_visited(irn)) {
493                 mark_irn_visited(irn);
494                 init_lh_walker(irn, data);
495         }
496 }
497
498 /*
499  * Build the initial edge set.
500  * Beware, this is not a simple task because it suffers from two
501  * difficulties:
502  * - the anchor set allows access to Nodes that may not be reachable from
503  *   the End node
504  * - the identities add nodes to the "root set" that are not yet reachable
505  *   from End. However, after some transformations, the CSE may revival these
506  *   nodes
507  *
508  * These problems can be fixed using different strategies:
509  * - Add an age flag to every node. Whenever the edge of a node is older
510  *   then the current edge, invalidate the edges of this node.
511  *   While this would help for revivaled nodes, it increases memory and runtime.
512  * - Delete the identities set.
513  *   Solves the revival problem, but may increase the memory consumption, as
514  *   nodes cannot be revivaled at all.
515  * - Manually iterate over the identities root set. This did not consume more memory
516  *   but increase the computation time because the |identities| >= |V|
517  *
518  * Currently, we use the last option.
519  */
520 void edges_activate_kind(ir_graph *irg, ir_edge_kind_t kind)
521 {
522         struct build_walker w;
523         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
524
525         w.irg  = irg;
526         w.kind = kind;
527
528         info->activated = 1;
529         edges_init_graph_kind(irg, kind);
530         irg_walk_anchors(irg, init_lh_walker, build_edges_walker, &w);
531         visit_all_identities(irg, visitor, &w);
532 }
533
534 void edges_deactivate_kind(ir_graph *irg, ir_edge_kind_t kind)
535 {
536         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
537
538         info->activated = 0;
539         if (info->edges) {
540                 del_set(info->edges);
541                 info->edges = NULL;
542         }
543 }
544
545 int (edges_activated_kind)(const ir_graph *irg, ir_edge_kind_t kind)
546 {
547         return _edges_activated_kind(irg, kind);
548 }
549
550
551 /**
552  * Reroute all use-edges from a node to another.
553  * @param from The node whose use-edges shall be withdrawn.
554  * @param to   The node to which all the use-edges of @p from shall be
555  *             sent to.
556  * @param irg  The graph.
557  */
558 void edges_reroute_kind(ir_node *from, ir_node *to, ir_edge_kind_t kind, ir_graph *irg)
559 {
560         set_edge_func_t *set_edge = edge_kind_info[kind].set_edge;
561
562         if(set_edge && edges_activated_kind(irg, kind)) {
563                 struct list_head *head = _get_irn_outs_head(from, kind);
564
565                 DBG((dbg, LEVEL_5, "reroute from %+F to %+F\n", from, to));
566
567                 while(head != head->next) {
568                         ir_edge_t *edge = list_entry(head->next, ir_edge_t, list);
569                         assert(edge->pos >= -1);
570                         set_edge(edge->src, edge->pos, to);
571                 }
572         }
573 }
574
575 static void verify_set_presence(ir_node *irn, void *data)
576 {
577         struct build_walker *w     = data;
578         set                 *edges = _get_irg_edge_info(w->irg, w->kind)->edges;
579         int i, n;
580
581         foreach_tgt(irn, i, n, w->kind) {
582                 ir_edge_t templ, *e;
583
584                 templ.src = irn;
585                 templ.pos = i;
586
587                 e = set_find(edges, &templ, EDGE_SIZE, edge_hash(&templ));
588                 if(e != NULL) {
589                         e->present = 1;
590                 } else {
591                         w->problem_found = 1;
592                         ir_fprintf(stderr, "Edge Verifier: edge %+F,%d -> %+F (kind: \"%s\") is missing\n",
593                                 irn, i, get_n(irn, i, w->kind), get_kind_str(w->kind));
594                 }
595         }
596 }
597
598 static void verify_list_presence(ir_node *irn, void *data)
599 {
600         struct build_walker *w = data;
601         const ir_edge_t     *e;
602
603         bitset_set(w->reachable, get_irn_idx(irn));
604
605         /* check list heads */
606         vrfy_list_head(irn, w->kind);
607
608         foreach_out_edge_kind(irn, e, w->kind) {
609                 ir_node *tgt;
610
611                 if (w->kind == EDGE_KIND_NORMAL && get_irn_arity(e->src) <= e->pos) {
612                         w->problem_found = 1;
613                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F -> %+F recorded at src position %d, but src has arity %d\n",
614                                 edge_get_id(e), e->src, irn, e->pos, get_irn_arity(e->src));
615                         continue;
616                 }
617
618                 tgt = get_n(e->src, e->pos, w->kind);
619
620                 if (irn != tgt) {
621                         w->problem_found = 1;
622                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d (kind \"%s\") is no out edge of %+F but of %+F\n",
623                                 edge_get_id(e), e->src, e->pos, get_kind_str(w->kind), irn, tgt);
624                 }
625         }
626 }
627
628 int edges_verify_kind(ir_graph *irg, ir_edge_kind_t kind)
629 {
630         struct build_walker w;
631         set                 *edges = _get_irg_edge_info(irg, kind)->edges;
632         ir_edge_t           *e;
633
634         w.irg           = irg;
635         w.kind          = kind;
636         w.reachable     = bitset_alloca(get_irg_last_idx(irg));
637         w.problem_found = 0;
638
639         /* Clear the present bit in all edges available. */
640         for (e = set_first(edges); e; e = set_next(edges))
641                 e->present = 0;
642
643         irg_walk_graph(irg, verify_set_presence, verify_list_presence, &w);
644
645         /*
646          * Dump all edges which are not invalid and not present.
647          * These edges are superfluous and their presence in the
648          * edge set is wrong.
649          */
650         for (e = set_first(edges); e; e = set_next(edges)) {
651                 if (! e->invalid && ! e->present && bitset_is_set(w.reachable, get_irn_idx(e->src))) {
652                         w.problem_found = 1;
653                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d is superfluous\n", edge_get_id(e), e->src, e->pos);
654                 }
655         }
656
657         return w.problem_found;
658 }
659
660 #define IGNORE_NODE(irn) (is_Bad((irn)) || is_Block((irn)))
661
662 /**
663  * Clear link field of all nodes.
664  */
665 static void clear_links(ir_node *irn, void *env) {
666         struct build_walker *w  = env;
667         bitset_t            *bs;
668
669         if (IGNORE_NODE(irn)) {
670                 set_irn_link(irn, NULL);
671                 return;
672         }
673
674         bs = bitset_malloc(get_irg_last_idx(w->irg));
675         set_irn_link(irn, bs);
676 }
677
678 /**
679  * Increases count (stored in link field) for all operands of a node.
680  */
681 static void count_user(ir_node *irn, void *env) {
682         int i;
683         int first;
684         (void) env;
685
686         first = get_irn_first(irn);
687         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
688                 ir_node  *op = get_irn_n(irn, i);
689                 bitset_t *bs = get_irn_link(op);
690
691                 if (bs)
692                         bitset_set(bs, get_irn_idx(irn));
693         }
694 }
695
696 /**
697  * Verifies if collected count, number of edges in list and stored edge count are in sync.
698  */
699 static void verify_edge_counter(ir_node *irn, void *env) {
700         struct build_walker    *w       = env;
701         bitset_t               *bs;
702         int                    list_cnt;
703         int                    ref_cnt;
704         int                    edge_cnt;
705         unsigned long          idx;
706         const struct list_head *head;
707         const struct list_head *pos;
708
709         if (IGNORE_NODE(irn))
710                 return;
711
712         bs       = get_irn_link(irn);
713         list_cnt = 0;
714         ref_cnt = 0;
715         edge_cnt = _get_irn_edge_info(irn, EDGE_KIND_NORMAL)->out_count;
716         head     = _get_irn_outs_head(irn, EDGE_KIND_NORMAL);
717
718         /* We can iterate safely here, list heads have already been verified. */
719         list_for_each(pos, head) {
720                 list_cnt++;
721         }
722
723         /* check all nodes that reference us and count edges that point number
724          * of ins that actually point to us */
725         ref_cnt = 0;
726         bitset_foreach(bs, idx) {
727                 int i, arity;
728                 ir_node *src = get_idx_irn(w->irg, idx);
729
730                 arity = get_irn_arity(src);
731                 for(i = 0; i < arity; ++i) {
732                         ir_node *in = get_irn_n(src, i);
733                         if(in == irn)
734                                 ref_cnt++;
735                 }
736         }
737
738         if (edge_cnt != list_cnt) {
739                 w->problem_found = 1;
740                 ir_fprintf(stderr, "Edge Verifier: edge count is %d, but %d edge(s) are recorded in list at %+F\n",
741                         edge_cnt, list_cnt, irn);
742         }
743
744         if (ref_cnt != list_cnt) {
745                 w->problem_found = 1;
746                 ir_fprintf(stderr, "Edge Verifier: %+F reachable by %d node(s), but the list contains %d edge(s)\n",
747                         irn, ref_cnt, list_cnt);
748
749                 /* Matze: buggy if a node has multiple ins pointing at irn */
750 #if 0
751                 list_for_each(pos, head) {
752                         ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
753                         bitset_flip(bs, get_irn_idx(edge->src));
754                 }
755
756                 if (ref_cnt < list_cnt)
757                         fprintf(stderr,"               following nodes are recorded in list, but not as user:\n");
758                 else
759                         fprintf(stderr,"               following nodes are user, but not recorded in list:\n");
760
761                 fprintf(stderr,"              ");
762                 bitset_foreach(bs, idx) {
763                         ir_node *src = get_idx_irn(w->irg, idx);
764                         ir_fprintf(stderr, " %+F", src);
765                 }
766                 fprintf(stderr, "\n");
767 #endif
768         }
769
770         bitset_free(bs);
771 }
772
773 /**
774  * Verifies the out edges of an irg.
775  */
776 int edges_verify(ir_graph *irg) {
777         struct build_walker w;
778         int    problem_found = 0;
779
780         /* verify normal edges only */
781         problem_found  = edges_verify_kind(irg, EDGE_KIND_NORMAL);
782
783         w.irg           = irg;
784         w.kind          = EDGE_KIND_NORMAL;
785         w.problem_found = 0;
786
787         /* verify counter */
788         irg_walk_anchors(irg, clear_links, count_user, &w);
789         irg_walk_anchors(irg, NULL, verify_edge_counter, &w);
790
791         return problem_found ? 1 : w.problem_found;
792 }
793
794 void init_edges(void)
795 {
796         FIRM_DBG_REGISTER(dbg, DBG_EDGES);
797         /* firm_dbg_set_mask(dbg, -1); */
798 }
799
800 void edges_init_dbg(int do_dbg) {
801         edges_dbg = do_dbg;
802 }
803
804 void edges_activate(ir_graph *irg)
805 {
806         edges_activate_kind(irg, EDGE_KIND_NORMAL);
807         edges_activate_kind(irg, EDGE_KIND_BLOCK);
808 }
809
810 void edges_deactivate(ir_graph *irg)
811 {
812         edges_deactivate_kind(irg, EDGE_KIND_NORMAL);
813         edges_deactivate_kind(irg, EDGE_KIND_BLOCK);
814 }
815
816 int edges_assure(ir_graph *irg)
817 {
818         int activated = edges_activated(irg);
819
820         if(!activated)
821                 edges_activate(irg);
822
823         return activated;
824 }
825
826 void edges_node_deleted(ir_node *irn, ir_graph *irg)
827 {
828         edges_node_deleted_kind(irn, EDGE_KIND_NORMAL, irg);
829         edges_node_deleted_kind(irn, EDGE_KIND_BLOCK, irg);
830 }
831
832
833 const ir_edge_t *(get_irn_out_edge_first_kind)(const ir_node *irn, ir_edge_kind_t kind)
834 {
835         return _get_irn_out_edge_first_kind(irn, kind);
836 }
837
838 const ir_edge_t *(get_irn_out_edge_next)(const ir_node *irn, const ir_edge_t *last)
839 {
840         return _get_irn_out_edge_next(irn, last);
841 }
842
843 ir_node *(get_edge_src_irn)(const ir_edge_t *edge)
844 {
845         return _get_edge_src_irn(edge);
846 }
847
848 int (get_edge_src_pos)(const ir_edge_t *edge)
849 {
850         return _get_edge_src_pos(edge);
851 }
852
853 int (get_irn_n_edges_kind)(const ir_node *irn, ir_edge_kind_t kind)
854 {
855         return _get_irn_n_edges_kind(irn, kind);
856 }
857
858 void dump_all_out_edges(ir_node *irn)
859 {
860         int i;
861         for(i = 0; i < EDGE_KIND_LAST; ++i) {
862                 const ir_edge_t *edge;
863
864                 printf("kind \"%s\"\n", get_kind_str(i));
865                 foreach_out_edge_kind(irn, edge, i) {
866                         ir_printf("\t%+F(%d)\n", edge->src, edge->pos);
867                 }
868         }
869 }
870
871 static void irg_block_edges_walk2(ir_node *bl,
872                                 irg_walk_func *pre, irg_walk_func *post,
873                                 void *env) {
874         const ir_edge_t *edge, *next;
875
876         if (Block_not_block_visited(bl)) {
877                 mark_Block_block_visited(bl);
878
879                 if (pre)
880                         pre(bl, env);
881
882                 foreach_out_edge_kind_safe(bl, edge, next, EDGE_KIND_BLOCK) {
883                         /* find the corresponding successor block. */
884                         ir_node *pred = get_edge_src_irn(edge);
885                         irg_block_edges_walk2(pred, pre, post, env);
886                 }
887
888                 if (post)
889                         post(bl, env);
890         }
891 }
892
893 /* Walks only over Block nodes in the graph.  Has it's own visited
894    flag, so that it can be interleaved with the other walker.         */
895 void irg_block_edges_walk(ir_node *node,
896                           irg_walk_func *pre, irg_walk_func *post,
897                           void *env) {
898
899         assert(edges_activated(current_ir_graph));
900         assert(is_Block(node));
901
902         inc_irg_block_visited(current_ir_graph);
903         irg_block_edges_walk2(node, pre, post, env);
904 }