fixed doxygen comments
[libfirm] / ir / opt / cfopt.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/opt/cfopt.c
4  * Purpose:     control flow optimizations
5  * Author:
6  * Created:
7  * CVS-ID:      $Id$
8  * Copyright:   (c) 1998-2004 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11
12 #ifdef HAVE_CONFIG_H
13 # include "config.h"
14 #endif
15
16 #include <assert.h>
17
18 #include "xmalloc.h"
19 #include "irnode_t.h"
20 #include "irgraph_t.h"
21 #include "irprog_t.h"
22
23 #include "ircons.h"
24 #include "iropt_t.h"
25 #include "irgwalk.h"
26 #include "irgmod.h"
27 #include "irdump.h"
28 #include "irvrfy.h"
29
30 #include "array.h"
31
32 #include "irouts.h"
33 #include "irbackedge_t.h"
34
35 #include "irflag_t.h"
36 #include "firmstat.h"
37
38 #include "cfopt.h"
39 #include "iropt_dbg.h"
40
41 /*------------------------------------------------------------------*/
42 /* Control flow optimization.                                       */
43 /*                                                                  */
44 /* Removes Bad control flow predecessors and empty blocks.  A block */
45 /* is empty if it contains only a Jmp node.                         */
46 /* Blocks can only be removed if they are not needed for the        */
47 /* semantics of Phi nodes.                                          */
48 /*------------------------------------------------------------------*/
49
50 /**
51  * Replace binary Conds that jumps twice into the same block
52  * by a simple Jmp.
53  * E.g.
54  * @verbatim
55  *               Cond                     Jmp  Bad
56  *             /       \                   |   /
57  *       ProjX True   ProjX False  ==>     |  /
58  *             \       /                   | /
59  *               Block                    Block
60  * @endverbatim
61  *
62  * Such pattern are the result of if-conversion.
63  *
64  * Note that the simple case that Block has only these two
65  * predecessors are already handled in equivalent_node_Block().
66  */
67 static void remove_senseless_conds(ir_node *bl, void *data)
68 {
69   int i, j;
70   int n = get_Block_n_cfgpreds(bl);
71
72   assert(is_Block(bl));
73
74   for (i = 0; i < n; ++i) {
75     ir_node *pred_i = get_Block_cfgpred(bl, i);
76     ir_node *cond_i = skip_Proj(pred_i);
77
78     for (j = i + 1; j < n; ++j) {
79       ir_node *pred_j = get_Block_cfgpred(bl, j);
80       ir_node *cond_j = skip_Proj(pred_j);
81
82       if (cond_j == cond_i
83           && get_irn_op(cond_i) == op_Cond
84           && get_irn_mode(get_Cond_selector(cond_i)) == mode_b) {
85
86         ir_node *jmp = new_r_Jmp(current_ir_graph, get_nodes_block(cond_i));
87         set_irn_n(bl, i, jmp);
88         set_irn_n(bl, j, new_Bad());
89
90         DBG_OPT_IFSIM2(cond_i, jmp);
91         break;
92       }
93     }
94   }
95 }
96
97
98 /**
99  * Removes Tuples from Block control flow predecessors.
100  * Optimizes blocks with equivalent_node().  This is tricky,
101  * as we want to avoid nodes that have as block predecessor Bads.
102  * Therefore we also optimize at control flow operations, depending
103  * how we first reach the Block.
104  */
105 static void merge_blocks(ir_node *n, void *env) {
106   int i;
107   ir_node *new_block;
108
109   /* clear the link field for ALL nodes first */
110   set_irn_link(n, NULL);
111
112   if (get_irn_op(n) == op_Block) {
113     /* Remove Tuples */
114     for (i = 0; i < get_Block_n_cfgpreds(n); i++) {
115       /* GL @@@ : is this possible? if (get_opt_normalize()) -- added, all tests go through.
116          A different order of optimizations might cause problems. */
117       if (get_opt_normalize())
118         set_Block_cfgpred(n, i, skip_Tuple(get_Block_cfgpred(n, i)));
119     }
120
121     /* see below */
122     new_block = equivalent_node(n);
123     if (new_block != n && ! is_Block_dead(new_block))
124       exchange (n, new_block);
125
126   } else if (get_opt_optimize() && (get_irn_mode(n) == mode_X)) {
127     /* We will soon visit a block.  Optimize it before visiting! */
128     ir_node *b = get_nodes_block(skip_Proj(n));
129
130     if (!is_Block_dead(b)) {
131       new_block = equivalent_node(b);
132
133       while (irn_not_visited(b) && (!is_Block_dead(new_block)) && (new_block != b)) {
134         /* We would have to run gigo() if new is bad, so we
135            promote it directly below. Nevertheless, we sometimes reach a block
136            the first time through a dataflow node.  In this case we optimized the
137            block as such and have to promote the Bad here. */
138         assert((get_opt_control_flow_straightening() ||
139                 get_opt_control_flow_weak_simplification()) &&
140                ("strange flag setting"));
141         exchange (b, new_block);
142         b = new_block;
143         new_block = equivalent_node(b);
144       }
145
146       /* normally, we would create a Bad block here, but this must be
147        * prevented, so just set it's cf to Bad.
148        */
149       if (is_Block_dead(new_block))
150         exchange(n, new_Bad());
151     }
152   }
153 }
154
155 /**
156  * Remove cf from dead block by inspecting dominance info
157  * Do not replace blocks by Bad.  This optimization shall
158  * ensure, that all Bad control flow predecessors are
159  * removed, and no new other Bads are introduced.
160  *
161  * Must be run in the post walker.
162  */
163 static void remove_dead_block_cf(ir_node *block, void *env)
164 {
165   int i, n;
166
167   /* check block predecessors and turn control flow into bad */
168   for (i = 0, n = get_Block_n_cfgpreds(block); i < n; ++i) {
169     ir_node *pred_X = get_Block_cfgpred(block, i);
170
171     if (! is_Bad(pred_X)) {
172       ir_node *pred_bl = get_nodes_block(skip_Proj(pred_X));
173
174       if (is_Block_dead(pred_bl) || (get_Block_dom_depth(pred_bl) < 0))
175         exchange (pred_X, new_Bad());
176     }
177   }
178 }
179
180 /**
181  * Collects all Phi nodes in link list of Block.
182  * Marks all blocks "block_visited" if they contain a node other
183  * than Jmp.
184  * Replaces n by Bad if n is unreachable control flow. We do that
185  * in the post walker, so we catch all blocks.
186  */
187 static void collect_nodes(ir_node *n, void *env) {
188   if (is_no_Block(n)) {
189     ir_node *b = get_nodes_block(n);
190
191     if ((get_irn_op(n) == op_Phi)) {
192       /* Collect Phi nodes to compact ins along with block's ins. */
193       set_irn_link(n, get_irn_link(b));
194       set_irn_link(b, n);
195     }
196     else if ((get_irn_op(n) != op_Jmp) && !is_Bad(b)) {  /* Check for non empty block. */
197       mark_Block_block_visited(b);
198     }
199   }
200 }
201
202 /** Returns true if pred is predecessor of block. */
203 static int is_pred_of(ir_node *pred, ir_node *b) {
204   int i, n;
205
206   for (i = 0, n = get_Block_n_cfgpreds(b); i < n; ++i) {
207     ir_node *b_pred = get_nodes_block(get_Block_cfgpred(b, i));
208     if (b_pred == pred) return 1;
209   }
210   return 0;
211 }
212
213
214 /** Test whether we can optimize away pred block pos of b.
215  *
216  *  @param  b    A block node.
217  *  @param  pos  The position of the predecessor block to judge about.
218  *
219  *  @returns     The number of predecessors
220  *
221  *  The test is rather tricky.
222  *
223  *  The situation is something like the following:
224  *  @verbatim
225  *                 if-block
226  *                  /   \
227  *              then-b  else-b
228  *                  \   /
229  *                    b
230  *  @endverbatim
231  *
232  *  b merges the control flow of an if-then-else.  We may not remove
233  *  the 'then' _and_ the 'else' block of an 'if' if there is a Phi
234  *  node in b, even if both are empty.  The destruction of this Phi
235  *  requires that a copy is added before the merge.  We have to
236  *  keep one of the case blocks to place the copies in.
237  *
238  *  To perform the test for pos, we must regard predecessors before pos
239  *  as already removed.
240  **/
241 static int test_whether_dispensable(ir_node *b, int pos) {
242   int i, j, n_preds = 1;
243   int dispensable = 1;
244   ir_node *cfop = get_Block_cfgpred(b, pos);
245   ir_node *pred = get_nodes_block(cfop);
246
247   /* Bad blocks will be optimized away, so we don't need space for them */
248   if (is_Bad(pred))
249     return 0;
250
251   if (get_Block_block_visited(pred) + 1
252       < get_irg_block_visited(current_ir_graph)) {
253
254     if (!get_opt_optimize() || !get_opt_control_flow_strong_simplification()) {
255       /* Mark block so that is will not be removed: optimization is turned off. */
256       set_Block_block_visited(pred, get_irg_block_visited(current_ir_graph)-1);
257       return 1;
258     }
259
260     /* Seems to be empty. At least we detected this in collect_nodes. */
261     if (!get_irn_link(b)) {
262       /* There are no Phi nodes ==> all predecessors are dispensable. */
263       n_preds = get_Block_n_cfgpreds(pred);
264     } else {
265       /* b's pred blocks and pred's pred blocks must be pairwise disjunct.
266          Work preds < pos as if they were already removed. */
267       for (i = 0; i < pos; i++) {
268         ir_node *b_pred = get_nodes_block(get_Block_cfgpred(b, i));
269         if (get_Block_block_visited(b_pred) + 1
270             < get_irg_block_visited(current_ir_graph)) {
271           for (j = 0; j < get_Block_n_cfgpreds(b_pred); j++) {
272             ir_node *b_pred_pred = get_nodes_block(get_Block_cfgpred(b_pred, j));
273             if (is_pred_of(b_pred_pred, pred)) dispensable = 0;
274           }
275         } else {
276           if (is_pred_of(b_pred, pred)) dispensable = 0;
277         }
278       }
279       for (i = pos +1; i < get_Block_n_cfgpreds(b); i++) {
280         ir_node *b_pred = get_nodes_block(get_Block_cfgpred(b, i));
281         if (is_pred_of(b_pred, pred)) dispensable = 0;
282       }
283       if (!dispensable) {
284         set_Block_block_visited(pred, get_irg_block_visited(current_ir_graph)-1);
285         n_preds = 1;
286       } else {
287         n_preds = get_Block_n_cfgpreds(pred);
288       }
289     }
290   }
291
292   return n_preds;
293 }
294
295
296 /**
297  * This method removed Bad cf predecessors from Blocks and Phis, and removes
298  * empty blocks.  A block is empty if it only contains Phi and Jmp nodes.
299  *
300  * We first adapt Phi nodes, then Block nodes, as we need the old ins
301  * of the Block to adapt the Phi nodes.  We do this by computing new
302  * in arrays, and then replacing the old ones.  So far we compute new in arrays
303  * for all nodes, not regarding whether there is a possibility for optimization.
304  *
305  * For each predecessor p of a Block b there are three cases:
306  *  -#. The predecessor p is a Bad node:  just skip it.  The in array of b shrinks by one.
307  *  -#. The predecessor p is empty.  Remove p.  All predecessors of p are now
308  *      predecessors of b.
309  *  -#. The predecessor p is a block containing useful code.  Just keep p as is.
310  *
311  * For Phi nodes f we have to check the conditions at the Block of f.
312  * For cases 1 and 3 we proceed as for Blocks.  For case 2 we can have two
313  * cases:
314  *  -2a: The old predecessor of the Phi f is a Phi pred_f IN THE BLOCK REMOVED.  In this
315  *      case we proceed as for blocks. We remove pred_f.  All
316  *      predecessors of pred_f now are predecessors of f.
317  *  -2b: The old predecessor of f is NOT in the block removed. It might be a Phi, too.
318  *      We have to replicate f for each predecessor of the removed block. Or, with
319  *      other words, the removed predecessor block has exactly one predecessor.
320  *
321  * Further there is a special case for self referencing blocks:
322  * @verbatim
323  *
324  *    then_b     else_b                              then_b  else_b
325  *       \      /                                      \      /
326  *        \    /                                        |    /
327  *        pred_b                                        |   /
328  *         |   ____                                     |  /
329  *         |  |    |                                    |  | |    |
330  *         |  |    |       === optimized to ===>        \  | |    |
331  *        loop_b   |                                     loop_b   |
332  *         |  |    |                                      |  |    |
333  *         |  |____|                                      |  |____|
334  *         |                                              |
335  * @endverbatim
336  *
337  * If there is a Phi in pred_b, but we remove pred_b, we have to generate a
338  * Phi in loop_b, that has the ins of the Phi in pred_b and a self referencing
339  * backedge.
340  * @@@ It is negotiable whether we should do this ... there might end up a copy
341  * from the Phi in the loop when removing the Phis.
342  */
343 static void optimize_blocks(ir_node *b, void *env) {
344   int i, j, k, n, max_preds, n_preds, p_preds;
345   ir_node *pred, *phi;
346   ir_node **in;
347
348   /* Count the number of predecessor if this block is merged with pred blocks
349      that are empty. */
350   max_preds = 0;
351   for (i = 0, k = get_Block_n_cfgpreds(b); i < k; ++i) {
352     max_preds += test_whether_dispensable(b, i);
353   }
354   in = xmalloc(max_preds * sizeof(*in));
355
356 /*-
357   printf(" working on "); DDMN(b);
358   for (i = 0; i < get_Block_n_cfgpreds(b); i++) {
359     pred = get_nodes_block(get_Block_cfgpred(b, i));
360     if (is_Bad(get_Block_cfgpred(b, i))) {
361       printf("  removing Bad %i\n ", i);
362     } else if (get_Block_block_visited(pred) +1
363            < get_irg_block_visited(current_ir_graph)) {
364       printf("  removing pred %i ", i); DDMN(pred);
365     } else { printf("  Nothing to do for "); DDMN(pred); }
366   }
367   * end Debug output -*/
368
369   /*- Fix the Phi nodes of the current block -*/
370   for (phi = get_irn_link(b); phi; ) {
371     assert(get_irn_op(phi) == op_Phi);
372
373     /* Find the new predecessors for the Phi */
374     p_preds = 0;
375     for (i = 0, n = get_Block_n_cfgpreds(b); i < n; ++i) {
376       pred = get_nodes_block(get_Block_cfgpred(b, i));
377
378       if (is_Bad(get_Block_cfgpred(b, i))) {
379         /* case Phi 1: Do nothing */
380       }
381       else if (get_Block_block_visited(pred) + 1
382                  < get_irg_block_visited(current_ir_graph)) {
383         /* case Phi 2: It's an empty block and not yet visited. */
384         ir_node *phi_pred = get_Phi_pred(phi, i);
385
386         for (j = 0, k = get_Block_n_cfgpreds(pred); j < k; j++) {
387           /* because of breaking loops, not all predecessors are Bad-clean,
388            * so we must check this here again */
389           if (! is_Bad(get_Block_cfgpred(pred, j))) {
390             if (get_nodes_block(phi_pred) == pred) {
391               /* case Phi 2a: */
392               assert(get_irn_op(phi_pred) == op_Phi);  /* Block is empty!! */
393
394               in[p_preds++] = get_Phi_pred(phi_pred, j);
395             } else {
396               /* case Phi 2b: */
397               in[p_preds++] = phi_pred;
398             }
399           }
400         }
401
402         /* The Phi_pred node is replaced now if it is a Phi.
403
404            Somehow the removed Phi node can be used legally in loops.
405            Therefore we replace the old phi by the new one.
406
407            Further we have to remove the old Phi node by replacing it
408            by Bad.  Else it will remain in the keep alive array of End
409            and cause illegal situations.  So if there is no loop, we should
410            replace it by Bad.
411         */
412         if (get_nodes_block(phi_pred) == pred) {
413           /* remove the Phi as it might be kept alive. Further there
414              might be other users. */
415           exchange(phi_pred, phi);  /* geht, ist aber doch semantisch falsch! Warum?? */
416         }
417       } else {
418         /* case Phi 3: */
419         in[p_preds++] = get_Phi_pred(phi, i);
420       }
421     }
422     assert(p_preds <= max_preds);
423
424     /* Fix the node */
425     if (p_preds == 1)
426       /* By removal of Bad ins the Phi might be degenerated. */
427       exchange(phi, in[0]);
428     else
429       set_irn_in(phi, p_preds, in);
430
431     phi = get_irn_link(phi);
432   }
433
434   /*- This happens only if merge between loop backedge and single loop entry.
435       See special case above. -*/
436   for (k = 0, n = get_Block_n_cfgpreds(b); k < n; ++k) {
437     pred = get_nodes_block(get_Block_cfgpred(b, k));
438
439     if (get_Block_block_visited(pred) + 1 < get_irg_block_visited(current_ir_graph)) {
440       /* we found a predecessor block at position k that will be removed */
441       for (phi = get_irn_link(pred); phi;) {
442         /*
443          * the previous phase may already changed the phi, and even
444          * removed it at all, so check here if this node is still a phi
445          */
446         if (get_irn_op(phi) == op_Phi) {
447           int q_preds = 0;
448
449           /* move this phi from the predecessor into the block b */
450           set_nodes_block(phi, b);
451
452           /* first, copy all 0..k-1 predecessors */
453           for (i = 0; i < k; i++) {
454             pred = get_nodes_block(get_Block_cfgpred(b, i));
455
456             if (is_Bad(get_Block_cfgpred(b, i))) {
457               /* Do nothing */
458             } else if (get_Block_block_visited(pred) + 1
459                < get_irg_block_visited(current_ir_graph)) {
460               /* It's an empty block and not yet visited. */
461               for (j = 0; j < get_Block_n_cfgpreds(pred); j++) {
462                 /* @@@ Hier brauche ich Schleifeninformation!!! Kontrollflusskante
463                    muss Rueckwaertskante sein! (An allen vier in[q_preds] = phi
464                    Anweisungen.) Trotzdem tuts bisher!! */
465                 if (! is_Bad(get_Block_cfgpred(pred, j)))
466                   in[q_preds++] = phi;
467               }
468             } else {
469               in[q_preds++] = phi;
470             }
471           }
472
473           /* now we are at k, copy the phi predecessors */
474           pred = get_nodes_block(get_Block_cfgpred(b, k));
475           for (i = 0; i < get_Phi_n_preds(phi); i++) {
476             if (! is_Bad(get_Block_cfgpred(pred, i)))
477               in[q_preds++] = get_Phi_pred(phi, i);
478           }
479
480           /* and now all the rest */
481           for (i = k+1; i < get_Block_n_cfgpreds(b); i++) {
482             pred = get_nodes_block(get_Block_cfgpred(b, i));
483
484             if (is_Bad(get_Block_cfgpred(b, i))) {
485               /* Do nothing */
486             } else if (get_Block_block_visited(pred) +1
487                < get_irg_block_visited(current_ir_graph)) {
488               /* It's an empty block and not yet visited. */
489               for (j = 0; j < get_Block_n_cfgpreds(pred); j++) {
490                 if (! is_Bad(get_Block_cfgpred(pred, j)))
491                   in[q_preds++] = phi;
492               }
493             } else {
494               in[q_preds++] = phi;
495             }
496           }
497
498           /* Fix the node */
499           if (q_preds == 1)
500             exchange(phi, in[0]);
501           else
502             set_irn_in(phi, q_preds, in);
503
504           assert(q_preds <= max_preds);
505 //        assert(p_preds == q_preds && "Wrong Phi Fix");
506         }
507         phi = get_irn_link(phi);
508       }
509     }
510   }
511
512   /*- Fix the block -*/
513   n_preds = 0;
514   for (i = 0; i < get_Block_n_cfgpreds(b); i++) {
515     pred = get_nodes_block(get_Block_cfgpred(b, i));
516
517     if (is_Bad(get_Block_cfgpred(b, i))) {
518       /* case 1: Do nothing */
519     } else if (get_Block_block_visited(pred) +1
520            < get_irg_block_visited(current_ir_graph)) {
521       /* case 2: It's an empty block and not yet visited. */
522       assert(get_Block_n_cfgpreds(b) > 1);
523                         /* Else it should be optimized by equivalent_node. */
524       for (j = 0; j < get_Block_n_cfgpreds(pred); j++) {
525         ir_node *pred_block = get_Block_cfgpred(pred, j);
526
527         /* because of breaking loops, not all predecessors are Bad-clean,
528          * so we must check this here again */
529         if (! is_Bad(pred_block))
530           in[n_preds++] = pred_block;
531       }
532       /* Remove block as it might be kept alive. */
533       exchange(pred, b/*new_Bad()*/);
534     } else {
535       /* case 3: */
536       in[n_preds++] = get_Block_cfgpred(b, i);
537     }
538   }
539   assert(n_preds <= max_preds);
540
541   set_irn_in(b, n_preds, in);
542
543   assert(get_irn_link(b) == NULL || (n_preds == p_preds && "Wrong Phi Fix"));
544
545   xfree(in);
546 }
547
548
549 /* Optimizations of the control flow that also require changes of Phi nodes.
550  *
551  * This optimization performs two passes over the graph.
552  *
553  * The first pass collects all Phi nodes in a link list in the block
554  * nodes.  Further it performs simple control flow optimizations.
555  * Finally it marks all blocks that do not contain useful
556  * computations, i.e., these blocks might be removed.
557  *
558  * The second pass performs the optimizations intended by this algorithm.
559  * It walks only over block nodes and adapts these and the Phi nodes in these blocks,
560  * which it finds in a linked list computed by the first pass.
561  *
562  * We use the block_visited flag to mark empty blocks in the first
563  * phase.
564  * @@@ It would be better to add a struct in the link field
565  * that keeps the Phi list and the mark.  Place it on an obstack, as
566  * we will lose blocks and thereby generate memory leaks.
567  */
568 void optimize_cf(ir_graph *irg) {
569   int i, n;
570   ir_node **in;
571   ir_node *end = get_irg_end(irg);
572   ir_graph *rem = current_ir_graph;
573   irg_dom_state dom_state = get_irg_dom_state(current_ir_graph);
574   current_ir_graph = irg;
575
576   /* if the graph is not pinned, we cannot determine empty blocks */
577   assert(get_irg_pinned(irg) != op_pin_state_floats &&
578          "Control flow optimization need a pinned graph");
579
580   /* Handle graph state */
581   assert(get_irg_phase_state(irg) != phase_building);
582   if (get_irg_outs_state(current_ir_graph) == outs_consistent)
583     set_irg_outs_inconsistent(current_ir_graph);
584   if (get_irg_dom_state(current_ir_graph) == dom_consistent)
585     set_irg_dom_inconsistent(current_ir_graph);
586
587   if (dom_state == dom_consistent && get_opt_optimize() && get_opt_unreachable_code()) {
588     ir_node *end = get_irg_end(irg);
589
590     /* we have dominance info, we can kill dead block */
591     irg_block_walk_graph(irg, NULL, remove_dead_block_cf, NULL);
592
593     /* fix the keep-alives */
594     for (i = 0, n = get_End_n_keepalives(end); i < n; ++i) {
595       ir_node *ka = get_End_keepalive(end, i);
596
597       if (is_Block(ka)) {
598         if (get_Block_dom_depth(ka) == -1)
599           set_End_keepalive(end, i, new_Bad());
600       }
601       else if (get_Block_dom_depth(get_nodes_block(ka)) == -1)
602         set_End_keepalive(end, i, new_Bad());
603     }
604   }
605
606   irg_block_walk_graph(current_ir_graph, NULL, remove_senseless_conds, NULL);
607
608   /* Use block visited flag to mark non-empty blocks. */
609   inc_irg_block_visited(irg);
610   irg_walk(end, merge_blocks, collect_nodes, NULL);
611
612   /* Optimize the standard code. */
613   irg_block_walk(get_irg_end_block(irg), optimize_blocks, NULL, NULL);
614
615   /* Walk all keep alives, optimize them if block, add to new in-array
616      for end if useful. */
617   in = NEW_ARR_F (ir_node *, 1);
618   in[0] = get_nodes_block(end);
619   inc_irg_visited(current_ir_graph);
620
621   for (i = 0; i < get_End_n_keepalives(end); i++) {
622     ir_node *ka = get_End_keepalive(end, i);
623
624     if (irn_not_visited(ka)) {
625       if ((get_irn_op(ka) == op_Block) && Block_not_block_visited(ka)) {
626         set_irg_block_visited(current_ir_graph,  /* Don't walk all the way to Start. */
627               get_irg_block_visited(current_ir_graph)-1);
628         irg_block_walk(ka, optimize_blocks, NULL, NULL);
629         mark_irn_visited(ka);
630         ARR_APP1 (ir_node *, in, ka);
631       } else if (get_irn_op(ka) == op_Phi) {
632         mark_irn_visited(ka);
633         ARR_APP1 (ir_node *, in, ka);
634       } else if (get_irn_op(ka) == op_IJmp) {
635         mark_irn_visited(ka);
636         ARR_APP1 (ir_node *, in, ka);
637       }
638     }
639   }
640   /* DEL_ARR_F(end->in);   GL @@@ tut nicht ! */
641   end->in = in;
642
643
644   /* the verifier doesn't work yet with floating nodes */
645   if (get_irg_pinned(irg) == op_pin_state_pinned) {
646     /* after optimize_cf(), only Bad data flow may remain. */
647     if (irg_vrfy_bads(irg, BAD_DF | BAD_BLOCK | TUPLE)) {
648       dump_ir_block_graph(irg, "-vrfy-cf");
649       dump_ir_graph(irg, "-vrfy-cf");
650       fprintf(stderr, "VRFY_BAD in optimize_cf()\n");
651     }
652   }
653
654   current_ir_graph = rem;
655 }