ac7178fd104de57799ad8ff27046cc14ab350d34
[libfirm] / ir / opt / cfopt.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   Control flow optimizations.
23  * @author  Goetz Lindenmaier, Michael Beck, Sebastian Hack
24  * @version $Id$
25  *
26  * Removes Bad control flow predecessors and empty blocks.  A block is empty
27  * if it contains only a Jmp node. Blocks can only be removed if they are not
28  * needed for the semantics of Phi nodes. Further, we NEVER remove labeled
29  * blocks (even if we could move the label).
30  */
31 #include "config.h"
32
33 #include "iroptimize.h"
34
35 #include <assert.h>
36 #include <stdbool.h>
37
38 #include "xmalloc.h"
39 #include "irnode_t.h"
40 #include "irgraph_t.h"
41 #include "irprog_t.h"
42
43 #include "ircons.h"
44 #include "iropt_t.h"
45 #include "irgwalk.h"
46 #include "irgmod.h"
47 #include "irdump.h"
48 #include "irverify.h"
49 #include "iredges.h"
50
51 #include "array_t.h"
52
53 #include "irouts.h"
54 #include "irbackedge_t.h"
55
56 #include "irflag_t.h"
57 #include "firmstat.h"
58 #include "irpass.h"
59
60 #include "iropt_dbg.h"
61
62 /** An environment for merge_blocks and collect nodes. */
63 typedef struct merge_env {
64         bool      changed;      /**< Set if the graph was changed. */
65         bool      phis_moved;   /**< Set if Phi nodes were moved. */
66         ir_node **switch_conds; /**< Helper list for all found Switch Conds. */
67 } merge_env;
68
69 static void set_Block_removable(ir_node *block, bool removable)
70 {
71         set_Block_mark(block, removable);
72 }
73
74 static bool is_Block_removable(ir_node *block)
75 {
76         return get_Block_mark(block);
77 }
78
79 static void clear_link(ir_node *node, void *ctx)
80 {
81         (void) ctx;
82         set_irn_link(node, NULL);
83         if (is_Block(node))
84                 set_Block_removable(node, true);
85 }
86
87 /**
88  * Collects all Phi nodes in link list of Block.
89  * Marks all blocks "non_removable" if they contain a node other
90  * than Jmp (and Proj).
91  * Links all Proj nodes to their predecessors.
92  * Collects all switch-Conds in a list.
93  */
94 static void collect_nodes(ir_node *n, void *ctx)
95 {
96         merge_env *env = (merge_env*)ctx;
97
98         if (is_Phi(n)) {
99                 /* Collect Phi nodes to compact ins along with block's ins. */
100                 ir_node *block = get_nodes_block(n);
101                 set_irn_link(n, get_irn_link(block));
102                 set_irn_link(block, n);
103         } else if (is_Block(n)) {
104                 if (has_Block_entity(n))
105                         set_Block_removable(n, false);
106                 return;
107         } else if (!is_Jmp(n)) {  /* Check for non-empty block. */
108                 ir_node *block = get_nodes_block(n);
109                 set_Block_removable(block, false);
110
111                 if (is_Proj(n)) {
112                         /* link Proj nodes */
113                         ir_node *pred = get_Proj_pred(n);
114                         set_irn_link(n, get_irn_link(pred));
115                         set_irn_link(pred, n);
116                 } else if (is_Cond(n)) {
117                         ir_node *sel = get_Cond_selector(n);
118                         if (get_irn_mode(sel) != mode_b) {
119                                 /* found a switch-Cond, collect */
120                                 ARR_APP1(ir_node*, env->switch_conds, n);
121                         }
122                 }
123         }
124 }
125
126 /** Returns true if pred is predecessor of block. */
127 static bool is_pred_of(ir_node *pred, ir_node *b)
128 {
129         int i;
130
131         for (i = get_Block_n_cfgpreds(b) - 1; i >= 0; --i) {
132                 ir_node *b_pred = get_Block_cfgpred_block(b, i);
133                 if (b_pred == pred)
134                         return true;
135         }
136         return false;
137 }
138
139 /** Test whether we can optimize away pred block pos of b.
140  *
141  *  @param  b    A block node.
142  *  @param  pos  The position of the predecessor block to judge about.
143  *
144  *  @returns     The number of predecessors
145  *
146  *  The test is rather tricky.
147  *
148  *  The situation is something like the following:
149  *  @verbatim
150  *                 if-block
151  *                  /   \
152  *              then-b  else-b
153  *                  \   /
154  *                    b
155  *  @endverbatim
156  *
157  *  b merges the control flow of an if-then-else.  We may not remove
158  *  the 'then' _and_ the 'else' block of an 'if' if there is a Phi
159  *  node in b, even if both are empty.  The destruction of this Phi
160  *  requires that a copy is added before the merge.  We have to
161  *  keep one of the case blocks to place the copies in.
162  *
163  *  To perform the test for pos, we must regard predecessors before pos
164  *  as already removed.
165  **/
166 static unsigned test_whether_dispensable(ir_node *b, int pos)
167 {
168         ir_node *pred  = get_Block_cfgpred(b, pos);
169         ir_node *predb = get_nodes_block(pred);
170
171         if (is_Bad(pred) || !is_Block_removable(predb))
172                 return 1;
173
174         /* can't remove self-loops */
175         if (predb == b)
176                 goto non_dispensable;
177         if (is_unknown_jump(pred))
178                 goto non_dispensable;
179
180         /* Seems to be empty. At least we detected this in collect_nodes. */
181         if (get_irn_link(b) != NULL) {
182                 int n_cfgpreds = get_Block_n_cfgpreds(b);
183                 int i;
184                 /* there are Phi nodes */
185
186                 /* b's pred blocks and pred's pred blocks must be pairwise disjunct.
187                  * Handle all pred blocks with preds < pos as if they were already
188                  * removed. */
189                 for (i = 0; i < pos; i++) {
190                         ir_node *other_pred  = get_Block_cfgpred(b, i);
191                         ir_node *other_predb = get_nodes_block(other_pred);
192                         if (is_Bad(other_pred))
193                                 continue;
194                         if (is_Block_removable(other_predb)
195                             && !Block_block_visited(other_predb)) {
196                                 int j;
197                                 for (j = get_Block_n_cfgpreds(other_predb) - 1; j >= 0; --j) {
198                                         ir_node *other_predpred
199                                                 = get_Block_cfgpred_block(other_predb, j);
200                                         if (is_pred_of(other_predpred, predb))
201                                                 goto non_dispensable;
202                                 }
203                         } else if (is_pred_of(other_predb, predb)) {
204                                 goto non_dispensable;
205                         }
206                 }
207                 for (i = pos+1; i < n_cfgpreds; i++) {
208                         ir_node *other_predb = get_Block_cfgpred_block(b, i);
209                         if (is_pred_of(other_predb, predb))
210                                 goto non_dispensable;
211                 }
212         }
213         /* we will not dispense already visited blocks */
214         if (Block_block_visited(predb))
215                 return 1;
216         /* if we get here, the block is dispensable, count useful preds */
217         return get_irn_arity(predb);
218
219 non_dispensable:
220         set_Block_removable(predb, false);
221         return 1;
222 }
223
224 /**
225  * This method removes empty blocks.  A block is empty if it only contains Phi
226  * and Jmp nodes.
227  *
228  * We first adapt Phi nodes, then Block nodes, as we need the old ins
229  * of the Block to adapt the Phi nodes.  We do this by computing new
230  * in arrays, and then replacing the old ones.  So far we compute new in arrays
231  * for all nodes, not regarding whether there is a possibility for optimization.
232  *
233  * For each predecessor p of a Block b there are three cases:
234  *  - The predecessor p is a Bad node: just skip it. The in array of b shrinks
235  *    by one.
236  *  - The predecessor p is empty. Remove p. All predecessors of p are now
237  *    predecessors of b.
238  *  - The predecessor p is a block containing useful code. Just keep p as is.
239  *
240  * For Phi nodes f we have to check the conditions at the Block of f.
241  * For cases 1 and 3 we proceed as for Blocks.  For case 2 we can have two
242  * cases:
243  *  -2a: The old predecessor of the Phi f is a Phi pred_f IN THE BLOCK REMOVED.
244  *       In this case we proceed as for blocks. We remove pred_f.  All
245  *       predecessors of pred_f now are predecessors of f.
246  *  -2b: The old predecessor of f is NOT in the block removed. It might be a Phi
247  *       too. We have to replicate f for each predecessor of the removed block.
248  *       Or, with other words, the removed predecessor block has exactly one
249  *       predecessor.
250  *
251  * Further there is a special case for self referencing blocks:
252  * @verbatim
253  *
254  *    then_b     else_b                              then_b  else_b
255  *       \      /                                      \      /
256  *        \    /                                        |    /
257  *        pred_b                                        |   /
258  *         |   ____                                     |  /  ____
259  *         |  |    |                                    |  | |    |
260  *         |  |    |       === optimized to ===>        \  | |    |
261  *        loop_b   |                                     loop_b   |
262  *         |  |    |                                      |  |    |
263  *         |  |____|                                      |  |____|
264  *         |                                              |
265  * @endverbatim
266  *
267  * If there is a Phi in pred_b, but we remove pred_b, we have to generate a
268  * Phi in loop_b, that has the ins of the Phi in pred_b and a self referencing
269  * backedge.
270  */
271 static void optimize_blocks(ir_node *b, void *ctx)
272 {
273         int i, j, k, n, max_preds, n_preds, p_preds = -1;
274         ir_node *pred, *phi, *next;
275         ir_node **in;
276         merge_env *env = (merge_env*)ctx;
277
278         /* Count the number of predecessor if this block is merged with pred blocks
279            that are empty. */
280         max_preds = 0;
281         for (i = 0, k = get_Block_n_cfgpreds(b); i < k; ++i) {
282                 max_preds += test_whether_dispensable(b, i);
283         }
284         in = XMALLOCN(ir_node*, max_preds);
285
286         /*- Fix the Phi nodes of the current block -*/
287         for (phi = (ir_node*)get_irn_link(b); phi != NULL; phi = (ir_node*)next) {
288                 assert(is_Phi(phi));
289                 next = (ir_node*)get_irn_link(phi);
290
291                 /* Find the new predecessors for the Phi */
292                 p_preds = 0;
293                 for (i = 0, n = get_Block_n_cfgpreds(b); i < n; ++i) {
294                         ir_graph *irg = get_irn_irg(b);
295                         pred = get_Block_cfgpred_block(b, i);
296
297                         if (is_Bad(pred)) {
298                                 /* case Phi 1: maintain Bads, as somebody else is responsible to remove them */
299                                 in[p_preds++] = new_r_Bad(irg, get_irn_mode(phi));
300                         } else if (is_Block_removable(pred) && !Block_block_visited(pred)) {
301                                 /* case Phi 2: It's an empty block and not yet visited. */
302                                 ir_node *phi_pred = get_Phi_pred(phi, i);
303
304                                 for (j = 0, k = get_Block_n_cfgpreds(pred); j < k; j++) {
305                                         ir_node *pred_pred = get_Block_cfgpred(pred, j);
306
307                                         if (is_Bad(pred_pred)) {
308                                                 in[p_preds++] = new_r_Bad(irg, get_irn_mode(phi));
309                                                 continue;
310                                         }
311
312                                         if (get_nodes_block(phi_pred) == pred) {
313                                                 /* case Phi 2a: */
314                                                 assert(is_Phi(phi_pred));  /* Block is empty!! */
315
316                                                 in[p_preds++] = get_Phi_pred(phi_pred, j);
317                                         } else {
318                                                 /* case Phi 2b: */
319                                                 in[p_preds++] = phi_pred;
320                                         }
321                                 }
322                         } else {
323                                 /* case Phi 3: */
324                                 in[p_preds++] = get_Phi_pred(phi, i);
325                         }
326                 }
327                 assert(p_preds == max_preds);
328
329                 /* Fix the node */
330                 if (p_preds == 1)
331                         exchange(phi, in[0]);
332                 else
333                         set_irn_in(phi, p_preds, in);
334                 env->changed = true;
335         }
336
337         /*- This happens only if merge between loop backedge and single loop entry.
338             Moreover, it is only needed if predb is the direct dominator of b,
339             else there can be no uses of the Phi's in predb ... -*/
340         for (k = 0, n = get_Block_n_cfgpreds(b); k < n; ++k) {
341                 ir_node *pred  = get_Block_cfgpred(b, k);
342                 ir_node *predb = get_nodes_block(pred);
343                 if (is_Bad(pred))
344                         continue;
345
346                 if (is_Block_removable(predb) && !Block_block_visited(predb)) {
347                         ir_node *next_phi;
348
349                         /* we found a predecessor block at position k that will be removed */
350                         for (phi = (ir_node*)get_irn_link(predb); phi; phi = next_phi) {
351                                 int q_preds = 0;
352                                 next_phi = (ir_node*)get_irn_link(phi);
353
354                                 assert(is_Phi(phi));
355
356                                 if (get_Block_idom(b) != predb) {
357                                         /* predb is not the dominator. There can't be uses of pred's Phi nodes, kill them .*/
358                                         ir_graph *irg  = get_irn_irg(b);
359                                         ir_mode  *mode = get_irn_mode(phi);
360                                         exchange(phi, new_r_Bad(irg, mode));
361                                 } else {
362                                         /* predb is the direct dominator of b. There might be uses of the Phi nodes from
363                                            predb in further block, so move this phi from the predecessor into the block b */
364                                         set_nodes_block(phi, b);
365                                         set_irn_link(phi, get_irn_link(b));
366                                         set_irn_link(b, phi);
367                                         env->phis_moved = true;
368
369                                         /* first, copy all 0..k-1 predecessors */
370                                         for (i = 0; i < k; i++) {
371                                                 pred = get_Block_cfgpred_block(b, i);
372
373                                                 if (is_Bad(pred)) {
374                                                         in[q_preds++] = pred;
375                                                 } else if (is_Block_removable(pred) && !Block_block_visited(pred)) {
376                                                         /* It's an empty block and not yet visited. */
377                                                         for (j = 0; j < get_Block_n_cfgpreds(pred); j++) {
378                                                                 if (! is_Bad(get_Block_cfgpred(pred, j)))
379                                                                         in[q_preds++] = phi;
380                                                         }
381                                                 } else {
382                                                         in[q_preds++] = phi;
383                                                 }
384                                         }
385
386                                         /* now we are at k, copy the phi predecessors */
387                                         pred = get_nodes_block(get_Block_cfgpred(b, k));
388                                         for (i = 0; i < get_Phi_n_preds(phi); i++) {
389                                                 in[q_preds++] = get_Phi_pred(phi, i);
390                                         }
391
392                                         /* and now all the rest */
393                                         for (i = k+1; i < get_Block_n_cfgpreds(b); i++) {
394                                                 pred = get_Block_cfgpred_block(b, i);
395
396                                                 if (is_Bad(pred)) {
397                                                         ir_graph *irg  = get_irn_irg(b);
398                                                         ir_mode  *mode = get_irn_mode(phi);
399                                                         in[q_preds++] = new_r_Bad(irg, mode);
400                                                 } else if (is_Block_removable(pred) && !Block_block_visited(pred)) {
401                                                         /* It's an empty block and not yet visited. */
402                                                         for (j = 0; j < get_Block_n_cfgpreds(pred); j++) {
403                                                                 if (! is_Bad(get_Block_cfgpred(pred, j)))
404                                                                         in[q_preds++] = phi;
405                                                         }
406                                                 } else {
407                                                         in[q_preds++] = phi;
408                                                 }
409                                         }
410
411                                         /* Fix the node */
412                                         if (q_preds == 1)
413                                                 exchange(phi, in[0]);
414                                         else
415                                                 set_irn_in(phi, q_preds, in);
416                                         env->changed = true;
417
418                                         assert(q_preds <= max_preds);
419                                         // assert(p_preds == q_preds && "Wrong Phi Fix");
420                                 }
421                         }
422                 }
423         }
424
425         /*- Fix the block -*/
426         n_preds = 0;
427         for (i = 0; i < get_Block_n_cfgpreds(b); i++) {
428                 ir_node *pred  = get_Block_cfgpred(b, i);
429                 ir_node *predb = get_nodes_block(pred);
430                 ir_graph *irg  = get_irn_irg(pred);
431
432                 /* case 1: Bad predecessor */
433                 if (is_Bad(pred)) {
434                         in[n_preds++] = new_r_Bad(irg, mode_X);
435                         continue;
436                 }
437                 if (is_Block_removable(predb) && !Block_block_visited(predb)) {
438                         /* case 2: It's an empty block and not yet visited. */
439                         for (j = 0; j < get_Block_n_cfgpreds(predb); j++) {
440                                 ir_node *predpred = get_Block_cfgpred(predb, j);
441
442                                 if (is_Bad(predpred)) {
443                                         in[n_preds++] = new_r_Bad(irg, mode_X);
444                                         continue;
445                                 }
446
447                                 in[n_preds++] = predpred;
448                         }
449                         /* Remove block+jump as it might be kept alive. */
450                         exchange(pred, new_r_Bad(get_irn_irg(b), mode_X));
451                         exchange(predb, new_r_Bad(get_irn_irg(b), mode_BB));
452                 } else {
453                         /* case 3: */
454                         in[n_preds++] = pred;
455                 }
456         }
457         assert(n_preds == max_preds);
458
459         set_irn_in(b, n_preds, in);
460         env->changed = true;
461
462         /* see if phi-fix was correct */
463         assert(get_irn_link(b) == NULL || p_preds == -1 || (n_preds == p_preds));
464         xfree(in);
465 }
466
467 /**
468  * Block walker: optimize all blocks using the default optimizations.
469  * This removes Blocks with only a Jmp predecessor.
470  */
471 static void remove_simple_blocks(ir_node *block, void *ctx)
472 {
473         merge_env *env = (merge_env*)ctx;
474         ir_node   *new_blk = equivalent_node(block);
475
476         if (new_blk != block) {
477                 exchange(block, new_blk);
478                 env->changed = true;
479         }
480 }
481
482 /**
483  * Optimize table-switch Conds.
484  *
485  * @param cond the switch-Cond
486  * @return true if the switch-Cond was optimized
487  */
488 static bool handle_switch_cond(ir_node *cond)
489 {
490         ir_node *sel   = get_Cond_selector(cond);
491         ir_node *proj1 = (ir_node*)get_irn_link(cond);
492         ir_node *proj2 = (ir_node*)get_irn_link(proj1);
493         ir_node *blk   = get_nodes_block(cond);
494
495         /* exactly 1 Proj on the Cond node: must be the defaultProj */
496         if (proj2 == NULL) {
497                 ir_node *jmp = new_r_Jmp(blk);
498                 assert(get_Cond_default_proj(cond) == get_Proj_proj(proj1));
499                 /* convert it into a Jmp */
500                 exchange(proj1, jmp);
501                 return true;
502         }
503
504         /* handle Cond nodes with constant argument. In this case the localopt rules
505          * should have killed all obviously impossible cases.
506          * So the only case left to handle here is 1 defaultProj + 1case
507          * (this one case should be the one taken) */
508         if (get_irn_link(proj2) == NULL) {
509                 ir_tarval *tv = value_of(sel);
510
511                 if (tv != tarval_bad) {
512                         /* we have a constant switch */
513                         long      num     = get_tarval_long(tv);
514                         long      def_num = get_Cond_default_proj(cond);
515                         ir_graph *irg     = get_irn_irg(cond);
516                         ir_node  *bad     = new_r_Bad(irg, mode_X);
517
518                         if (def_num == get_Proj_proj(proj1)) {
519                                 /* first one is the defProj */
520                                 if (num == get_Proj_proj(proj2)) {
521                                         ir_node *jmp = new_r_Jmp(blk);
522                                         exchange(proj2, jmp);
523                                         exchange(proj1, bad);
524                                         return true;
525                                 }
526                         } else if (def_num == get_Proj_proj(proj2)) {
527                                 /* second one is the defProj */
528                                 if (num == get_Proj_proj(proj1)) {
529                                         ir_node *jmp = new_r_Jmp(blk);
530                                         exchange(proj1, jmp);
531                                         exchange(proj2, bad);
532                                         return true;
533                                 }
534                         } else {
535                                 /* neither: strange, Cond was not optimized so far */
536                                 if (num == get_Proj_proj(proj1)) {
537                                         ir_node *jmp = new_r_Jmp(blk);
538                                         exchange(proj1, jmp);
539                                         exchange(proj2, bad);
540                                         return true;
541                                 } else if (num == get_Proj_proj(proj2)) {
542                                         ir_node *jmp = new_r_Jmp(blk);
543                                         exchange(proj2, jmp);
544                                         exchange(proj1, bad);
545                                         return true;
546                                 }
547                         }
548                 }
549         }
550         return false;
551 }
552
553 /* Optimizations of the control flow that also require changes of Phi nodes.
554  *
555  * This optimization performs two passes over the graph.
556  *
557  * The first pass collects all Phi nodes in a link list in the block
558  * nodes.  Further it performs simple control flow optimizations.
559  * Finally it marks all blocks that do not contain useful
560  * computations, i.e., these blocks might be removed.
561  *
562  * The second pass performs the optimizations intended by this algorithm.
563  * It walks only over block nodes and adapts these and the Phi nodes in these
564  * blocks, which it finds in a linked list computed by the first pass.
565  *
566  * We use the mark flag to mark removable blocks in the first phase.
567  */
568 void optimize_cf(ir_graph *irg)
569 {
570         int i, j, n;
571         ir_node **in = NULL;
572         ir_node *end = get_irg_end(irg);
573         ir_node *new_end;
574         merge_env env;
575
576         assert(get_irg_phase_state(irg) != phase_building);
577
578         /* if the graph is not pinned, we cannot determine empty blocks */
579         assert(get_irg_pinned(irg) != op_pin_state_floats &&
580                "Control flow optimization need a pinned graph");
581
582         /* FIXME: control flow opt destroys block edges. So edges are deactivated
583          * here. Fix the edges! */
584         edges_deactivate(irg);
585
586         /* we use the mark flag to mark removable blocks */
587         ir_reserve_resources(irg, IR_RESOURCE_BLOCK_MARK | IR_RESOURCE_IRN_LINK);
588
589         /* The Cond optimization might expose unreachable code, so we loop */
590         for (;;) {
591                 int length;
592                 env.changed    = false;
593                 env.phis_moved = false;
594
595                 assure_doms(irg);
596
597                 env.switch_conds = NEW_ARR_F(ir_node*, 0);
598                 irg_walk(end, clear_link, collect_nodes, &env);
599
600                 /* handle all collected switch-Conds */
601                 length = ARR_LEN(env.switch_conds);
602                 for (i = 0; i < length; ++i) {
603                         ir_node *cond = env.switch_conds[i];
604                         env.changed |= handle_switch_cond(cond);
605                 }
606                 DEL_ARR_F(env.switch_conds);
607
608                 if (!env.changed) break;
609
610                 set_irg_doms_inconsistent(irg);
611                 set_irg_extblk_inconsistent(irg);
612                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
613         }
614
615         /* assert due to collect_nodes:
616          * 1. removable blocks are now marked as such
617          * 2. phi lists are up to date
618          */
619
620         /* Optimize the standard code. */
621         assure_doms(irg);
622         irg_block_walk_graph(irg, optimize_blocks, remove_simple_blocks, &env);
623
624         new_end = optimize_in_place(end);
625         if (new_end != end) {
626                 set_irg_end(irg, new_end);
627                 end = new_end;
628         }
629         remove_End_Bads_and_doublets(end);
630
631         ir_free_resources(irg, IR_RESOURCE_BLOCK_MARK | IR_RESOURCE_IRN_LINK);
632
633         if (env.phis_moved) {
634                 /* Bad: when we moved Phi's, we might produce dead Phi nodes
635                    that are kept-alive.
636                    Some other phases cannot copy with this, so will them.
637                  */
638                 n = get_End_n_keepalives(end);
639                 if (n > 0) {
640                         NEW_ARR_A(ir_node *, in, n);
641                         assure_irg_outs(irg);
642
643                         for (i = j = 0; i < n; ++i) {
644                                 ir_node *ka = get_End_keepalive(end, i);
645
646                                 if (is_Phi(ka)) {
647                                         int k;
648
649                                         for (k = get_irn_n_outs(ka) - 1; k >= 0; --k) {
650                                                 ir_node *user = get_irn_out(ka, k);
651
652                                                 if (user != ka && user != end) {
653                                                         /* Is it a real user or just a self loop ? */
654                                                         break;
655                                                 }
656                                         }
657                                         if (k >= 0)
658                                                 in[j++] = ka;
659                                 } else
660                                         in[j++] = ka;
661                         }
662                         if (j != n) {
663                                 set_End_keepalives(end, j, in);
664                                 env.changed = true;
665                         }
666                 }
667         }
668
669         if (env.changed) {
670                 /* Handle graph state if was changed. */
671                 set_irg_doms_inconsistent(irg);
672                 set_irg_extblk_inconsistent(irg);
673                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
674         }
675 }
676
677 /* Creates an ir_graph pass for optimize_cf. */
678 ir_graph_pass_t *optimize_cf_pass(const char *name)
679 {
680         return def_graph_pass(name ? name : "optimize_cf", optimize_cf);
681 }