11245470d6bd81e557441dbfb78cbda2a3d932af
[libfirm] / ir / ir / iredges.c
1 /*
2  * Copyright (C) 1995-2008 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  * @brief
27  *   This are out-edges (also called def-use edges) that are dynamically
28  *   updated as the graph changes.
29  */
30 #include "config.h"
31
32 #include "irnode_t.h"
33 #include "iropt_t.h"
34 #include "iredgekinds.h"
35 #include "iredges_t.h"
36 #include "irgwalk.h"
37 #include "irdump_t.h"
38 #include "irprintf.h"
39 #include "debug.h"
40 #include "set.h"
41 #include "bitset.h"
42 #include "error.h"
43 #include "irpass_t.h"
44
45 #include "iredgeset.h"
46 #include "hashptr.h"
47
48 #define DO_REHASH
49 #define SCALAR_RETURN
50 #define HashSet                   ir_edgeset_t
51 #define HashSetIterator           ir_edgeset_iterator_t
52 #define ValueType                 ir_edge_t*
53 #define NullValue                 NULL
54 #define DeletedValue              ((ir_edge_t*)-1)
55 #define Hash(this,key)            (HASH_PTR(key->src) ^ (key->pos * 40013))
56 #define KeysEqual(this,key1,key2) ((key1->src) == (key2->src) && (key1->pos == key2->pos))
57 #define SetRangeEmpty(ptr,size)   memset(ptr, 0, (size) * sizeof((ptr)[0]))
58
59 #define hashset_init            ir_edgeset_init
60 void ir_edgeset_init_size(ir_edgeset_t *self, size_t size);
61 #define hashset_init_size       ir_edgeset_init_size
62 #define hashset_destroy         ir_edgeset_destroy
63 #define hashset_insert          ir_edgeset_insert
64 #define hashset_remove          ir_edgeset_remove
65 ir_edge_t *ir_edgeset_find(const ir_edgeset_t *self, const ir_edge_t*);
66 #define hashset_find            ir_edgeset_find
67 size_t ir_edgeset_size(const ir_edgeset_t *self);
68 #define hashset_size            ir_edgeset_size
69 #define hashset_iterator_init   ir_edgeset_iterator_init
70 #define hashset_iterator_next   ir_edgeset_iterator_next
71 #define hashset_remove_iterator ir_edgeset_remove_iterator
72
73 #include "hashset.c"
74
75 /**
76  * A function that allows for setting an edge.
77  * This abstraction is necessary since different edge kind have
78  * different methods of setting edges.
79  */
80 typedef void (set_edge_func_t)(ir_node *src, int pos, ir_node *tgt);
81
82 /**
83  * A function that returns the "arity" of a given edge kind
84  * for a node.
85  */
86 typedef int (get_edge_src_arity_func_t)(const ir_node *src);
87
88 /**
89  * A function that returns the pos'th edge of a given edge kind for a node.
90  */
91 typedef ir_node *(get_edge_src_n_func_t)(const ir_node *src, int pos);
92
93 /**
94  * Additional data for an edge kind.
95  */
96 typedef struct {
97         const char                *name;       /**< name of this edge kind */
98         set_edge_func_t           *set_edge;   /**< the set_edge function */
99         int                       first_idx;   /**< index of the first possible edge */
100         get_edge_src_arity_func_t *get_arity;  /**< the get_arity function */
101         get_edge_src_n_func_t     *get_n;      /**< the get_n function */
102 } ir_edge_kind_info_t;
103
104 /**
105  * Get the predecessor block.
106  */
107 static ir_node *get_block_n(const ir_node *block, int pos)
108 {
109         if (is_Block(block))
110                 return get_Block_cfgpred_block(block, pos);
111         /* might be a Bad */
112         return NULL;
113 }
114
115 static const ir_edge_kind_info_t edge_kind_info[EDGE_KIND_LAST] = {
116         { "normal"     , set_irn_n,   -1, get_irn_arity,  get_irn_n   },
117         { "block succs", NULL,         0, get_irn_arity,  get_block_n },
118         { "dependency",  set_irn_dep,  0, get_irn_deps,   get_irn_dep }
119 };
120
121 #define foreach_tgt(irn, i, n, kind) for (i = edge_kind_info[kind].first_idx, n = edge_kind_info[kind].get_arity(irn); i < n; ++i)
122 #define get_n(irn, pos, kind)        (edge_kind_info[kind].get_n(irn, pos))
123 #define get_kind_str(kind)           (edge_kind_info[kind].name)
124
125 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
126
127 /**
128  * This flag is set to 1, if the edges get initialized for an irg.
129  * Then register additional data is forbidden.
130  */
131 static int edges_used = 0;
132
133 /**
134  * Summed size of all users private data
135  */
136
137 static int edges_private_size = 0;
138 #define EDGE_SIZE (sizeof(ir_edge_t) + edges_private_size)
139
140 /**
141  * If set to 1, the list heads are checked every time an edge is changed.
142  */
143 static int edges_dbg = 0;
144
145 #ifdef DEBUG_libfirm
146 /* a static variable holding the last number assigned to a new edge */
147 static long last_edge_num = -1;
148 #endif
149
150 /**
151  * Returns an ID for the given edge.
152  */
153 static inline long edge_get_id(const ir_edge_t *e)
154 {
155 #ifdef DEBUG_libfirm
156         return e->edge_nr;
157 #else /* DEBUG_libfirm */
158         return (long)e;
159 #endif /* DEBUG_libfirm */
160 }
161
162 /**
163  * Announce to reserve extra space for each edge to be allocated.
164  *
165  * @param n: Size of the space to reserve
166  *
167  * @return Offset at which the private data will begin
168  *
169  * Several users can reserve extra space for private usage.
170  * Each user has to remember his given offset and the size of his private data.
171  * To be called before FIRM is initialized.
172  */
173 int edges_register_private_data(size_t n)
174 {
175         int res = edges_private_size;
176
177         assert(!edges_used && "you cannot register private edge data, if edges have been initialized");
178
179         edges_private_size += n;
180         return res;
181 }
182
183 /*
184  * Reset the user's private data at offset 'offset'
185  * The user has to remember his offset and the size of his data!
186  * Caution: Using wrong values here can destroy other users private data!
187  */
188 void edges_reset_private_data(ir_graph *irg, int offset, unsigned size)
189 {
190         irg_edge_info_t       *info = _get_irg_edge_info(irg, EDGE_KIND_NORMAL);
191         ir_edge_t             *edge;
192         ir_edgeset_iterator_t  iter;
193
194         foreach_ir_edgeset(&info->edges, edge, iter) {
195                 memset(edge + sizeof(*edge) + offset, 0, size);
196         }
197 }
198
199 #define TIMES37(x) (((x) << 5) + ((x) << 2) + (x))
200
201 #define get_irn_out_list_head(irn) (&get_irn_out_info(irn)->outs)
202
203 #define edge_hash(edge) (TIMES37((edge)->pos) + HASH_PTR((edge)->src))
204
205 /**
206  * Initialize the out information for a graph.
207  * @note Dead node elimination can call this on an already initialized graph.
208  */
209 void edges_init_graph_kind(ir_graph *irg, ir_edge_kind_t kind)
210 {
211         if (edges_activated_kind(irg, kind)) {
212                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
213                 size_t amount = irg->estimated_node_count * 2;
214
215                 edges_used = 1;
216                 if (info->allocated) {
217                         amount = ir_edgeset_size(&info->edges);
218                         ir_edgeset_destroy(&info->edges);
219                         obstack_free(&info->edges_obst, NULL);
220                 }
221                 obstack_init(&info->edges_obst);
222                 INIT_LIST_HEAD(&info->free_edges);
223                 ir_edgeset_init_size(&info->edges, amount);
224                 info->allocated = 1;
225         }
226 }
227
228 /**
229  * Get the edge object of an outgoing edge at a node.
230  * @param  irg  The graph, the node is in.
231  * @param  src  The node at which the edge originates.
232  * @param  pos  The position of the edge.
233  * @param  kind The kind of the edge.
234  * @return      The corresponding edge object or NULL,
235  *              if no such edge exists.
236  */
237 const ir_edge_t *get_irn_edge_kind(ir_graph *irg, const ir_node *src, int pos, ir_edge_kind_t kind)
238 {
239         if (edges_activated_kind(irg, kind)) {
240                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
241                 ir_edge_t       key;
242
243                 key.src = (ir_node *)src;
244                 key.pos = pos;
245
246                 return ir_edgeset_find(&info->edges, &key);
247         }
248
249         return NULL;
250 }
251
252 /**
253  * Get the edge object of an outgoing edge at a node.
254  * Looks for an edge for all kinds.
255  */
256 const ir_edge_t *get_irn_edge(ir_graph *irg, const ir_node *src, int pos)
257 {
258         const ir_edge_t *edge;
259         if ((edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_NORMAL)) == NULL)
260                 edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_BLOCK);
261         return(edge);
262 }
263
264 /**
265  * Change the out count
266  *
267  * @param tgt  the edge target
268  * @param kind the kind of the edge
269  */
270 static inline void edge_change_cnt(ir_node *tgt, ir_edge_kind_t kind, int ofs)
271 {
272         irn_edge_info_t *info = _get_irn_edge_info(tgt, kind);
273         info->out_count += ofs;
274
275 #if 0
276         ir_graph *irg = get_irn_irg(tgt);
277         assert(info->out_count >= 0);
278         if (info->out_count == 0 && kind == EDGE_KIND_NORMAL) {
279                 /* tgt lost it's last user */
280                 int i;
281
282                 for (i = get_irn_arity(tgt) - 1; i >= -1; --i) {
283                         ir_node *prev = get_irn_n(tgt, i);
284
285                         edges_notify_edge(tgt, i, NULL, prev, irg);
286                 }
287                 for (i = get_irn_deps(tgt) - 1; i >= 0; --i) {
288                         ir_node *prev = get_irn_dep(tgt, i);
289
290                         edges_notify_edge_kind(tgt, i, NULL, prev, EDGE_KIND_DEP, irg);
291
292                 }
293         }
294 #endif
295 }
296
297 /**
298  * Verify the edge list of a node, ie. ensure it's a loop:
299  * head -> e_1 -> ... -> e_n -> head
300  */
301 static inline void verify_list_head(ir_node *irn, ir_edge_kind_t kind)
302 {
303         int                    err       = 0;
304         int                    num       = 0;
305         pset                   *lh_set   = pset_new_ptr(16);
306         const struct list_head *head     = _get_irn_outs_head(irn, kind);
307         const struct list_head *pos;
308
309         list_for_each(pos, head) {
310                 if (pset_find_ptr(lh_set, pos)) {
311                         const ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
312
313                         ir_fprintf(stderr, "EDGE Verifier: edge list broken (self loop not to head) for %+F:\n", irn);
314                         fprintf(stderr, "- at list entry %d\n", num);
315                         if (edge->invalid)
316                                 fprintf(stderr, "- edge(%ld) is invalid\n", edge_get_id(edge));
317                         if (edge->src)
318                                 ir_fprintf(stderr, "- edge(%ld) %+F(%d)\n", edge_get_id(edge), edge->src, edge->pos);
319                         err = 1;
320                         break;
321                 }
322                 num++;
323                 pset_insert_ptr(lh_set, pos);
324         }
325
326         del_pset(lh_set);
327
328         assert(err == 0);
329 }
330
331 void edges_dump_kind(ir_graph *irg, ir_edge_kind_t kind)
332 {
333         irg_edge_info_t *info;
334         ir_edgeset_t    *edges;
335         ir_edgeset_iterator_t iter;
336         ir_edge_t      *e;
337
338         if (!edges_activated_kind(irg, kind))
339                 return;
340
341         info  = _get_irg_edge_info(irg, kind);
342         edges = &info->edges;
343         foreach_ir_edgeset(edges, e, iter) {
344                 ir_printf("%+F %d %d\n", e->src, e->pos, e->invalid);
345         }
346 }
347
348 /* The edge from (src, pos) -> old_tgt is redirected to tgt */
349 void edges_notify_edge_kind(ir_node *src, int pos, ir_node *tgt,
350                             ir_node *old_tgt, ir_edge_kind_t kind,
351                             ir_graph *irg)
352 {
353         const char      *msg = "";
354         irg_edge_info_t *info;
355         ir_edgeset_t    *edges;
356         ir_edge_t        templ;
357         ir_edge_t       *edge;
358
359         assert(edges_activated_kind(irg, kind));
360
361         /*
362          * Only do something, if the old and new target differ.
363          */
364         if (tgt == old_tgt)
365                 return;
366
367         info  = _get_irg_edge_info(irg, kind);
368         edges = &info->edges;
369
370         /* Initialize the edge template to search in the set. */
371         templ.src = src;
372         templ.pos = pos;
373
374         /*
375          * If the target is NULL, the edge shall be deleted.
376          */
377         if (tgt == NULL) {
378                 /* search the edge in the set. */
379                 edge = ir_edgeset_find(edges, &templ);
380
381                 /* mark the edge invalid if it was found */
382                 if (edge) {
383                         msg = "deleting";
384                         list_del(&edge->list);
385                         ir_edgeset_remove(edges, edge);
386                         list_add(&edge->list, &info->free_edges);
387                         edge->invalid = 1;
388                         edge->pos = -2;
389                         edge->src = NULL;
390 #ifdef DEBUG_libfirm
391                         edge->edge_nr = -1;
392 #endif /* DEBUG_libfirm */
393                         edge_change_cnt(old_tgt, kind, -1);
394                 } else {
395                         /* If the edge was not found issue a warning on the debug stream */
396                         msg = "edge to delete not found!\n";
397                 }
398         } else {
399                 /*
400                  * The target is not NULL and the old target differs
401                  * from the new target, the edge shall be moved (if the
402                  * old target was != NULL) or added (if the old target was
403                  * NULL).
404                  */
405                 struct list_head *head = _get_irn_outs_head(tgt, kind);
406
407                 assert(head->next && head->prev &&
408                                 "target list head must have been initialized");
409
410                 /* If the old target is not null, the edge is moved. */
411                 if (old_tgt) {
412                         edge = ir_edgeset_find(edges, &templ);
413                         assert(edge && "edge to redirect not found!");
414                         assert(! edge->invalid && "Invalid edge encountered");
415
416                         msg = "redirecting";
417
418                         list_move(&edge->list, head);
419                         edge_change_cnt(old_tgt, kind, -1);
420                 } else {
421                         /* The old target was NULL, thus, the edge is newly created. */
422                         ir_edge_t *new_edge;
423                         ir_edge_t *edge;
424
425                         if (list_empty(&info->free_edges)) {
426                                 edge = obstack_alloc(&info->edges_obst, EDGE_SIZE);
427                         } else {
428                                 edge = list_entry(info->free_edges.next, ir_edge_t, list);
429                                 list_del(&edge->list);
430                         }
431
432                         edge->src       = src;
433                         edge->pos       = pos;
434                         edge->invalid   = 0;
435                         edge->present   = 0;
436                         edge->kind      = kind;
437                         edge->list.next = NULL;
438                         edge->list.prev = NULL;
439                         memset(edge + 1, 0, edges_private_size);
440                         DEBUG_ONLY(edge->src_nr = get_irn_node_nr(src));
441
442                         new_edge = ir_edgeset_insert(edges, edge);
443                         if (new_edge != edge) {
444                                 panic("new edge exists already");
445                         }
446
447                         msg = "adding";
448                         list_add(&edge->list, head);
449                         DEBUG_ONLY(edge->edge_nr = ++last_edge_num);
450                 }
451
452                 edge_change_cnt(tgt, kind, +1);
453         } /* else */
454
455 #ifndef DEBUG_libfirm
456         /* verify list heads */
457         if (edges_dbg) {
458                 if (tgt)
459                         verify_list_head(tgt, kind);
460                 if (old_tgt)
461                         verify_list_head(old_tgt, kind);
462         }
463 #endif
464
465         DBG((dbg, LEVEL_5, "announce out edge: %+F %d-> %+F(%+F): %s\n", src, pos, tgt, old_tgt, msg));
466 }
467
468 void edges_notify_edge(ir_node *src, int pos, ir_node *tgt, ir_node *old_tgt, ir_graph *irg)
469 {
470         if (edges_activated_kind(irg, EDGE_KIND_NORMAL)) {
471                 edges_notify_edge_kind(src, pos, tgt, old_tgt, EDGE_KIND_NORMAL, irg);
472         }
473
474         if (edges_activated_kind(irg, EDGE_KIND_BLOCK) && is_Block(src)) {
475                 if (pos == -1) {
476                         /* a MacroBlock edge: ignore it here */
477                 } else {
478                         ir_node *bl_old = old_tgt ? get_nodes_block(skip_Proj(old_tgt)) : NULL;
479                         ir_node *bl_tgt = NULL;
480
481                         if (tgt)
482                                 bl_tgt = is_Bad(tgt) ? tgt : get_nodes_block(skip_Proj(tgt));
483
484                         edges_notify_edge_kind(src, pos, bl_tgt, bl_old, EDGE_KIND_BLOCK, irg);
485                 }
486         }
487 }
488
489 /**
490  * Delete all in edges of a given kind from the node old.
491  *
492  * @param old   the node
493  * @param kind  the kind of edges to remove
494  * @param irg   the irg of the old node
495  */
496 static void edges_node_deleted_kind(ir_node *old, ir_edge_kind_t kind, ir_graph *irg)
497 {
498         int i, n;
499
500         if (!edges_activated_kind(irg, kind))
501                 return;
502
503         DBG((dbg, LEVEL_5, "node deleted (kind: %s): %+F\n", get_kind_str(kind), old));
504
505         foreach_tgt(old, i, n, kind) {
506                 ir_node *old_tgt = get_n(old, i, kind);
507                 edges_notify_edge_kind(old, i, NULL, old_tgt, kind, irg);
508         }
509 }
510
511 /**
512  * A node might be revivaled by CSE. Assure its edges.
513  *
514  * @param irn   the node
515  * @param kind  the kind of edges to remove
516  * @param irg   the irg of the old node
517  */
518 static void edges_node_revival_kind(ir_node *irn, ir_edge_kind_t kind, ir_graph *irg)
519 {
520         irn_edge_info_t *info;
521         int             i, n;
522
523         if (!edges_activated_kind(irg, kind))
524                 return;
525
526         info = _get_irn_edge_info(irn, kind);
527         if (info->edges_built)
528                 return;
529
530         DBG((dbg, LEVEL_5, "node revivaled (kind: %s): %+F\n", get_kind_str(kind), irn));
531
532         foreach_tgt(irn, i, n, kind) {
533                 ir_node *tgt = get_n(irn, i, kind);
534                 edges_notify_edge_kind(irn, i, tgt, NULL, kind, irg);
535         }
536         info->edges_built = 1;
537 }
538
539 struct build_walker {
540         ir_graph       *irg;
541         ir_edge_kind_t kind;
542         bitset_t       *reachable;
543         unsigned       problem_found;
544 };
545
546 /**
547  * Post-Walker: notify all edges
548  */
549 static void build_edges_walker(ir_node *irn, void *data)
550 {
551         struct build_walker   *w = data;
552         int                   i, n;
553         ir_edge_kind_t        kind = w->kind;
554         ir_graph              *irg = w->irg;
555         get_edge_src_n_func_t *get_n;
556
557         get_n = edge_kind_info[kind].get_n;
558         foreach_tgt(irn, i, n, kind) {
559                 ir_node *pred = get_n(irn, i, kind);
560                 edges_notify_edge_kind(irn, i, pred, NULL, kind, irg);
561         }
562         _get_irn_edge_info(irn, kind)->edges_built = 1;
563 }
564
565 /**
566  * Pre-Walker: initializes the list-heads and set the out-count
567  * of all nodes to 0.
568  */
569 static void init_lh_walker(ir_node *irn, void *data)
570 {
571         struct build_walker *w   = data;
572         ir_edge_kind_t      kind = w->kind;
573         list_head           *head = _get_irn_outs_head(irn, kind);
574         INIT_LIST_HEAD(head);
575         _get_irn_edge_info(irn, kind)->edges_built = 0;
576         _get_irn_edge_info(irn, kind)->out_count   = 0;
577 }
578
579 /**
580  * Pre-Walker: initializes the list-heads and set the out-count
581  * of all nodes to 0.
582  *
583  * Additionally touches DEP nodes, as they might be DEAD.
584  * THIS IS UGLY, but I don't find a better way until we
585  *
586  * a) ensure that dead nodes are not used as input
587  * b) it might be sufficient to add those stupid NO_REG nodes
588  * to the anchor
589  */
590 static void init_lh_walker_dep(ir_node *irn, void *data)
591 {
592         struct build_walker *w   = data;
593         ir_edge_kind_t      kind = w->kind;
594         list_head           *head = _get_irn_outs_head(irn, kind);
595         int                 i;
596
597         INIT_LIST_HEAD(head);
598         _get_irn_edge_info(irn, kind)->edges_built = 0;
599         _get_irn_edge_info(irn, kind)->out_count   = 0;
600
601         for (i = get_irn_deps(irn) - 1; i >= 0; --i) {
602                 ir_node *dep = get_irn_dep(irn, i);
603
604                 head = _get_irn_outs_head(dep, kind);
605
606                 INIT_LIST_HEAD(head);
607                 _get_irn_edge_info(dep, kind)->edges_built = 0;
608                 _get_irn_edge_info(dep, kind)->out_count   = 0;
609         }
610 }
611
612 typedef struct visitor_info_t {
613         irg_walk_func *visit;
614         void *data;
615 } visitor_info_t;
616
617 /**
618  * Visitor: initializes the list-heads and set the out-count
619  * of all nodes to 0 of nodes that are not seen so far.
620  */
621 static void visitor(ir_node *irn, void *data)
622 {
623         visitor_info_t *info = data;
624
625         if (!irn_visited_else_mark(irn)) {
626                 info->visit(irn, info->data);
627         }
628 }
629
630 /*
631  * Build the initial edge set.
632  * Beware, this is not a simple task because it suffers from two
633  * difficulties:
634  * - the anchor set allows access to Nodes that may not be reachable from
635  *   the End node
636  * - the identities add nodes to the "root set" that are not yet reachable
637  *   from End. However, after some transformations, the CSE may revival these
638  *   nodes
639  *
640  * These problems can be fixed using different strategies:
641  * - Add an age flag to every node. Whenever the edge of a node is older
642  *   then the current edge, invalidate the edges of this node.
643  *   While this would help for revivaled nodes, it increases memory and runtime.
644  * - Delete the identities set.
645  *   Solves the revival problem, but may increase the memory consumption, as
646  *   nodes cannot be revivaled at all.
647  * - Manually iterate over the identities root set. This did not consume more memory
648  *   but increase the computation time because the |identities| >= |V|
649  *
650  * Currently, we use the last option.
651  */
652 void edges_activate_kind(ir_graph *irg, ir_edge_kind_t kind)
653 {
654         struct build_walker w;
655         irg_edge_info_t     *info = _get_irg_edge_info(irg, kind);
656         visitor_info_t      visit;
657
658         w.irg  = irg;
659         w.kind = kind;
660
661         visit.data = &w;
662
663         assert(!info->activated);
664
665         info->activated = 1;
666         edges_init_graph_kind(irg, kind);
667         if (kind == EDGE_KIND_DEP) {
668                 irg_walk_anchors(irg, init_lh_walker_dep, NULL, &w);
669                 /* Argh: Dep nodes might be dead, so we MUST visit identities first */
670                 visit.visit = init_lh_walker_dep;
671                 visit_all_identities(irg, visitor, &visit);
672                 irg_walk_anchors(irg, NULL, build_edges_walker, &w);
673         } else {
674                 irg_walk_anchors(irg, init_lh_walker, build_edges_walker, &w);
675                 visit.visit = init_lh_walker;
676                 visit_all_identities(irg, visitor, &visit);
677         }
678 }
679
680 void edges_deactivate_kind(ir_graph *irg, ir_edge_kind_t kind)
681 {
682         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
683
684         info->activated = 0;
685         if (info->allocated) {
686                 obstack_free(&info->edges_obst, NULL);
687                 ir_edgeset_destroy(&info->edges);
688                 info->allocated = 0;
689         }
690 }
691
692 int (edges_activated_kind)(const ir_graph *irg, ir_edge_kind_t kind)
693 {
694         return _edges_activated_kind(irg, kind);
695 }
696
697
698 /**
699  * Reroute all use-edges from a node to another.
700  * @param from The node whose use-edges shall be withdrawn.
701  * @param to   The node to which all the use-edges of @p from shall be
702  *             sent to.
703  * @param irg  The graph.
704  */
705 void edges_reroute_kind(ir_node *from, ir_node *to, ir_edge_kind_t kind, ir_graph *irg)
706 {
707         set_edge_func_t *set_edge = edge_kind_info[kind].set_edge;
708
709         if (set_edge && edges_activated_kind(irg, kind)) {
710                 struct list_head *head = _get_irn_outs_head(from, kind);
711
712                 DBG((dbg, LEVEL_5, "reroute from %+F to %+F\n", from, to));
713
714                 while (head != head->next) {
715                         ir_edge_t *edge = list_entry(head->next, ir_edge_t, list);
716                         assert(edge->pos >= -1);
717                         set_edge(edge->src, edge->pos, to);
718                 }
719         }
720 }
721
722 static void verify_set_presence(ir_node *irn, void *data)
723 {
724         struct build_walker *w     = data;
725         ir_edgeset_t        *edges = &_get_irg_edge_info(w->irg, w->kind)->edges;
726         int i, n;
727
728         foreach_tgt(irn, i, n, w->kind) {
729                 ir_edge_t templ, *e;
730
731                 templ.src = irn;
732                 templ.pos = i;
733
734                 e = ir_edgeset_find(edges, &templ);
735                 if (e != NULL) {
736                         e->present = 1;
737                 } else {
738                         w->problem_found = 1;
739 #if 0
740                         ir_fprintf(stderr, "Edge Verifier: edge %+F,%d -> %+F (kind: \"%s\") is missing\n",
741                                 irn, i, get_n(irn, i, w->kind), get_kind_str(w->kind));
742 #endif
743                 }
744         }
745 }
746
747 static void verify_list_presence(ir_node *irn, void *data)
748 {
749         struct build_walker *w = data;
750         const ir_edge_t     *e;
751
752         bitset_set(w->reachable, get_irn_idx(irn));
753
754         /* check list heads */
755         verify_list_head(irn, w->kind);
756
757         foreach_out_edge_kind(irn, e, w->kind) {
758                 ir_node *tgt;
759
760                 if (w->kind == EDGE_KIND_NORMAL && get_irn_arity(e->src) <= e->pos) {
761                         w->problem_found = 1;
762 #if 0
763                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F -> %+F recorded at src position %d, but src has arity %d\n",
764                                 edge_get_id(e), e->src, irn, e->pos, get_irn_arity(e->src));
765 #endif
766                         continue;
767                 }
768
769                 tgt = get_n(e->src, e->pos, w->kind);
770
771                 if (irn != tgt) {
772                         w->problem_found = 1;
773 #if 0
774                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d (kind \"%s\") is no out edge of %+F but of %+F\n",
775                                 edge_get_id(e), e->src, e->pos, get_kind_str(w->kind), irn, tgt);
776 #endif
777                 }
778         }
779 }
780
781 int edges_verify_kind(ir_graph *irg, ir_edge_kind_t kind)
782 {
783         struct build_walker w;
784         ir_edgeset_t        *edges = &_get_irg_edge_info(irg, kind)->edges;
785         ir_edge_t           *e;
786         ir_edgeset_iterator_t  iter;
787
788         w.irg           = irg;
789         w.kind          = kind;
790         w.reachable     = bitset_alloca(get_irg_last_idx(irg));
791         w.problem_found = 0;
792
793         /* Clear the present bit in all edges available. */
794         foreach_ir_edgeset(edges, e, iter) {
795                 e->present = 0;
796         }
797
798         irg_walk_graph(irg, verify_set_presence, verify_list_presence, &w);
799
800         /*
801          * Dump all edges which are not invalid and not present.
802          * These edges are superfluous and their presence in the
803          * edge set is wrong.
804          */
805         foreach_ir_edgeset(edges, e, iter) {
806                 if (! e->invalid && ! e->present && bitset_is_set(w.reachable, get_irn_idx(e->src))) {
807                         w.problem_found = 1;
808                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d is superfluous\n", edge_get_id(e), e->src, e->pos);
809                 }
810         }
811
812         return w.problem_found;
813 }
814
815 #define IGNORE_NODE(irn) (is_Bad((irn)) || is_Block((irn)))
816
817 /**
818  * Clear link field of all nodes.
819  */
820 static void clear_links(ir_node *irn, void *env)
821 {
822         struct build_walker *w  = env;
823         bitset_t            *bs;
824
825         if (IGNORE_NODE(irn)) {
826                 set_irn_link(irn, NULL);
827                 return;
828         }
829
830         bs = bitset_malloc(get_irg_last_idx(w->irg));
831         set_irn_link(irn, bs);
832 }
833
834 /**
835  * Increases count (stored in link field) for all operands of a node.
836  */
837 static void count_user(ir_node *irn, void *env)
838 {
839         int i;
840         int first;
841         (void) env;
842
843         first = -1;
844         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
845                 ir_node  *op = get_irn_n(irn, i);
846                 bitset_t *bs = get_irn_link(op);
847
848                 if (bs)
849                         bitset_set(bs, get_irn_idx(irn));
850         }
851 }
852
853 /**
854  * Verifies if collected count, number of edges in list and stored edge count are in sync.
855  */
856 static void verify_edge_counter(ir_node *irn, void *env)
857 {
858         struct build_walker    *w = env;
859         bitset_t               *bs;
860         int                    list_cnt;
861         int                    ref_cnt;
862         int                    edge_cnt;
863         unsigned long          idx;
864         const struct list_head *head;
865         const struct list_head *pos;
866
867         if (IGNORE_NODE(irn))
868                 return;
869
870         bs       = get_irn_link(irn);
871         list_cnt = 0;
872         ref_cnt  = 0;
873         edge_cnt = _get_irn_edge_info(irn, EDGE_KIND_NORMAL)->out_count;
874         head     = _get_irn_outs_head(irn, EDGE_KIND_NORMAL);
875
876         /* We can iterate safely here, list heads have already been verified. */
877         list_for_each(pos, head) {
878                 ++list_cnt;
879         }
880
881         /* check all nodes that reference us and count edges that point number
882          * of ins that actually point to us */
883         ref_cnt = 0;
884         bitset_foreach(bs, idx) {
885                 int i, arity;
886                 ir_node *src = get_idx_irn(w->irg, idx);
887
888                 arity = get_irn_arity(src);
889                 for (i = 0; i < arity; ++i) {
890                         ir_node *in = get_irn_n(src, i);
891                         if (in == irn)
892                                 ++ref_cnt;
893                 }
894         }
895
896         if (edge_cnt != list_cnt) {
897                 w->problem_found = 1;
898                 ir_fprintf(stderr, "Edge Verifier: edge count is %d, but %d edge(s) are recorded in list at %+F\n",
899                         edge_cnt, list_cnt, irn);
900         }
901
902         if (ref_cnt != list_cnt) {
903                 w->problem_found = 1;
904                 ir_fprintf(stderr, "Edge Verifier: %+F reachable by %d node(s), but the list contains %d edge(s)\n",
905                         irn, ref_cnt, list_cnt);
906
907                 /* Matze: buggy if a node has multiple ins pointing at irn */
908 #if 0
909                 list_for_each(pos, head) {
910                         ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
911                         bitset_flip(bs, get_irn_idx(edge->src));
912                 }
913
914                 if (ref_cnt < list_cnt)
915                         fprintf(stderr,"               following nodes are recorded in list, but not as user:\n");
916                 else
917                         fprintf(stderr,"               following nodes are user, but not recorded in list:\n");
918
919                 fprintf(stderr,"              ");
920                 bitset_foreach(bs, idx) {
921                         ir_node *src = get_idx_irn(w->irg, idx);
922                         ir_fprintf(stderr, " %+F", src);
923                 }
924                 fprintf(stderr, "\n");
925 #endif
926         }
927
928         bitset_free(bs);
929 }
930
931 /**
932  * Verifies the out edges of an irg.
933  */
934 int edges_verify(ir_graph *irg)
935 {
936         struct build_walker w;
937         int    problem_found = 0;
938
939         /* verify normal edges only */
940         problem_found  = edges_verify_kind(irg, EDGE_KIND_NORMAL);
941
942         w.irg           = irg;
943         w.kind          = EDGE_KIND_NORMAL;
944         w.problem_found = 0;
945
946         /* verify counter */
947         irg_walk_anchors(irg, clear_links, count_user, &w);
948         irg_walk_anchors(irg, NULL, verify_edge_counter, &w);
949
950         return problem_found ? 1 : w.problem_found;
951 }
952
953 struct pass_t {
954         ir_graph_pass_t pass;
955         unsigned        assert_on_problem;
956 };
957
958 /**
959  * Wrapper to edges_verify to be run as an ir_graph pass.
960  */
961 static int edges_verify_wrapper(ir_graph *irg, void *context)
962 {
963         struct pass_t *pass = context;
964         int problems_found = edges_verify(irg);
965         /* do NOT rerun the pass if verify is ok :-) */
966         assert(problems_found && pass->assert_on_problem);
967         return 0;
968 }
969
970 /* Creates an ir_graph pass for edges_verify(). */
971 ir_graph_pass_t *irg_verify_edges_pass(const char *name, unsigned assert_on_problem)
972 {
973         struct pass_t *pass = XMALLOCZ(struct pass_t);
974
975         def_graph_pass_constructor(
976                 &pass->pass, name ? name : "edges_verify", edges_verify_wrapper);
977
978         /* neither dump nor verify */
979         pass->pass.dump_irg   = (DUMP_ON_IRG_FUNC)ir_prog_no_dump;
980         pass->pass.verify_irg = (RUN_ON_IRG_FUNC)ir_prog_no_verify;
981
982         pass->assert_on_problem = assert_on_problem;
983         return &pass->pass;
984 }
985
986 void init_edges(void)
987 {
988         FIRM_DBG_REGISTER(dbg, DBG_EDGES);
989         /* firm_dbg_set_mask(dbg, -1); */
990 }
991
992 void edges_init_dbg(int do_dbg)
993 {
994         edges_dbg = do_dbg;
995 }
996
997 void edges_activate(ir_graph *irg)
998 {
999         edges_activate_kind(irg, EDGE_KIND_NORMAL);
1000         edges_activate_kind(irg, EDGE_KIND_BLOCK);
1001         if (get_irg_phase_state(irg) == phase_backend)
1002                 edges_activate_kind(irg, EDGE_KIND_DEP);
1003 }
1004
1005 void edges_deactivate(ir_graph *irg)
1006 {
1007         if (get_irg_phase_state(irg) == phase_backend)
1008                 edges_deactivate_kind(irg, EDGE_KIND_DEP);
1009         edges_deactivate_kind(irg, EDGE_KIND_BLOCK);
1010         edges_deactivate_kind(irg, EDGE_KIND_NORMAL);
1011 }
1012
1013 int edges_assure(ir_graph *irg)
1014 {
1015         int activated = 0;
1016
1017         if (edges_activated_kind(irg, EDGE_KIND_BLOCK)) {
1018                 activated = 1;
1019         } else {
1020                 edges_activate_kind(irg, EDGE_KIND_BLOCK);
1021         }
1022         if (edges_activated_kind(irg, EDGE_KIND_NORMAL)) {
1023                 activated = 1;
1024         } else {
1025                 edges_activate_kind(irg, EDGE_KIND_NORMAL);
1026         }
1027
1028         return activated;
1029 }
1030
1031 int edges_assure_kind(ir_graph *irg, ir_edge_kind_t kind)
1032 {
1033         int activated = edges_activated_kind(irg, kind);
1034
1035         if (!activated)
1036                 edges_activate_kind(irg, kind);
1037
1038         return activated;
1039 }
1040
1041 void edges_node_deleted(ir_node *irn, ir_graph *irg)
1042 {
1043         edges_node_deleted_kind(irn, EDGE_KIND_NORMAL, irg);
1044         edges_node_deleted_kind(irn, EDGE_KIND_BLOCK, irg);
1045 }
1046
1047 void edges_node_revival(ir_node *irn, ir_graph *irg)
1048 {
1049         edges_node_revival_kind(irn, EDGE_KIND_NORMAL, irg);
1050         edges_node_revival_kind(irn, EDGE_KIND_BLOCK, irg);
1051 }
1052
1053 const ir_edge_t *(get_irn_out_edge_first_kind)(const ir_node *irn, ir_edge_kind_t kind)
1054 {
1055         return _get_irn_out_edge_first_kind(irn, kind);
1056 }
1057
1058 const ir_edge_t *(get_irn_out_edge_next)(const ir_node *irn, const ir_edge_t *last)
1059 {
1060         return _get_irn_out_edge_next(irn, last);
1061 }
1062
1063 ir_node *(get_edge_src_irn)(const ir_edge_t *edge)
1064 {
1065         return _get_edge_src_irn(edge);
1066 }
1067
1068 int (get_edge_src_pos)(const ir_edge_t *edge)
1069 {
1070         return _get_edge_src_pos(edge);
1071 }
1072
1073 int (get_irn_n_edges_kind)(const ir_node *irn, ir_edge_kind_t kind)
1074 {
1075         return _get_irn_n_edges_kind(irn, kind);
1076 }
1077
1078 static void irg_walk_edges2(ir_node *node, irg_walk_func *pre,
1079                             irg_walk_func *post, void *env)
1080 {
1081         const ir_edge_t *edge, *next;
1082
1083         if (irn_visited(node))
1084                 return;
1085         mark_irn_visited(node);
1086
1087         if (pre != NULL)
1088                 pre(node, env);
1089
1090         foreach_out_edge_kind_safe(node, edge, next, EDGE_KIND_NORMAL) {
1091                 /* find the corresponding successor block. */
1092                 ir_node *pred = get_edge_src_irn(edge);
1093                 irg_walk_edges2(pred, pre, post, env);
1094         }
1095
1096         if (post != NULL)
1097                 post(node, env);
1098 }
1099
1100 void irg_walk_edges(ir_node *node, irg_walk_func *pre, irg_walk_func *post,
1101                     void *env)
1102 {
1103         ir_graph *irg = get_irn_irg(node);
1104
1105         assert(edges_activated(irg));
1106         assert(is_Block(node));
1107
1108         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
1109
1110         inc_irg_visited(irg);
1111         irg_walk_edges2(node, pre, post, env);
1112
1113         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
1114 }
1115
1116 static void irg_block_edges_walk2(ir_node *bl, irg_walk_func *pre,
1117                                   irg_walk_func *post, void *env)
1118 {
1119         const ir_edge_t *edge, *next;
1120
1121         if (!Block_block_visited(bl)) {
1122                 mark_Block_block_visited(bl);
1123
1124                 if (pre)
1125                         pre(bl, env);
1126
1127                 foreach_out_edge_kind_safe(bl, edge, next, EDGE_KIND_BLOCK) {
1128                         /* find the corresponding successor block. */
1129                         ir_node *pred = get_edge_src_irn(edge);
1130                         irg_block_edges_walk2(pred, pre, post, env);
1131                 }
1132
1133                 if (post)
1134                         post(bl, env);
1135         }
1136 }
1137
1138 void irg_block_edges_walk(ir_node *node, irg_walk_func *pre,
1139                           irg_walk_func *post, void *env)
1140 {
1141         ir_graph *irg = get_irn_irg(node);
1142
1143         assert(edges_activated(irg));
1144         assert(is_Block(node));
1145
1146         ir_reserve_resources(irg, IR_RESOURCE_BLOCK_VISITED);
1147
1148         inc_irg_block_visited(irg);
1149         irg_block_edges_walk2(node, pre, post, env);
1150
1151         ir_free_resources(irg, IR_RESOURCE_BLOCK_VISITED);
1152 }