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