- fixed warning
[libfirm] / ir / opt / condeval.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   Partial condition evaluation
23  * @date    10. Sep. 2006
24  * @author  Christoph Mallon, Matthias Braun
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include "iroptimize.h"
30
31 #include <assert.h>
32 #include "array_t.h"
33 #include "debug.h"
34 #include "ircons.h"
35 #include "irgmod.h"
36 #include "irgopt.h"
37 #include "irgwalk.h"
38 #include "irnode.h"
39 #include "irnode_t.h"
40 #include "iredges.h"
41 #include "iredges_t.h"
42 #include "irtools.h"
43 #include "irgraph.h"
44 #include "tv.h"
45 #include "opt_confirms.h"
46 #include "iropt_dbg.h"
47
48 #undef AVOID_PHIB
49
50 DEBUG_ONLY(static firm_dbg_module_t *dbg);
51
52 /**
53  * Add the new predecessor x to node node, which is either a Block or a Phi
54  */
55 static void add_pred(ir_node* node, ir_node* x)
56 {
57         ir_node** ins;
58         int n;
59         int i;
60
61         assert(is_Block(node) || is_Phi(node));
62
63         n = get_irn_arity(node);
64         NEW_ARR_A(ir_node*, ins, n + 1);
65         for (i = 0; i < n; i++)
66                 ins[i] = get_irn_n(node, i);
67         ins[n] = x;
68         set_irn_in(node, n + 1, ins);
69 }
70
71 static ir_node *ssa_second_def;
72 static ir_node *ssa_second_def_block;
73
74 static ir_node *search_def_and_create_phis(ir_node *block, ir_mode *mode,
75                                            int first)
76 {
77         int i;
78         int n_cfgpreds;
79         ir_graph *irg;
80         ir_node *phi;
81         ir_node **in;
82
83         /* This is needed because we create bads sometimes */
84         if (is_Bad(block))
85                 return new_Bad();
86
87         /* the other defs can't be marked for cases where a user of the original
88          * value is in the same block as the alternative definition.
89          * In this case we mustn't use the alternative definition.
90          * So we keep a flag that indicated wether we walked at least 1 block
91          * away and may use the alternative definition */
92         if (block == ssa_second_def_block && !first) {
93                 return ssa_second_def;
94         }
95
96         /* already processed this block? */
97         if (irn_visited(block)) {
98                 ir_node *value = (ir_node*) get_irn_link(block);
99                 return value;
100         }
101
102         irg = get_irn_irg(block);
103         assert(block != get_irg_start_block(irg));
104
105         /* a Block with only 1 predecessor needs no Phi */
106         n_cfgpreds = get_Block_n_cfgpreds(block);
107         if (n_cfgpreds == 1) {
108                 ir_node *pred_block = get_Block_cfgpred_block(block, 0);
109                 ir_node *value      = search_def_and_create_phis(pred_block, mode, 0);
110
111                 set_irn_link(block, value);
112                 mark_irn_visited(block);
113                 return value;
114         }
115
116         /* create a new Phi */
117         NEW_ARR_A(ir_node*, in, n_cfgpreds);
118         for(i = 0; i < n_cfgpreds; ++i)
119                 in[i] = new_Unknown(mode);
120
121         phi = new_r_Phi(irg, block, n_cfgpreds, in, mode);
122         set_irn_link(block, phi);
123         mark_irn_visited(block);
124
125         /* set Phi predecessors */
126         for(i = 0; i < n_cfgpreds; ++i) {
127                 ir_node *pred_block = get_Block_cfgpred_block(block, i);
128                 ir_node *pred_val   = search_def_and_create_phis(pred_block, mode, 0);
129
130                 set_irn_n(phi, i, pred_val);
131         }
132
133         return phi;
134 }
135
136 /**
137  * Given a set of values this function constructs SSA-form for the users of the
138  * first value (the users are determined through the out-edges of the value).
139  * Uses the irn_visited flags. Works without using the dominance tree.
140  */
141 static void construct_ssa(ir_node *orig_block, ir_node *orig_val,
142                           ir_node *second_block, ir_node *second_val)
143 {
144         ir_graph *irg;
145         ir_mode *mode;
146         const ir_edge_t *edge;
147         const ir_edge_t *next;
148
149         /* no need to do anything */
150         if (orig_val == second_val)
151                 return;
152
153         irg = get_irn_irg(orig_val);
154         inc_irg_visited(irg);
155
156         mode = get_irn_mode(orig_val);
157         set_irn_link(orig_block, orig_val);
158         mark_irn_visited(orig_block);
159
160         ssa_second_def_block = second_block;
161         ssa_second_def       = second_val;
162
163         /* Only fix the users of the first, i.e. the original node */
164         foreach_out_edge_safe(orig_val, edge, next) {
165                 ir_node *user = get_edge_src_irn(edge);
166                 int j = get_edge_src_pos(edge);
167                 ir_node *user_block = get_nodes_block(user);
168                 ir_node *newval;
169
170                 /* ignore keeps */
171                 if (is_End(user))
172                         continue;
173
174                 DB((dbg, LEVEL_3, ">>> Fixing user %+F (pred %d == %+F)\n", user, j, get_irn_n(user, j)));
175
176                 if (is_Phi(user)) {
177                         ir_node *pred_block = get_Block_cfgpred_block(user_block, j);
178                         newval = search_def_and_create_phis(pred_block, mode, 1);
179                 } else {
180                         newval = search_def_and_create_phis(user_block, mode, 1);
181                 }
182
183                 /* don't fix newly created Phis from the SSA construction */
184                 if (newval != user) {
185                         DB((dbg, LEVEL_4, ">>>> Setting input %d of %+F to %+F\n", j, user, newval));
186                         set_irn_n(user, j, newval);
187                 }
188         }
189 }
190
191 static void split_critical_edge(ir_node *block, int pos) {
192         ir_graph *irg = get_irn_irg(block);
193         ir_node *in[1];
194         ir_node *new_block;
195         ir_node *new_jmp;
196
197         in[0] = get_Block_cfgpred(block, pos);
198         new_block = new_r_Block(irg, 1, in);
199         new_jmp = new_r_Jmp(irg, new_block);
200         set_Block_cfgpred(block, pos, new_jmp);
201 }
202
203 typedef struct condeval_env_t {
204         ir_node       *true_block;
205         ir_node       *cmp;        /**< The Compare node that might be partial evaluated */
206         pn_Cmp         pnc;        /**< The Compare mode of the Compare node. */
207         ir_node       *cnst;
208         tarval        *tv;
209         ir_visited_t   visited_nr;
210
211         ir_node       *cnst_pred;   /**< the block before the constant */
212         int            cnst_pos;    /**< the pos to the constant block (needed to
213                                           kill that edge later) */
214 } condeval_env_t;
215
216 static ir_node *copy_and_fix_node(const condeval_env_t *env, ir_node *block,
217                                   ir_node *copy_block, int j, ir_node *node) {
218         int      i, arity;
219         ir_node *copy;
220
221         /* we can evaluate Phis right now, all other nodes get copied */
222         if (is_Phi(node)) {
223                 copy = get_Phi_pred(node, j);
224                 /* we might have to evaluate a Phi-cascade */
225                 if (get_irn_visited(copy) >= env->visited_nr) {
226                         copy = get_irn_link(copy);
227                 }
228         } else {
229                 copy = exact_copy(node);
230                 set_nodes_block(copy, copy_block);
231
232                 assert(get_irn_mode(copy) != mode_X);
233
234                 arity = get_irn_arity(copy);
235                 for(i = 0; i < arity; ++i) {
236                         ir_node *pred     = get_irn_n(copy, i);
237                         ir_node *new_pred;
238
239                         if (get_nodes_block(pred) != block)
240                                 continue;
241
242                         if (get_irn_visited(pred) >= env->visited_nr) {
243                                 new_pred = get_irn_link(pred);
244                         } else {
245                                 new_pred = copy_and_fix_node(env, block, copy_block, j, pred);
246                         }
247                         DB((dbg, LEVEL_2, ">> Set Pred of %+F to %+F\n", copy, new_pred));
248                         set_irn_n(copy, i, new_pred);
249                 }
250         }
251
252         set_irn_link(node, copy);
253         set_irn_visited(node, env->visited_nr);
254
255         return copy;
256 }
257
258 static void copy_and_fix(const condeval_env_t *env, ir_node *block,
259                          ir_node *copy_block, int j) {
260         const ir_edge_t *edge;
261
262         /* Look at all nodes in the cond_block and copy them into pred */
263         foreach_out_edge(block, edge) {
264                 ir_node *node = get_edge_src_irn(edge);
265                 ir_node *copy;
266                 ir_mode *mode;
267
268                 if (is_Block(node)) {
269                         /* Block->Block edge, should be the MacroBlock edge */
270                         assert(get_Block_MacroBlock(node) == block && "Block->Block edge found");
271                         continue;
272                 }
273
274                 /* ignore control flow */
275                 mode = get_irn_mode(node);
276                 if (mode == mode_X || is_Cond(node))
277                         continue;
278 #ifdef AVOID_PHIB
279                 /* we may not copy mode_b nodes, because this could produce Phi with
280                  * mode_bs which can't be handled in all backends. Instead we duplicate
281                  * the node and move it to its users */
282                 if (mode == mode_b) {
283                         const ir_edge_t *edge, *next;
284                         ir_node *pred;
285                         int      pn;
286
287                         assert(is_Proj(node));
288
289                         pred = get_Proj_pred(node);
290                         pn   = get_Proj_proj(node);
291
292                         foreach_out_edge_safe(node, edge, next) {
293                                 ir_node *cmp_copy;
294                                 ir_node *user       = get_edge_src_irn(edge);
295                                 int pos             = get_edge_src_pos(edge);
296                                 ir_node *user_block = get_nodes_block(user);
297
298                                 if (user_block == block)
299                                         continue;
300
301                                 cmp_copy = exact_copy(pred);
302                                 set_nodes_block(cmp_copy, user_block);
303                                 copy = new_r_Proj(current_ir_graph, user_block, cmp_copy, mode_b, pn);
304                                 set_irn_n(user, pos, copy);
305                         }
306                         continue;
307                 }
308 #endif
309
310                 copy = copy_and_fix_node(env, block, copy_block, j, node);
311
312                 /* we might hit values in blocks that have already been processed by a
313                  * recursive find_phi_with_const() call */
314                 assert(get_irn_visited(copy) <= env->visited_nr);
315                 if (get_irn_visited(copy) >= env->visited_nr) {
316                         ir_node *prev_copy = get_irn_link(copy);
317                         if (prev_copy != NULL)
318                                 set_irn_link(node, prev_copy);
319                 }
320         }
321
322         /* fix data-flow (and reconstruct SSA if needed) */
323         foreach_out_edge(block, edge) {
324                 ir_node *node = get_edge_src_irn(edge);
325                 ir_node *copy_node;
326                 ir_mode *mode;
327
328                 if (is_Block(node)) {
329                         /* Block->Block edge, should be the MacroBlock edge */
330                         assert(get_Block_MacroBlock(node) == block && "Block->Block edge found");
331                         continue;
332                 }
333
334                 mode = get_irn_mode(node);
335                 if (mode == mode_X || is_Cond(node))
336                         continue;
337 #ifdef AVOID_PHIB
338                 if (mode == mode_b)
339                         continue;
340 #endif
341
342                 DB((dbg, LEVEL_2, ">> Fixing users of %+F\n", node));
343
344                 copy_node = get_irn_link(node);
345                 construct_ssa(block, node, copy_block, copy_node);
346         }
347 }
348
349 /**
350  * returns whether the cmp evaluates to true or false, or can't be evaluated!
351  * 1: true, 0: false, -1: can't evaluate
352  *
353  * @param pnc       the compare mode of the Compare
354  * @param tv_left   the left tarval
355  * @param tv_right  the right tarval
356  */
357 static int eval_cmp_tv(pn_Cmp pnc, tarval *tv_left, tarval *tv_right) {
358         pn_Cmp cmp_result = tarval_cmp(tv_left, tv_right);
359
360         /* does the compare evaluate to true? */
361         if (cmp_result == pn_Cmp_False)
362                 return -1;
363         if ((cmp_result & pnc) != cmp_result)
364                 return 0;
365
366         return 1;
367 }
368
369 /**
370  * returns whether the cmp evaluates to true or false, or can't be evaluated!
371  * 1: true, 0: false, -1: can't evaluate
372  *
373  * @param env      the environment
374  * @param cand     the candidate node, either a Const or a Confirm
375  */
376 static int eval_cmp(condeval_env_t *env, ir_node *cand) {
377         if (is_Const(cand)) {
378                 tarval *tv_cand   = get_Const_tarval(cand);
379                 tarval *tv_cmp    = get_Const_tarval(env->cnst);
380
381                 return eval_cmp_tv(env->pnc, tv_cand, tv_cmp);
382         } else { /* a Confirm */
383                 tarval *res = computed_value_Cmp_Confirm(env->cmp, cand, env->cnst, env->pnc);
384
385                 if (res == tarval_bad)
386                         return -1;
387                 return res == tarval_b_true;
388         }
389 }
390
391 /**
392  * Check for Const or Confirm with Const.
393  */
394 static int is_Const_or_Confirm(const ir_node *node) {
395         if (is_Confirm(node))
396                 node = get_Confirm_bound(node);
397         return is_Const(node);
398 }
399
400 /**
401  * get the tarval of a Const or Confirm with
402  */
403 static tarval *get_Const_or_Confirm_tarval(const ir_node *node) {
404         if (is_Confirm(node)) {
405                 if (get_Confirm_bound(node))
406                         node = get_Confirm_bound(node);
407         }
408         return get_Const_tarval(node);
409 }
410
411 static ir_node *find_const_or_confirm(condeval_env_t *env, ir_node *jump, ir_node *value)
412 {
413         ir_node *block = get_nodes_block(jump);
414
415         if (irn_visited_else_mark(value))
416                 return NULL;
417
418         if (is_Const_or_Confirm(value)) {
419                 if (eval_cmp(env, value) <= 0) {
420                         return NULL;
421                 }
422
423                 DB((
424                         dbg, LEVEL_1,
425                         "> Found condition evaluation candidate %+F->%+F\n",
426                         env->true_block, block
427                 ));
428
429                 /* adjust true_block to point directly towards our jump */
430                 add_pred(env->true_block, jump);
431
432                 split_critical_edge(env->true_block, 0);
433
434                 /* we need a bigger visited nr when going back */
435                 env->visited_nr++;
436
437                 return block;
438         }
439
440         if (is_Phi(value)) {
441                 int i, arity;
442
443                 /* the Phi has to be in the same Block as the Jmp */
444                 if (get_nodes_block(value) != block) {
445                         return NULL;
446                 }
447
448                 arity = get_irn_arity(value);
449                 for(i = 0; i < arity; ++i) {
450                         ir_node *copy_block;
451                         ir_node *phi_pred = get_Phi_pred(value, i);
452                         ir_node *cfgpred  = get_Block_cfgpred(block, i);
453
454                         copy_block = find_const_or_confirm(env, cfgpred, phi_pred);
455                         if (copy_block == NULL)
456                                 continue;
457
458                         /* copy duplicated nodes in copy_block and fix SSA */
459                         copy_and_fix(env, block, copy_block, i);
460
461                         if (copy_block == get_nodes_block(cfgpred)) {
462                                 env->cnst_pred = block;
463                                 env->cnst_pos  = i;
464                         }
465
466                         /* return now as we can't process more possibilities in 1 run */
467                         return copy_block;
468                 }
469         }
470
471         return NULL;
472 }
473
474 static ir_node *find_candidate(condeval_env_t *env, ir_node *jump,
475                                ir_node *value)
476 {
477         ir_node *block = get_nodes_block(jump);
478
479         if (irn_visited_else_mark(value)) {
480                 return NULL;
481         }
482
483         if (is_Const_or_Confirm(value)) {
484                 tarval *tv = get_Const_or_Confirm_tarval(value);
485
486                 if (tv != env->tv)
487                         return NULL;
488
489                 DB((
490                         dbg, LEVEL_1,
491                         "> Found condition evaluation candidate %+F->%+F\n",
492                         env->true_block, block
493                 ));
494
495                 /* adjust true_block to point directly towards our jump */
496                 add_pred(env->true_block, jump);
497
498                 split_critical_edge(env->true_block, 0);
499
500                 /* we need a bigger visited nr when going back */
501                 env->visited_nr++;
502
503                 return block;
504         }
505         if (is_Phi(value)) {
506                 int i, arity;
507
508                 /* the Phi has to be in the same Block as the Jmp */
509                 if (get_nodes_block(value) != block)
510                         return NULL;
511
512                 arity = get_irn_arity(value);
513                 for(i = 0; i < arity; ++i) {
514                         ir_node *copy_block;
515                         ir_node *phi_pred = get_Phi_pred(value, i);
516                         ir_node *cfgpred  = get_Block_cfgpred(block, i);
517
518                         copy_block = find_candidate(env, cfgpred, phi_pred);
519                         if (copy_block == NULL)
520                                 continue;
521
522                         /* copy duplicated nodes in copy_block and fix SSA */
523                         copy_and_fix(env, block, copy_block, i);
524
525                         if (copy_block == get_nodes_block(cfgpred)) {
526                                 env->cnst_pred = block;
527                                 env->cnst_pos  = i;
528                         }
529
530                         /* return now as we can't process more possibilities in 1 run */
531                         return copy_block;
532                 }
533         }
534         if (is_Proj(value)) {
535                 ir_node *left;
536                 ir_node *right;
537                 int      pnc;
538                 ir_node *cmp = get_Proj_pred(value);
539                 if (!is_Cmp(cmp))
540                         return NULL;
541
542                 left  = get_Cmp_left(cmp);
543                 right = get_Cmp_right(cmp);
544                 pnc   = get_Proj_proj(value);
545
546                 /* we assume that the constant is on the right side, swap left/right
547                  * if needed */
548                 if (is_Const(left)) {
549                         ir_node *t = left;
550                         left       = right;
551                         right      = t;
552
553                         pnc        = get_inversed_pnc(pnc);
554                 }
555
556                 if (!is_Const(right))
557                         return 0;
558
559                 if (get_nodes_block(left) != block) {
560                         return 0;
561                 }
562
563                 /* negate condition when we're looking for the false block */
564                 if (env->tv == tarval_b_false) {
565                         pnc = get_negated_pnc(pnc, get_irn_mode(right));
566                 }
567
568                 /* (recursively) look if a pred of a Phi is a constant or a Confirm */
569                 env->cmp  = cmp;
570                 env->pnc  = pnc;
571                 env->cnst = right;
572
573                 return find_const_or_confirm(env, jump, left);
574         }
575
576         return NULL;
577 }
578
579 /**
580  * Block-walker: searches for the following construct
581  *
582  *  Const or Phi with constants
583  *           |
584  *          Cmp
585  *           |
586  *         Cond
587  *          /
588  *       ProjX
589  *        /
590  *     Block
591  */
592 static void cond_eval(ir_node* block, void* data)
593 {
594         condeval_env_t env;
595         int *changed = data;
596         ir_node *selector;
597         ir_node *projx;
598         ir_node *cond;
599         ir_node *copy_block;
600         int      selector_evaluated;
601         const ir_edge_t *edge, *next;
602         ir_node *bad;
603         size_t   cnst_pos;
604
605         if (get_Block_n_cfgpreds(block) != 1)
606                 return;
607
608         projx = get_Block_cfgpred(block, 0);
609         if (!is_Proj(projx))
610                 return;
611         assert(get_irn_mode(projx) == mode_X);
612
613         cond = get_Proj_pred(projx);
614         if (!is_Cond(cond))
615                 return;
616
617         selector = get_Cond_selector(cond);
618         /* TODO handle switch Conds */
619         if (get_irn_mode(selector) != mode_b)
620                 return;
621
622         /* handle cases that can be immediately evaluated */
623         selector_evaluated = -1;
624         if (is_Proj(selector)) {
625                 ir_node *cmp = get_Proj_pred(selector);
626                 if (is_Cmp(cmp)) {
627                         ir_node *left  = get_Cmp_left(cmp);
628                         ir_node *right = get_Cmp_right(cmp);
629                         if (is_Const(left) && is_Const(right)) {
630                                 int     pnc      = get_Proj_proj(selector);
631                                 tarval *tv_left  = get_Const_tarval(left);
632                                 tarval *tv_right = get_Const_tarval(right);
633
634                                 selector_evaluated = eval_cmp_tv(pnc, tv_left, tv_right);
635                                 if (selector_evaluated < 0)
636                                         return;
637                         }
638                 }
639         } else if (is_Const_or_Confirm(selector)) {
640                 tarval *tv = get_Const_or_Confirm_tarval(selector);
641                 if (tv == tarval_b_true) {
642                         selector_evaluated = 1;
643                 } else {
644                         assert(tv == tarval_b_false);
645                         selector_evaluated = 0;
646                 }
647         }
648
649         env.cnst_pred = NULL;
650         if (get_Proj_proj(projx) == pn_Cond_false) {
651                 env.tv = tarval_b_false;
652                 if (selector_evaluated >= 0)
653                         selector_evaluated = !selector_evaluated;
654         } else {
655                 env.tv = tarval_b_true;
656         }
657
658         if (selector_evaluated == 0) {
659                 bad = new_Bad();
660                 exchange(projx, bad);
661                 *changed = 1;
662                 return;
663         } else if (selector_evaluated == 1) {
664                 dbg_info *dbgi = get_irn_dbg_info(selector);
665                 ir_node  *jmp  = new_rd_Jmp(dbgi, current_ir_graph, get_nodes_block(projx));
666                 DBG_OPT_COND_EVAL(projx, jmp);
667                 exchange(projx, jmp);
668                 *changed = 1;
669                 return;
670         }
671
672         /* (recursively) look if a pred of a Phi is a constant or a Confirm */
673         env.true_block = block;
674         inc_irg_visited(current_ir_graph);
675         env.visited_nr = get_irg_visited(current_ir_graph);
676
677         copy_block = find_candidate(&env, projx, selector);
678         if (copy_block == NULL)
679                 return;
680
681         /* we have to remove the edge towards the pred as the pred now
682          * jumps into the true_block. We also have to shorten Phis
683          * in our block because of this */
684         bad      = new_Bad();
685         cnst_pos = env.cnst_pos;
686
687         /* shorten Phis */
688         foreach_out_edge_safe(env.cnst_pred, edge, next) {
689                 ir_node *node = get_edge_src_irn(edge);
690
691                 if (is_Phi(node))
692                         set_Phi_pred(node, cnst_pos, bad);
693         }
694
695         set_Block_cfgpred(env.cnst_pred, cnst_pos, bad);
696
697         /* the graph is changed now */
698         *changed = 1;
699 }
700
701 void opt_cond_eval(ir_graph* irg)
702 {
703         int changed, rerun;
704
705         FIRM_DBG_REGISTER(dbg, "firm.opt.condeval");
706
707         DB((dbg, LEVEL_1, "===> Performing condition evaluation on %+F\n", irg));
708
709         remove_critical_cf_edges(irg);
710         normalize_proj_nodes(irg);
711
712         edges_assure(irg);
713         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_IRN_VISITED);
714
715         changed = 0;
716         do {
717                 rerun = 0;
718                 irg_block_walk_graph(irg, cond_eval, NULL, &rerun);
719                 changed |= rerun;
720         } while (rerun);
721
722         ir_free_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_IRN_VISITED);
723
724         if (changed) {
725                 /* control flow changed, some blocks may become dead */
726                 set_irg_outs_inconsistent(irg);
727                 set_irg_doms_inconsistent(irg);
728                 set_irg_extblk_inconsistent(irg);
729                 set_irg_loopinfo_inconsistent(irg);
730                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
731
732                 /* Dead code might be created. Optimize it away as it is dangerous
733                  * to call optimize_df() an dead code. */
734                 optimize_cf(irg);
735         }
736 }