1a6a88844721d498eb1ce09bafde015e7a3279bc
[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  * @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 #include "iredgeset.h"
48 #include "hashptr.h"
49
50 #define DO_REHASH
51 #define SCALAR_RETURN
52 #define HashSet                   ir_edgeset_t
53 #define HashSetIterator           ir_edgeset_iterator_t
54 #define ValueType                 ir_edge_t*
55 #define NullValue                 NULL
56 #define DeletedValue              ((ir_edge_t*)-1)
57 #define Hash(this,key)            (HASH_PTR(key->src) ^ (key->pos * 40013))
58 #define KeysEqual(this,key1,key2) ((key1->src) == (key2->src) && (key1->pos == key2->pos))
59 #define SetRangeEmpty(ptr,size)   memset(ptr, 0, (size) * sizeof((ptr)[0]))
60
61 #define hashset_init            ir_edgeset_init
62 #define hashset_init_size       ir_edgeset_init_size
63 #define hashset_destroy         ir_edgeset_destroy
64 #define hashset_insert          ir_edgeset_insert
65 #define hashset_remove          ir_edgeset_remove
66 #define hashset_find            ir_edgeset_find
67 #define hashset_size            ir_edgeset_size
68 #define hashset_iterator_init   ir_edgeset_iterator_init
69 #define hashset_iterator_next   ir_edgeset_iterator_next
70 #define hashset_remove_iterator ir_edgeset_remove_iterator
71
72 #include "hashset.c"
73
74 /**
75  * A function that allows for setting an edge.
76  * This abstraction is necessary since different edge kind have
77  * different methods of setting edges.
78  */
79 typedef void (set_edge_func_t)(ir_node *src, int pos, ir_node *tgt);
80
81 typedef int (get_edge_src_arity_func_t)(const ir_node *src);
82
83 typedef ir_node *(get_edge_src_n_func_t)(const ir_node *src, int pos);
84
85 /**
86  * Additional data for an edge kind.
87  */
88 typedef struct {
89         const char                *name;       /**< name of this edge kind */
90         set_edge_func_t           *set_edge;   /**< the set_edge function */
91         int                       first_idx;   /**< index of the first possible edge */
92         get_edge_src_arity_func_t *get_arity;  /**< the get_arity function */
93         get_edge_src_n_func_t     *get_n;      /**< the get_n function */
94 } ir_edge_kind_info_t;
95
96 /**
97  * Get the predecessor block.
98  */
99 static ir_node *get_block_n(const ir_node *irn, int pos) {
100         if (is_Block(irn))
101                 return get_Block_cfgpred_block(irn, pos);
102         /* might be a Bad */
103         return NULL;
104 }
105
106 static const ir_edge_kind_info_t edge_kind_info[EDGE_KIND_LAST] = {
107         { "normal"     , set_irn_n,   -1, get_irn_arity,  get_irn_n   },
108         { "block succs", NULL,         0, get_irn_arity,  get_block_n },
109         { "dependency",  set_irn_dep,  0, get_irn_deps,   get_irn_dep }
110 };
111
112 #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)
113 #define get_n(irn, pos, kind)        (edge_kind_info[kind].get_n(irn, pos))
114 #define get_kind_str(kind)           (edge_kind_info[kind].name)
115
116 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
117
118 /**
119  * This flag is set to 1, if the edges get initialized for an irg.
120  * Then register additional data is forbidden.
121  */
122 static int edges_used = 0;
123
124 /**
125  * Summed size of all users private data
126  */
127
128 static int edges_private_size = 0;
129 #define EDGE_SIZE (sizeof(ir_edge_t) + edges_private_size)
130
131 /**
132  * If set to 1, the list heads are checked every time an edge is changed.
133  */
134 static int edges_dbg = 0;
135
136 #ifdef DEBUG_libfirm
137 /* a static variable holding the last number assigned to a new edge */
138 static long last_edge_num = -1;
139 #endif
140
141 static INLINE long edge_get_id(const ir_edge_t *e) {
142 #ifdef DEBUG_libfirm
143         return e->edge_nr;
144 #else /* DEBUG_libfirm */
145         return (long)e;
146 #endif /* DEBUG_libfirm */
147 }
148
149 /**
150  * Announce to reserve extra space for each edge to be allocated.
151  *
152  * @param n: Size of the space to reserve
153  *
154  * @return Offset at which the private data will begin
155  *
156  * Several users can reserve extra space for private usage.
157  * Each user has to remember his given offset and the size of his private data.
158  * To be called before FIRM is initialized.
159  */
160 int edges_register_private_data(size_t n) {
161         int res = edges_private_size;
162
163         assert(!edges_used && "you cannot register private edge data, if edges have been initialized");
164
165         edges_private_size += n;
166         return res;
167 }
168
169 /**
170  * Reset the user's private data at offset 'offset'
171  * The user has to remember his offset and the size of his data!
172  * Caution: Using wrong values here can destroy other users private data!
173  */
174 void edges_reset_private_data(ir_graph *irg, int offset, size_t size) {
175         irg_edge_info_t       *info = _get_irg_edge_info(irg, EDGE_KIND_NORMAL);
176         ir_edge_t             *edge;
177         ir_edgeset_iterator_t  iter;
178
179         foreach_ir_edgeset(&info->edges, edge, iter) {
180                 memset(edge + sizeof(*edge) + offset, 0, size);
181         }
182 }
183
184 #define TIMES37(x) (((x) << 5) + ((x) << 2) + (x))
185
186 #define get_irn_out_list_head(irn) (&get_irn_out_info(irn)->outs)
187
188 #define edge_hash(edge) (TIMES37((edge)->pos) + HASH_PTR((edge)->src))
189
190 /**
191  * Initialize the out information for a graph.
192  * @note Dead node elimination can call this on an already initialized graph.
193  */
194 void edges_init_graph_kind(ir_graph *irg, ir_edge_kind_t kind) {
195         if (edges_activated_kind(irg, kind)) {
196                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
197                 size_t amount = irg->estimated_node_count * 2;
198
199                 edges_used = 1;
200                 if(info->allocated) {
201                         amount = ir_edgeset_size(&info->edges);
202                         ir_edgeset_destroy(&info->edges);
203                         obstack_free(&info->edges_obst, NULL);
204                 }
205                 obstack_init(&info->edges_obst);
206                 ir_edgeset_init_size(&info->edges, amount);
207                 info->allocated = 1;
208         }
209 }
210
211 /**
212  * Get the edge object of an outgoing edge at a node.
213  * @param   irg The graph, the node is in.
214  * @param   src The node at which the edge originates.
215  * @param   pos The position of the edge.
216  * @return      The corresponding edge object or NULL,
217  *              if no such edge exists.
218  */
219 const ir_edge_t *get_irn_edge_kind(ir_graph *irg, const ir_node *src, int pos, ir_edge_kind_t kind)
220 {
221         if (edges_activated_kind(irg, kind)) {
222                 irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
223                 ir_edge_t       key;
224
225                 key.src = (ir_node *)src;
226                 key.pos = pos;
227
228                 return ir_edgeset_find(&info->edges, &key);
229         }
230
231         return NULL;
232 }
233
234 /**
235  * Get the edge object of an outgoing edge at a node.
236  * Looks for an edge for all kinds.
237  */
238 const ir_edge_t *get_irn_edge(ir_graph *irg, const ir_node *src, int pos) {
239         const ir_edge_t *edge;
240         if((edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_NORMAL)) == NULL)
241                 edge = get_irn_edge_kind(irg, src, pos, EDGE_KIND_BLOCK);
242         return(edge);
243 }
244
245 /**
246  * Change the out count
247  *
248  * @param tgt  the edge target
249  * @param kind the kind of the edge
250  */
251 static INLINE void edge_change_cnt(ir_node *tgt, ir_edge_kind_t kind, int ofs) {
252         irn_edge_info_t *info = _get_irn_edge_info(tgt, kind);
253         info->out_count += ofs;
254
255 #if 0
256         assert(info->out_count >= 0);
257         if (info->out_count == 0 && kind == EDGE_KIND_NORMAL) {
258                 /* tgt lost it's last user */
259                 int i;
260
261                 for (i = get_irn_arity(tgt) - 1; i >= -1; --i) {
262                         ir_node *prev = get_irn_n(tgt, i);
263
264                         edges_notify_edge(tgt, i, NULL, prev, current_ir_graph);
265                 }
266                 for (i = get_irn_deps(tgt) - 1; i >= 0; --i) {
267                         ir_node *prev = get_irn_dep(tgt, i);
268
269                         edges_notify_edge_kind(tgt, i, NULL, prev, EDGE_KIND_DEP, current_ir_graph);
270
271                 }
272         }
273 #endif
274 }
275
276 /**
277  * Verify the edge list of a node, ie. ensure it's a loop:
278  * head -> e_1 -> ... -> e_n -> head
279  */
280 static INLINE void vrfy_list_head(ir_node *irn, ir_edge_kind_t kind) {
281         int                    err       = 0;
282         int                    num       = 0;
283         pset                   *lh_set   = pset_new_ptr(16);
284         const struct list_head *head     = _get_irn_outs_head(irn, kind);
285         const struct list_head *pos;
286
287         list_for_each(pos, head) {
288                 if (pset_find_ptr(lh_set, pos)) {
289                         const ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
290
291                         ir_fprintf(stderr, "EDGE Verifier: edge list broken (self loop not to head) for %+F:\n", irn);
292                         fprintf(stderr, "- at list entry %d\n", num);
293                         if (edge->invalid)
294                                 fprintf(stderr, "- edge(%ld) is invalid\n", edge_get_id(edge));
295                         if (edge->src)
296                                 ir_fprintf(stderr, "- edge(%ld) %+F(%d)\n", edge_get_id(edge), edge->src, edge->pos);
297                         err = 1;
298                         break;
299                 }
300                 num++;
301                 pset_insert_ptr(lh_set, pos);
302         }
303
304         del_pset(lh_set);
305
306         assert(err == 0);
307 }
308
309 /* The edge from (src, pos) -> old_tgt is redirected to tgt */
310 void edges_notify_edge_kind(ir_node *src, int pos, ir_node *tgt,
311                             ir_node *old_tgt, ir_edge_kind_t kind,
312                             ir_graph *irg)
313 {
314         const char      *msg = "";
315         irg_edge_info_t *info;
316         ir_edgeset_t    *edges;
317         ir_edge_t        templ;
318         ir_edge_t       *edge;
319
320         assert(edges_activated_kind(irg, kind));
321
322         /*
323          * Only do something, if the old and new target differ.
324          */
325         if (tgt == old_tgt)
326                 return;
327
328         info  = _get_irg_edge_info(irg, kind);
329         edges = &info->edges;
330
331         /* Initialize the edge template to search in the set. */
332         templ.src = src;
333         templ.pos = pos;
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 = ir_edgeset_find(edges, &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 = ir_edgeset_find(edges, &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                         ir_edge_t *new_edge;
388                         ir_edge_t *edge
389                                 = obstack_alloc(&info->edges_obst, EDGE_SIZE);
390                         memset(edge, 0, EDGE_SIZE);
391                         edge->src = src;
392                         edge->pos = pos;
393                         edge->kind = kind;
394                         DEBUG_ONLY(edge->src_nr = get_irn_node_nr(src));
395
396                         new_edge = ir_edgeset_insert(edges, edge);
397                         if(new_edge != edge) {
398                                 obstack_free(&info->edges_obst, edge);
399                         }
400
401                         assert(! edge->invalid && "Freshly inserted edge is invalid?!?");
402                         assert(edge->list.next == NULL && edge->list.prev == NULL &&
403                                 "New edge must not have list head initialized");
404
405                         msg = "adding";
406                         list_add(&edge->list, head);
407 #ifdef DEBUG_libfirm
408                         edge->edge_nr = ++last_edge_num;
409 #endif /* DEBUG_libfirm */
410                 }
411
412                 edge_change_cnt(tgt, kind, +1);
413         } /* else */
414
415 #ifndef DEBUG_libfirm
416         /* verify list heads */
417         if (edges_dbg) {
418                 if (tgt)
419                         vrfy_list_head(tgt, kind);
420                 if (old_tgt)
421                         vrfy_list_head(old_tgt, kind);
422         }
423 #endif
424
425         DBG((dbg, LEVEL_5, "announce out edge: %+F %d-> %+F(%+F): %s\n", src, pos, tgt, old_tgt, msg));
426 }
427
428 void edges_notify_edge(ir_node *src, int pos, ir_node *tgt, ir_node *old_tgt, ir_graph *irg)
429 {
430         if (edges_activated_kind(irg, EDGE_KIND_NORMAL)) {
431                 edges_notify_edge_kind(src, pos, tgt, old_tgt, EDGE_KIND_NORMAL, irg);
432         }
433
434         if (edges_activated_kind(irg, EDGE_KIND_BLOCK) && is_Block(src)) {
435                 if (pos == -1) {
436                         /* a MacroBlock edge: ignore it here */
437                 } else {
438                         ir_node *bl_old = old_tgt ? get_nodes_block(skip_Proj(old_tgt)) : NULL;
439                         ir_node *bl_tgt = NULL;
440
441                         if (tgt)
442                                 bl_tgt = is_Bad(tgt) ? tgt : get_nodes_block(skip_Proj(tgt));
443
444                         edges_notify_edge_kind(src, pos, bl_tgt, bl_old, EDGE_KIND_BLOCK, irg);
445                 }
446         }
447 }
448
449 /**
450  * Delete all in edges of a given kind from the node old.
451  *
452  * @param old   the node
453  * @param kind  the kind of edges to remove
454  * @param irg   the irg of the old node
455  */
456 static void edges_node_deleted_kind(ir_node *old, ir_edge_kind_t kind, ir_graph *irg)
457 {
458         int i, n;
459
460         if (!edges_activated_kind(irg, kind))
461                 return;
462
463         DBG((dbg, LEVEL_5, "node deleted (kind: %s): %+F\n", get_kind_str(kind), old));
464
465         foreach_tgt(old, i, n, kind) {
466                 ir_node *old_tgt = get_n(old, i, kind);
467                 edges_notify_edge_kind(old, i, NULL, old_tgt, kind, irg);
468         }
469 }
470
471 struct build_walker {
472         ir_graph       *irg;
473         ir_edge_kind_t kind;
474         bitset_t       *reachable;
475         unsigned       problem_found;
476 };
477
478 /**
479  * Post-Walker: notify all edges
480  */
481 static void build_edges_walker(ir_node *irn, void *data) {
482         struct build_walker   *w = data;
483         int                   i, n;
484         ir_edge_kind_t        kind = w->kind;
485         ir_graph              *irg = w->irg;
486         get_edge_src_n_func_t *get_n;
487
488         if (! edges_activated_kind(irg, kind))
489                 return;
490
491         get_n = edge_kind_info[kind].get_n;
492         foreach_tgt(irn, i, n, kind) {
493                 ir_node *pred = get_n(irn, i, kind);
494                 edges_notify_edge_kind(irn, i, pred, NULL, kind, irg);
495         }
496 }
497
498 /**
499  * Pre-Walker: initializes the list-heads and set the out-count
500  * of all nodes to 0.
501  */
502 static void init_lh_walker(ir_node *irn, void *data) {
503         struct build_walker *w   = data;
504         ir_edge_kind_t      kind = w->kind;
505         INIT_LIST_HEAD(_get_irn_outs_head(irn, kind));
506         _get_irn_edge_info(irn, kind)->out_count = 0;
507 }
508
509 /**
510  * Visitor: initializes the list-heads and set the out-count
511  * of all nodes to 0 of nodes that are not seen so far.
512  */
513 static void visitor(ir_node *irn, void *data) {
514         if (irn_not_visited(irn)) {
515                 mark_irn_visited(irn);
516                 init_lh_walker(irn, data);
517         }
518 }
519
520 /*
521  * Build the initial edge set.
522  * Beware, this is not a simple task because it suffers from two
523  * difficulties:
524  * - the anchor set allows access to Nodes that may not be reachable from
525  *   the End node
526  * - the identities add nodes to the "root set" that are not yet reachable
527  *   from End. However, after some transformations, the CSE may revival these
528  *   nodes
529  *
530  * These problems can be fixed using different strategies:
531  * - Add an age flag to every node. Whenever the edge of a node is older
532  *   then the current edge, invalidate the edges of this node.
533  *   While this would help for revivaled nodes, it increases memory and runtime.
534  * - Delete the identities set.
535  *   Solves the revival problem, but may increase the memory consumption, as
536  *   nodes cannot be revivaled at all.
537  * - Manually iterate over the identities root set. This did not consume more memory
538  *   but increase the computation time because the |identities| >= |V|
539  *
540  * Currently, we use the last option.
541  */
542 void edges_activate_kind(ir_graph *irg, ir_edge_kind_t kind)
543 {
544         struct build_walker w;
545         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
546
547         w.irg  = irg;
548         w.kind = kind;
549
550         info->activated = 1;
551         edges_init_graph_kind(irg, kind);
552         if (kind == EDGE_KIND_DEP) {
553                 irg_walk_anchors(irg, init_lh_walker, NULL, &w);
554                 irg_walk_anchors(irg, NULL, build_edges_walker, &w);
555         } else {
556                 irg_walk_anchors(irg, init_lh_walker, build_edges_walker, &w);
557         }
558         visit_all_identities(irg, visitor, &w);
559 }
560
561 void edges_deactivate_kind(ir_graph *irg, ir_edge_kind_t kind)
562 {
563         irg_edge_info_t *info = _get_irg_edge_info(irg, kind);
564
565         info->activated = 0;
566         if (info->allocated) {
567                 obstack_free(&info->edges_obst, NULL);
568                 ir_edgeset_destroy(&info->edges);
569                 info->allocated = 0;
570         }
571 }
572
573 int (edges_activated_kind)(const ir_graph *irg, ir_edge_kind_t kind)
574 {
575         return _edges_activated_kind(irg, kind);
576 }
577
578
579 /**
580  * Reroute all use-edges from a node to another.
581  * @param from The node whose use-edges shall be withdrawn.
582  * @param to   The node to which all the use-edges of @p from shall be
583  *             sent to.
584  * @param irg  The graph.
585  */
586 void edges_reroute_kind(ir_node *from, ir_node *to, ir_edge_kind_t kind, ir_graph *irg)
587 {
588         set_edge_func_t *set_edge = edge_kind_info[kind].set_edge;
589
590         if(set_edge && edges_activated_kind(irg, kind)) {
591                 struct list_head *head = _get_irn_outs_head(from, kind);
592
593                 DBG((dbg, LEVEL_5, "reroute from %+F to %+F\n", from, to));
594
595                 while (head != head->next) {
596                         ir_edge_t *edge = list_entry(head->next, ir_edge_t, list);
597                         assert(edge->pos >= -1);
598                         set_edge(edge->src, edge->pos, to);
599                 }
600         }
601 }
602
603 static void verify_set_presence(ir_node *irn, void *data)
604 {
605         struct build_walker *w     = data;
606         ir_edgeset_t        *edges = &_get_irg_edge_info(w->irg, w->kind)->edges;
607         int i, n;
608
609         foreach_tgt(irn, i, n, w->kind) {
610                 ir_edge_t templ, *e;
611
612                 templ.src = irn;
613                 templ.pos = i;
614
615                 e = ir_edgeset_find(edges, &templ);
616                 if(e != NULL) {
617                         e->present = 1;
618                 } else {
619                         w->problem_found = 1;
620 #if 0
621                         ir_fprintf(stderr, "Edge Verifier: edge %+F,%d -> %+F (kind: \"%s\") is missing\n",
622                                 irn, i, get_n(irn, i, w->kind), get_kind_str(w->kind));
623 #endif
624                 }
625         }
626 }
627
628 static void verify_list_presence(ir_node *irn, void *data)
629 {
630         struct build_walker *w = data;
631         const ir_edge_t     *e;
632
633         bitset_set(w->reachable, get_irn_idx(irn));
634
635         /* check list heads */
636         vrfy_list_head(irn, w->kind);
637
638         foreach_out_edge_kind(irn, e, w->kind) {
639                 ir_node *tgt;
640
641                 if (w->kind == EDGE_KIND_NORMAL && get_irn_arity(e->src) <= e->pos) {
642                         w->problem_found = 1;
643 #if 0
644                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F -> %+F recorded at src position %d, but src has arity %d\n",
645                                 edge_get_id(e), e->src, irn, e->pos, get_irn_arity(e->src));
646 #endif
647                         continue;
648                 }
649
650                 tgt = get_n(e->src, e->pos, w->kind);
651
652                 if (irn != tgt) {
653                         w->problem_found = 1;
654 #if 0
655                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d (kind \"%s\") is no out edge of %+F but of %+F\n",
656                                 edge_get_id(e), e->src, e->pos, get_kind_str(w->kind), irn, tgt);
657 #endif
658                 }
659         }
660 }
661
662 int edges_verify_kind(ir_graph *irg, ir_edge_kind_t kind)
663 {
664         struct build_walker w;
665         ir_edgeset_t        *edges = &_get_irg_edge_info(irg, kind)->edges;
666         ir_edge_t           *e;
667         ir_edgeset_iterator_t  iter;
668
669         w.irg           = irg;
670         w.kind          = kind;
671         w.reachable     = bitset_alloca(get_irg_last_idx(irg));
672         w.problem_found = 0;
673
674         /* Clear the present bit in all edges available. */
675         foreach_ir_edgeset(edges, e, iter) {
676                 e->present = 0;
677         }
678
679         irg_walk_graph(irg, verify_set_presence, verify_list_presence, &w);
680
681         /*
682          * Dump all edges which are not invalid and not present.
683          * These edges are superfluous and their presence in the
684          * edge set is wrong.
685          */
686         foreach_ir_edgeset(edges, e, iter) {
687                 if (! e->invalid && ! e->present && bitset_is_set(w.reachable, get_irn_idx(e->src))) {
688                         w.problem_found = 1;
689                         ir_fprintf(stderr, "Edge Verifier: edge(%ld) %+F,%d is superfluous\n", edge_get_id(e), e->src, e->pos);
690                 }
691         }
692
693         return w.problem_found;
694 }
695
696 #define IGNORE_NODE(irn) (is_Bad((irn)) || is_Block((irn)))
697
698 /**
699  * Clear link field of all nodes.
700  */
701 static void clear_links(ir_node *irn, void *env) {
702         struct build_walker *w  = env;
703         bitset_t            *bs;
704
705         if (IGNORE_NODE(irn)) {
706                 set_irn_link(irn, NULL);
707                 return;
708         }
709
710         bs = bitset_malloc(get_irg_last_idx(w->irg));
711         set_irn_link(irn, bs);
712 }
713
714 /**
715  * Increases count (stored in link field) for all operands of a node.
716  */
717 static void count_user(ir_node *irn, void *env) {
718         int i;
719         int first;
720         (void) env;
721
722         first = -1;
723         for (i = get_irn_arity(irn) - 1; i >= first; --i) {
724                 ir_node  *op = get_irn_n(irn, i);
725                 bitset_t *bs = get_irn_link(op);
726
727                 if (bs)
728                         bitset_set(bs, get_irn_idx(irn));
729         }
730 }
731
732 /**
733  * Verifies if collected count, number of edges in list and stored edge count are in sync.
734  */
735 static void verify_edge_counter(ir_node *irn, void *env) {
736         struct build_walker    *w = env;
737         bitset_t               *bs;
738         int                    list_cnt;
739         int                    ref_cnt;
740         int                    edge_cnt;
741         unsigned long          idx;
742         const struct list_head *head;
743         const struct list_head *pos;
744
745         if (IGNORE_NODE(irn))
746                 return;
747
748         bs       = get_irn_link(irn);
749         list_cnt = 0;
750         ref_cnt  = 0;
751         edge_cnt = _get_irn_edge_info(irn, EDGE_KIND_NORMAL)->out_count;
752         head     = _get_irn_outs_head(irn, EDGE_KIND_NORMAL);
753
754         /* We can iterate safely here, list heads have already been verified. */
755         list_for_each(pos, head) {
756                 ++list_cnt;
757         }
758
759         /* check all nodes that reference us and count edges that point number
760          * of ins that actually point to us */
761         ref_cnt = 0;
762         bitset_foreach(bs, idx) {
763                 int i, arity;
764                 ir_node *src = get_idx_irn(w->irg, idx);
765
766                 arity = get_irn_arity(src);
767                 for (i = 0; i < arity; ++i) {
768                         ir_node *in = get_irn_n(src, i);
769                         if (in == irn)
770                                 ++ref_cnt;
771                 }
772         }
773
774         if (edge_cnt != list_cnt) {
775                 w->problem_found = 1;
776                 ir_fprintf(stderr, "Edge Verifier: edge count is %d, but %d edge(s) are recorded in list at %+F\n",
777                         edge_cnt, list_cnt, irn);
778         }
779
780         if (ref_cnt != list_cnt) {
781                 w->problem_found = 1;
782                 ir_fprintf(stderr, "Edge Verifier: %+F reachable by %d node(s), but the list contains %d edge(s)\n",
783                         irn, ref_cnt, list_cnt);
784
785                 /* Matze: buggy if a node has multiple ins pointing at irn */
786 #if 0
787                 list_for_each(pos, head) {
788                         ir_edge_t *edge = list_entry(pos, ir_edge_t, list);
789                         bitset_flip(bs, get_irn_idx(edge->src));
790                 }
791
792                 if (ref_cnt < list_cnt)
793                         fprintf(stderr,"               following nodes are recorded in list, but not as user:\n");
794                 else
795                         fprintf(stderr,"               following nodes are user, but not recorded in list:\n");
796
797                 fprintf(stderr,"              ");
798                 bitset_foreach(bs, idx) {
799                         ir_node *src = get_idx_irn(w->irg, idx);
800                         ir_fprintf(stderr, " %+F", src);
801                 }
802                 fprintf(stderr, "\n");
803 #endif
804         }
805
806         bitset_free(bs);
807 }
808
809 /**
810  * Verifies the out edges of an irg.
811  */
812 int edges_verify(ir_graph *irg) {
813         struct build_walker w;
814         int    problem_found = 0;
815
816         /* verify normal edges only */
817         problem_found  = edges_verify_kind(irg, EDGE_KIND_NORMAL);
818
819         w.irg           = irg;
820         w.kind          = EDGE_KIND_NORMAL;
821         w.problem_found = 0;
822
823         /* verify counter */
824         irg_walk_anchors(irg, clear_links, count_user, &w);
825         irg_walk_anchors(irg, NULL, verify_edge_counter, &w);
826
827         return problem_found ? 1 : w.problem_found;
828 }
829
830 void init_edges(void) {
831         FIRM_DBG_REGISTER(dbg, DBG_EDGES);
832         /* firm_dbg_set_mask(dbg, -1); */
833 }
834
835 void edges_init_dbg(int do_dbg) {
836         edges_dbg = do_dbg;
837 }
838
839 void edges_activate(ir_graph *irg) {
840         edges_activate_kind(irg, EDGE_KIND_NORMAL);
841         edges_activate_kind(irg, EDGE_KIND_BLOCK);
842         edges_activate_kind(irg, EDGE_KIND_DEP);
843 }
844
845 void edges_deactivate(ir_graph *irg) {
846         edges_deactivate_kind(irg, EDGE_KIND_DEP);
847         edges_deactivate_kind(irg, EDGE_KIND_BLOCK);
848         edges_deactivate_kind(irg, EDGE_KIND_NORMAL);
849 }
850
851 int edges_assure(ir_graph *irg) {
852         int activated = edges_activated(irg);
853
854         if (!activated)
855                 edges_activate(irg);
856
857         return activated;
858 }
859
860 int edges_assure_kind(ir_graph *irg, ir_edge_kind_t kind) {
861         int activated = edges_activated_kind(irg, kind);
862
863         if (!activated)
864                 edges_activate_kind(irg, kind);
865
866         return activated;
867 }
868
869 void edges_node_deleted(ir_node *irn, ir_graph *irg) {
870         edges_node_deleted_kind(irn, EDGE_KIND_NORMAL, irg);
871         edges_node_deleted_kind(irn, EDGE_KIND_BLOCK, irg);
872 }
873
874
875 const ir_edge_t *(get_irn_out_edge_first_kind)(const ir_node *irn, ir_edge_kind_t kind) {
876         return _get_irn_out_edge_first_kind(irn, kind);
877 }
878
879 const ir_edge_t *(get_irn_out_edge_next)(const ir_node *irn, const ir_edge_t *last) {
880         return _get_irn_out_edge_next(irn, last);
881 }
882
883 ir_node *(get_edge_src_irn)(const ir_edge_t *edge) {
884         return _get_edge_src_irn(edge);
885 }
886
887 int (get_edge_src_pos)(const ir_edge_t *edge) {
888         return _get_edge_src_pos(edge);
889 }
890
891 int (get_irn_n_edges_kind)(const ir_node *irn, ir_edge_kind_t kind) {
892         return _get_irn_n_edges_kind(irn, kind);
893 }
894
895 void dump_all_out_edges(ir_node *irn) {
896         int i;
897         for (i = 0; i < EDGE_KIND_LAST; ++i) {
898                 const ir_edge_t *edge;
899
900                 printf("kind \"%s\"\n", get_kind_str(i));
901                 foreach_out_edge_kind(irn, edge, i) {
902                         ir_printf("\t%+F(%d)\n", edge->src, edge->pos);
903                 }
904         }
905 }
906
907 static void irg_block_edges_walk2(ir_node *bl,
908                                 irg_walk_func *pre, irg_walk_func *post,
909                                 void *env) {
910         const ir_edge_t *edge, *next;
911
912         if (Block_not_block_visited(bl)) {
913                 mark_Block_block_visited(bl);
914
915                 if (pre)
916                         pre(bl, env);
917
918                 foreach_out_edge_kind_safe(bl, edge, next, EDGE_KIND_BLOCK) {
919                         /* find the corresponding successor block. */
920                         ir_node *pred = get_edge_src_irn(edge);
921                         irg_block_edges_walk2(pred, pre, post, env);
922                 }
923
924                 if (post)
925                         post(bl, env);
926         }
927 }
928
929 void irg_block_edges_walk(ir_node *node,
930                           irg_walk_func *pre, irg_walk_func *post,
931                           void *env) {
932
933         assert(edges_activated(current_ir_graph));
934         assert(is_Block(node));
935
936         set_using_block_visited(current_ir_graph);
937
938         inc_irg_block_visited(current_ir_graph);
939         irg_block_edges_walk2(node, pre, post, env);
940
941         clear_using_block_visited(current_ir_graph);
942 }