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