bestabs: move stabs but not backend specific text0: code into stabs
[libfirm] / ir / opt / opt_osr.c
1 /*
2  * Copyright (C) 1995-2011 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   Operator Strength Reduction.
23  * @date    12.5.2006
24  * @author  Michael Beck
25  * @version $Id$
26  * @brief
27  *  Implementation of the Operator Strength Reduction algorithm
28  *  by Keith D. Cooper, L. Taylor Simpson, Christopher A. Vick.
29  *  Extended version.
30  */
31 #include "config.h"
32
33 #include "adt/pdeq.h"
34 #include "iroptimize.h"
35 #include "irgraph.h"
36 #include "ircons.h"
37 #include "irop_t.h"
38 #include "irdom.h"
39 #include "irgmod.h"
40 #include "irflag_t.h"
41 #include "irgwalk.h"
42 #include "irouts.h"
43 #include "iredges.h"
44 #include "debug.h"
45 #include "obst.h"
46 #include "set.h"
47 #include "tv.h"
48 #include "hashptr.h"
49 #include "irtools.h"
50 #include "irloop_t.h"
51 #include "array.h"
52 #include "firmstat.h"
53 #include "error.h"
54 #include "irpass_t.h"
55
56 /** The debug handle. */
57 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
58
59 /** A scc. */
60 typedef struct scc {
61         ir_node   *head; /**< the head of the list */
62         ir_tarval *init; /**< the init value iff only one exists. */
63         ir_tarval *incr; /**< the induction variable increment if only a single const exists. */
64         unsigned   code; /**< == iro_Add if +incr, iro_Sub if -incr, 0 if not analysed, iro_Bad else */
65 } scc;
66
67 /** A node entry */
68 typedef struct node_entry {
69         unsigned DFSnum;    /**< the DFS number of this node */
70         unsigned low;       /**< the low number of this node */
71         ir_node  *header;   /**< the header of this node */
72         int      in_stack;  /**< flag, set if the node is on the stack */
73         ir_node  *next;     /**< link to the next node the the same scc */
74         scc      *pscc;     /**< the scc of this node */
75         unsigned POnum;     /**< the post order number for blocks */
76 } node_entry;
77
78 /** The environment. */
79 typedef struct iv_env {
80         struct obstack obst;    /**< an obstack for allocations */
81         ir_node  **stack;       /**< the node stack */
82         size_t   tos;           /**< tos index */
83         unsigned nextDFSnum;    /**< the current DFS number */
84         unsigned POnum;         /**< current post order number */
85         set      *quad_map;     /**< a map from (op, iv, rc) to node */
86         set      *lftr_edges;   /**< the set of lftr edges */
87         unsigned replaced;      /**< number of replaced ops */
88         unsigned lftr_replaced; /**< number of applied linear function test replacements */
89         unsigned osr_flags;     /**< additional flags steering the transformation */
90         unsigned need_postpass; /**< set, if a post pass is needed to fix Add and Sub nodes */
91         /** Function called to process a SCC. */
92         void (*process_scc)(scc *pscc, struct iv_env *env);
93 } iv_env;
94
95 /**
96  * An entry in the (op, node, node) -> node map.
97  */
98 typedef struct quadruple_t {
99         unsigned   code; /**< the opcode of the reduced operation */
100         ir_node   *op1;  /**< the first operand the reduced operation */
101         ir_node   *op2;  /**< the second operand of the reduced operation */
102
103         ir_node   *res; /**< the reduced operation */
104 } quadruple_t;
105
106 /**
107  * A LFTR edge.
108  */
109 typedef struct LFTR_edge {
110         ir_node   *src;   /**< the source node */
111         ir_node   *dst;   /**< the destination node */
112         unsigned  code;   /**< the opcode that must be applied */
113         ir_node   *rc;    /**< the region const that must be applied */
114 } LFTR_edge;
115
116 /* forward */
117 static ir_node *reduce(ir_node *orig, ir_node *iv, ir_node *rc, iv_env *env);
118
119 /**
120  * Compare two LFTR edges.
121  */
122 static int LFTR_cmp(const void *e1, const void *e2, size_t size)
123 {
124         const LFTR_edge *l1 = (const LFTR_edge*)e1;
125         const LFTR_edge *l2 = (const LFTR_edge*)e2;
126         (void) size;
127
128         return l1->src != l2->src;
129 }  /* LFTR_cmp */
130
131 /**
132  * Find a LFTR edge.
133  *
134  * @param src  the source node of the transition
135  */
136 static LFTR_edge *LFTR_find(ir_node *src, iv_env *env)
137 {
138         LFTR_edge key;
139
140         key.src  = src;
141
142         return (LFTR_edge*)set_find(env->lftr_edges, &key, sizeof(key), HASH_PTR(src));
143 }  /* LFTR_find */
144
145 /**
146  * Add a LFTR edge.
147  *
148  * @param src   the source node of the edge
149  * @param dst   the destination node of the edge
150  * @param code  the opcode of the transformed transition
151  * @param rc    the region const used in the transition
152  * @param env   the environment
153  */
154 static void LFTR_add(ir_node *src, ir_node *dst, unsigned code, ir_node *rc, iv_env *env)
155 {
156         LFTR_edge key;
157
158         key.src  = src;
159         key.dst  = dst;
160         key.code = code;
161         key.rc   = rc;
162
163         /*
164          * There might be more than one edge here. This is rather bad
165          * because we currently store only one.
166          */
167         set_insert(env->lftr_edges, &key, sizeof(key), HASH_PTR(src));
168 }  /* LFTR_add */
169
170 /**
171  * Gets the node_entry of a node.
172  *
173  * @param irn  the node
174  * @param env  the environment
175  */
176 static node_entry *get_irn_ne(ir_node *irn, iv_env *env)
177 {
178         node_entry *e = (node_entry*)get_irn_link(irn);
179
180         if (e == NULL) {
181                 e = OALLOCZ(&env->obst, node_entry);
182                 set_irn_link(irn, e);
183         }
184         return e;
185 }  /* get_irn_ne */
186
187 /**
188  * Gets the scc from an induction variable.
189  *
190  * @param iv   any node of the induction variable
191  * @param env  the environment
192  */
193 static scc *get_iv_scc(ir_node *iv, iv_env *env)
194 {
195         node_entry *e = get_irn_ne(iv, env);
196         return e->pscc;
197 }  /* get_iv_scc */
198
199 /**
200  * Check if irn is an IV.
201  *
202  * @param irn  the node to check
203  * @param env  the environment
204  *
205  * @returns the header if it is one, NULL else
206  */
207 static ir_node *is_iv(ir_node *irn, iv_env *env)
208 {
209         return get_irn_ne(irn, env)->header;
210 }  /* is_iv */
211
212 /**
213  * Check if irn is a region constant.
214  * The block or irn must strictly dominate the header block.
215  *
216  * @param irn           the node to check
217  * @param header_block  the header block of the induction variable
218  */
219 static int is_rc(ir_node *irn, ir_node *header_block)
220 {
221         ir_node *block = get_nodes_block(irn);
222
223         return (block != header_block) && block_dominates(block, header_block);
224 }  /* is_rc */
225
226 /**
227  * Set compare function for the quad set.
228  */
229 static int quad_cmp(const void *e1, const void *e2, size_t size)
230 {
231         const quadruple_t *c1 = (const quadruple_t*)e1;
232         const quadruple_t *c2 = (const quadruple_t*)e2;
233         (void) size;
234
235         return c1->code != c2->code || c1->op1 != c2->op1 || c1->op2 != c2->op2;
236 }  /* quad_cmp */
237
238 /**
239  * Check if an reduced operation was already calculated.
240  *
241  * @param code  the opcode of the operation
242  * @param op1   the first operand of the operation
243  * @param op2   the second operand of the operation
244  * @param env   the environment
245  *
246  * @return the already reduced node or NULL if this operation is not yet reduced
247  */
248 static ir_node *search(unsigned code, ir_node *op1, ir_node *op2, iv_env *env)
249 {
250         quadruple_t key, *entry;
251
252         key.code = code;
253         key.op1 = op1;
254         key.op2 = op2;
255
256         entry = (quadruple_t*)set_find(env->quad_map, &key, sizeof(key),
257                                        (code * 9) ^ HASH_PTR(op1) ^HASH_PTR(op2));
258         if (entry)
259                 return entry->res;
260         return NULL;
261 }  /* search */
262
263 /**
264  * Add an reduced operation.
265  *
266  * @param code    the opcode of the operation
267  * @param op1     the first operand of the operation
268  * @param op2     the second operand of the operation
269  * @param result  the result of the reduced operation
270  * @param env     the environment
271  */
272 static void add(unsigned code, ir_node *op1, ir_node *op2, ir_node *result, iv_env *env)
273 {
274         quadruple_t key;
275
276         key.code = code;
277         key.op1  = op1;
278         key.op2  = op2;
279         key.res  = result;
280
281         set_insert(env->quad_map, &key, sizeof(key),
282                    (code * 9) ^ HASH_PTR(op1) ^HASH_PTR(op2));
283 }  /* add */
284
285 /**
286  * Find a location where to place a bin-op whose operands are in
287  * block1 and block2.
288  *
289  * @param block1  the block of the first operand
290  * @param block2  the block of the second operand
291  *
292  * Note that we know here that such a place must exists. Moreover, this means
293  * that either block1 dominates block2 or vice versa. So, just return
294  * the "smaller" one.
295  */
296 static ir_node *find_location(ir_node *block1, ir_node *block2)
297 {
298         if (block_dominates(block1, block2))
299                 return block2;
300         assert(block_dominates(block2, block1));
301         return block1;
302 }  /* find_location */
303
304 /**
305  * Create a node that executes an op1 code op1 operation.
306  *
307  * @param code   the opcode to execute
308  * @param db     debug info to add to the new node
309  * @param op1    the first operand
310  * @param op2    the second operand
311  * @param mode   the mode of the new operation
312  *
313  * @return the newly created node
314  */
315 static ir_node *do_apply(unsigned code, dbg_info *db, ir_node *op1, ir_node *op2, ir_mode *mode)
316 {
317         ir_node *result;
318         ir_node *block = find_location(get_nodes_block(op1), get_nodes_block(op2));
319
320         switch (code) {
321         case iro_Mul:
322                 result = new_rd_Mul(db, block, op1, op2, mode);
323                 break;
324         case iro_Add:
325                 result = new_rd_Add(db, block, op1, op2, mode);
326                 break;
327         case iro_Sub:
328                 result = new_rd_Sub(db, block, op1, op2, mode);
329                 break;
330         default:
331                 panic("Unsupported opcode");
332         }
333         return result;
334 }  /* do_apply */
335
336 /**
337  * The Apply operation.
338  *
339  * @param orig   the node that represent the original operation and determines
340  *               the opcode, debug-info and mode of a newly created one
341  * @param op1    the first operand
342  * @param op2    the second operand
343  * @param env    the environment
344  *
345  * @return the newly created node
346  */
347 static ir_node *apply(ir_node *header, ir_node *orig, ir_node *op1, ir_node *op2, iv_env *env)
348 {
349         unsigned code = get_irn_opcode(orig);
350         ir_node *result = search(code, op1, op2, env);
351
352         if (result == NULL) {
353                 dbg_info *db = get_irn_dbg_info(orig);
354                 ir_node *op1_header = get_irn_ne(op1, env)->header;
355                 ir_node *op2_header = get_irn_ne(op2, env)->header;
356
357                 if (op1_header == header && is_rc(op2, op1_header)) {
358                         result = reduce(orig, op1, op2, env);
359                 }
360                 else if (op2_header == header && is_rc(op1, op2_header)) {
361                         result = reduce(orig, op2, op1, env);
362                 }
363                 else {
364                         result = do_apply(code, db, op1, op2, get_irn_mode(orig));
365                         get_irn_ne(result, env)->header = NULL;
366                 }
367         }
368         return result;
369 }  /* apply */
370
371 /**
372  * The Reduce operation.
373  *
374  * @param orig   the node that represent the original operation and determines
375  *               the opcode, debug-info and mode of a newly created one
376  * @param iv     the induction variable
377  * @param rc     the region constant
378  * @param env    the environment
379  *
380  * @return the reduced node
381  */
382 static ir_node *reduce(ir_node *orig, ir_node *iv, ir_node *rc, iv_env *env)
383 {
384         unsigned code = get_irn_opcode(orig);
385         ir_node *result = search(code, iv, rc, env);
386
387         /* check if we have already done this operation on the iv */
388         if (result == NULL) {
389                 node_entry *e, *iv_e;
390                 int i;
391                 ir_mode *mode = get_irn_mode(orig);
392
393                 result = exact_copy(iv);
394
395                 if (get_irn_mode(result) != mode) {
396                         /*
397                          * Beware: we must always create a new induction variable with the same mode
398                          * as the node we are replacing. Especially this means the mode might be changed
399                          * from P to I and back. This is always possible, because we have only Phi, Add
400                          * and Sub nodes.
401                          * However, this might lead to AddIs(Iu,Is) which we must fix. The best way to do this
402                          * seems to be a post-pass, or we might end with useless Conv's.
403                          */
404                         set_irn_mode(result, mode);
405                         env->need_postpass = 1;
406                 }
407                 add(code, iv, rc, result, env);
408                 DB((dbg, LEVEL_3, "   Created new %+F for %+F (%s %+F)\n", result, iv,
409                         get_irn_opname(orig), rc));
410
411                 iv_e = get_irn_ne(iv, env);
412                 e    = get_irn_ne(result, env);
413                 e->header = iv_e->header;
414
415                 /* create the LFTR edge */
416                 LFTR_add(iv, result, code, rc, env);
417
418                 for (i = get_irn_arity(result) - 1; i >= 0; --i) {
419                         ir_node *o = get_irn_n(result, i);
420
421                         e = get_irn_ne(o, env);
422                         if (e->header == iv_e->header)
423                                 o = reduce(orig, o, rc, env);
424                         else if (is_Phi(result) || code == iro_Mul)
425                                 o = apply(iv_e->header, orig, o, rc, env);
426                         set_irn_n(result, i, o);
427                 }
428         } else {
429                 DB((dbg, LEVEL_3, "   Already Created %+F for %+F (%s %+F)\n", result, iv,
430                         get_irn_opname(orig), rc));
431         }
432         return result;
433 }  /* reduce */
434
435 /**
436  * Update the scc for a newly created IV.
437  */
438 static void update_scc(ir_node *iv, node_entry *e, iv_env *env)
439 {
440         scc     *pscc   = e->pscc;
441         ir_node *header = e->header;
442         waitq    *wq = new_waitq();
443
444         DB((dbg, LEVEL_2, "  Creating SCC for new an induction variable:\n  "));
445         pscc->head = NULL;
446         waitq_put(wq, iv);
447         do {
448                 ir_node    *irn = (ir_node*)waitq_get(wq);
449                 node_entry *ne  = get_irn_ne(irn, env);
450                 int        i;
451
452                 ne->pscc   = pscc;
453                 ne->next   = pscc->head;
454                 pscc->head = irn;
455                 DB((dbg, LEVEL_2, " %+F,", irn));
456
457                 for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
458                         ir_node    *pred = get_irn_n(irn, i);
459                         node_entry *pe   = get_irn_ne(pred, env);
460
461                         if (pe->header == header && pe->pscc == NULL) {
462                                 /* set the pscc here to ensure that the node is NOT enqueued another time */
463                                 pe->pscc = pscc;
464                                 waitq_put(wq, pred);
465                         }
466                 }
467         } while (! waitq_empty(wq));
468         del_waitq(wq);
469         DB((dbg, LEVEL_2, "\n"));
470 }  /* update_scc */
471
472 /**
473  * The Replace operation. We found a node representing iv (+,-,*) rc
474  * that can be removed by replacing the induction variable iv by a new
475  * one that 'applies' the operation 'irn'.
476  *
477  * @param irn   the node that will be replaced
478  * @param iv    the induction variable
479  * @param rc    the region constant
480  * @param env   the environment
481  */
482 static int replace(ir_node *irn, ir_node *iv, ir_node *rc, iv_env *env)
483 {
484         ir_node *result;
485
486         DB((dbg, LEVEL_2, "  Replacing %+F\n", irn));
487
488         result = reduce(irn, iv, rc, env);
489         if (result != irn) {
490                 node_entry *e;
491
492                 hook_strength_red(get_irn_irg(irn), irn);
493                 exchange(irn, result);
494                 e = get_irn_ne(result, env);
495                 if (e->pscc == NULL) {
496                         e->pscc = OALLOCZ(&env->obst, scc);
497                         update_scc(result, e, env);
498                 }
499                 ++env->replaced;
500                 return 1;
501         }
502         return 0;
503 }  /* replace */
504
505 #if 0
506 /**
507  * check if a given node is a mul with 2, 4, 8
508  */
509 static int is_x86_shift_const(ir_node *mul)
510 {
511         ir_node *rc;
512
513         if (! is_Mul(mul))
514                 return 0;
515
516         /* normalization put constants on the right side */
517         rc = get_Mul_right(mul);
518         if (is_Const(rc)) {
519                 ir_tarval *tv = get_Const_tarval(rc);
520
521                 if (tarval_is_long(tv)) {
522                         long value = get_tarval_long(tv);
523
524                         if (value == 2 || value == 4 || value == 8) {
525                                 /* do not reduce multiplications by 2, 4, 8 */
526                                 return 1;
527                         }
528                 }
529         }
530         return 0;
531 }  /* is_x86_shift_const */
532 #endif
533
534 /**
535  * Check if an IV represents a counter with constant limits.
536  *
537  * @param iv    any node of the induction variable
538  * @param env   the environment
539  */
540 static int is_counter_iv(ir_node *iv, iv_env *env)
541 {
542         node_entry *e         = get_irn_ne(iv, env);
543         scc        *pscc      = e->pscc;
544         ir_node    *have_init = NULL;
545         ir_node    *have_incr = NULL;
546         ir_opcode  code       = iro_Bad;
547         ir_node    *irn;
548
549         if (pscc->code != 0) {
550                 /* already analysed */
551                 return pscc->code != iro_Bad;
552         }
553
554         pscc->code = iro_Bad;
555         for (irn = pscc->head; irn != NULL; irn = e->next) {
556                 if (is_Add(irn)) {
557                         if (have_incr != NULL)
558                                 return 0;
559
560                         have_incr = get_Add_right(irn);
561                         if (! is_Const(have_incr)) {
562                                 have_incr = get_Add_left(irn);
563                                 if (! is_Const(have_incr))
564                                         return 0;
565                         }
566                         code = iro_Add;
567                 } else if (is_Sub(irn)) {
568                         if (have_incr != NULL)
569                                 return 0;
570
571                         have_incr = get_Sub_right(irn);
572                         if (! is_Const(have_incr))
573                                 return 0;
574                         code = iro_Sub;
575                 } else if (is_Phi(irn)) {
576                         int i;
577
578                         for (i = get_Phi_n_preds(irn) - 1; i >= 0; --i) {
579                                 ir_node    *pred = get_Phi_pred(irn, i);
580                                 node_entry *ne   = get_irn_ne(pred, env);
581
582                                 if (ne->header == e->header)
583                                         continue;
584                                 if (have_init != NULL)
585                                         return 0;
586                                 have_init = pred;
587                                 if (! is_Const(pred))
588                                         return 0;
589                         }
590                 } else
591                         return 0;
592                 e = get_irn_ne(irn, env);
593         }
594         pscc->init = get_Const_tarval(have_init);
595         pscc->incr = get_Const_tarval(have_incr);
596         pscc->code = code;
597         return code != iro_Bad;
598 }  /* is_counter_iv */
599
600 /**
601  * Check the users of an induction variable for register pressure.
602  *
603  * @param iv    any node of the induction variable
604  * @param env   the environment
605  *
606  * @return non-zero if the register pressure is estimated
607  *         to not increase, zero else
608  */
609 static int check_users_for_reg_pressure(ir_node *iv, iv_env *env)
610 {
611         ir_node    *irn, *header;
612         ir_node    *have_user = NULL;
613         ir_node    *have_cmp  = NULL;
614         node_entry *e         = get_irn_ne(iv, env);
615         scc        *pscc      = e->pscc;
616
617         header = e->header;
618         for (irn = pscc->head; irn != NULL; irn = e->next) {
619                 const ir_edge_t *edge;
620
621                 foreach_out_edge(irn, edge) {
622                         ir_node    *user = get_edge_src_irn(edge);
623                         node_entry *ne = get_irn_ne(user, env);
624
625                         if (e->header == ne->header) {
626                                 /* found user from the same IV */
627                                 continue;
628                         }
629                         if (is_Cmp(user)) {
630                                 if (have_cmp != NULL) {
631                                         /* more than one cmp, for now end here */
632                                         return 0;
633                                 }
634                                 have_cmp = user;
635                         } else {
636                                 /* user is a real user of the IV */
637                                 if (have_user != NULL) {
638                                         /* found the second user */
639                                         return 0;
640                                 }
641                                 have_user = user;
642                         }
643                 }
644                 e = get_irn_ne(irn, env);
645         }
646
647         if (have_user == NULL) {
648                 /* no user, ignore */
649                 return 1;
650         }
651
652         if (have_cmp == NULL) {
653                 /* fine, only one user, try to reduce */
654                 return 1;
655         }
656         /*
657          * We found one user AND at least one cmp.
658          * We should check here if we can transform the Cmp.
659          *
660          * For now our capabilities for doing linear function test
661          * are limited, so check if the iv has the right form: Only ONE
662          * Phi, only one Add/Sub with a Const.
663          */
664         if (! is_counter_iv(iv, env))
665                 return 0;
666
667         /*
668          * Ok, we have only one increment AND it is a Const, we might be able
669          * to do a linear function test replacement, so go on.
670          */
671         return 1;
672 }  /* check_users_for_reg_pressure */
673
674 /**
675  * Check if a node can be replaced (+, -, *).
676  *
677  * @param irn   the node to check
678  * @param env   the environment
679  *
680  * @return non-zero if irn should be Replace'd
681  */
682 static int check_replace(ir_node *irn, iv_env *env)
683 {
684         ir_node   *left, *right, *iv, *rc;
685         ir_op     *op  = get_irn_op(irn);
686         unsigned  code = get_op_code(op);
687         ir_node   *liv, *riv;
688
689         switch (code) {
690         case iro_Mul:
691         case iro_Add:
692         case iro_Sub:
693                 iv = rc = NULL;
694
695                 left  = get_binop_left(irn);
696                 right = get_binop_right(irn);
697
698                 liv = is_iv(left, env);
699                 riv = is_iv(right, env);
700                 if (liv && is_rc(right, liv)) {
701                         iv = left; rc = right;
702                 }
703                 else if (riv && is_op_commutative(op) &&
704                                     is_rc(left, riv)) {
705                         iv = right; rc = left;
706                 }
707
708                 if (iv) {
709                         if (env->osr_flags & osr_flag_keep_reg_pressure) {
710                                 if (! check_users_for_reg_pressure(iv, env))
711                                         return 0;
712                         }
713                         return replace(irn, iv, rc, env);
714                 }
715                 break;
716         default:
717                 break;
718         }
719         return 0;
720 }  /* check_replace */
721
722 /**
723  * Check which SCC's are induction variables.
724  *
725  * @param pscc  a SCC
726  * @param env   the environment
727  */
728 static void classify_iv(scc *pscc, iv_env *env)
729 {
730         ir_node *irn, *next, *header = NULL;
731         node_entry *b, *h = NULL;
732         int j, only_phi, num_outside;
733         ir_node *out_rc;
734
735         /* find the header block for this scc */
736         for (irn = pscc->head; irn; irn = next) {
737                 node_entry *e = (node_entry*)get_irn_link(irn);
738                 ir_node *block = get_nodes_block(irn);
739
740                 next = e->next;
741                 b = get_irn_ne(block, env);
742
743                 if (header) {
744                         if (h->POnum < b->POnum) {
745                                 header = block;
746                                 h      = b;
747                         }
748                 }
749                 else {
750                         header = block;
751                         h      = b;
752                 }
753         }
754
755         /* check if this scc contains only Phi, Add or Sub nodes */
756         only_phi    = 1;
757         num_outside = 0;
758         out_rc      = NULL;
759         for (irn = pscc->head; irn; irn = next) {
760                 node_entry *e = get_irn_ne(irn, env);
761
762                 next = e->next;
763                 switch (get_irn_opcode(irn)) {
764                 case iro_Add:
765                 case iro_Sub:
766                         only_phi = 0;
767                         /* fall through */
768                 case iro_Phi:
769                         for (j = get_irn_arity(irn) - 1; j >= 0; --j) {
770                                 ir_node *pred  = get_irn_n(irn, j);
771                                 node_entry *pe = get_irn_ne(pred, env);
772
773                                 if (pe->pscc != e->pscc) {
774                                         /* not in the same SCC, must be a region const */
775                                         if (! is_rc(pred, header)) {
776                                                 /* not an induction variable */
777                                                 goto fail;
778                                         }
779                                         if (! out_rc) {
780                                                 out_rc = pred;
781                                                 ++num_outside;
782                                         } else if (out_rc != pred) {
783                                                 ++num_outside;
784                                         }
785                                 }
786                         }
787                         break;
788                 default:
789                         /* not an induction variable */
790                         goto fail;
791                 }
792         }
793         /* found an induction variable */
794         DB((dbg, LEVEL_2, "  Found an induction variable:\n  "));
795         if (only_phi && num_outside == 1) {
796                 /* a phi cycle with only one real predecessor can be collapsed */
797                 DB((dbg, LEVEL_2, "  Found an USELESS Phi cycle:\n  "));
798
799                 for (irn = pscc->head; irn; irn = next) {
800                         node_entry *e = get_irn_ne(irn, env);
801                         next = e->next;
802                         e->header = NULL;
803                         exchange(irn, out_rc);
804                 }
805                 ++env->replaced;
806                 return;
807         }
808
809         /* set the header for every node in this scc */
810         for (irn = pscc->head; irn; irn = next) {
811                 node_entry *e = get_irn_ne(irn, env);
812                 e->header = header;
813                 next = e->next;
814                 DB((dbg, LEVEL_2, " %+F,", irn));
815         }
816         DB((dbg, LEVEL_2, "\n"));
817         return;
818
819 fail:
820         for (irn = pscc->head; irn; irn = next) {
821                 node_entry *e = get_irn_ne(irn, env);
822
823                 next = e->next;
824                 e->header = NULL;
825         }
826 }  /* classify_iv */
827
828 /**
829  * Process an SCC for the operator strength reduction.
830  *
831  * @param pscc  the SCC
832  * @param env   the environment
833  */
834 static void process_scc(scc *pscc, iv_env *env)
835 {
836         ir_node *head = pscc->head;
837         node_entry *e = (node_entry*)get_irn_link(head);
838
839 #ifdef DEBUG_libfirm
840         {
841                 ir_node *irn, *next;
842
843                 DB((dbg, LEVEL_4, " SCC at %p:\n ", pscc));
844                 for (irn = pscc->head; irn != NULL; irn = next) {
845                         node_entry *e = (node_entry*)get_irn_link(irn);
846
847                         next = e->next;
848
849                         DB((dbg, LEVEL_4, " %+F,", irn));
850                 }
851                 DB((dbg, LEVEL_4, "\n"));
852         }
853 #endif
854
855         if (e->next == NULL) {
856                 /* this SCC has only a single member */
857                 check_replace(head, env);
858         } else {
859                 classify_iv(pscc, env);
860         }
861 }  /* process_scc */
862
863 /**
864  * If an SCC is a Phi only cycle, remove it.
865  *
866  * @param pscc  an SCC that consists of Phi nodes only
867  * @param env   the environment
868  */
869 static void remove_phi_cycle(scc *pscc, iv_env *env)
870 {
871         ir_node *irn, *next;
872         int j;
873         ir_node *out_rc;
874
875         /* check if this scc contains only Phi, Add or Sub nodes */
876         out_rc      = NULL;
877         for (irn = pscc->head; irn; irn = next) {
878                 node_entry *e = get_irn_ne(irn, env);
879
880                 next = e->next;
881                 if (! is_Phi(irn))
882                         return;
883
884                 for (j = get_irn_arity(irn) - 1; j >= 0; --j) {
885                         ir_node *pred  = get_irn_n(irn, j);
886                         node_entry *pe = get_irn_ne(pred, env);
887
888                         if (pe->pscc != e->pscc) {
889                                 /* not in the same SCC, must be the only input */
890                                 if (! out_rc) {
891                                         out_rc = pred;
892                                 } else if (out_rc != pred) {
893                                         return;
894                                 }
895                         }
896                 }
897         }
898         /* found a Phi cycle */
899         DB((dbg, LEVEL_2, "  Found an USELESS Phi cycle:\n  "));
900
901         for (irn = pscc->head; irn; irn = next) {
902                 node_entry *e = get_irn_ne(irn, env);
903                 next = e->next;
904                 e->header = NULL;
905                 exchange(irn, out_rc);
906         }
907         ++env->replaced;
908 }  /* remove_phi_cycle */
909
910 /**
911  * Process a SCC for the Phi cycle remove.
912  *
913  * @param pscc  the SCC
914  * @param env   the environment
915  */
916 static void process_phi_only_scc(scc *pscc, iv_env *env)
917 {
918         ir_node *head = pscc->head;
919         node_entry *e = (node_entry*)get_irn_link(head);
920
921 #ifdef DEBUG_libfirm
922         {
923                 ir_node *irn, *next;
924
925                 DB((dbg, LEVEL_4, " SCC at %p:\n ", pscc));
926                 for (irn = pscc->head; irn; irn = next) {
927                         node_entry *e = (node_entry*)get_irn_link(irn);
928
929                         next = e->next;
930
931                         DB((dbg, LEVEL_4, " %+F,", irn));
932                 }
933                 DB((dbg, LEVEL_4, "\n"));
934         }
935 #endif
936
937         if (e->next != NULL)
938                 remove_phi_cycle(pscc, env);
939 }  /* process_phi_only_scc */
940
941
942 /**
943  * Push a node onto the stack.
944  *
945  * @param env   the environment
946  * @param n     the node to push
947  */
948 static void push(iv_env *env, ir_node *n)
949 {
950         node_entry *e;
951
952         if (env->tos == ARR_LEN(env->stack)) {
953                 size_t nlen = ARR_LEN(env->stack) * 2;
954                 ARR_RESIZE(ir_node *, env->stack, nlen);
955         }
956         env->stack[env->tos++] = n;
957         e = get_irn_ne(n, env);
958         e->in_stack = 1;
959 }  /* push */
960
961 /**
962  * Pop a node from the stack.
963  *
964  * @param env   the environment
965  *
966  * @return  The topmost node
967  */
968 static ir_node *pop(iv_env *env)
969 {
970         ir_node *n = env->stack[--env->tos];
971         node_entry *e = get_irn_ne(n, env);
972
973         e->in_stack = 0;
974         return n;
975 }  /* pop */
976
977 /**
978  * Do Tarjan's SCC algorithm and drive OSR.
979  *
980  * @param irn  start at this node
981  * @param env  the environment
982  */
983 static void dfs(ir_node *irn, iv_env *env)
984 {
985         int i, n;
986         node_entry *node = get_irn_ne(irn, env);
987
988         mark_irn_visited(irn);
989
990         /* do not put blocks into the scc */
991         if (is_Block(irn)) {
992                 n = get_irn_arity(irn);
993                 for (i = 0; i < n; ++i) {
994                         ir_node *pred = get_irn_n(irn, i);
995
996                         if (!irn_visited(pred))
997                                 dfs(pred, env);
998                 }
999         } else {
1000                 ir_node *block = get_nodes_block(irn);
1001
1002                 node->DFSnum = env->nextDFSnum++;
1003                 node->low    = node->DFSnum;
1004                 push(env, irn);
1005
1006                 /* handle the block */
1007                 if (!irn_visited(block))
1008                         dfs(block, env);
1009
1010                 n = get_irn_arity(irn);
1011                 for (i = 0; i < n; ++i) {
1012                         ir_node *pred = get_irn_n(irn, i);
1013                         node_entry *o = get_irn_ne(pred, env);
1014
1015                         if (!irn_visited(pred)) {
1016                                 dfs(pred, env);
1017                                 node->low = MIN(node->low, o->low);
1018                         }
1019                         if (o->DFSnum < node->DFSnum && o->in_stack)
1020                                 node->low = MIN(o->DFSnum, node->low);
1021                 }
1022                 if (node->low == node->DFSnum) {
1023                         scc *pscc = OALLOCZ(&env->obst, scc);
1024                         ir_node *x;
1025
1026                         do {
1027                                 node_entry *e;
1028
1029                                 x = pop(env);
1030                                 e = get_irn_ne(x, env);
1031                                 e->pscc    = pscc;
1032                                 e->next    = pscc->head;
1033                                 pscc->head = x;
1034                         } while (x != irn);
1035
1036                         env->process_scc(pscc, env);
1037                 }
1038         }
1039 }  /* dfs */
1040
1041 /**
1042  * Do the DFS by starting at the End node of a graph.
1043  *
1044  * @param irg  the graph to process
1045  * @param env  the environment
1046  */
1047 static void do_dfs(ir_graph *irg, iv_env *env)
1048 {
1049         ir_node  *end = get_irg_end(irg);
1050         int i;
1051
1052         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
1053
1054         inc_irg_visited(irg);
1055
1056         /* visit all visible nodes */
1057         dfs(end, env);
1058
1059         /* visit the keep-alives */
1060         for (i = get_End_n_keepalives(end) - 1; i >= 0; --i) {
1061                 ir_node *ka = get_End_keepalive(end, i);
1062
1063                 if (!irn_visited(ka))
1064                         dfs(ka, env);
1065         }
1066
1067         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
1068 }  /* do_dfs */
1069
1070 /**
1071  * Post-block-walker: assign the post-order number.
1072  */
1073 static void assign_po(ir_node *block, void *ctx)
1074 {
1075         iv_env *env = (iv_env*)ctx;
1076         node_entry *e = get_irn_ne(block, env);
1077
1078         e->POnum = env->POnum++;
1079 }  /* assign_po */
1080
1081 /**
1082  * Apply one LFTR edge operation.
1083  * Return NULL if the transformation cannot be done safely without
1084  * an Overflow.
1085  *
1086  * @param iv   the induction variable
1087  * @param rc   the constant that should be translated
1088  * @param e    the LFTR edge
1089  * @param env  the IV environment
1090  *
1091  * @return the translated region constant or NULL
1092  *         if the translation was not possible
1093  *
1094  * @note
1095  * In the current implementation only the last edge is stored, so
1096  * only one chain exists. That's why we might miss some opportunities.
1097  */
1098 static ir_node *applyOneEdge(ir_node *iv, ir_node *rc, LFTR_edge *e, iv_env *env)
1099 {
1100         if (env->osr_flags & osr_flag_lftr_with_ov_check) {
1101                 ir_tarval *tv_l, *tv_r, *tv, *tv_init, *tv_incr, *tv_end;
1102                 tarval_int_overflow_mode_t ovmode;
1103                 scc *pscc;
1104                 ir_graph *irg;
1105
1106                 if (! is_counter_iv(iv, env)) {
1107                         DB((dbg, LEVEL_4, " not counter IV"));
1108                         return NULL;
1109                 }
1110
1111                 /* overflow can only be decided for Consts */
1112                 if (! is_Const(e->rc)) {
1113                         if (e->code == iro_Add && mode_is_reference(get_irn_mode(e->rc))) {
1114                                 /* However we allow ONE Pointer Add, as pointer arithmetic with wrap
1115                                    around is undefined anyway */
1116                                 return do_apply(e->code, NULL, rc, e->rc, get_irn_mode(e->rc));
1117                         }
1118                         DB((dbg, LEVEL_4, " = UNKNOWN (%+F)", e->rc));
1119                         return NULL;
1120                 }
1121
1122                 tv_l = get_Const_tarval(rc);
1123                 tv_r = get_Const_tarval(e->rc);
1124
1125                 ovmode = tarval_get_integer_overflow_mode();
1126                 tarval_set_integer_overflow_mode(TV_OVERFLOW_BAD);
1127
1128                 pscc    = get_iv_scc(iv, env);
1129                 tv_incr = pscc->incr;
1130                 tv_init = pscc->init;
1131
1132                 /*
1133                  * Check that no overflow occurs:
1134                  * init must be transformed without overflow
1135                  * the new rc must be transformed without overflow
1136                  * rc +/- incr must be possible without overflow
1137                  */
1138                 switch (e->code) {
1139                 case iro_Mul:
1140                         tv      = tarval_mul(tv_l, tv_r);
1141                         tv_init = tarval_mul(tv_init, tv_r);
1142                         tv_incr = tarval_mul(tv_incr, tv_r);
1143                         DB((dbg, LEVEL_4, " * %+F", tv_r));
1144                         break;
1145                 case iro_Add:
1146                         tv      = tarval_add(tv_l, tv_r);
1147                         tv_init = tarval_add(tv_init, tv_r);
1148                         DB((dbg, LEVEL_4, " + %+F", tv_r));
1149                         break;
1150                 case iro_Sub:
1151                         tv      = tarval_sub(tv_l, tv_r, NULL);
1152                         tv_init = tarval_sub(tv_init, tv_r, NULL);
1153                         DB((dbg, LEVEL_4, " - %+F", tv_r));
1154                         break;
1155                 default:
1156                         panic("Unsupported opcode");
1157                 }
1158
1159                 if (pscc->code == iro_Add) {
1160                         tv_end = tarval_add(tv, tv_incr);
1161                 } else {
1162                         assert(pscc->code == iro_Sub);
1163                         tv_end = tarval_sub(tv, tv_incr, NULL);
1164                 }
1165
1166                 tarval_set_integer_overflow_mode(ovmode);
1167
1168                 if (tv == tarval_bad || tv_init == tarval_bad || tv_end == tarval_bad) {
1169                         DB((dbg, LEVEL_4, " = OVERFLOW"));
1170                         return NULL;
1171                 }
1172                 irg = get_irn_irg(iv);
1173                 return new_r_Const(irg, tv);
1174         }
1175         return do_apply(e->code, NULL, rc, e->rc, get_irn_mode(e->dst));
1176 }  /* applyOneEdge */
1177
1178 /**
1179  * Applies the operations represented by the LFTR edges to a
1180  * region constant and returns the value.
1181  * Return NULL if the transformation cannot be done safely without
1182  * an Overflow.
1183  *
1184  * @param pIV  points to the IV node that starts the LFTR edge chain
1185  *             after translation points to the new IV
1186  * @param rc   the region constant that should be translated
1187  * @param env  the IV environment
1188  *
1189  * @return the translated region constant or NULL
1190  *         if the translation was not possible
1191  */
1192 static ir_node *applyEdges(ir_node **pIV, ir_node *rc, iv_env *env)
1193 {
1194         ir_node *iv = *pIV;
1195         if (env->osr_flags & osr_flag_lftr_with_ov_check) {
1196                 /* overflow can only be decided for Consts */
1197                 if (! is_counter_iv(iv, env)) {
1198                         DB((dbg, LEVEL_4, "not counter IV\n", rc));
1199                         return NULL;
1200                 }
1201                 if (! is_Const(rc)) {
1202                         DB((dbg, LEVEL_4, " = UNKNOWN (%+F)\n", rc));
1203                         return NULL;
1204                 }
1205                 DB((dbg, LEVEL_4, "%+F", get_Const_tarval(rc)));
1206         }
1207
1208         for (; rc;) {
1209                 LFTR_edge *e = LFTR_find(iv, env);
1210                 if (e != NULL) {
1211                         rc = applyOneEdge(iv, rc, e, env);
1212                         iv = e->dst;
1213                 } else
1214                         break;
1215         }
1216         DB((dbg, LEVEL_3, "\n"));
1217         *pIV = iv;
1218         return rc;
1219 }  /* applyEdges */
1220
1221 /**
1222  * Walker, finds Cmp(iv, rc) or Cmp(rc, iv)
1223  * and tries to optimize them.
1224  */
1225 static void do_lftr(ir_node *cmp, void *ctx)
1226 {
1227         iv_env *env = (iv_env*)ctx;
1228         ir_node *left, *right, *liv, *riv;
1229         ir_node *iv, *rc;
1230         ir_node *nleft = NULL, *nright = NULL;
1231
1232         if (!is_Cmp(cmp))
1233                 return;
1234
1235         left  = get_Cmp_left(cmp);
1236         right = get_Cmp_right(cmp);
1237
1238         liv = is_iv(left, env);
1239         riv = is_iv(right, env);
1240         if (liv && is_rc(right, liv)) {
1241                 iv = left; rc = right;
1242
1243                 nright = applyEdges(&iv, rc, env);
1244                 nleft  = iv;
1245         }
1246         else if (riv && is_rc(left, riv)) {
1247                 iv = right; rc = left;
1248
1249                 nleft  = applyEdges(&iv, rc, env);
1250                 nright = iv;
1251         }
1252
1253         if (nleft && nright) {
1254                 DB((dbg, LEVEL_2, "  LFTR for %+F\n", cmp));
1255                 set_Cmp_left(cmp, nleft);
1256                 set_Cmp_right(cmp, nright);
1257                 ++env->lftr_replaced;
1258         }
1259 }  /* do_lftr */
1260
1261 /**
1262  * do linear function test replacement.
1263  *
1264  * @param irg   the graph that should be optimized
1265  * @param env   the IV environment
1266  */
1267 static void lftr(ir_graph *irg, iv_env *env)
1268 {
1269         irg_walk_graph(irg, NULL, do_lftr, env);
1270 }  /* lftr */
1271
1272 /**
1273  * Pre-walker: set all node links to NULL and fix the
1274  * block of Proj nodes.
1275  */
1276 static void clear_and_fix(ir_node *irn, void *env)
1277 {
1278         int *moved = (int*)env;
1279         set_irn_link(irn, NULL);
1280
1281         if (is_Proj(irn)) {
1282                 ir_node *pred       = get_Proj_pred(irn);
1283                 ir_node *pred_block = get_nodes_block(pred);
1284
1285                 if (get_nodes_block(irn) != pred_block) {
1286                         set_nodes_block(irn, pred_block);
1287                         *moved = 1;
1288                 }
1289         }
1290 }  /* clear_and_fix */
1291
1292
1293 /* Remove any Phi cycles with only one real input. */
1294 void remove_phi_cycles(ir_graph *irg)
1295 {
1296         iv_env env;
1297         int    projs_moved;
1298
1299         FIRM_DBG_REGISTER(dbg, "firm.opt.remove_phi");
1300
1301         DB((dbg, LEVEL_1, "Doing Phi cycle removement for %+F\n", irg));
1302
1303         obstack_init(&env.obst);
1304         env.stack         = NEW_ARR_F(ir_node *, 128);
1305         env.tos           = 0;
1306         env.nextDFSnum    = 0;
1307         env.POnum         = 0;
1308         env.quad_map      = NULL;
1309         env.lftr_edges    = NULL;
1310         env.replaced      = 0;
1311         env.lftr_replaced = 0;
1312         env.osr_flags     = 0;
1313         env.need_postpass = 0;
1314         env.process_scc   = process_phi_only_scc;
1315
1316         /* Clear all links and move Proj nodes into the
1317          * the same block as their predecessors.
1318          * This can improve the placement of new nodes.
1319          */
1320         projs_moved = 0;
1321         irg_walk_graph(irg, NULL, clear_and_fix, &projs_moved);
1322         if (projs_moved)
1323                 set_irg_outs_inconsistent(irg);
1324
1325         /* we need outs for calculating the post order */
1326         assure_irg_outs(irg);
1327
1328         /* calculate the post order number for blocks. */
1329         irg_out_block_walk(get_irg_start_block(irg), NULL, assign_po, &env);
1330
1331         /* calculate the SCC's and drive OSR. */
1332         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
1333         do_dfs(irg, &env);
1334         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
1335
1336         if (env.replaced) {
1337                 set_irg_outs_inconsistent(irg);
1338                 DB((dbg, LEVEL_1, "remove_phi_cycles: %u Cycles removed\n\n", env.replaced));
1339         }
1340
1341         DEL_ARR_F(env.stack);
1342         obstack_free(&env.obst, NULL);
1343 }  /* remove_phi_cycles */
1344
1345 ir_graph_pass_t *remove_phi_cycles_pass(const char *name)
1346 {
1347         return def_graph_pass(name ? name : "remove_phi_cycles", remove_phi_cycles);
1348 }  /* remove_phi_cycles_pass */
1349
1350 /**
1351  * Post-walker: fix Add and Sub nodes that where results of I<->P conversions.
1352  */
1353 static void fix_adds_and_subs(ir_node *irn, void *ctx)
1354 {
1355         (void) ctx;
1356
1357         if (is_Add(irn)) {
1358                 ir_mode *mode = get_irn_mode(irn);
1359
1360                 if (mode_is_int(mode)) {
1361                         ir_node *pred;
1362
1363                         pred = get_Add_left(irn);
1364                         if (get_irn_mode(pred) != mode) {
1365                                 ir_node *block = get_nodes_block(pred);
1366
1367                                 pred = new_r_Conv(block, pred, mode);
1368                                 set_Add_left(irn, pred);
1369                         }
1370                         pred = get_Add_right(irn);
1371                         if (get_irn_mode(pred) != mode) {
1372                                 ir_node *block = get_nodes_block(pred);
1373
1374                                 pred = new_r_Conv(block, pred, mode);
1375                                 set_Add_right(irn, pred);
1376                         }
1377                 }
1378         } else if (is_Sub(irn)) {
1379                 ir_mode *mode = get_irn_mode(irn);
1380
1381                 if (mode_is_int(mode)) {
1382                         ir_node *left   = get_Sub_left(irn);
1383                         ir_node *right  = get_Sub_right(irn);
1384                         ir_mode *l_mode = get_irn_mode(left);
1385                         ir_mode *r_mode = get_irn_mode(right);
1386
1387                         if (mode_is_int(l_mode) && mode_is_int(r_mode)) {
1388                                 if (l_mode != mode) {
1389                                         ir_node *block = get_nodes_block(left);
1390
1391                                         left = new_r_Conv(block, left, mode);
1392                                         set_Sub_left(irn, left);
1393                                 }
1394                                 if (r_mode != mode) {
1395                                         ir_node *block = get_nodes_block(right);
1396
1397                                         right = new_r_Conv(block, right, mode);
1398                                         set_Sub_right(irn, right);
1399                                 }
1400                         }
1401                 } else if (mode_is_reference(mode)) {
1402                         ir_node *left   = get_Sub_left(irn);
1403                         ir_node *right  = get_Sub_right(irn);
1404                         ir_mode *l_mode = get_irn_mode(left);
1405                         ir_mode *r_mode = get_irn_mode(right);
1406                         if (mode_is_int(l_mode)) {
1407                                 /* Usually, Sub(I*,P) is an error, hence the verifier rejects it.
1408                                  * However, it is correct in this case, so add Conv to make verifier happy. */
1409                                 ir_node *block = get_nodes_block(right);
1410                                 ir_node *lconv = new_r_Conv(block, left, r_mode);
1411                                 assert(mode_is_reference(r_mode));
1412                                 set_Sub_left(irn, lconv);
1413                         }
1414                 }
1415         }
1416 }  /* fix_adds_and_subs */
1417
1418 /* Performs Operator Strength Reduction for the passed graph. */
1419 void opt_osr(ir_graph *irg, unsigned flags)
1420 {
1421         iv_env   env;
1422         int      edges;
1423         int      projs_moved;
1424
1425         FIRM_DBG_REGISTER(dbg, "firm.opt.osr");
1426
1427         DB((dbg, LEVEL_1, "Doing Operator Strength Reduction for %+F\n", irg));
1428
1429         obstack_init(&env.obst);
1430         env.stack         = NEW_ARR_F(ir_node *, 128);
1431         env.tos           = 0;
1432         env.nextDFSnum    = 0;
1433         env.POnum         = 0;
1434         env.quad_map      = new_set(quad_cmp, 64);
1435         env.lftr_edges    = new_set(LFTR_cmp, 64);
1436         env.replaced      = 0;
1437         env.lftr_replaced = 0;
1438         env.osr_flags     = flags;
1439         env.need_postpass = 0;
1440         env.process_scc   = process_scc;
1441
1442         /* Clear all links and move Proj nodes into the
1443          * the same block as its predecessors.
1444          * This can improve the placement of new nodes.
1445          */
1446         projs_moved = 0;
1447         irg_walk_graph(irg, NULL, clear_and_fix, &projs_moved);
1448         if (projs_moved)
1449                 set_irg_outs_inconsistent(irg);
1450
1451         /* we need dominance */
1452         assure_doms(irg);
1453
1454         edges = edges_assure(irg);
1455
1456         /* calculate the post order number for blocks by walking the out edges. */
1457         assure_irg_outs(irg);
1458         irg_block_edges_walk(get_irg_start_block(irg), NULL, assign_po, &env);
1459
1460         /* calculate the SCC's and drive OSR. */
1461         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
1462         do_dfs(irg, &env);
1463
1464         if (env.replaced) {
1465                 if (env.need_postpass)
1466                         irg_walk_graph(irg, NULL, fix_adds_and_subs, &env);
1467
1468                 /* try linear function test replacements */
1469                 lftr(irg, &env);
1470                 (void)lftr;
1471
1472                 set_irg_outs_inconsistent(irg);
1473                 DB((dbg, LEVEL_1, "Replacements: %u + %u (lftr)\n\n", env.replaced, env.lftr_replaced));
1474         }
1475         ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
1476
1477         del_set(env.lftr_edges);
1478         del_set(env.quad_map);
1479         DEL_ARR_F(env.stack);
1480         obstack_free(&env.obst, NULL);
1481
1482         if (! edges)
1483                 edges_deactivate(irg);
1484 }  /* opt_osr */
1485
1486 typedef struct pass_t {
1487         ir_graph_pass_t pass;
1488         unsigned        flags;
1489 } pass_t;
1490
1491 /**
1492 * Wrapper for running opt_osr() as an ir_graph pass.
1493 */
1494 static int pass_wrapper(ir_graph *irg, void *context)
1495 {
1496         pass_t *pass = (pass_t*)context;
1497         opt_osr(irg, pass->flags);
1498         return 0;
1499 }  /* pass_wrapper */
1500
1501 ir_graph_pass_t *opt_osr_pass(const char *name, unsigned flags)
1502 {
1503         pass_t *pass = XMALLOCZ(pass_t);
1504
1505         pass->flags = flags;
1506         return def_graph_pass_constructor(
1507                 &pass->pass, name ? name : "osr", pass_wrapper);
1508 }  /* opt_osr_pass */