fix trailing whitespaces and tabulators in the middle of a line
[libfirm] / ir / opt / jumpthreading.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   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 "opt_confirms.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
85         /* This is needed because we create bads sometimes */
86         if (is_Bad(block))
87                 return new_Bad();
88
89         /* the other defs can't be marked for cases where a user of the original
90          * value is in the same block as the alternative definition.
91          * In this case we mustn't use the alternative definition.
92          * So we keep a flag that indicated wether we walked at least 1 block
93          * away and may use the alternative definition */
94         if (block == ssa_second_def_block && !first) {
95                 return ssa_second_def;
96         }
97
98         /* already processed this block? */
99         if (irn_visited(block)) {
100                 ir_node *value = (ir_node*) get_irn_link(block);
101                 return value;
102         }
103
104         irg = get_irn_irg(block);
105         assert(block != get_irg_start_block(irg));
106
107         /* a Block with only 1 predecessor needs no Phi */
108         n_cfgpreds = get_Block_n_cfgpreds(block);
109         if (n_cfgpreds == 1) {
110                 ir_node *pred_block = get_Block_cfgpred_block(block, 0);
111                 ir_node *value      = search_def_and_create_phis(pred_block, mode, 0);
112
113                 set_irn_link(block, value);
114                 mark_irn_visited(block);
115                 return value;
116         }
117
118         /* create a new Phi */
119         NEW_ARR_A(ir_node*, in, n_cfgpreds);
120         for (i = 0; i < n_cfgpreds; ++i)
121                 in[i] = new_Unknown(mode);
122
123         phi = new_r_Phi(block, n_cfgpreds, in, mode);
124         set_irn_link(block, phi);
125         mark_irn_visited(block);
126
127         /* set Phi predecessors */
128         for (i = 0; i < n_cfgpreds; ++i) {
129                 ir_node *pred_block = get_Block_cfgpred_block(block, i);
130                 ir_node *pred_val   = search_def_and_create_phis(pred_block, mode, 0);
131
132                 set_irn_n(phi, i, pred_val);
133         }
134
135         return phi;
136 }
137
138 /**
139  * Given a set of values this function constructs SSA-form for the users of the
140  * first value (the users are determined through the out-edges of the value).
141  * Uses the irn_visited flags. Works without using the dominance tree.
142  */
143 static void construct_ssa(ir_node *orig_block, ir_node *orig_val,
144                           ir_node *second_block, ir_node *second_val)
145 {
146         ir_graph *irg;
147         ir_mode *mode;
148         const ir_edge_t *edge;
149         const ir_edge_t *next;
150
151         /* no need to do anything */
152         if (orig_val == second_val)
153                 return;
154
155         irg = get_irn_irg(orig_val);
156         inc_irg_visited(irg);
157
158         mode = get_irn_mode(orig_val);
159         set_irn_link(orig_block, orig_val);
160         mark_irn_visited(orig_block);
161
162         ssa_second_def_block = second_block;
163         ssa_second_def       = second_val;
164
165         /* Only fix the users of the first, i.e. the original node */
166         foreach_out_edge_safe(orig_val, edge, next) {
167                 ir_node *user = get_edge_src_irn(edge);
168                 int j = get_edge_src_pos(edge);
169                 ir_node *user_block = get_nodes_block(user);
170                 ir_node *newval;
171
172                 /* ignore keeps */
173                 if (is_End(user))
174                         continue;
175
176                 DB((dbg, LEVEL_3, ">>> Fixing user %+F (pred %d == %+F)\n", user, j, get_irn_n(user, j)));
177
178                 if (is_Phi(user)) {
179                         ir_node *pred_block = get_Block_cfgpred_block(user_block, j);
180                         newval = search_def_and_create_phis(pred_block, mode, 1);
181                 } else {
182                         newval = search_def_and_create_phis(user_block, mode, 1);
183                 }
184
185                 /* don't fix newly created Phis from the SSA construction */
186                 if (newval != user) {
187                         DB((dbg, LEVEL_4, ">>>> Setting input %d of %+F to %+F\n", j, user, newval));
188                         set_irn_n(user, j, newval);
189                 }
190         }
191 }
192
193 static void split_critical_edge(ir_node *block, int pos)
194 {
195         ir_graph *irg = get_irn_irg(block);
196         ir_node *in[1];
197         ir_node *new_block;
198         ir_node *new_jmp;
199
200         in[0] = get_Block_cfgpred(block, pos);
201         new_block = new_r_Block(irg, 1, in);
202         new_jmp = new_r_Jmp(new_block);
203         set_Block_cfgpred(block, pos, new_jmp);
204 }
205
206 typedef struct jumpthreading_env_t {
207         ir_node       *true_block;
208         ir_node       *cmp;        /**< The Compare node that might be partial evaluated */
209         pn_Cmp         pnc;        /**< The Compare mode of the Compare node. */
210         ir_node       *cnst;
211         tarval        *tv;
212         ir_visited_t   visited_nr;
213
214         ir_node       *cnst_pred;   /**< the block before the constant */
215         int            cnst_pos;    /**< the pos to the constant block (needed to
216                                           kill that edge later) */
217 } jumpthreading_env_t;
218
219 static ir_node *copy_and_fix_node(const jumpthreading_env_t *env,
220                                   ir_node *block, ir_node *copy_block, int j,
221                                   ir_node *node)
222 {
223         int      i, arity;
224         ir_node *copy;
225
226         /* we can evaluate Phis right now, all other nodes get copied */
227         if (is_Phi(node)) {
228                 copy = get_Phi_pred(node, j);
229                 /* we might have to evaluate a Phi-cascade */
230                 if (get_irn_visited(copy) >= env->visited_nr) {
231                         copy = get_irn_link(copy);
232                 }
233         } else {
234                 copy = exact_copy(node);
235                 set_nodes_block(copy, copy_block);
236
237                 assert(get_irn_mode(copy) != mode_X);
238
239                 arity = get_irn_arity(copy);
240                 for (i = 0; i < arity; ++i) {
241                         ir_node *pred     = get_irn_n(copy, i);
242                         ir_node *new_pred;
243
244                         if (get_nodes_block(pred) != block)
245                                 continue;
246
247                         if (get_irn_visited(pred) >= env->visited_nr) {
248                                 new_pred = get_irn_link(pred);
249                         } else {
250                                 new_pred = copy_and_fix_node(env, block, copy_block, j, pred);
251                         }
252                         DB((dbg, LEVEL_2, ">> Set Pred of %+F to %+F\n", copy, new_pred));
253                         set_irn_n(copy, i, new_pred);
254                 }
255         }
256
257         set_irn_link(node, copy);
258         set_irn_visited(node, env->visited_nr);
259
260         return copy;
261 }
262
263 static void copy_and_fix(const jumpthreading_env_t *env, ir_node *block,
264                          ir_node *copy_block, int j)
265 {
266         const ir_edge_t *edge;
267
268         /* Look at all nodes in the cond_block and copy them into pred */
269         foreach_out_edge(block, edge) {
270                 ir_node *node = get_edge_src_irn(edge);
271                 ir_node *copy;
272                 ir_mode *mode;
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                 mode = get_irn_mode(node);
329                 if (mode == mode_X || is_Cond(node))
330                         continue;
331 #ifdef AVOID_PHIB
332                 if (mode == mode_b)
333                         continue;
334 #endif
335
336                 DB((dbg, LEVEL_2, ">> Fixing users of %+F\n", node));
337
338                 copy_node = get_irn_link(node);
339                 construct_ssa(block, node, copy_block, copy_node);
340         }
341 }
342
343 /**
344  * returns whether the cmp evaluates to true or false, or can't be evaluated!
345  * 1: true, 0: false, -1: can't evaluate
346  *
347  * @param pnc       the compare mode of the Compare
348  * @param tv_left   the left tarval
349  * @param tv_right  the right tarval
350  */
351 static int eval_cmp_tv(pn_Cmp pnc, tarval *tv_left, tarval *tv_right)
352 {
353         pn_Cmp cmp_result = tarval_cmp(tv_left, tv_right);
354
355         /* does the compare evaluate to true? */
356         if (cmp_result == pn_Cmp_False)
357                 return -1;
358         if ((cmp_result & pnc) != cmp_result)
359                 return 0;
360
361         return 1;
362 }
363
364 /**
365  * returns whether the cmp evaluates to true or false according to vrp
366  * information , or can't be evaluated!
367  * 1: true, 0: false, -1: can't evaluate
368  *
369  * @param pnc       the compare mode of the Compare
370  * @param left   the left node
371  * @param right  the right node
372  */
373 static int eval_cmp_vrp(pn_Cmp pnc, ir_node *left, ir_node *right)
374 {
375         pn_Cmp cmp_result = vrp_cmp(left, right);
376         /* does the compare evaluate to true? */
377         if (cmp_result == pn_Cmp_False) {
378                 return -1;
379         }
380         if ((cmp_result & pnc) != cmp_result) {
381                 if ((cmp_result & pnc) != 0) {
382                         return -1;
383                 }
384                 return 0;
385         }
386         return 1;
387 }
388 /**
389  * returns whether the cmp evaluates to true or false, or can't be evaluated!
390  * 1: true, 0: false, -1: can't evaluate
391  *
392  * @param env      the environment
393  * @param cand     the candidate node, either a Const or a Confirm
394  */
395 static int eval_cmp(jumpthreading_env_t *env, ir_node *cand)
396 {
397         if (is_Const(cand)) {
398                 tarval *tv_cand   = get_Const_tarval(cand);
399                 tarval *tv_cmp    = get_Const_tarval(env->cnst);
400
401                 return eval_cmp_tv(env->pnc, tv_cand, tv_cmp);
402         } else { /* a Confirm */
403                 tarval *res = computed_value_Cmp_Confirm(env->cmp, cand, env->cnst, env->pnc);
404
405                 if (res == tarval_bad)
406                         return -1;
407                 return res == tarval_b_true;
408         }
409 }
410
411 /**
412  * Check for Const or Confirm with Const.
413  */
414 static int is_Const_or_Confirm(const ir_node *node)
415 {
416         if (is_Confirm(node))
417                 node = get_Confirm_bound(node);
418         return is_Const(node);
419 }
420
421 /**
422  * get the tarval of a Const or Confirm with
423  */
424 static tarval *get_Const_or_Confirm_tarval(const ir_node *node)
425 {
426         if (is_Confirm(node)) {
427                 if (get_Confirm_bound(node))
428                         node = get_Confirm_bound(node);
429         }
430         return get_Const_tarval(node);
431 }
432
433 static ir_node *find_const_or_confirm(jumpthreading_env_t *env, ir_node *jump,
434                                       ir_node *value)
435 {
436         ir_node *block = get_nodes_block(jump);
437
438         if (irn_visited_else_mark(value))
439                 return NULL;
440
441         if (is_Const_or_Confirm(value)) {
442                 if (eval_cmp(env, value) <= 0) {
443                         return NULL;
444                 }
445
446                 DB((
447                         dbg, LEVEL_1,
448                         "> Found jump threading candidate %+F->%+F\n",
449                         env->true_block, block
450                 ));
451
452                 /* adjust true_block to point directly towards our jump */
453                 add_pred(env->true_block, jump);
454
455                 split_critical_edge(env->true_block, 0);
456
457                 /* we need a bigger visited nr when going back */
458                 env->visited_nr++;
459
460                 return block;
461         }
462
463         if (is_Phi(value)) {
464                 int i, arity;
465
466                 /* the Phi has to be in the same Block as the Jmp */
467                 if (get_nodes_block(value) != block) {
468                         return NULL;
469                 }
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                 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                 split_critical_edge(env->true_block, 0);
522
523                 /* we need a bigger visited nr when going back */
524                 env->visited_nr++;
525
526                 return block;
527         }
528         if (is_Phi(value)) {
529                 int i, arity;
530
531                 /* the Phi has to be in the same Block as the Jmp */
532                 if (get_nodes_block(value) != block)
533                         return NULL;
534
535                 arity = get_irn_arity(value);
536                 for (i = 0; i < arity; ++i) {
537                         ir_node *copy_block;
538                         ir_node *phi_pred = get_Phi_pred(value, i);
539                         ir_node *cfgpred  = get_Block_cfgpred(block, i);
540
541                         copy_block = find_candidate(env, cfgpred, phi_pred);
542                         if (copy_block == NULL)
543                                 continue;
544
545                         /* copy duplicated nodes in copy_block and fix SSA */
546                         copy_and_fix(env, block, copy_block, i);
547
548                         if (copy_block == get_nodes_block(cfgpred)) {
549                                 env->cnst_pred = block;
550                                 env->cnst_pos  = i;
551                         }
552
553                         /* return now as we can't process more possibilities in 1 run */
554                         return copy_block;
555                 }
556         }
557         if (is_Proj(value)) {
558                 ir_node *left;
559                 ir_node *right;
560                 int      pnc;
561                 ir_node *cmp = get_Proj_pred(value);
562                 if (!is_Cmp(cmp))
563                         return NULL;
564
565                 left  = get_Cmp_left(cmp);
566                 right = get_Cmp_right(cmp);
567                 pnc   = get_Proj_proj(value);
568
569                 /* we assume that the constant is on the right side, swap left/right
570                  * if needed */
571                 if (is_Const(left)) {
572                         ir_node *t = left;
573                         left       = right;
574                         right      = t;
575
576                         pnc        = get_inversed_pnc(pnc);
577                 }
578
579                 if (!is_Const(right))
580                         return 0;
581
582                 if (get_nodes_block(left) != block) {
583                         return 0;
584                 }
585
586                 /* negate condition when we're looking for the false block */
587                 if (env->tv == tarval_b_false) {
588                         pnc = get_negated_pnc(pnc, get_irn_mode(right));
589                 }
590
591                 /* (recursively) look if a pred of a Phi is a constant or a Confirm */
592                 env->cmp  = cmp;
593                 env->pnc  = pnc;
594                 env->cnst = right;
595
596                 return find_const_or_confirm(env, jump, left);
597         }
598
599         return NULL;
600 }
601
602 /**
603  * Block-walker: searches for the following construct
604  *
605  *  Const or Phi with constants
606  *           |
607  *          Cmp
608  *           |
609  *         Cond
610  *          /
611  *       ProjX
612  *        /
613  *     Block
614  */
615 static void thread_jumps(ir_node* block, void* data)
616 {
617         jumpthreading_env_t env;
618         int *changed = data;
619         ir_node *selector;
620         ir_node *projx;
621         ir_node *cond;
622         ir_node *copy_block;
623         int      selector_evaluated;
624         const ir_edge_t *edge, *next;
625         ir_node *bad;
626         size_t   cnst_pos;
627
628         if (get_Block_n_cfgpreds(block) != 1)
629                 return;
630
631         projx = get_Block_cfgpred(block, 0);
632         if (!is_Proj(projx))
633                 return;
634         assert(get_irn_mode(projx) == mode_X);
635
636         cond = get_Proj_pred(projx);
637         if (!is_Cond(cond))
638                 return;
639
640         selector = get_Cond_selector(cond);
641         /* TODO handle switch Conds */
642         if (get_irn_mode(selector) != mode_b)
643                 return;
644
645         /* handle cases that can be immediately evaluated */
646         selector_evaluated = -1;
647         if (is_Proj(selector)) {
648                 ir_node *cmp = get_Proj_pred(selector);
649                 if (is_Cmp(cmp)) {
650                         ir_node *left  = get_Cmp_left(cmp);
651                         ir_node *right = get_Cmp_right(cmp);
652                         if (is_Const(left) && is_Const(right)) {
653                                 int     pnc      = get_Proj_proj(selector);
654                                 tarval *tv_left  = get_Const_tarval(left);
655                                 tarval *tv_right = get_Const_tarval(right);
656
657                                 selector_evaluated = eval_cmp_tv(pnc, tv_left, tv_right);
658                         }
659                         if (selector_evaluated < 0) {
660                                 /* This is only the case if the predecessor nodes are not
661                                  * constant or the comparison could not be evaluated.
662                                  * Try with VRP information now.
663                                  */
664                                 int pnc = get_Proj_proj(selector);
665
666                                 selector_evaluated = eval_cmp_vrp(pnc, left, right);
667                         }
668                 }
669         } else if (is_Const_or_Confirm(selector)) {
670                 tarval *tv = get_Const_or_Confirm_tarval(selector);
671                 if (tv == tarval_b_true) {
672                         selector_evaluated = 1;
673                 } else {
674                         assert(tv == tarval_b_false);
675                         selector_evaluated = 0;
676                 }
677         }
678
679         env.cnst_pred = NULL;
680         if (get_Proj_proj(projx) == pn_Cond_false) {
681                 env.tv = tarval_b_false;
682                 if (selector_evaluated >= 0)
683                         selector_evaluated = !selector_evaluated;
684         } else {
685                 env.tv = tarval_b_true;
686         }
687
688         if (selector_evaluated == 0) {
689                 bad = new_Bad();
690                 exchange(projx, bad);
691                 *changed = 1;
692                 return;
693         } else if (selector_evaluated == 1) {
694                 dbg_info *dbgi = get_irn_dbg_info(selector);
695                 ir_node  *jmp  = new_rd_Jmp(dbgi, get_nodes_block(projx));
696                 DBG_OPT_JUMPTHREADING(projx, jmp);
697                 exchange(projx, jmp);
698                 *changed = 1;
699                 return;
700         }
701
702         /* (recursively) look if a pred of a Phi is a constant or a Confirm */
703         env.true_block = block;
704         inc_irg_visited(current_ir_graph);
705         env.visited_nr = get_irg_visited(current_ir_graph);
706
707         copy_block = find_candidate(&env, projx, selector);
708         if (copy_block == NULL)
709                 return;
710
711         /* we have to remove the edge towards the pred as the pred now
712          * jumps into the true_block. We also have to shorten Phis
713          * in our block because of this */
714         bad      = new_Bad();
715         cnst_pos = env.cnst_pos;
716
717         /* shorten Phis */
718         foreach_out_edge_safe(env.cnst_pred, edge, next) {
719                 ir_node *node = get_edge_src_irn(edge);
720
721                 if (is_Phi(node))
722                         set_Phi_pred(node, cnst_pos, bad);
723         }
724
725         set_Block_cfgpred(env.cnst_pred, cnst_pos, bad);
726
727         /* the graph is changed now */
728         *changed = 1;
729 }
730
731 void opt_jumpthreading(ir_graph* irg)
732 {
733         int changed, rerun;
734
735         FIRM_DBG_REGISTER(dbg, "firm.opt.jumpthreading");
736
737         DB((dbg, LEVEL_1, "===> Performing jumpthreading on %+F\n", irg));
738
739         remove_critical_cf_edges(irg);
740
741         edges_assure(irg);
742         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_IRN_VISITED);
743
744         changed = 0;
745         do {
746                 rerun = 0;
747                 irg_block_walk_graph(irg, thread_jumps, NULL, &rerun);
748                 changed |= rerun;
749         } while (rerun);
750
751         ir_free_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_IRN_VISITED);
752
753         if (changed) {
754                 /* control flow changed, some blocks may become dead */
755                 set_irg_outs_inconsistent(irg);
756                 set_irg_doms_inconsistent(irg);
757                 set_irg_extblk_inconsistent(irg);
758                 set_irg_loopinfo_inconsistent(irg);
759                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
760
761                 /* Dead code might be created. Optimize it away as it is dangerous
762                  * to call optimize_df() an dead code. */
763                 optimize_cf(irg);
764         }
765 }
766
767 /* Creates an ir_graph pass for opt_jumpthreading. */
768 ir_graph_pass_t *opt_jumpthreading_pass(const char *name)
769 {
770         return def_graph_pass(name ? name : "jumpthreading", opt_jumpthreading);
771 }  /* opt_jumpthreading_pass */