Micro optimisation of the day: Remove ia32_Test, which tests the high result of ia32_Mul.
[libfirm] / ir / ana / irouts.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    Compute and access out edges (also called def-use edges).
23  * @author   Goetz Lindenmaier, Michael Beck
24  * @date     1.2002
25  * @version  $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #ifdef HAVE_STRING_H
32 #include <string.h>
33 #endif
34
35 #include "xmalloc.h"
36 #include "irouts.h"
37 #include "irnode_t.h"
38 #include "irgraph_t.h"
39 #include "irprog_t.h"
40 #include "irgwalk.h"
41 #include "irtools.h"
42 #include "irprintf.h"
43 #include "error.h"
44
45 #ifdef DEBUG_libfirm
46 /* Note:  ir_node.out_valid and ir_graph.n_outs are only present when DEBUG_libfirm is defined */
47 /* Accesses to out_valid and n_outs are fenced out to avoid breakage
48    when compiling with neither DEBUG_libfirm or NDEBUG defined */
49 #endif /* defined DEBUG_libfirm */
50
51 /*--------------------------------------------------------------------*/
52 /** Accessing the out datastructures                                 **/
53 /*--------------------------------------------------------------------*/
54
55 #ifdef DEBUG_libfirm
56 /** Clear the outs of a node */
57 static void reset_outs(ir_node *node, void *unused) {
58         (void) unused;
59         node->out       = NULL;
60         node->out_valid = 0;
61 }
62 #endif
63
64 int get_irn_outs_computed(const ir_node *node)
65 {
66         return node->out != NULL;
67 }
68
69 /* returns the number of successors of the node: */
70 int get_irn_n_outs(const ir_node *node) {
71         assert(node && node->kind == k_ir_node);
72 #ifdef DEBUG_libfirm
73         /* assert(node->out_valid); */
74 #endif /* defined DEBUG_libfirm */
75         /* we misuse the first for the size info of the out array */
76         return node->out[0].pos;
77 }
78
79 /* Access successor n */
80 ir_node *get_irn_out(const ir_node *def, int pos) {
81         assert(pos >= 0 && pos < get_irn_n_outs(def));
82 #ifdef DEBUG_libfirm
83         /* assert(def->out_valid); */
84 #endif /* defined DEBUG_libfirm */
85         return def->out[pos+1].use;
86 }
87
88 /* Access successor n */
89 ir_node *get_irn_out_ex(const ir_node *def, int pos, int *in_pos) {
90         assert(pos >= 0 && pos < get_irn_n_outs(def));
91 #ifdef DEBUG_libfirm
92         /* assert(def->out_valid); */
93 #endif /* defined DEBUG_libfirm */
94         *in_pos = def->out[pos+1].pos;
95         return def->out[pos+1].use;
96 }
97
98 void set_irn_out(ir_node *def, int pos, ir_node *use, int in_pos) {
99         assert(def && use);
100         assert(pos >= 0 && pos < get_irn_n_outs(def));
101 #ifdef DEBUG_libfirm
102         def->out_valid = 1;          /* assume that this function is used correctly */
103 #endif /* defined DEBUG_libfirm */
104         def->out[pos+1].use = use;
105         def->out[pos+1].pos = in_pos;
106 }
107
108 /* Return the number of control flow successors, ignore keep-alives. */
109 int get_Block_n_cfg_outs(const ir_node *bl) {
110         int i, n_cfg_outs = 0;
111         assert(bl && is_Block(bl));
112 #ifdef DEBUG_libfirm
113         assert(bl->out_valid);
114 #endif /* defined DEBUG_libfirm */
115         for (i = 1; i <= bl->out[0].pos; ++i) {
116                 ir_node *succ = bl->out[i].use;
117                 if (get_irn_mode(succ) == mode_X && !is_End(succ))
118                         n_cfg_outs += succ->out[0].pos;
119         }
120         return n_cfg_outs;
121 }
122
123 /* Return the number of control flow successors, honor keep-alives. */
124 int get_Block_n_cfg_outs_ka(const ir_node *bl) {
125         int i, n_cfg_outs = 0;
126         assert(bl && is_Block(bl));
127 #ifdef DEBUG_libfirm
128         assert(bl->out_valid);
129 #endif /* defined DEBUG_libfirm */
130         for (i = 1; i <= bl->out[0].pos; ++i) {
131                 ir_node *succ = bl->out[i].use;
132                 if (get_irn_mode(succ) == mode_X) {
133
134                         if (is_End(succ)) {
135                                 /* ignore End if we are in the Endblock */
136                                 if (get_nodes_block(succ) == bl)
137                                         continue;
138                                 else /* count Keep-alive as one */
139                                         n_cfg_outs += 1;
140                         } else
141                                 n_cfg_outs += succ->out[0].pos;
142                 }
143         }
144         return n_cfg_outs;
145 }
146
147 /* Access predecessor n, ignore keep-alives. */
148 ir_node *get_Block_cfg_out(const ir_node *bl, int pos) {
149         int i;
150         assert(bl && is_Block(bl));
151 #ifdef DEBUG_libfirm
152         assert(bl->out_valid);
153 #endif /* defined DEBUG_libfirm */
154         for (i = 1; i <= bl->out[0].pos; ++i) {
155                 ir_node *succ = bl->out[i].use;
156                 if (get_irn_mode(succ) == mode_X && !is_End(succ)) {
157                         int n_outs = succ->out[0].pos;
158                         if (pos < n_outs)
159                                 return succ->out[pos + 1].use;
160                         else
161                                 pos -= n_outs;
162                 }
163         }
164         return NULL;
165 }
166
167 /* Access predecessor n, honor keep-alives. */
168 ir_node *get_Block_cfg_out_ka(const ir_node *bl, int pos) {
169         int i, n_outs;
170         assert(bl && is_Block(bl));
171 #ifdef DEBUG_libfirm
172         assert (bl->out_valid);
173 #endif /* defined DEBUG_libfirm */
174         for (i = 1; i <= bl->out[0].pos; ++i) {
175                 ir_node *succ = bl->out[i].use;
176                 if (get_irn_mode(succ) == mode_X) {
177                         if (is_End(succ)) {
178                                 ir_node *end_bl = get_nodes_block(succ);
179                                 if (end_bl == bl) {
180                                         /* ignore End if we are in the Endblock */
181                                         continue;
182                                 }
183                                 if (pos == 0) {
184                                         /* handle keep-alive here: return the Endblock instead of the End node */
185                                         return end_bl;
186                                 } else
187                                         --pos;
188                         } else {
189                                 n_outs = succ->out[0].pos;
190                                 if (pos < n_outs)
191                                         return succ->out[pos + 1].use;
192                                 else
193                                         pos -= n_outs;
194                         }
195                 }
196         }
197         return NULL;
198 }
199
200 static void irg_out_walk_2(ir_node *node, irg_walk_func *pre,
201             irg_walk_func *post, void *env) {
202         int     i, n;
203         ir_node *succ;
204
205         assert(node);
206         assert(get_irn_visited(node) < get_irg_visited(current_ir_graph));
207
208         set_irn_visited(node, get_irg_visited(current_ir_graph));
209
210         if (pre) pre(node, env);
211
212         for (i = 0, n = get_irn_n_outs(node); i < n; ++i) {
213                 succ = get_irn_out(node, i);
214                 if (get_irn_visited(succ) < get_irg_visited(current_ir_graph))
215                         irg_out_walk_2(succ, pre, post, env);
216         }
217
218         if (post) post(node, env);
219 }
220
221 void irg_out_walk(ir_node *node,
222                   irg_walk_func *pre, irg_walk_func *post,
223                   void *env) {
224         assert(node);
225         if (get_irg_outs_state(current_ir_graph) != outs_none) {
226                 inc_irg_visited (current_ir_graph);
227                 irg_out_walk_2(node, pre, post, env);
228         }
229 }
230
231 static void irg_out_block_walk2(ir_node *bl,
232                                 irg_walk_func *pre, irg_walk_func *post,
233                                 void *env) {
234         int i, n;
235
236         if (!Block_block_visited(bl)) {
237                 mark_Block_block_visited(bl);
238
239                 if (pre)
240                         pre(bl, env);
241
242                 for (i = 0, n =  get_Block_n_cfg_outs(bl); i < n; ++i) {
243                         /* find the corresponding predecessor block. */
244                         ir_node *pred = get_Block_cfg_out(bl, i);
245                         /* recursion */
246                         irg_out_block_walk2(pred, pre, post, env);
247                 }
248
249                 if (post)
250                         post(bl, env);
251         }
252 }
253
254 /* Walks only over Block nodes in the graph.  Has it's own visited
255    flag, so that it can be interleaved with the other walker.         */
256 void irg_out_block_walk(ir_node *node,
257                         irg_walk_func *pre, irg_walk_func *post,
258                         void *env) {
259
260         assert(is_Block(node) || (get_irn_mode(node) == mode_X));
261
262         inc_irg_block_visited(current_ir_graph);
263
264         if (get_irn_mode(node) == mode_X) {
265                 int i, n;
266
267                 for (i = 0, n = get_irn_n_outs(node); i < n; ++i) {
268                         ir_node *succ = get_irn_out(node, i);
269                         if (get_irn_visited(succ) < get_irg_visited(current_ir_graph))
270                                 irg_out_walk_2(succ, pre, post, env);
271                 }
272         }
273         else {
274                 irg_out_block_walk2(node, pre, post, env);
275         }
276 }
277
278 /*--------------------------------------------------------------------*/
279 /** Building and Removing the out datastructure                      **/
280 /**                                                                  **/
281 /** The outs of a graph are allocated in a single, large array.      **/
282 /** This allows to allocate and deallocate the memory for the outs   **/
283 /** on demand.  The large array is separated into many small ones    **/
284 /** for each node.  Only a single field to reference the out array   **/
285 /** is stored in each node and a field referencing the large out     **/
286 /** array in irgraph.  The 0 field of each out array contains the    **/
287 /** size of this array.  This saves memory in the irnodes themselves.**/
288 /** The construction does two passes over the graph.  The first pass **/
289 /** counts the overall number of outs and the outs of each node.  It **/
290 /** stores the outs of each node in the out reference of the node.   **/
291 /** Then the large array is allocated.  The second iteration chops   **/
292 /** the large array into smaller parts, sets the out edges and       **/
293 /** recounts the out edges.                                          **/
294 /** Removes Tuple nodes!                                             **/
295 /*--------------------------------------------------------------------*/
296
297
298 /** Returns the amount of out edges for not yet visited successors. */
299 static int _count_outs(ir_node *n) {
300         int start, i, res, irn_arity;
301
302         mark_irn_visited(n);
303         n->out = INT_TO_PTR(1);     /* Space for array size. */
304
305         start = is_Block(n) ? 0 : -1;
306         irn_arity = get_irn_arity(n);
307         res = irn_arity - start + 1;  /* --1 or --0; 1 for array size. */
308
309         for (i = start; i < irn_arity; ++i) {
310                 /* Optimize Tuples.  They annoy if walking the cfg. */
311                 ir_node *pred         = get_irn_n(n, i);
312                 ir_node *skipped_pred = skip_Tuple(pred);
313
314                 if (skipped_pred != pred) {
315                         set_irn_n(n, i, skipped_pred);
316                 }
317
318                 /* count Def-Use edges for predecessors */
319                 if (irn_not_visited(skipped_pred))
320                         res += _count_outs(skipped_pred);
321
322                 /*count my Def-Use edges */
323                 skipped_pred->out = INT_TO_PTR(PTR_TO_INT(skipped_pred->out) + 1);
324         }
325         return res;
326 }
327
328
329 /** Returns the amount of out edges for not yet visited successors.
330  *  This version handles some special nodes like irg_frame, irg_args etc.
331  */
332 static int count_outs(ir_graph *irg) {
333         ir_node *n;
334         int     i, res;
335
336         inc_irg_visited(irg);
337         res = _count_outs(get_irg_end(irg));
338
339         /* Now handle anchored nodes. We need the out count of those
340            even if they are not visible. */
341         for (i = anchor_last - 1; i >= 0; --i) {
342                 n = get_irg_anchor(irg, i);
343                 if (irn_not_visited(n)) {
344                         mark_irn_visited(n);
345
346                         n->out = INT_TO_PTR(1);
347                         ++res;
348                 }
349         }
350         return res;
351 }
352
353 /**
354  * Enter memory for the outs to a node.
355  *
356  * @param use    current node
357  * @param free   current free address in the chunk allocated for the outs
358  *
359  * @return The next free address
360  */
361 static ir_def_use_edge *_set_out_edges(ir_node *use, ir_def_use_edge *free) {
362         int     n_outs, start, i, irn_arity, pos;
363
364         mark_irn_visited(use);
365
366         /* Allocate my array */
367         n_outs = PTR_TO_INT(use->out);
368         use->out = free;
369 #ifdef DEBUG_libfirm
370         use->out_valid = 1;
371 #endif /* defined DEBUG_libfirm */
372         free += n_outs;
373         /* We count the successors again, the space will be sufficient.
374            We use this counter to remember the position for the next back
375            edge. */
376         use->out[0].pos = 0;
377
378         start = is_Block(use) ? 0 : -1;
379         irn_arity = get_irn_arity(use);
380
381         for (i = start; i < irn_arity; ++i) {
382                 ir_node *def = get_irn_n(use, i);
383
384                 /* Recursion */
385                 if (irn_not_visited(def))
386                         free = _set_out_edges(def, free);
387
388                 /* Remember this Def-Use edge */
389                 pos = def->out[0].pos + 1;
390                 def->out[pos].use = use;
391                 def->out[pos].pos = i;
392
393                 /* increase the number of Def-Use edges so far */
394                 def->out[0].pos = pos;
395         }
396         return free;
397 }
398
399 /**
400  * Enter memory for the outs to a node. Handles special nodes
401  *
402  * @param irg    the graph
403  * @param free   current free address in the chunk allocated for the outs
404  *
405  * @return The next free address
406  */
407 static ir_def_use_edge *set_out_edges(ir_graph *irg, ir_def_use_edge *free) {
408         ir_node *n;
409         int     i, n_outs;
410
411         inc_irg_visited(irg);
412         free = _set_out_edges(get_irg_end(irg), free);
413
414         /* handle anchored nodes */
415         for (i = anchor_last - 1; i >= 0; --i) {
416                 n = get_irg_anchor(irg, i);
417                 if (irn_not_visited(n)) {
418                         mark_irn_visited(n);
419
420                         n_outs = PTR_TO_INT(n->out);
421                         n->out = free;
422 #ifdef DEBUG_libfirm
423                         n->out_valid = 1;
424 #endif /* defined DEBUG_libfirm */
425                         free += n_outs;
426                 }
427         }
428
429         return free;
430 }
431
432
433 /**
434  * We want that the out of ProjX from Start contains the next block at
435  * position 0, the Start block at position 1.  This is necessary for
436  * the out block walker.
437  */
438 static INLINE void fix_start_proj(ir_graph *irg) {
439         ir_node *startbl = get_irg_start_block(irg);
440
441         if (get_Block_n_cfg_outs(startbl)) {
442                 ir_node *proj = get_irg_initial_exec(irg);
443                 ir_node *irn;
444                 int     block_pos, other_pos;
445
446                 if (get_irn_n_outs(proj) == 2) {
447                         if (get_irn_out_ex(proj, 0, &block_pos) == startbl) {
448                                 irn = get_irn_out_ex(proj, 1, &other_pos);
449                                 set_irn_out(proj, 0, irn, other_pos);
450                                 set_irn_out(proj, 1, startbl, block_pos);
451                         }
452                 } else {
453                         assert(get_irg_phase_state(irg) == phase_backend);
454                 }
455         }
456 }
457
458 /* compute the outs for a given graph */
459 void compute_irg_outs(ir_graph *irg) {
460         ir_graph        *rem = current_ir_graph;
461         int             n_out_edges = 0;
462         ir_def_use_edge *end = NULL;         /* Only for debugging */
463
464         current_ir_graph = irg;
465
466         /* Update graph state */
467         assert(get_irg_phase_state(current_ir_graph) != phase_building);
468
469         if (current_ir_graph->outs_state != outs_none)
470                 free_irg_outs(current_ir_graph);
471
472         /* This first iteration counts the overall number of out edges and the
473            number of out edges for each node. */
474         n_out_edges = count_outs(irg);
475
476         /* allocate memory for all out edges. */
477         irg->outs = xcalloc(n_out_edges, sizeof(irg->outs[0]));
478 #ifdef DEBUG_libfirm
479         irg->n_outs = n_out_edges;
480 #endif /* defined DEBUG_libfirm */
481
482         /* The second iteration splits the irg->outs array into smaller arrays
483            for each node and writes the back edges into this array. */
484         end = set_out_edges(irg, irg->outs);
485
486         /* Check how much memory we have used */
487         assert (end == (irg->outs + n_out_edges));
488
489         /* We want that the out of ProjX from Start contains the next block at
490            position 0, the Start block at position 1.  This is necessary for
491            code placement (place_early() ONLY if started GCSE on graphs with dead blocks) */
492         fix_start_proj(irg);
493
494         current_ir_graph->outs_state = outs_consistent;
495         current_ir_graph = rem;
496 }
497
498 void assure_irg_outs(ir_graph *irg) {
499         if (get_irg_outs_state(irg) != outs_consistent)
500                 compute_irg_outs(irg);
501 }
502
503 void compute_irp_outs(void) {
504         int i;
505         for (i = get_irp_n_irgs() -1; i >= 0; --i)
506                 compute_irg_outs(get_irp_irg(i));
507 }
508
509 void free_irp_outs(void) {
510         int i;
511         for (i = get_irp_n_irgs() -1; i >= 0; --i)
512                 free_irg_outs(get_irp_irg(i));
513 }
514
515
516 /*------------------------------------------------------------*
517  *  This computes the outedges for in interprocedural graph.  *
518  *  There is one quirk:                                       *
519  *  The number of the outedges for each node is saved in      *
520  *  the first member of the ir_node** array. Maybe we should  *
521  *  change this to make it more portable...                   *
522  *------------------------------------------------------------*/
523
524
525 #ifdef INTERPROCEDURAL_VIEW
526 /**
527  * Inits the number of outedges for each node
528  * before counting.
529  */
530 static void init_count(ir_node * node, void *env) {
531         (void) env;
532         node->out = (ir_node **) 1; /* 1 for the array size */
533 }
534
535
536 /**
537  * Adjusts the out edge count for its predecessors
538  * and adds the current arity to the overall count,
539  * which is saved in "env"
540  */
541 static void node_arity_count(ir_node * node, void * env) {
542         int *anz = (int *) env, arity, n_outs, i, start;
543         ir_node *succ;
544
545         arity = get_irn_arity(node);
546         start = (is_Block(node)) ? 0 : -1;
547
548         n_outs = 1 + arity + (-start);  // ((is_Block(node)) ? 0 : 1);   // Why + 1??
549         *anz += n_outs;
550
551         for(i = start; i < arity; i++) {
552                 succ = get_irn_n(node, i);
553                 succ->out = (ir_node **)INT_TO_PTR(PTR_TO_INT(succ->out) + 1);
554         }
555 }
556
557 /*
558  * Inits all nodes for setting the outedges
559  * Returns the overall count of edges
560  */
561 int count_ip_outs(void) {
562         int res = 0;
563
564         cg_walk(init_count, node_arity_count, &res);
565
566         return(res);
567 }
568
569 static int dummy_count = 0, global_count; /* Only for debugging */
570
571 /**
572  * For each node: Sets the pointer to array
573  * in which the outedges are written later.
574  * The current array start is transported in env
575  */
576 static void set_array_pointer(ir_node *node, void *env) {
577         int n_outs;
578         ir_node ***free = (ir_node ***) env;
579
580         /* Allocate my array */
581         n_outs = PTR_TO_INT(node->out);  /* We wrote the count here in count_ip_outs */
582         dummy_count += n_outs;
583         assert(dummy_count <= global_count && "More outedges than initially counted!");
584         node -> out = *free;
585         *free = &((*free)[n_outs]);
586         /* We count the successors again, the space will be sufficient.
587            We use this counter to remember the position for the next back
588            edge. */
589         node -> out[0] = (ir_node *) 0;
590 }
591
592
593 /**
594  * Adds an outedge from the predecessor to the
595  * current node.
596  */
597 static void set_out_pointer(ir_node * node, void *env) {
598         int i, arity = get_irn_arity(node);
599         ir_node *succ;
600         int start = (!is_Block(node)) ? -1 : 0;
601         (void) env;
602
603         for (i = start; i < arity; ++i) {
604                 succ = get_irn_n(node, i);
605                 succ->out[get_irn_n_outs(succ)+1] = node;
606                 succ->out[0] = INT_TO_PTR(get_irn_n_outs(succ) + 1);
607         }
608 }
609
610
611 /*
612  * Sets the outedges for all nodes.
613  */
614 void set_ip_outs(void) {
615         ir_node **outedge_array = get_irp_ip_outedges();
616         cg_walk(set_array_pointer, set_out_pointer, (void *) &outedge_array);
617 }
618
619
620
621 /*
622  * Counts the outedges, allocates memory to save the
623  * outedges and fills this outedge array in interprocedural
624  * view!
625  */
626 void compute_ip_outs(void) {
627         int n_out_edges;
628         ir_node **out_edges;
629
630         assert(get_irp_ip_view_state() == ip_view_valid &&
631          "Cannot construct outs for invalid ip view.");
632
633         if (irp->outs_state != outs_none) {
634                 free_ip_outs();
635         }
636
637         global_count = n_out_edges = count_ip_outs();
638         out_edges = xcalloc(n_out_edges, sizeof(out_edges[0]));
639         set_irp_ip_outedges(out_edges);
640         set_ip_outs();
641 }
642
643 void free_ip_outs(void) {
644         ir_node **out_edges = get_irp_ip_outedges();
645         if (out_edges != NULL) {
646                 free(out_edges);
647                 set_irp_ip_outedges(NULL);
648         }
649         irp->outs_state = outs_none;
650 }
651 #endif
652
653
654 void free_irg_outs(ir_graph *irg) {
655         /*   current_ir_graph->outs_state = outs_none; */
656         irg->outs_state = outs_none;
657
658         if (irg->outs) {
659 #ifdef DEBUG_libfirm
660                 memset(irg->outs, 0, irg->n_outs);
661 #endif /* defined DEBUG_libfirm */
662                 free(irg->outs);
663                 irg->outs = NULL;
664 #ifdef DEBUG_libfirm
665                 irg->n_outs = 0;
666 #endif /* defined DEBUG_libfirm */
667         }
668
669 #ifdef DEBUG_libfirm
670         /* when debugging, *always* reset all nodes' outs!  irg->outs might
671            have been lying to us */
672         irg_walk_graph (irg, reset_outs, NULL, NULL);
673 #endif /* defined DEBUG_libfirm */
674 }
675
676 static void check_out_edges(ir_node *irn, void *env) {
677         int i, j, pos;
678         int *pError = env;
679         int error = *pError;
680         int last = is_Block(irn) ? 0 : -1;
681
682         /* check forward: every input must have an out edge */
683         for (i = get_irn_arity(irn) - 1; i >= last; --i) {
684                 ir_node *pred = get_irn_n(irn, i);
685
686                 for (j = get_irn_n_outs(pred) - 1; j >= 0; --j) {
687                         ir_node *user = get_irn_out_ex(pred, j, &pos);
688
689                         if (user == irn && pos == i) {
690                                 break;
691                         }
692                 }
693                 if (j < 0) {
694                         ir_fprintf(stderr, "Missing out edge from %+F input %d to %+F", irn, i, pred);
695                         ++error;
696                 }
697         }
698
699         /* checking backward */
700         for (i = get_irn_n_outs(irn) - 1; i >= 0; --i) {
701                 ir_node *user = get_irn_out_ex(irn, i, &pos);
702
703                 if (get_irn_n(user, pos) != irn) {
704                         ir_fprintf(stderr, "Spurious out edge from %+F output %d to %+F", irn, i, user);
705                         ++error;
706                 }
707         }
708         *pError = error;
709 }
710
711 /* verify outs edges. */
712 void verify_outs(ir_graph *irg) {
713         int errors = 0;
714         irg_walk_graph(irg, NULL, check_out_edges, &errors);
715         if (errors > 0)
716                 panic("Out edges are corrupt");
717 }