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