renamed get_opt_remove_Confirm() into get_opt_remove_confirm()
[libfirm] / ir / ir / iropt.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/iropt.c
4  * Purpose:     iropt --- optimizations intertwined with IR construction.
5  * Author:      Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Michael Beck
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2005 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #ifdef HAVE_ALLOCA_H
18 #include <alloca.h>
19 #endif
20 #ifdef HAVE_MALLOC_H
21 #include <malloc.h>
22 #endif
23 #ifdef HAVE_STRING_H
24 #include <string.h>
25 #endif
26
27 # include "irnode_t.h"
28 # include "irgraph_t.h"
29 # include "iredges_t.h"
30 # include "irmode_t.h"
31 # include "iropt_t.h"
32 # include "ircons_t.h"
33 # include "irgmod.h"
34 # include "irvrfy.h"
35 # include "tv_t.h"
36 # include "dbginfo_t.h"
37 # include "iropt_dbg.h"
38 # include "irflag_t.h"
39 # include "irhooks.h"
40 # include "irarch.h"
41 # include "hashptr.h"
42 # include "archop.h"
43 # include "opt_polymorphy.h"
44 # include "opt_confirms.h"
45
46 /* Make types visible to allow most efficient access */
47 # include "entity_t.h"
48
49 /**
50  * return the value of a Constant
51  */
52 static tarval *computed_value_Const(ir_node *n)
53 {
54   return get_Const_tarval(n);
55 }
56
57 /**
58  * return the value of a 'sizeof' SymConst
59  */
60 static tarval *computed_value_SymConst(ir_node *n)
61 {
62   if ((get_SymConst_kind(n) == symconst_size) &&
63       (get_type_state(get_SymConst_type(n))) == layout_fixed)
64     return new_tarval_from_long(get_type_size_bytes(get_SymConst_type(n)), get_irn_mode(n));
65   return tarval_bad;
66 }
67
68 /**
69  * return the value of an Add
70  */
71 static tarval *computed_value_Add(ir_node *n)
72 {
73   ir_node *a = get_Add_left(n);
74   ir_node *b = get_Add_right(n);
75
76   tarval *ta = value_of(a);
77   tarval *tb = value_of(b);
78
79   if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b)))
80     return tarval_add(ta, tb);
81
82   return tarval_bad;
83 }
84
85 /**
86  * return the value of a Sub
87  * Special case: a - a
88  */
89 static tarval *computed_value_Sub(ir_node *n)
90 {
91   ir_node *a = get_Sub_left(n);
92   ir_node *b = get_Sub_right(n);
93   tarval *ta;
94   tarval *tb;
95
96   /* a - a */
97   if (a == b && !is_Bad(a))
98     return get_mode_null(get_irn_mode(n));
99
100   ta = value_of(a);
101   tb = value_of(b);
102
103   if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b)))
104     return tarval_sub(ta, tb);
105
106   return tarval_bad;
107 }
108
109 /**
110  * return the value of an unary Minus
111  */
112 static tarval *computed_value_Minus(ir_node *n)
113 {
114   ir_node *a = get_Minus_op(n);
115   tarval *ta = value_of(a);
116
117   if ((ta != tarval_bad) && mode_is_signed(get_irn_mode(a)))
118     return tarval_neg(ta);
119
120   return tarval_bad;
121 }
122
123 /**
124  * return the value of a Mul
125  */
126 static tarval *computed_value_Mul(ir_node *n)
127 {
128   ir_node *a = get_Mul_left(n);
129   ir_node *b = get_Mul_right(n);
130
131   tarval *ta = value_of(a);
132   tarval *tb = value_of(b);
133
134   if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b))) {
135     return tarval_mul(ta, tb);
136   } else {
137     /* a*0 = 0 or 0*b = 0:
138        calls computed_value recursive and returns the 0 with proper
139        mode. */
140     if ((ta != tarval_bad) && (ta == get_mode_null(get_tarval_mode(ta))))
141       return ta;
142     if ((tb != tarval_bad) && (tb == get_mode_null(get_tarval_mode(tb))))
143       return tb;
144   }
145   return tarval_bad;
146 }
147
148 /**
149  * return the value of a floating point Quot
150  */
151 static tarval *computed_value_Quot(ir_node *n)
152 {
153   ir_node *a = get_Quot_left(n);
154   ir_node *b = get_Quot_right(n);
155
156   tarval *ta = value_of(a);
157   tarval *tb = value_of(b);
158
159   /* This was missing in original implementation. Why? */
160   if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b))) {
161     if (tb != get_mode_null(get_tarval_mode(tb)))   /* div by zero: return tarval_bad */
162       return tarval_quo(ta, tb);
163   }
164   return tarval_bad;
165 }
166
167 /**
168  * calculate the value of an integer Div of two nodes
169  * Special case: 0 / b
170  */
171 static tarval *do_computed_value_Div(ir_node *a, ir_node *b)
172 {
173   tarval *ta = value_of(a);
174   tarval *tb = value_of(b);
175
176   /* Compute c1 / c2 or 0 / a, a != 0 */
177   if (ta != tarval_bad) {
178     if ((tb != tarval_bad) && (tb != get_mode_null(get_irn_mode(b))))   /* div by zero: return tarval_bad */
179       return tarval_div(ta, tb);
180     else if (ta == get_mode_null(get_tarval_mode(ta)))  /* 0 / b == 0 */
181       return ta;
182   }
183   return tarval_bad;
184 }
185
186 /**
187  * return the value of an integer Div
188  */
189 static tarval *computed_value_Div(ir_node *n)
190 {
191   return do_computed_value_Div(get_Div_left(n), get_Div_right(n));
192 }
193
194 /**
195  * calculate the value of an integer Mod of two nodes
196  * Special case: a % 1
197  */
198 static tarval *do_computed_value_Mod(ir_node *a, ir_node *b)
199 {
200   tarval *ta = value_of(a);
201   tarval *tb = value_of(b);
202
203   /* Compute c1 % c2 or a % 1 */
204   if (tb != tarval_bad) {
205     if ((ta != tarval_bad) && (tb != get_mode_null(get_tarval_mode(tb))))   /* div by zero: return tarval_bad */
206       return tarval_mod(ta, tb);
207     else if (tb == get_mode_one(get_tarval_mode(tb)))    /* x mod 1 == 0 */
208       return get_mode_null(get_irn_mode(a));
209   }
210
211   return tarval_bad;
212 }
213
214 /**
215  * return the value of an integer Mod
216  */
217 static tarval *computed_value_Mod(ir_node *n)
218 {
219   return do_computed_value_Mod(get_Mod_left(n), get_Mod_right(n));
220 }
221
222 /**
223  * return the value of an Abs
224  */
225 static tarval *computed_value_Abs(ir_node *n)
226 {
227   ir_node *a = get_Abs_op(n);
228   tarval *ta = value_of(a);
229
230   if (ta != tarval_bad)
231     return tarval_abs(ta);
232
233   return tarval_bad;
234 }
235
236 /**
237  * return the value of an And
238  * Special case: a & 0, 0 & b
239  */
240 static tarval *computed_value_And(ir_node *n)
241 {
242   ir_node *a = get_And_left(n);
243   ir_node *b = get_And_right(n);
244
245   tarval *ta = value_of(a);
246   tarval *tb = value_of(b);
247
248   if ((ta != tarval_bad) && (tb != tarval_bad)) {
249     return tarval_and (ta, tb);
250   } else {
251     tarval *v;
252
253     if (   (classify_tarval ((v = ta)) == TV_CLASSIFY_NULL)
254         || (classify_tarval ((v = tb)) == TV_CLASSIFY_NULL)) {
255       return v;
256     }
257   }
258   return tarval_bad;
259 }
260
261 /**
262  * return the value of an Or
263  * Special case: a | 1...1, 1...1 | b
264  */
265 static tarval *computed_value_Or(ir_node *n)
266 {
267   ir_node *a = get_Or_left(n);
268   ir_node *b = get_Or_right(n);
269
270   tarval *ta = value_of(a);
271   tarval *tb = value_of(b);
272
273   if ((ta != tarval_bad) && (tb != tarval_bad)) {
274     return tarval_or (ta, tb);
275   } else {
276     tarval *v;
277     if (   (classify_tarval ((v = ta)) == TV_CLASSIFY_ALL_ONE)
278         || (classify_tarval ((v = tb)) == TV_CLASSIFY_ALL_ONE)) {
279       return v;
280     }
281   }
282   return tarval_bad;
283 }
284
285 /**
286  * return the value of an Eor
287  */
288 static tarval *computed_value_Eor(ir_node *n)
289 {
290   ir_node *a = get_Eor_left(n);
291   ir_node *b = get_Eor_right(n);
292
293   tarval *ta, *tb;
294
295   if (a == b)
296     return get_mode_null(get_irn_mode(n));
297
298   ta = value_of(a);
299   tb = value_of(b);
300
301   if ((ta != tarval_bad) && (tb != tarval_bad)) {
302     return tarval_eor (ta, tb);
303   }
304   return tarval_bad;
305 }
306
307 /**
308  * return the value of a Not
309  */
310 static tarval *computed_value_Not(ir_node *n)
311 {
312   ir_node *a = get_Not_op(n);
313   tarval *ta = value_of(a);
314
315   if (ta != tarval_bad)
316     return tarval_not(ta);
317
318   return tarval_bad;
319 }
320
321 /**
322  * return the value of a Shl
323  */
324 static tarval *computed_value_Shl(ir_node *n)
325 {
326   ir_node *a = get_Shl_left(n);
327   ir_node *b = get_Shl_right(n);
328
329   tarval *ta = value_of(a);
330   tarval *tb = value_of(b);
331
332   if ((ta != tarval_bad) && (tb != tarval_bad)) {
333     return tarval_shl (ta, tb);
334   }
335   return tarval_bad;
336 }
337
338 /**
339  * return the value of a Shr
340  */
341 static tarval *computed_value_Shr(ir_node *n)
342 {
343   ir_node *a = get_Shr_left(n);
344   ir_node *b = get_Shr_right(n);
345
346   tarval *ta = value_of(a);
347   tarval *tb = value_of(b);
348
349   if ((ta != tarval_bad) && (tb != tarval_bad)) {
350     return tarval_shr (ta, tb);
351   }
352   return tarval_bad;
353 }
354
355 /**
356  * return the value of a Shrs
357  */
358 static tarval *computed_value_Shrs(ir_node *n)
359 {
360   ir_node *a = get_Shrs_left(n);
361   ir_node *b = get_Shrs_right(n);
362
363   tarval *ta = value_of(a);
364   tarval *tb = value_of(b);
365
366   if ((ta != tarval_bad) && (tb != tarval_bad)) {
367     return tarval_shrs (ta, tb);
368   }
369   return tarval_bad;
370 }
371
372 /**
373  * return the value of a Rot
374  */
375 static tarval *computed_value_Rot(ir_node *n)
376 {
377   ir_node *a = get_Rot_left(n);
378   ir_node *b = get_Rot_right(n);
379
380   tarval *ta = value_of(a);
381   tarval *tb = value_of(b);
382
383   if ((ta != tarval_bad) && (tb != tarval_bad)) {
384     return tarval_rot (ta, tb);
385   }
386   return tarval_bad;
387 }
388
389 /**
390  * return the value of a Conv
391  */
392 static tarval *computed_value_Conv(ir_node *n)
393 {
394   ir_node *a = get_Conv_op(n);
395   tarval *ta = value_of(a);
396
397   if (ta != tarval_bad)
398     return tarval_convert_to(ta, get_irn_mode(n));
399
400   return tarval_bad;
401 }
402
403 /**
404  * return the value of a Proj(Cmp)
405  *
406  * This performs a first step of unreachable code elimination.
407  * Proj can not be computed, but folding a Cmp above the Proj here is
408  * not as wasteful as folding a Cmp into a Tuple of 16 Consts of which
409  * only 1 is used.
410  * There are several case where we can evaluate a Cmp node, see later.
411  */
412 static tarval *computed_value_Proj_Cmp(ir_node *n)
413 {
414   ir_node *a   = get_Proj_pred(n);
415   ir_node *aa  = get_Cmp_left(a);
416   ir_node *ab  = get_Cmp_right(a);
417   long proj_nr = get_Proj_proj(n);
418
419   /*
420    * BEWARE: a == a is NOT always True for floating Point values, as
421    * NaN != NaN is defined, so we must check this here.
422    */
423   if (aa == ab && (
424       !mode_is_float(get_irn_mode(aa)) || proj_nr == pn_Cmp_Lt ||  proj_nr == pn_Cmp_Gt)
425       ) { /* 1.: */
426
427     /* This is a trick with the bits used for encoding the Cmp
428        Proj numbers, the following statement is not the same:
429     return new_tarval_from_long (proj_nr == pn_Cmp_Eq, mode_b) */
430     return new_tarval_from_long (proj_nr & pn_Cmp_Eq, mode_b);
431   }
432   else {
433     tarval *taa = value_of(aa);
434     tarval *tab = value_of(ab);
435     ir_mode *mode = get_irn_mode(aa);
436
437     /*
438      * The predecessors of Cmp are target values.  We can evaluate
439      * the Cmp.
440      */
441     if ((taa != tarval_bad) && (tab != tarval_bad)) {
442       /* strange checks... */
443       pn_Cmp flags = tarval_cmp(taa, tab);
444       if (flags != pn_Cmp_False) {
445         return new_tarval_from_long (proj_nr & flags, mode_b);
446       }
447     }
448     /* for integer values, we can check against MIN/MAX */
449     else if (mode_is_int(mode)) {
450       /* MIN <=/> x.  This results in true/false. */
451       if (taa == get_mode_min(mode)) {
452         /* a compare with the MIN value */
453         if (proj_nr == pn_Cmp_Le)
454           return get_tarval_b_true();
455         else if (proj_nr == pn_Cmp_Gt)
456           return get_tarval_b_false();
457       }
458       /* x >=/< MIN.  This results in true/false. */
459       else
460       if (tab == get_mode_min(mode)) {
461         /* a compare with the MIN value */
462         if (proj_nr == pn_Cmp_Ge)
463           return get_tarval_b_true();
464         else if (proj_nr == pn_Cmp_Lt)
465           return get_tarval_b_false();
466       }
467       /* MAX >=/< x.  This results in true/false. */
468       else if (taa == get_mode_max(mode)) {
469         if (proj_nr == pn_Cmp_Ge)
470           return get_tarval_b_true();
471         else if (proj_nr == pn_Cmp_Lt)
472           return get_tarval_b_false();
473       }
474       /* x <=/> MAX.  This results in true/false. */
475       else if (tab == get_mode_max(mode)) {
476         if (proj_nr == pn_Cmp_Le)
477           return get_tarval_b_true();
478         else if (proj_nr == pn_Cmp_Gt)
479           return get_tarval_b_false();
480       }
481     }
482     /*
483      * The predecessors are Allocs or (void*)(0) constants.  Allocs never
484      * return NULL, they raise an exception.   Therefore we can predict
485      * the Cmp result.
486      */
487     else {
488       ir_node *aaa = skip_Id(skip_Proj(aa));
489       ir_node *aba = skip_Id(skip_Proj(ab));
490
491       if (   (   (/* aa is ProjP and aaa is Alloc */
492                      (get_irn_op(aa) == op_Proj)
493                   && (mode_is_reference(get_irn_mode(aa)))
494                   && (get_irn_op(aaa) == op_Alloc))
495               && (   (/* ab is NULL */
496                          (get_irn_op(ab) == op_Const)
497                       && (mode_is_reference(get_irn_mode(ab)))
498                       && (get_Const_tarval(ab) == get_mode_null(get_irn_mode(ab))))
499                   || (/* ab is other Alloc */
500                          (get_irn_op(ab) == op_Proj)
501                       && (mode_is_reference(get_irn_mode(ab)))
502                       && (get_irn_op(aba) == op_Alloc)
503                       && (aaa != aba))))
504           || (/* aa is NULL and aba is Alloc */
505                  (get_irn_op(aa) == op_Const)
506               && (mode_is_reference(get_irn_mode(aa)))
507               && (get_Const_tarval(aa) == get_mode_null(get_irn_mode(aa)))
508               && (get_irn_op(ab) == op_Proj)
509               && (mode_is_reference(get_irn_mode(ab)))
510               && (get_irn_op(aba) == op_Alloc)))
511         /* 3.: */
512         return new_tarval_from_long(proj_nr & pn_Cmp_Ne, mode_b);
513     }
514   }
515
516   return computed_value_Cmp_Confirm(a, aa, ab, proj_nr);
517 }
518
519 /**
520  * return the value of a Proj, handle Proj(Cmp), Proj(Div), Proj(Mod), Proj(DivMod)
521  */
522 static tarval *computed_value_Proj(ir_node *n)
523 {
524   ir_node *a = get_Proj_pred(n);
525   long proj_nr;
526
527   switch (get_irn_opcode(a)) {
528   case iro_Cmp:
529     return computed_value_Proj_Cmp(n);
530
531   case iro_DivMod:
532     /* compute either the Div or the Mod part */
533     proj_nr = get_Proj_proj(n);
534     if (proj_nr == pn_DivMod_res_div)
535       return do_computed_value_Div(get_DivMod_left(a), get_DivMod_right(a));
536     else if (proj_nr == pn_DivMod_res_mod)
537       return do_computed_value_Mod(get_DivMod_left(a), get_DivMod_right(a));
538     break;
539
540   case iro_Div:
541     if (get_Proj_proj(n) == pn_Div_res)
542       return computed_value(a);
543     break;
544
545   case iro_Mod:
546     if (get_Proj_proj(n) == pn_Mod_res)
547       return computed_value(a);
548     break;
549
550   default:
551     return tarval_bad;
552   }
553   return tarval_bad;
554 }
555
556 /**
557  * calculate the value of a Mux: can be evaluated, if the
558  * sel and the right input are known
559  */
560 static tarval *computed_value_Mux(ir_node *n)
561 {
562   ir_node *sel = get_Mux_sel(n);
563   tarval *ts = value_of(sel);
564
565   if (ts == get_tarval_b_true()) {
566     ir_node *v = get_Mux_true(n);
567     return value_of(v);
568   }
569   else if (ts == get_tarval_b_false()) {
570     ir_node *v = get_Mux_false(n);
571     return value_of(v);
572   }
573   return tarval_bad;
574 }
575
576 /**
577  * calculate the value of a Confirm: can be evaluated,
578  * if it has the form Confirm(x, '=', Const).
579  */
580 static tarval *computed_value_Confirm(ir_node *n)
581 {
582   return get_Confirm_cmp(n) == pn_Cmp_Eq ?
583     value_of(get_Confirm_bound(n)) : tarval_bad;
584 }
585
586 /**
587  * If the parameter n can be computed, return its value, else tarval_bad.
588  * Performs constant folding.
589  *
590  * @param n  The node this should be evaluated
591  */
592 tarval *computed_value(ir_node *n)
593 {
594   if (n->op->ops.computed_value)
595     return n->op->ops.computed_value(n);
596   return tarval_bad;
597 }
598
599 /**
600  * set the default computed_value evaluator in an ir_op_ops.
601  *
602  * @param code   the opcode for the default operation
603  * @param ops    the operations initialized
604  *
605  * @return
606  *    The operations.
607  */
608 static ir_op_ops *firm_set_default_computed_value(opcode code, ir_op_ops *ops)
609 {
610 #define CASE(a)                               \
611   case iro_##a:                               \
612     ops->computed_value  = computed_value_##a; \
613     break
614
615   switch (code) {
616   CASE(Const);
617   CASE(SymConst);
618   CASE(Add);
619   CASE(Sub);
620   CASE(Minus);
621   CASE(Mul);
622   CASE(Quot);
623   CASE(Div);
624   CASE(Mod);
625   CASE(Abs);
626   CASE(And);
627   CASE(Or);
628   CASE(Eor);
629   CASE(Not);
630   CASE(Shl);
631   CASE(Shr);
632   CASE(Shrs);
633   CASE(Rot);
634   CASE(Conv);
635   CASE(Proj);
636   CASE(Mux);
637   CASE(Confirm);
638   default:
639     /* leave NULL */;
640   }
641
642   return ops;
643 #undef CASE
644 }
645
646 #if 0
647 /* returns 1 if the a and b are pointers to different locations. */
648 static bool
649 different_identity (ir_node *a, ir_node *b)
650 {
651   assert (mode_is_reference(get_irn_mode (a))
652           && mode_is_reference(get_irn_mode (b)));
653
654   if (get_irn_op (a) == op_Proj && get_irn_op(b) == op_Proj) {
655     ir_node *a1 = get_Proj_pred (a);
656     ir_node *b1 = get_Proj_pred (b);
657     if (a1 != b1 && get_irn_op (a1) == op_Alloc
658                 && get_irn_op (b1) == op_Alloc)
659       return 1;
660   }
661   return 0;
662 }
663 #endif
664
665 /**
666  * Returns a equivalent block for another block.
667  * If the block has only one predecessor, this is
668  * the equivalent one. If the only predecessor of a block is
669  * the block itself, this is a dead block.
670  *
671  * If both predecessors of a block are the branches of a binary
672  * Cond, the equivalent block is Cond's block.
673  *
674  * If all predecessors of a block are bad or lies in a dead
675  * block, the current block is dead as well.
676  *
677  * Note, that blocks are NEVER turned into Bad's, instead
678  * the dead_block flag is set. So, never test for is_Bad(block),
679  * always use is_dead_Block(block).
680  */
681 static ir_node *equivalent_node_Block(ir_node *n)
682 {
683   ir_node *oldn = n;
684   int n_preds   = get_Block_n_cfgpreds(n);
685
686   /* The Block constructor does not call optimize, but mature_immBlock
687      calls the optimization. */
688   assert(get_Block_matured(n));
689
690   /* Straightening: a single entry Block following a single exit Block
691      can be merged, if it is not the Start block. */
692   /* !!! Beware, all Phi-nodes of n must have been optimized away.
693      This should be true, as the block is matured before optimize is called.
694      But what about Phi-cycles with the Phi0/Id that could not be resolved?
695      Remaining Phi nodes are just Ids. */
696    if ((n_preds == 1) && (get_irn_op(get_Block_cfgpred(n, 0)) == op_Jmp)) {
697      ir_node *predblock = get_nodes_block(get_Block_cfgpred(n, 0));
698      if (predblock == oldn) {
699        /* Jmp jumps into the block it is in -- deal self cycle. */
700        n = set_Block_dead(n);
701        DBG_OPT_DEAD_BLOCK(oldn, n);
702      } else if (get_opt_control_flow_straightening()) {
703        n = predblock;
704        DBG_OPT_STG(oldn, n);
705      }
706    }
707    else if ((n_preds == 1) &&
708             (get_irn_op(skip_Proj(get_Block_cfgpred(n, 0))) == op_Cond)) {
709      ir_node *predblock = get_Block_cfgpred_block(n, 0);
710      if (predblock == oldn) {
711        /* Jmp jumps into the block it is in -- deal self cycle. */
712        n = set_Block_dead(n);
713        DBG_OPT_DEAD_BLOCK(oldn, n);
714      }
715    }
716    else if ((n_preds == 2) &&
717             (get_opt_control_flow_weak_simplification())) {
718     /* Test whether Cond jumps twice to this block
719      * The more general case which more than 2 predecessors is handles
720      * in optimize_cf(), we handle only this special case for speed here.
721      */
722     ir_node *a = get_Block_cfgpred(n, 0);
723     ir_node *b = get_Block_cfgpred(n, 1);
724
725     if ((get_irn_op(a) == op_Proj) &&
726         (get_irn_op(b) == op_Proj) &&
727         (get_Proj_pred(a) == get_Proj_pred(b)) &&
728         (get_irn_op(get_Proj_pred(a)) == op_Cond) &&
729         (get_irn_mode(get_Cond_selector(get_Proj_pred(a))) == mode_b)) {
730       /* Also a single entry Block following a single exit Block.  Phis have
731          twice the same operand and will be optimized away. */
732       n = get_nodes_block(get_Proj_pred(a));
733       DBG_OPT_IFSIM1(oldn, a, b, n);
734     }
735   }
736   else if (get_opt_unreachable_code() &&
737            (n != current_ir_graph->start_block) &&
738            (n != current_ir_graph->end_block)     ) {
739     int i;
740
741     /* If all inputs are dead, this block is dead too, except if it is
742        the start or end block.  This is one step of unreachable code
743        elimination */
744     for (i = get_Block_n_cfgpreds(n) - 1; i >= 0; --i) {
745       ir_node *pred = get_Block_cfgpred(n, i);
746       ir_node *pred_blk;
747
748       if (is_Bad(pred)) continue;
749       pred_blk = get_nodes_block(skip_Proj(pred));
750
751       if (is_Block_dead(pred_blk)) continue;
752
753       if (pred_blk != n) {
754         /* really found a living input */
755         break;
756       }
757     }
758     if (i < 0) {
759       n = set_Block_dead(n);
760       DBG_OPT_DEAD_BLOCK(oldn, n);
761     }
762   }
763
764   return n;
765 }
766
767 /**
768  * Returns a equivalent node for a Jmp, a Bad :-)
769  * Of course this only happens if the Block of the Jmp is Bad.
770  */
771 static ir_node *equivalent_node_Jmp(ir_node *n)
772 {
773   /* unreachable code elimination */
774   if (is_Block_dead(get_nodes_block(n)))
775     n = new_Bad();
776
777   return n;
778 }
779
780 /* Same for op_Raise */
781 #define equivalent_node_Raise   equivalent_node_Jmp
782
783
784 /* We do not evaluate Cond here as we replace it by a new node, a Jmp.
785    See transform_node_Proj_Cond(). */
786
787 /**
788  * optimize operations that are commutative and have neutral 0,
789  * so a op 0 = 0 op a = a.
790  */
791 static ir_node *equivalent_node_neutral_zero(ir_node *n)
792 {
793   ir_node *oldn = n;
794
795   ir_node *a = get_binop_left(n);
796   ir_node *b = get_binop_right(n);
797
798   tarval *tv;
799   ir_node *on;
800
801   /* After running compute_node there is only one constant predecessor.
802      Find this predecessors value and remember the other node: */
803   if ((tv = value_of(a)) != tarval_bad) {
804     on = b;
805   } else if ((tv = value_of(b)) != tarval_bad) {
806     on = a;
807   } else
808     return n;
809
810   /* If this predecessors constant value is zero, the operation is
811    * unnecessary. Remove it.
812    *
813    * Beware: If n is a Add, the mode of on and n might be different
814    * which happens in this rare construction: NULL + 3.
815    * Then, a Conv would be needed which we cannot include here.
816    */
817   if (classify_tarval (tv) == TV_CLASSIFY_NULL) {
818     if (get_irn_mode(on) == get_irn_mode(n)) {
819       n = on;
820
821       DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
822     }
823   }
824
825   return n;
826 }
827
828 #define equivalent_node_Eor  equivalent_node_neutral_zero
829
830 /*
831  * Optimize a - 0 and (a - x) + x (for modes with wrap-around).
832  *
833  * The second one looks strange, but this construct
834  * is used heavily in the LCC sources :-).
835  *
836  * Beware: The Mode of an Add may be different than the mode of its
837  * predecessors, so we could not return a predecessors in all cases.
838  */
839 static ir_node *equivalent_node_Add(ir_node *n)
840 {
841   ir_node *oldn = n;
842   ir_node *left, *right;
843
844   n = equivalent_node_neutral_zero(n);
845   if (n != oldn)
846     return n;
847
848   left  = get_Add_left(n);
849   right = get_Add_right(n);
850
851   if (get_irn_op(left) == op_Sub) {
852     if (get_Sub_right(left) == right) {
853       /* (a - x) + x */
854
855       n = get_Sub_left(left);
856       if (get_irn_mode(oldn) == get_irn_mode(n)) {
857         DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
858         return n;
859       }
860     }
861   }
862   if (get_irn_op(right) == op_Sub) {
863     if (get_Sub_right(right) == left) {
864       /* x + (a - x) */
865
866       n = get_Sub_left(right);
867       if (get_irn_mode(oldn) == get_irn_mode(n)) {
868         DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
869         return n;
870       }
871     }
872   }
873   return n;
874 }
875
876 /**
877  * optimize operations that are not commutative but have neutral 0 on left,
878  * so a op 0 = a.
879  */
880 static ir_node *equivalent_node_left_zero(ir_node *n)
881 {
882   ir_node *oldn = n;
883
884   ir_node *a = get_binop_left(n);
885   ir_node *b = get_binop_right(n);
886
887   if (classify_tarval(value_of(b)) == TV_CLASSIFY_NULL) {
888     n = a;
889
890     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
891   }
892
893   return n;
894 }
895
896 #define equivalent_node_Shl   equivalent_node_left_zero
897 #define equivalent_node_Shr   equivalent_node_left_zero
898 #define equivalent_node_Shrs  equivalent_node_left_zero
899 #define equivalent_node_Rot   equivalent_node_left_zero
900
901 /**
902  * Optimize a - 0 and (a + x) - x (for modes with wrap-around).
903  *
904  * The second one looks strange, but this construct
905  * is used heavily in the LCC sources :-).
906  *
907  * Beware: The Mode of a Sub may be different than the mode of its
908  * predecessors, so we could not return a predecessors in all cases.
909  */
910 static ir_node *equivalent_node_Sub(ir_node *n)
911 {
912   ir_node *oldn = n;
913
914   ir_node *a = get_Sub_left(n);
915   ir_node *b = get_Sub_right(n);
916
917   /* Beware: modes might be different */
918   if (classify_tarval(value_of(b)) == TV_CLASSIFY_NULL) {
919     if (get_irn_mode(n) == get_irn_mode(a)) {
920       n = a;
921
922       DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
923     }
924   }
925   else if (get_irn_op(a) == op_Add) {
926     ir_mode *mode = get_irn_mode(n);
927
928     if (mode_wrap_around(mode)) {
929       ir_node *left  = get_Add_left(a);
930       ir_node *right = get_Add_right(a);
931
932       if (left == b) {
933         if (get_irn_mode(n) == get_irn_mode(right)) {
934           n = right;
935           DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
936         }
937       }
938       else if (right == b) {
939         if (get_irn_mode(n) == get_irn_mode(left)) {
940           n = left;
941           DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
942         }
943       }
944     }
945   }
946
947   return n;
948 }
949
950
951 /**
952  * Optimize an "idempotent unary op", ie op(op(n)) = n.
953  *
954  * @todo
955  *   -(-a) == a, but might overflow two times.
956  *   We handle it anyway here but the better way would be a
957  *   flag. This would be needed for Pascal for instance.
958  */
959 static ir_node *equivalent_node_idempotent_unop(ir_node *n)
960 {
961   ir_node *oldn = n;
962   ir_node *pred = get_unop_op(n);
963
964   /* optimize symmetric unop */
965   if (get_irn_op(pred) == get_irn_op(n)) {
966     n = get_unop_op(pred);
967     DBG_OPT_ALGSIM2(oldn, pred, n);
968   }
969   return n;
970 }
971
972 /* Not(Not(x)) == x */
973 #define equivalent_node_Not    equivalent_node_idempotent_unop
974
975 /* --x == x */  /* ??? Is this possible or can --x raise an
976                        out of bounds exception if min =! max? */
977 #define equivalent_node_Minus  equivalent_node_idempotent_unop
978
979 /**
980  * Optimize a * 1 = 1 * a = a.
981  */
982 static ir_node *equivalent_node_Mul(ir_node *n)
983 {
984   ir_node *oldn = n;
985
986   ir_node *a = get_Mul_left(n);
987   ir_node *b = get_Mul_right(n);
988
989   /* Mul is commutative and has again an other neutral element. */
990   if (classify_tarval(value_of(a)) == TV_CLASSIFY_ONE) {
991     n = b;
992     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
993   } else if (classify_tarval(value_of(b)) == TV_CLASSIFY_ONE) {
994     n = a;
995     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
996   }
997   return n;
998 }
999
1000 /**
1001  * Optimize a / 1 = a.
1002  */
1003 static ir_node *equivalent_node_Div(ir_node *n)
1004 {
1005   ir_node *a = get_Div_left(n);
1006   ir_node *b = get_Div_right(n);
1007
1008   /* Div is not commutative. */
1009   if (classify_tarval(value_of(b)) == TV_CLASSIFY_ONE) { /* div(x, 1) == x */
1010     /* Turn Div into a tuple (mem, bad, a) */
1011     ir_node *mem = get_Div_mem(n);
1012     turn_into_tuple(n, 3);
1013     set_Tuple_pred(n, pn_Div_M,        mem);
1014     set_Tuple_pred(n, pn_Div_X_except, new_Bad());        /* no exception */
1015     set_Tuple_pred(n, pn_Div_res,      a);
1016   }
1017   return n;
1018 }
1019
1020 /**
1021  * Optimize a / 1 = a.
1022  */
1023 static ir_node *equivalent_node_DivMod(ir_node *n)
1024 {
1025   ir_node *a = get_DivMod_left(n);
1026   ir_node *b = get_DivMod_right(n);
1027
1028   /* Div is not commutative. */
1029   if (classify_tarval(value_of(b)) == TV_CLASSIFY_ONE) { /* div(x, 1) == x */
1030     /* Turn DivMod into a tuple (mem, bad, a, 0) */
1031     ir_node *mem = get_Div_mem(n);
1032     ir_mode *mode = get_irn_mode(b);
1033
1034     turn_into_tuple(n, 4);
1035     set_Tuple_pred(n, pn_DivMod_M,        mem);
1036     set_Tuple_pred(n, pn_DivMod_X_except, new_Bad());        /* no exception */
1037     set_Tuple_pred(n, pn_DivMod_res_div,  a);
1038     set_Tuple_pred(n, pn_DivMod_res_mod,  new_Const(mode, get_mode_null(mode)));
1039   }
1040   return n;
1041 }
1042
1043 /**
1044  * Use algebraic simplification a | a = a | 0 = 0 | a = a.
1045  */
1046 static ir_node *equivalent_node_Or(ir_node *n)
1047 {
1048   ir_node *oldn = n;
1049
1050   ir_node *a = get_Or_left(n);
1051   ir_node *b = get_Or_right(n);
1052
1053   if (a == b) {
1054     n = a;    /* Or has it's own neutral element */
1055     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_OR);
1056   } else if (classify_tarval(value_of(a)) == TV_CLASSIFY_NULL) {
1057     n = b;
1058     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1059   } else if (classify_tarval(value_of(b)) == TV_CLASSIFY_NULL) {
1060     n = a;
1061     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1062   }
1063
1064   return n;
1065 }
1066
1067 /**
1068  * Optimize a & 0b1...1 = 0b1...1 & a =  a & a = a.
1069  */
1070 static ir_node *equivalent_node_And(ir_node *n)
1071 {
1072   ir_node *oldn = n;
1073
1074   ir_node *a = get_And_left(n);
1075   ir_node *b = get_And_right(n);
1076
1077   if (a == b) {
1078     n = a;    /* And has it's own neutral element */
1079     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_AND);
1080   } else if (classify_tarval(value_of(a)) == TV_CLASSIFY_ALL_ONE) {
1081     n = b;
1082     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1083   } else if (classify_tarval(value_of(b)) == TV_CLASSIFY_ALL_ONE) {
1084     n = a;
1085     DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1086   }
1087   return n;
1088 }
1089
1090 /**
1091  * Try to remove useless Conv's:
1092  */
1093 static ir_node *equivalent_node_Conv(ir_node *n)
1094 {
1095   ir_node *oldn = n;
1096   ir_node *a = get_Conv_op(n);
1097   ir_node *b;
1098
1099   ir_mode *n_mode = get_irn_mode(n);
1100   ir_mode *a_mode = get_irn_mode(a);
1101
1102   if (n_mode == a_mode) { /* No Conv necessary */
1103     n = a;
1104     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1105   } else if (get_irn_op(a) == op_Conv) { /* Conv(Conv(b)) */
1106     ir_mode *b_mode;
1107
1108     b = get_Conv_op(a);
1109     n_mode = get_irn_mode(n);
1110     b_mode = get_irn_mode(b);
1111
1112     if (n_mode == b_mode) {
1113       if (n_mode == mode_b) {
1114         n = b; /* Convb(Conv*(xxxb(...))) == xxxb(...) */
1115         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1116       }
1117       else if (mode_is_int(n_mode) || mode_is_character(n_mode)) {
1118         if (smaller_mode(b_mode, a_mode)){
1119           n = b;        /* ConvS(ConvL(xxxS(...))) == xxxS(...) */
1120           DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1121         }
1122       }
1123     }
1124   }
1125   return n;
1126 }
1127
1128 /**
1129  * A Cast may be removed if the type of the previous node
1130  * is already the type of the Cast.
1131  */
1132 static ir_node *equivalent_node_Cast(ir_node *n) {
1133   ir_node *oldn = n;
1134   ir_node *pred = get_Cast_op(n);
1135
1136   if (get_irn_type(pred) == get_Cast_type(n)) {
1137     n = pred;
1138     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CAST);
1139   }
1140   return n;
1141 }
1142
1143 /* Several optimizations:
1144    - no Phi in start block.
1145    - remove Id operators that are inputs to Phi
1146    - fold Phi-nodes, iff they have only one predecessor except
1147            themselves.
1148 */
1149 static ir_node *equivalent_node_Phi(ir_node *n)
1150 {
1151   int i, n_preds;
1152
1153   ir_node *oldn = n;
1154   ir_node *block = NULL;     /* to shutup gcc */
1155   ir_node *first_val = NULL; /* to shutup gcc */
1156   ir_node *scnd_val = NULL;  /* to shutup gcc */
1157
1158   if (!get_opt_normalize()) return n;
1159
1160   n_preds = get_Phi_n_preds(n);
1161
1162   block = get_nodes_block(n);
1163   /* @@@ fliegt 'raus, sollte aber doch immer wahr sein!!!
1164      assert(get_irn_arity(block) == n_preds && "phi in wrong block!"); */
1165   if ((is_Block_dead(block)) ||                  /* Control dead */
1166       (block == current_ir_graph->start_block))  /* There should be no Phi nodes */
1167     return new_Bad();                            /* in the Start Block. */
1168
1169   if (n_preds == 0) return n;           /* Phi of dead Region without predecessors. */
1170
1171   /* If the Block has a Bad pred, we also have one. */
1172   for (i = 0;  i < n_preds;  ++i)
1173     if (is_Bad(get_Block_cfgpred(block, i)))
1174       set_Phi_pred(n, i, new_Bad());
1175
1176   /* Find first non-self-referencing input */
1177   for (i = 0; i < n_preds; ++i) {
1178     first_val = get_Phi_pred(n, i);
1179     if (   (first_val != n)                            /* not self pointer */
1180 #if 1
1181         && (! is_Bad(first_val))
1182 #endif
1183            ) {        /* value not dead */
1184       break;          /* then found first value. */
1185     }
1186   }
1187
1188   if (i >= n_preds) {
1189     /* A totally Bad or self-referencing Phi (we didn't break the above loop) */
1190     return new_Bad();
1191   }
1192
1193   scnd_val = NULL;
1194
1195   /* follow_Id () for rest of inputs, determine if any of these
1196      are non-self-referencing */
1197   while (++i < n_preds) {
1198     scnd_val = get_Phi_pred(n, i);
1199     if (   (scnd_val != n)
1200         && (scnd_val != first_val)
1201 #if 1
1202         && (! is_Bad(scnd_val))
1203 #endif
1204            ) {
1205       break;
1206     }
1207   }
1208
1209   if (i >= n_preds) {
1210     /* Fold, if no multiple distinct non-self-referencing inputs */
1211     n = first_val;
1212     DBG_OPT_PHI(oldn, n);
1213   } else {
1214     /* skip the remaining Ids (done in get_Phi_pred). */
1215     /* superfluous, since we walk all to propagate Block's Bads.
1216        while (++i < n_preds) get_Phi_pred(n, i);     */
1217   }
1218   return n;
1219 }
1220
1221 /**
1222  * optimize Proj(Tuple) and gigo() for ProjX in Bad block
1223  */
1224 static ir_node *equivalent_node_Proj(ir_node *n)
1225 {
1226   ir_node *oldn = n;
1227
1228   ir_node *a = get_Proj_pred(n);
1229
1230   if ( get_irn_op(a) == op_Tuple) {
1231     /* Remove the Tuple/Proj combination. */
1232     if ( get_Proj_proj(n) <= get_Tuple_n_preds(a) ) {
1233       n = get_Tuple_pred(a, get_Proj_proj(n));
1234       DBG_OPT_TUPLE(oldn, a, n);
1235     } else {
1236       assert(0); /* This should not happen! */
1237       n = new_Bad();
1238     }
1239   }
1240   else if (get_irn_mode(n) == mode_X) {
1241     if (is_Block_dead(get_nodes_block(skip_Proj(n)))) {
1242       /* Remove dead control flow -- early gigo(). */
1243       n = new_Bad();
1244     }
1245   }
1246
1247   return n;
1248 }
1249
1250 /**
1251  * Remove Id's.
1252  */
1253 static ir_node *equivalent_node_Id(ir_node *n)
1254 {
1255   ir_node *oldn = n;
1256
1257   do {
1258     n = get_Id_pred(n);
1259   } while (get_irn_op(n) == op_Id);
1260
1261   DBG_OPT_ID(oldn, n);
1262   return n;
1263 }
1264
1265 /**
1266  * optimize a Mux
1267  */
1268 static ir_node *equivalent_node_Mux(ir_node *n)
1269 {
1270   ir_node *oldn = n, *sel = get_Mux_sel(n);
1271   tarval *ts = value_of(sel);
1272
1273   /* Mux(true, f, t) == t */
1274   if (ts == tarval_b_true) {
1275     n = get_Mux_true(n);
1276     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1277   }
1278   /* Mux(false, f, t) == f */
1279   else if (ts == tarval_b_false) {
1280     n = get_Mux_false(n);
1281     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1282   }
1283   /* Mux(v, x, x) == x */
1284   else if (get_Mux_false(n) == get_Mux_true(n)) {
1285     n = get_Mux_true(n);
1286     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_EQ);
1287   }
1288   else if (get_irn_op(sel) == op_Proj && !mode_honor_signed_zeros(get_irn_mode(n))) {
1289     ir_node *cmp = get_Proj_pred(sel);
1290     long proj_nr = get_Proj_proj(sel);
1291     ir_node *b   = get_Mux_false(n);
1292     ir_node *a   = get_Mux_true(n);
1293
1294     /*
1295      * Note: normalization puts the constant on the right site,
1296      * so we check only one case.
1297      *
1298      * Note further that these optimization work even for floating point
1299      * with NaN's because -NaN == NaN.
1300      * However, if +0 and -0 is handled differently, we cannot use the first one.
1301      */
1302     if (get_irn_op(cmp) == op_Cmp && get_Cmp_left(cmp) == a) {
1303       if (classify_Const(get_Cmp_right(cmp)) == CNST_NULL) {
1304         /* Mux(a CMP 0, X, a) */
1305         if (get_irn_op(b) == op_Minus && get_Minus_op(b) == a) {
1306           /* Mux(a CMP 0, -a, a) */
1307           if (proj_nr == pn_Cmp_Eq) {
1308             /* Mux(a == 0, -a, a)  ==>  -a */
1309             n = b;
1310             DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1311           }
1312           else if (proj_nr == pn_Cmp_Lg || proj_nr == pn_Cmp_Ne) {
1313             /* Mux(a != 0, -a, a)  ==> a */
1314             n = a;
1315             DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1316           }
1317         }
1318         else if (classify_Const(b) == CNST_NULL) {
1319           /* Mux(a CMP 0, 0, a) */
1320           if (proj_nr == pn_Cmp_Lg || proj_nr == pn_Cmp_Ne) {
1321             /* Mux(a != 0, 0, a) ==> a */
1322             n = a;
1323             DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1324           }
1325           else if (proj_nr == pn_Cmp_Eq) {
1326             /* Mux(a == 0, 0, a) ==> 0 */
1327             n = b;
1328             DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1329           }
1330         }
1331       }
1332     }
1333   }
1334   return n;
1335 }
1336
1337 /**
1338  * Optimize -a CMP -b into b CMP a.
1339  * This works only for for modes where unary Minus
1340  * cannot Overflow.
1341  * Note that two-complement integers can Overflow
1342  * so it will NOT work.
1343  */
1344 static ir_node *equivalent_node_Cmp(ir_node *n)
1345 {
1346   ir_node *left  = get_Cmp_left(n);
1347   ir_node *right = get_Cmp_right(n);
1348
1349   if (get_irn_op(left) == op_Minus && get_irn_op(right) == op_Minus &&
1350       !mode_overflow_on_unary_Minus(get_irn_mode(left))) {
1351     left  = get_Minus_op(left);
1352     right = get_Minus_op(right);
1353     set_Cmp_left(n, right);
1354     set_Cmp_right(n, left);
1355   }
1356   return n;
1357 }
1358
1359 /**
1360  * Remove Confirm nodes if setting is on.
1361  * Replace Confirms(x, '=', Constlike) by Constlike.
1362  */
1363 static ir_node *equivalent_node_Confirm(ir_node *n)
1364 {
1365   ir_node *pred = get_Confirm_value(n);
1366   pn_Cmp  pnc   = get_Confirm_cmp(n);
1367
1368   if (get_irn_op(pred) == op_Confirm && pnc == get_Confirm_cmp(pred)) {
1369     /*
1370      * rare case: two identical Confirms one after another,
1371      * replace the second one with the first.
1372      */
1373     return pred;
1374   }
1375   if (pnc == pn_Cmp_Eq) {
1376     ir_node *bound = get_Confirm_bound(n);
1377
1378     /*
1379      * Optimize a rare case:
1380      * Confirm(x, '=', Constlike) ==> Constlike
1381      */
1382     if (is_irn_constlike(bound)) {
1383       DBG_OPT_CONFIRM(n, bound);
1384       return bound;
1385     }
1386   }
1387   return get_opt_remove_confirm() ? get_Confirm_value(n) : n;
1388 }
1389
1390 /**
1391  * Optimize CopyB(mem, x, x) into a Nop
1392  */
1393 static ir_node *equivalent_node_CopyB(ir_node *n)
1394 {
1395   ir_node *a = get_CopyB_dst(n);
1396   ir_node *b = get_CopyB_src(n);
1397
1398   if (a == b) {
1399     /* Turn CopyB into a tuple (mem, bad, bad) */
1400     ir_node *mem = get_CopyB_mem(n);
1401     turn_into_tuple(n, pn_CopyB_max);
1402     set_Tuple_pred(n, pn_CopyB_M,        mem);
1403     set_Tuple_pred(n, pn_CopyB_X_except, new_Bad());        /* no exception */
1404     set_Tuple_pred(n, pn_Call_M_except,  new_Bad());
1405   }
1406   return n;
1407 }
1408
1409 /**
1410  * equivalent_node() returns a node equivalent to input n. It skips all nodes that
1411  * perform no actual computation, as, e.g., the Id nodes.  It does not create
1412  * new nodes.  It is therefore safe to free n if the node returned is not n.
1413  * If a node returns a Tuple we can not just skip it.  If the size of the
1414  * in array fits, we transform n into a tuple (e.g., Div).
1415  */
1416 ir_node *
1417 equivalent_node(ir_node *n)
1418 {
1419   if (n->op->ops.equivalent_node)
1420     return n->op->ops.equivalent_node(n);
1421   return n;
1422 }
1423
1424 /**
1425  * sets the default equivalent node operation for an ir_op_ops.
1426  *
1427  * @param code   the opcode for the default operation
1428  * @param ops    the operations initialized
1429  *
1430  * @return
1431  *    The operations.
1432  */
1433 static ir_op_ops *firm_set_default_equivalent_node(opcode code, ir_op_ops *ops)
1434 {
1435 #define CASE(a)                                 \
1436   case iro_##a:                                 \
1437     ops->equivalent_node  = equivalent_node_##a; \
1438     break
1439
1440   switch (code) {
1441   CASE(Block);
1442   CASE(Jmp);
1443   CASE(Raise);
1444   CASE(Or);
1445   CASE(Add);
1446   CASE(Eor);
1447   CASE(Sub);
1448   CASE(Shl);
1449   CASE(Shr);
1450   CASE(Shrs);
1451   CASE(Rot);
1452   CASE(Not);
1453   CASE(Minus);
1454   CASE(Mul);
1455   CASE(Div);
1456   CASE(DivMod);
1457   CASE(And);
1458   CASE(Conv);
1459   CASE(Cast);
1460   CASE(Phi);
1461   CASE(Proj);
1462   CASE(Id);
1463   CASE(Mux);
1464   CASE(Cmp);
1465   CASE(Confirm);
1466   CASE(CopyB);
1467   default:
1468     /* leave NULL */;
1469   }
1470
1471   return ops;
1472 #undef CASE
1473 }
1474
1475 /**
1476  * Do node specific optimizations of nodes predecessors.
1477  */
1478 static void
1479 optimize_preds(ir_node *n) {
1480   ir_node *a = NULL, *b = NULL;
1481
1482   /* get the operands we will work on for simple cases. */
1483   if (is_binop(n)) {
1484     a = get_binop_left(n);
1485     b = get_binop_right(n);
1486   } else if (is_unop(n)) {
1487     a = get_unop_op(n);
1488   }
1489
1490   switch (get_irn_opcode(n)) {
1491
1492   case iro_Cmp:
1493     /* We don't want Cast as input to Cmp. */
1494     if (get_irn_op(a) == op_Cast) {
1495       a = get_Cast_op(a);
1496       set_Cmp_left(n, a);
1497     }
1498     if (get_irn_op(b) == op_Cast) {
1499       b = get_Cast_op(b);
1500       set_Cmp_right(n, b);
1501     }
1502     break;
1503
1504   default: break;
1505   } /* end switch */
1506 }
1507
1508 /**
1509  * Transform AddP(P, ConvIs(Iu)), AddP(P, ConvIu(Is)) and
1510  * SubP(P, ConvIs(Iu)), SubP(P, ConvIu(Is)).
1511  * If possible, remove the Conv's.
1512  */
1513 static ir_node *transform_node_AddSub(ir_node *n)
1514 {
1515   ir_mode *mode = get_irn_mode(n);
1516
1517   if (mode_is_reference(mode)) {
1518     ir_node *left  = get_binop_left(n);
1519     ir_node *right = get_binop_right(n);
1520     int ref_bits   = get_mode_size_bits(mode);
1521
1522     if (get_irn_op(left) == op_Conv) {
1523       ir_mode *mode = get_irn_mode(left);
1524       int bits      = get_mode_size_bits(mode);
1525
1526       if (ref_bits == bits &&
1527           mode_is_int(mode) &&
1528           get_mode_arithmetic(mode) == irma_twos_complement) {
1529         ir_node *pre      = get_Conv_op(left);
1530         ir_mode *pre_mode = get_irn_mode(pre);
1531
1532         if (mode_is_int(pre_mode) &&
1533             get_mode_size_bits(pre_mode) == bits &&
1534             get_mode_arithmetic(pre_mode) == irma_twos_complement) {
1535           /* ok, this conv just changes to sign, moreover the calculation
1536            * is done with same number of bits as our address mode, so
1537            * we can ignore the conv as address calculation can be viewed
1538            * as either signed or unsigned
1539            */
1540           set_binop_left(n, pre);
1541         }
1542       }
1543     }
1544
1545     if (get_irn_op(right) == op_Conv) {
1546       ir_mode *mode = get_irn_mode(right);
1547       int bits      = get_mode_size_bits(mode);
1548
1549       if (ref_bits == bits &&
1550           mode_is_int(mode) &&
1551           get_mode_arithmetic(mode) == irma_twos_complement) {
1552         ir_node *pre      = get_Conv_op(right);
1553         ir_mode *pre_mode = get_irn_mode(pre);
1554
1555         if (mode_is_int(pre_mode) &&
1556             get_mode_size_bits(pre_mode) == bits &&
1557             get_mode_arithmetic(pre_mode) == irma_twos_complement) {
1558           /* ok, this conv just changes to sign, moreover the calculation
1559            * is done with same number of bits as our address mode, so
1560            * we can ignore the conv as address calculation can be viewed
1561            * as either signed or unsigned
1562            */
1563           set_binop_right(n, pre);
1564         }
1565       }
1566     }
1567   }
1568   return n;
1569 }
1570
1571 /**
1572  * Do the AddSub optimization, then Transform Add(a,a) into Mul(a, 2)
1573  * if the mode is integer or float.
1574  * Transform Add(a,-b) into Sub(a,b).
1575  * Reassociation might fold this further.
1576  */
1577 static ir_node *transform_node_Add(ir_node *n)
1578 {
1579   ir_mode *mode;
1580   ir_node *oldn = n;
1581
1582   n = transform_node_AddSub(n);
1583
1584   mode = get_irn_mode(n);
1585   if (mode_is_num(mode)) {
1586     ir_node *a = get_Add_left(n);
1587
1588     if (a == get_Add_right(n)) {
1589       ir_node *block = get_irn_n(n, -1);
1590
1591       n = new_rd_Mul(
1592             get_irn_dbg_info(n),
1593             current_ir_graph,
1594             block,
1595             a,
1596             new_r_Const_long(current_ir_graph, block, mode, 2),
1597             mode);
1598       DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_A);
1599     }
1600     else {
1601       ir_node *b = get_Add_right(n);
1602
1603       if (get_irn_op(a) == op_Minus) {
1604         n = new_rd_Sub(
1605             get_irn_dbg_info(n),
1606             current_ir_graph,
1607             get_irn_n(n, -1),
1608             b,
1609             get_Minus_op(a),
1610             mode);
1611         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
1612       }
1613       else if (get_irn_op(b) == op_Minus) {
1614         n = new_rd_Sub(
1615             get_irn_dbg_info(n),
1616             current_ir_graph,
1617             get_irn_n(n, -1),
1618             a,
1619             get_Minus_op(b),
1620             mode);
1621         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
1622       }
1623     }
1624   }
1625   return n;
1626 }
1627
1628 /**
1629  * Do the AddSub optimization, then Transform Sub(0,a) into Minus(a).
1630  */
1631 static ir_node *transform_node_Sub(ir_node *n)
1632 {
1633   ir_mode *mode;
1634   ir_node *oldn = n;
1635
1636   n = transform_node_AddSub(n);
1637
1638   mode = get_irn_mode(n);
1639   if (mode_is_num(mode) && (classify_Const(get_Sub_left(n)) == CNST_NULL)) {
1640     n = new_rd_Minus(
1641           get_irn_dbg_info(n),
1642           current_ir_graph,
1643           get_irn_n(n, -1),
1644           get_Sub_right(n),
1645           mode);
1646     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
1647   }
1648
1649   return n;
1650 }
1651
1652 /**
1653  * Transform Mul(a,-1) into -a.
1654  * Do architecture dependent optimizations on Mul nodes
1655  */
1656 static ir_node *transform_node_Mul(ir_node *n) {
1657   ir_node *oldn = n;
1658   ir_mode *mode = get_irn_mode(n);
1659
1660   if (mode_is_signed(mode)) {
1661     ir_node *r = NULL;
1662     ir_node *a = get_Mul_left(n);
1663     ir_node *b = get_Mul_right(n);
1664
1665     if (value_of(a) == get_mode_minus_one(mode))
1666       r = b;
1667     else if (value_of(b) == get_mode_minus_one(mode))
1668       r = a;
1669     if (r) {
1670       n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), r, mode);
1671       DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
1672       return n;
1673     }
1674   }
1675   return arch_dep_replace_mul_with_shifts(n);
1676 }
1677
1678 /**
1679  * transform a Div Node
1680  */
1681 static ir_node *transform_node_Div(ir_node *n)
1682 {
1683   tarval *tv = value_of(n);
1684   ir_node *value = n;
1685
1686   /* BEWARE: it is NOT possible to optimize a/a to 1, as this may cause a exception */
1687
1688   if (tv != tarval_bad) {
1689     value = new_Const(get_tarval_mode(tv), tv);
1690
1691     DBG_OPT_CSTEVAL(n, value);
1692   }
1693   else /* Try architecture dependent optimization */
1694     value = arch_dep_replace_div_by_const(n);
1695
1696   if (value != n) {
1697     /* Turn Div into a tuple (mem, bad, value) */
1698     ir_node *mem = get_Div_mem(n);
1699
1700     turn_into_tuple(n, pn_Div_max);
1701     set_Tuple_pred(n, pn_Div_M, mem);
1702     set_Tuple_pred(n, pn_Div_X_except, new_Bad());
1703     set_Tuple_pred(n, pn_Div_res, value);
1704   }
1705   return n;
1706 }
1707
1708 /**
1709  * transform a Mod node
1710  */
1711 static ir_node *transform_node_Mod(ir_node *n)
1712 {
1713   tarval *tv = value_of(n);
1714   ir_node *value = n;
1715
1716   /* BEWARE: it is NOT possible to optimize a%a to 0, as this may cause a exception */
1717
1718   if (tv != tarval_bad) {
1719     value = new_Const(get_tarval_mode(tv), tv);
1720
1721     DBG_OPT_CSTEVAL(n, value);
1722   }
1723   else /* Try architecture dependent optimization */
1724     value = arch_dep_replace_mod_by_const(n);
1725
1726   if (value != n) {
1727     /* Turn Mod into a tuple (mem, bad, value) */
1728     ir_node *mem = get_Mod_mem(n);
1729
1730     turn_into_tuple(n, 3);
1731     set_Tuple_pred(n, pn_Mod_M, mem);
1732     set_Tuple_pred(n, pn_Mod_X_except, new_Bad());
1733     set_Tuple_pred(n, pn_Mod_res, value);
1734   }
1735   return n;
1736 }
1737
1738 /**
1739  * transform a DivMod node
1740  */
1741 static ir_node *transform_node_DivMod(ir_node *n)
1742 {
1743   int evaluated = 0;
1744
1745   ir_node *a = get_DivMod_left(n);
1746   ir_node *b = get_DivMod_right(n);
1747   ir_mode *mode = get_irn_mode(a);
1748   tarval *ta = value_of(a);
1749   tarval *tb = value_of(b);
1750
1751   if (!(mode_is_int(mode) && mode_is_int(get_irn_mode(b))))
1752     return n;
1753
1754   /* BEWARE: it is NOT possible to optimize a/a to 1, as this may cause a exception */
1755
1756   if (tb != tarval_bad) {
1757     if (tb == get_mode_one(get_tarval_mode(tb))) {
1758       b = new_Const (mode, get_mode_null(mode));
1759       evaluated = 1;
1760
1761       DBG_OPT_CSTEVAL(n, b);
1762     }
1763     else if (ta != tarval_bad) {
1764       tarval *resa, *resb;
1765       resa = tarval_div (ta, tb);
1766       if (resa == tarval_bad) return n; /* Causes exception!!! Model by replacing through
1767                                         Jmp for X result!? */
1768       resb = tarval_mod (ta, tb);
1769       if (resb == tarval_bad) return n; /* Causes exception! */
1770       a = new_Const (mode, resa);
1771       b = new_Const (mode, resb);
1772       evaluated = 1;
1773
1774       DBG_OPT_CSTEVAL(n, a);
1775       DBG_OPT_CSTEVAL(n, b);
1776     }
1777     else { /* Try architecture dependent optimization */
1778       arch_dep_replace_divmod_by_const(&a, &b, n);
1779       evaluated = a != NULL;
1780     }
1781   } else if (ta == get_mode_null(mode)) {
1782     /* 0 / non-Const = 0 */
1783     b = a;
1784     evaluated = 1;
1785   }
1786
1787   if (evaluated) { /* replace by tuple */
1788     ir_node *mem = get_DivMod_mem(n);
1789     turn_into_tuple(n, 4);
1790     set_Tuple_pred(n, pn_DivMod_M,        mem);
1791     set_Tuple_pred(n, pn_DivMod_X_except, new_Bad());  /* no exception */
1792     set_Tuple_pred(n, pn_DivMod_res_div,  a);
1793     set_Tuple_pred(n, pn_DivMod_res_mod,  b);
1794   }
1795
1796   return n;
1797 }
1798
1799 /**
1800  * Optimize Abs(x) into  x if x is Confirmed >= 0
1801  * Optimize Abs(x) into -x if x is Confirmed <= 0
1802  */
1803 static ir_node *transform_node_Abs(ir_node *n)
1804 {
1805   ir_node        *oldn = n;
1806   ir_node        *a = get_Abs_op(n);
1807   value_classify sign = classify_value_sign(a);
1808
1809   if (sign == VALUE_NEGATIVE) {
1810     ir_mode *mode = get_irn_mode(n);
1811
1812     /*
1813      * We can replace the Abs by -x here.
1814      * We even could add a new Confirm here.
1815      *
1816      * Note that -x would create a new node, so we could
1817      * not run it in the equivalent_node() context.
1818      */
1819     n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph,
1820                      get_irn_n(n, -1), a, mode);
1821
1822     DBG_OPT_CONFIRM(oldn, n);
1823   }
1824   else if (sign == VALUE_POSITIVE) {
1825     /* n is positive, Abs is not needed */
1826     n = a;
1827
1828     DBG_OPT_CONFIRM(oldn, n);
1829   }
1830
1831   return n;
1832 }
1833
1834 /**
1835  * transform a Cond node
1836  */
1837 static ir_node *transform_node_Cond(ir_node *n)
1838 {
1839   /* Replace the Cond by a Jmp if it branches on a constant
1840      condition. */
1841   ir_node *jmp;
1842   ir_node *a = get_Cond_selector(n);
1843   tarval *ta = value_of(a);
1844
1845   /* we need block info which is not available in floating irgs */
1846   if (get_irg_pinned(current_ir_graph) == op_pin_state_floats)
1847      return n;
1848
1849   if ((ta != tarval_bad) &&
1850       (get_irn_mode(a) == mode_b) &&
1851       (get_opt_unreachable_code())) {
1852     /* It's a boolean Cond, branching on a boolean constant.
1853                Replace it by a tuple (Bad, Jmp) or (Jmp, Bad) */
1854     jmp = new_r_Jmp(current_ir_graph, get_nodes_block(n));
1855     turn_into_tuple(n, 2);
1856     if (ta == tarval_b_true) {
1857       set_Tuple_pred(n, pn_Cond_false, new_Bad());
1858       set_Tuple_pred(n, pn_Cond_true, jmp);
1859     } else {
1860       set_Tuple_pred(n, pn_Cond_false, jmp);
1861       set_Tuple_pred(n, pn_Cond_true, new_Bad());
1862     }
1863     /* We might generate an endless loop, so keep it alive. */
1864     add_End_keepalive(get_irg_end(current_ir_graph), get_nodes_block(n));
1865   }
1866   return n;
1867 }
1868
1869 /**
1870  * Transform an Eor.
1871  */
1872 static ir_node *transform_node_Eor(ir_node *n)
1873 {
1874   ir_node *oldn = n;
1875   ir_node *a = get_Eor_left(n);
1876   ir_node *b = get_Eor_right(n);
1877   ir_mode *mode = get_irn_mode(n);
1878
1879   if (a == b) {
1880     /* a ^ a = 0 */
1881     n = new_rd_Const(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1),
1882                      mode, get_mode_null(mode));
1883     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_A_A);
1884   }
1885   else if ((mode == mode_b)
1886       && (get_irn_op(a) == op_Proj)
1887       && (get_irn_mode(a) == mode_b)
1888       && (classify_tarval (value_of(b)) == TV_CLASSIFY_ONE)
1889       && (get_irn_op(get_Proj_pred(a)) == op_Cmp)) {
1890     /* The Eor negates a Cmp. The Cmp has the negated result anyways! */
1891     n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
1892                    mode_b, get_negated_pnc(get_Proj_proj(a), mode));
1893
1894     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT_BOOL);
1895   }
1896   else if ((mode == mode_b)
1897         && (classify_tarval (value_of(b)) == TV_CLASSIFY_ONE)) {
1898     /* The Eor is a Not. Replace it by a Not. */
1899     /*   ????!!!Extend to bitfield 1111111. */
1900     n = new_r_Not(current_ir_graph, get_irn_n(n, -1), a, mode_b);
1901
1902     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
1903   }
1904
1905   return n;
1906 }
1907
1908 /**
1909  * Transform a boolean Not.
1910  */
1911 static ir_node *transform_node_Not(ir_node *n)
1912 {
1913   ir_node *oldn = n;
1914   ir_node *a = get_Not_op(n);
1915
1916   if (   (get_irn_mode(n) == mode_b)
1917       && (get_irn_op(a) == op_Proj)
1918       && (get_irn_mode(a) == mode_b)
1919       && (get_irn_op(get_Proj_pred(a)) == op_Cmp)) {
1920     /* We negate a Cmp. The Cmp has the negated result anyways! */
1921     n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
1922                    mode_b, get_negated_pnc(get_Proj_proj(a), mode_b));
1923     DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_CMP);
1924   }
1925
1926   return n;
1927 }
1928
1929 /**
1930  * Transform a Cast_type(Const) into a new Const_type
1931  */
1932 static ir_node *transform_node_Cast(ir_node *n) {
1933   ir_node *oldn = n;
1934   ir_node *pred = get_Cast_op(n);
1935   type *tp = get_irn_type(n);
1936
1937   if (get_irn_op(pred) == op_Const && get_Const_type(pred) != tp) {
1938     n = new_rd_Const_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_irn_mode(pred),
1939               get_Const_tarval(pred), tp);
1940     DBG_OPT_CSTEVAL(oldn, n);
1941   } else if ((get_irn_op(pred) == op_SymConst) && (get_SymConst_value_type(pred) != tp)) {
1942     n = new_rd_SymConst_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_SymConst_symbol(pred),
1943                  get_SymConst_kind(pred), tp);
1944     DBG_OPT_CSTEVAL(oldn, n);
1945   }
1946
1947   return n;
1948 }
1949
1950 /**
1951  * Transform a Proj(Div) with a non-zero value.
1952  * Removes the exceptions and routes the memory to the NoMem node.
1953  */
1954 static ir_node *transform_node_Proj_Div(ir_node *proj)
1955 {
1956   ir_node *n = get_Proj_pred(proj);
1957   ir_node *b = get_Div_right(n);
1958   long proj_nr;
1959
1960   if (value_not_zero(b)) {
1961     /* div(x, y) && y != 0 */
1962     proj_nr = get_Proj_proj(proj);
1963
1964     /* this node may float */
1965     set_irn_pinned(n, op_pin_state_floats);
1966
1967     if (proj_nr == pn_Div_X_except) {
1968       /* we found an exception handler, remove it */
1969       return new_Bad();
1970     } else if (proj_nr == pn_Div_M) {
1971       /* the memory Proj can be removed */
1972       ir_node *res = get_Div_mem(n);
1973       set_Div_mem(n, get_irg_no_mem(current_ir_graph));
1974
1975       return res;
1976     }
1977   }
1978   return proj;
1979 }
1980
1981 /**
1982  * Transform a Proj(Mod) with a non-zero value.
1983  * Removes the exceptions and routes the memory to the NoMem node.
1984  */
1985 static ir_node *transform_node_Proj_Mod(ir_node *proj)
1986 {
1987   ir_node *n = get_Proj_pred(proj);
1988   ir_node *b = get_Mod_right(n);
1989   long proj_nr;
1990
1991   if (value_not_zero(b)) {
1992     /* mod(x, y) && y != 0 */
1993     proj_nr = get_Proj_proj(proj);
1994
1995     /* this node may float */
1996     set_irn_pinned(n, op_pin_state_floats);
1997
1998     if (proj_nr == pn_Mod_X_except) {
1999       /* we found an exception handler, remove it */
2000       return new_Bad();
2001     } else if (proj_nr == pn_Mod_M) {
2002       /* the memory Proj can be removed */
2003       ir_node *res = get_Mod_mem(n);
2004       set_Mod_mem(n, get_irg_no_mem(current_ir_graph));
2005
2006       return res;
2007     }
2008     else if (proj_nr == pn_Mod_res && get_Mod_left(n) == b) {
2009       /* a % a = 0 if a != 0 */
2010       ir_mode *mode = get_irn_mode(proj);
2011       ir_node *res  = new_Const(mode, get_mode_null(mode));
2012
2013       DBG_OPT_CSTEVAL(n, res);
2014       return res;
2015     }
2016   }
2017   return proj;
2018 }
2019
2020 /**
2021  * Transform a Proj(DivMod) with a non-zero value.
2022  * Removes the exceptions and routes the memory to the NoMem node.
2023  */
2024 static ir_node *transform_node_Proj_DivMod(ir_node *proj)
2025 {
2026   ir_node *n = get_Proj_pred(proj);
2027   ir_node *b = get_DivMod_right(n);
2028   long proj_nr;
2029
2030   if (value_not_zero(b)) {
2031     /* DivMod(x, y) && y != 0 */
2032     proj_nr = get_Proj_proj(proj);
2033
2034     /* this node may float */
2035     set_irn_pinned(n, op_pin_state_floats);
2036
2037     if (proj_nr == pn_DivMod_X_except) {
2038       /* we found an exception handler, remove it */
2039       return new_Bad();
2040     }
2041     else if (proj_nr == pn_DivMod_M) {
2042       /* the memory Proj can be removed */
2043       ir_node *res = get_DivMod_mem(n);
2044       set_DivMod_mem(n, get_irg_no_mem(current_ir_graph));
2045
2046       return res;
2047     }
2048     else if (proj_nr == pn_DivMod_res_mod && get_DivMod_left(n) == b) {
2049       /* a % a = 0 if a != 0 */
2050       ir_mode *mode = get_irn_mode(proj);
2051       ir_node *res  = new_Const(mode, get_mode_null(mode));
2052
2053       DBG_OPT_CSTEVAL(n, res);
2054       return res;
2055     }
2056   }
2057   return proj;
2058 }
2059
2060 /**
2061  * Optimizes jump tables (CondIs or CondIu) by removing all impossible cases.
2062  */
2063 static ir_node *transform_node_Proj_Cond(ir_node *proj)
2064 {
2065   if (get_opt_unreachable_code()) {
2066     ir_node *n = get_Proj_pred(proj);
2067     ir_node *b = get_Cond_selector(n);
2068
2069     if (mode_is_int(get_irn_mode(b))) {
2070       tarval *tb = value_of(b);
2071
2072       if (tb != tarval_bad) {
2073         /* we have a constant switch */
2074         long num = get_Proj_proj(proj);
2075
2076         if (num != get_Cond_defaultProj(n)) { /* we cannot optimize default Proj's yet */
2077           if (get_tarval_long(tb) == num) {
2078             /* Do NOT create a jump here, or we will have 2 control flow ops
2079              * in a block. This case is optimized away in optimize_cf(). */
2080             return proj;
2081           }
2082           else {
2083             /* this case will NEVER be taken, kill it */
2084             return new_Bad();
2085           }
2086         }
2087       }
2088     }
2089   }
2090   return proj;
2091 }
2092
2093 /**
2094  * Normalizes and optimizes Cmp nodes.
2095  */
2096 static ir_node *transform_node_Proj_Cmp(ir_node *proj)
2097 {
2098   if (get_opt_reassociation()) {
2099     ir_node *n     = get_Proj_pred(proj);
2100     ir_node *left  = get_Cmp_left(n);
2101     ir_node *right = get_Cmp_right(n);
2102     ir_node *c     = NULL;
2103     tarval *tv     = NULL;
2104     int changed    = 0;
2105     ir_mode *mode  = NULL;
2106     long proj_nr   = get_Proj_proj(proj);
2107
2108     /*
2109      * First step: normalize the compare op
2110      * by placing the constant on the right site
2111      * or moving the lower address node to the left.
2112      * We ignore the case that both are constants
2113      * this case should be optimized away.
2114      */
2115     if (get_irn_op(right) == op_Const)
2116       c = right;
2117     else if (get_irn_op(left) == op_Const) {
2118       c     = left;
2119       left  = right;
2120       right = c;
2121
2122       proj_nr = get_inversed_pnc(proj_nr);
2123       changed |= 1;
2124     }
2125     else if (left > right) {
2126       ir_node *t = left;
2127
2128       left  = right;
2129       right = t;
2130
2131       proj_nr = get_inversed_pnc(proj_nr);
2132       changed |= 1;
2133     }
2134
2135     /*
2136      * Second step: Try to reduce the magnitude
2137      * of a constant. This may help to generate better code
2138      * later and may help to normalize more compares.
2139      * Of course this is only possible for integer values.
2140      */
2141     if (c) {
2142       mode = get_irn_mode(c);
2143       tv = get_Const_tarval(c);
2144
2145       if (tv != tarval_bad) {
2146         /* the following optimization is possible on modes without Overflow
2147          * on Unary Minus or on == and !=:
2148          * -a CMP c  ==>  a swap(CMP) -c
2149          *
2150          * Beware: for two-complement Overflow may occur, so only == and != can
2151          * be optimized, see this:
2152          * -MININT < 0 =/=> MININT > 0 !!!
2153          */
2154         if (get_opt_constant_folding() && get_irn_op(left) == op_Minus &&
2155             (!mode_overflow_on_unary_Minus(mode) ||
2156              (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
2157           left = get_Minus_op(left);
2158           tv = tarval_sub(get_mode_null(mode), tv);
2159
2160           proj_nr = get_inversed_pnc(proj_nr);
2161           changed |= 2;
2162         }
2163
2164         /* for integer modes, we have more */
2165         if (mode_is_int(mode)) {
2166           /* Ne includes Unordered which is not possible on integers.
2167            * However, frontends often use this wrong, so fix it here */
2168           if (proj_nr & pn_Cmp_Uo) {
2169             proj_nr &= ~pn_Cmp_Uo;
2170             set_Proj_proj(proj, proj_nr);
2171           }
2172
2173           /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
2174           if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
2175               tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
2176             tv = tarval_sub(tv, get_mode_one(mode));
2177
2178             proj_nr ^= pn_Cmp_Eq;
2179             changed |= 2;
2180           }
2181           /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
2182           else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
2183               tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
2184             tv = tarval_add(tv, get_mode_one(mode));
2185
2186             proj_nr ^= pn_Cmp_Eq;
2187             changed |= 2;
2188           }
2189
2190           /* the following reassociations work only for == and != */
2191           if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
2192
2193             /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
2194             if (classify_tarval(tv) == TV_CLASSIFY_NULL && get_irn_op(left) == op_Sub) {
2195               right = get_Sub_right(left);
2196               left  = get_Sub_left(left);
2197
2198               tv = value_of(right);
2199               changed = 1;
2200             }
2201
2202             if (tv != tarval_bad) {
2203               ir_op *op = get_irn_op(left);
2204
2205               /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
2206               if (op == op_Sub) {
2207                 ir_node *c1 = get_Sub_right(left);
2208                 tarval *tv2 = value_of(c1);
2209
2210                 if (tv2 != tarval_bad) {
2211                   tv2 = tarval_add(tv, value_of(c1));
2212
2213                   if (tv2 != tarval_bad) {
2214                     left    = get_Sub_left(left);
2215                     tv      = tv2;
2216                     changed |= 2;
2217                   }
2218                 }
2219               }
2220               /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
2221               else if (op == op_Add) {
2222                 ir_node *a_l = get_Add_left(left);
2223                 ir_node *a_r = get_Add_right(left);
2224                 ir_node *a;
2225                 tarval *tv2;
2226
2227                 if (get_irn_op(a_l) == op_Const) {
2228                   a = a_r;
2229                   tv2 = value_of(a_l);
2230                 }
2231                 else {
2232                   a = a_l;
2233                   tv2 = value_of(a_r);
2234                 }
2235
2236                 if (tv2 != tarval_bad) {
2237                   tv2 = tarval_sub(tv, tv2);
2238
2239                   if (tv2 != tarval_bad) {
2240                     left    = a;
2241                     tv      = tv2;
2242                     changed |= 2;
2243                   }
2244                 }
2245               }
2246               /* -a == c ==> a == -c, -a != c ==> a != -c */
2247               else if (op == op_Minus) {
2248                 tarval *tv2 = tarval_sub(get_mode_null(mode), tv);
2249
2250                 if (tv2 != tarval_bad) {
2251                   left    = get_Minus_op(left);
2252                   tv      = tv2;
2253                   changed |= 2;
2254                 }
2255               }
2256             }
2257           } /* == or != */
2258           /* the following reassociations work only for <= */
2259           else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
2260             if (tv != tarval_bad) {
2261               ir_op *op = get_irn_op(left);
2262
2263               /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
2264               if (op == op_Abs) {
2265               }
2266             }
2267           }
2268         } /* mode_is_int */
2269       }
2270     }
2271
2272     if (changed) {
2273       ir_node *block = get_irn_n(n, -1); /* Beware of get_nodes_Block() */
2274
2275       if (changed & 2)      /* need a new Const */
2276         right = new_Const(mode, tv);
2277
2278       /* create a new compare */
2279       n = new_rd_Cmp(get_irn_dbg_info(n), current_ir_graph, block,
2280             left, right);
2281
2282       set_Proj_pred(proj, n);
2283       set_Proj_proj(proj, proj_nr);
2284     }
2285   }
2286   return proj;
2287 }
2288
2289 /**
2290  * Does all optimizations on nodes that must be done on it's Proj's
2291  * because of creating new nodes.
2292  */
2293 static ir_node *transform_node_Proj(ir_node *proj)
2294 {
2295   ir_node *n = get_Proj_pred(proj);
2296
2297   switch (get_irn_opcode(n)) {
2298   case iro_Div:
2299     return transform_node_Proj_Div(proj);
2300
2301   case iro_Mod:
2302     return transform_node_Proj_Mod(proj);
2303
2304   case iro_DivMod:
2305     return transform_node_Proj_DivMod(proj);
2306
2307   case iro_Cond:
2308     return transform_node_Proj_Cond(proj);
2309
2310   case iro_Cmp:
2311     return transform_node_Proj_Cmp(proj);
2312
2313   case iro_Tuple:
2314     /* should not happen, but if it does will be optimized away */
2315     return equivalent_node_Proj(proj);
2316
2317   default:
2318     /* do nothing */
2319     return proj;
2320   }
2321 }
2322
2323 /**
2324  * returns the operands of a commutative bin-op, if one operand is
2325  * a const, it is returned as the second one.
2326  */
2327 static void get_comm_Binop_Ops(ir_node *binop, ir_node **a, ir_node **c)
2328 {
2329   ir_node *op_a = get_binop_left(binop);
2330   ir_node *op_b = get_binop_right(binop);
2331
2332   assert(is_op_commutative(get_irn_op(binop)));
2333
2334   if (get_irn_op(op_a) == op_Const) {
2335     *a = op_b;
2336     *c = op_a;
2337   }
2338   else {
2339     *a = op_a;
2340     *c = op_b;
2341   }
2342 }
2343
2344 /**
2345  * Optimize a Or(And(Or(And(v,c4),c3),c2),c1) pattern if possible.
2346  * Such pattern may arise in bitfield stores.
2347  *
2348  * value  c4                  value      c4 & c2
2349  *    AND     c3                    AND           c1 | c3
2350  *        OR     c2      ===>               OR
2351  *           AND    c1
2352  *               OR
2353  */
2354 static ir_node *transform_node_Or_bf_store(ir_node *or)
2355 {
2356   ir_node *and, *c1;
2357   ir_node *or_l, *c2;
2358   ir_node *and_l, *c3;
2359   ir_node *value, *c4;
2360   ir_node *new_and, *new_const, *block;
2361   ir_mode *mode = get_irn_mode(or);
2362
2363   tarval *tv1, *tv2, *tv3, *tv4, *tv, *n_tv4, *n_tv2;
2364
2365   get_comm_Binop_Ops(or, &and, &c1);
2366   if ((get_irn_op(c1) != op_Const) || (get_irn_op(and) != op_And))
2367     return or;
2368
2369   get_comm_Binop_Ops(and, &or_l, &c2);
2370   if ((get_irn_op(c2) != op_Const) || (get_irn_op(or_l) != op_Or))
2371     return or;
2372
2373   get_comm_Binop_Ops(or_l, &and_l, &c3);
2374   if ((get_irn_op(c3) != op_Const) || (get_irn_op(and_l) != op_And))
2375     return or;
2376
2377   get_comm_Binop_Ops(and_l, &value, &c4);
2378   if (get_irn_op(c4) != op_Const)
2379     return or;
2380
2381   /* ok, found the pattern, check for conditions */
2382   assert(mode == get_irn_mode(and));
2383   assert(mode == get_irn_mode(or_l));
2384   assert(mode == get_irn_mode(and_l));
2385
2386   tv1 = get_Const_tarval(c1);
2387   tv2 = get_Const_tarval(c2);
2388   tv3 = get_Const_tarval(c3);
2389   tv4 = get_Const_tarval(c4);
2390
2391   tv = tarval_or(tv4, tv2);
2392   if (classify_tarval(tv) != TV_CLASSIFY_ALL_ONE) {
2393     /* have at least one 0 at the same bit position */
2394     return or;
2395   }
2396
2397   n_tv4 = tarval_not(tv4);
2398   if (tv3 != tarval_and(tv3, n_tv4)) {
2399     /* bit in the or_mask is outside the and_mask */
2400     return or;
2401   }
2402
2403   n_tv2 = tarval_not(tv2);
2404   if (tv1 != tarval_and(tv1, n_tv2)) {
2405     /* bit in the or_mask is outside the and_mask */
2406     return or;
2407   }
2408
2409   /* ok, all conditions met */
2410   block = get_irn_n(or, -1);
2411
2412   new_and = new_r_And(current_ir_graph, block,
2413       value, new_r_Const(current_ir_graph, block, mode, tarval_and(tv4, tv2)), mode);
2414
2415   new_const = new_r_Const(current_ir_graph, block, mode, tarval_or(tv3, tv1));
2416
2417   set_Or_left(or, new_and);
2418   set_Or_right(or, new_const);
2419
2420   /* check for more */
2421   return transform_node_Or_bf_store(or);
2422 }
2423
2424 /**
2425  * Optimize an Or(shl(x, c), shr(x, bits - c)) into a Rot
2426  */
2427 static ir_node *transform_node_Or_Rot(ir_node *or)
2428 {
2429   ir_mode *mode = get_irn_mode(or);
2430   ir_node *shl, *shr, *block;
2431   ir_node *irn, *x, *c1, *c2, *v, *sub, *n;
2432   tarval *tv1, *tv2;
2433
2434   if (! mode_is_int(mode))
2435     return or;
2436
2437   shl = get_binop_left(or);
2438   shr = get_binop_right(or);
2439
2440   if (get_irn_op(shl) == op_Shr) {
2441     if (get_irn_op(shr) != op_Shl)
2442       return or;
2443
2444     irn = shl;
2445     shl = shr;
2446     shr = irn;
2447   }
2448   else if (get_irn_op(shl) != op_Shl)
2449     return or;
2450   else if (get_irn_op(shr) != op_Shr)
2451     return or;
2452
2453   x = get_Shl_left(shl);
2454   if (x != get_Shr_left(shr))
2455     return or;
2456
2457   c1 = get_Shl_right(shl);
2458   c2 = get_Shr_right(shr);
2459   if (get_irn_op(c1) == op_Const && get_irn_op(c2) == op_Const) {
2460     tv1 = get_Const_tarval(c1);
2461     if (! tarval_is_long(tv1))
2462       return or;
2463
2464     tv2 = get_Const_tarval(c2);
2465     if (! tarval_is_long(tv2))
2466       return or;
2467
2468     if (get_tarval_long(tv1) + get_tarval_long(tv2)
2469         != get_mode_size_bits(mode))
2470       return or;
2471
2472     /* yet, condition met */
2473     block = get_irn_n(or, -1);
2474
2475     n = new_r_Rot(current_ir_graph, block, x, c1, mode);
2476
2477     DBG_OPT_ALGSIM1(or, shl, shr, n, FS_OPT_OR_SHFT_TO_ROT);
2478     return n;
2479   }
2480   else if (get_irn_op(c1) == op_Sub) {
2481     v   = c2;
2482     sub = c1;
2483
2484     if (get_Sub_right(sub) != v)
2485       return or;
2486
2487     c1 = get_Sub_left(sub);
2488     if (get_irn_op(c1) != op_Const)
2489       return or;
2490
2491     tv1 = get_Const_tarval(c1);
2492     if (! tarval_is_long(tv1))
2493       return or;
2494
2495     if (get_tarval_long(tv1) != get_mode_size_bits(mode))
2496       return or;
2497
2498     /* yet, condition met */
2499     block = get_nodes_block(or);
2500
2501     /* a Rot right is not supported, so use a rot left */
2502     n =  new_r_Rot(current_ir_graph, block, x, sub, mode);
2503
2504     DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
2505     return n;
2506   }
2507   else if (get_irn_op(c2) == op_Sub) {
2508     v   = c1;
2509     sub = c2;
2510
2511     c1 = get_Sub_left(sub);
2512     if (get_irn_op(c1) != op_Const)
2513       return or;
2514
2515     tv1 = get_Const_tarval(c1);
2516     if (! tarval_is_long(tv1))
2517       return or;
2518
2519     if (get_tarval_long(tv1) != get_mode_size_bits(mode))
2520       return or;
2521
2522     /* yet, condition met */
2523     block = get_irn_n(or, -1);
2524
2525     /* a Rot Left */
2526     n = new_r_Rot(current_ir_graph, block, x, v, mode);
2527
2528     DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
2529     return n;
2530   }
2531
2532   return or;
2533 }
2534
2535 /**
2536  * Optimize an Or
2537  */
2538 static ir_node *transform_node_Or(ir_node *or)
2539 {
2540   or = transform_node_Or_bf_store(or);
2541   or = transform_node_Or_Rot(or);
2542
2543   return or;
2544 }
2545
2546 /* forward */
2547 static ir_node *transform_node(ir_node *n);
2548
2549 /**
2550  * Optimize (a >> c1) >> c2), works for Shr, Shrs, Shl.
2551  *
2552  * Should be moved to reassociation?
2553  */
2554 static ir_node *transform_node_shift(ir_node *n)
2555 {
2556   ir_node *left, *right;
2557   tarval *tv1, *tv2, *res;
2558   ir_mode *mode;
2559   int modulo_shf, flag;
2560
2561   left = get_binop_left(n);
2562
2563   /* different operations */
2564   if (get_irn_op(left) != get_irn_op(n))
2565     return n;
2566
2567   right = get_binop_right(n);
2568   tv1 = value_of(right);
2569   if (tv1 == tarval_bad)
2570     return n;
2571
2572   tv2 = value_of(get_binop_right(left));
2573   if (tv2 == tarval_bad)
2574     return n;
2575
2576   res = tarval_add(tv1, tv2);
2577
2578   /* beware: a simple replacement works only, if res < modulo shift */
2579   mode = get_irn_mode(n);
2580
2581   flag = 0;
2582
2583   modulo_shf = get_mode_modulo_shift(mode);
2584   if (modulo_shf > 0) {
2585     tarval *modulo = new_tarval_from_long(modulo_shf, get_tarval_mode(res));
2586
2587     if (tarval_cmp(res, modulo) & pn_Cmp_Lt)
2588       flag = 1;
2589   }
2590   else
2591     flag = 1;
2592
2593   if (flag) {
2594     /* ok, we can replace it */
2595     ir_node *in[2], *irn, *block = get_irn_n(n, -1);
2596
2597     in[0] = get_binop_left(left);
2598     in[1] = new_r_Const(current_ir_graph, block, get_tarval_mode(res), res);
2599
2600     irn = new_ir_node(NULL, current_ir_graph, block, get_irn_op(n), mode, 2, in);
2601
2602     DBG_OPT_ALGSIM0(n, irn, FS_OPT_REASSOC_SHIFT);
2603
2604     return transform_node(irn);
2605   }
2606   return n;
2607 }
2608
2609 #define transform_node_Shr  transform_node_shift
2610 #define transform_node_Shrs transform_node_shift
2611 #define transform_node_Shl  transform_node_shift
2612
2613 /**
2614  * Remove dead blocks and nodes in dead blocks
2615  * in keep alive list.  We do not generate a new End node.
2616  */
2617 static ir_node *transform_node_End(ir_node *n) {
2618   int i, n_keepalives = get_End_n_keepalives(n);
2619
2620   for (i = 0; i < n_keepalives; ++i) {
2621     ir_node *ka = get_End_keepalive(n, i);
2622     if (is_Block(ka)) {
2623       if (is_Block_dead(ka)) {
2624         set_End_keepalive(n, i, new_Bad());
2625       }
2626     }
2627     else if (is_irn_pinned_in_irg(ka) && is_Block_dead(get_nodes_block(ka)))
2628       set_End_keepalive(n, i, new_Bad());
2629   }
2630   return n;
2631 }
2632
2633 /**
2634  * Optimize a Mux into some simpler cases.
2635  */
2636 static ir_node *transform_node_Mux(ir_node *n)
2637 {
2638   ir_node *oldn = n, *sel = get_Mux_sel(n);
2639   ir_mode *mode = get_irn_mode(n);
2640
2641   if (get_irn_op(sel) == op_Proj && !mode_honor_signed_zeros(mode)) {
2642     ir_node *cmp = get_Proj_pred(sel);
2643     long proj_nr = get_Proj_proj(sel);
2644     ir_node *f   =  get_Mux_false(n);
2645     ir_node *t   = get_Mux_true(n);
2646
2647     if (get_irn_op(cmp) == op_Cmp && classify_Const(get_Cmp_right(cmp)) == CNST_NULL) {
2648       ir_node *block = get_irn_n(n, -1);
2649
2650       /*
2651        * Note: normalization puts the constant on the right site,
2652        * so we check only one case.
2653        *
2654        * Note further that these optimization work even for floating point
2655        * with NaN's because -NaN == NaN.
2656        * However, if +0 and -0 is handled differently, we cannot use the first one.
2657        */
2658       if (get_irn_op(f) == op_Minus &&
2659           get_Minus_op(f)   == t &&
2660           get_Cmp_left(cmp) == t) {
2661
2662         if (proj_nr == pn_Cmp_Ge || proj_nr == pn_Cmp_Gt) {
2663           /* Mux(a >=/> 0, -a, a)  ==>  Abs(a) */
2664           n = new_rd_Abs(get_irn_dbg_info(n),
2665                 current_ir_graph,
2666                 block,
2667                 t, mode);
2668           DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
2669           return n;
2670         }
2671         else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
2672           /* Mux(a <=/< 0, -a, a)  ==>  Minus(Abs(a)) */
2673           n = new_rd_Abs(get_irn_dbg_info(n),
2674                 current_ir_graph,
2675                 block,
2676                 t, mode);
2677           n = new_rd_Minus(get_irn_dbg_info(n),
2678                 current_ir_graph,
2679                 block,
2680                 n, mode);
2681
2682           DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
2683           return n;
2684         }
2685       }
2686       else if (get_irn_op(t) == op_Minus &&
2687           get_Minus_op(t)   == f &&
2688           get_Cmp_left(cmp) == f) {
2689
2690         if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
2691           /* Mux(a <=/< 0, a, -a)  ==>  Abs(a) */
2692           n = new_rd_Abs(get_irn_dbg_info(n),
2693                 current_ir_graph,
2694                 block,
2695                 f, mode);
2696           DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
2697           return n;
2698         }
2699         else if (proj_nr == pn_Cmp_Ge || proj_nr == pn_Cmp_Gt) {
2700           /* Mux(a >=/> 0, a, -a)  ==>  Minus(Abs(a)) */
2701           n = new_rd_Abs(get_irn_dbg_info(n),
2702                 current_ir_graph,
2703                 block,
2704                 f, mode);
2705           n = new_rd_Minus(get_irn_dbg_info(n),
2706                 current_ir_graph,
2707                 block,
2708                 n, mode);
2709
2710           DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
2711           return n;
2712         }
2713       }
2714
2715       if (mode_is_int(mode) && mode_is_signed(mode) &&
2716           get_mode_arithmetic(mode) == irma_twos_complement) {
2717         ir_node *x = get_Cmp_left(cmp);
2718
2719         /* the following optimization works only with signed integer two-complement mode */
2720
2721         if (mode == get_irn_mode(x)) {
2722           /*
2723            * FIXME: this restriction is two rigid, as it would still
2724            * work if mode(x) = Hs and mode == Is, but at least it removes
2725            * all wrong cases.
2726            */
2727           if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Le) &&
2728               classify_Const(t) == CNST_ALL_ONE &&
2729               classify_Const(f) == CNST_NULL) {
2730             /*
2731              * Mux(x:T </<= 0, 0, -1) -> Shrs(x, sizeof_bits(T) - 1)
2732              * Conditions:
2733              * T must be signed.
2734              */
2735             n = new_rd_Shrs(get_irn_dbg_info(n),
2736                   current_ir_graph, block, x,
2737                   new_r_Const_long(current_ir_graph, block, mode_Iu,
2738                     get_mode_size_bits(mode) - 1),
2739                   mode);
2740             DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
2741             return n;
2742           }
2743           else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Ge) &&
2744                    classify_Const(t) == CNST_ONE &&
2745                    classify_Const(f) == CNST_NULL) {
2746             /*
2747              * Mux(x:T >/>= 0, 0, 1) -> Shr(-x, sizeof_bits(T) - 1)
2748              * Conditions:
2749              * T must be signed.
2750              */
2751             n = new_rd_Shr(get_irn_dbg_info(n),
2752                   current_ir_graph, block,
2753                   new_r_Minus(current_ir_graph, block, x, mode),
2754                   new_r_Const_long(current_ir_graph, block, mode_Iu,
2755                     get_mode_size_bits(mode) - 1),
2756                   mode);
2757             DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
2758             return n;
2759           }
2760         }
2761       }
2762     }
2763   }
2764   return arch_transform_node_Mux(n);
2765 }
2766
2767 /**
2768  * Tries several [inplace] [optimizing] transformations and returns an
2769  * equivalent node.  The difference to equivalent_node() is that these
2770  * transformations _do_ generate new nodes, and thus the old node must
2771  * not be freed even if the equivalent node isn't the old one.
2772  */
2773 static ir_node *transform_node(ir_node *n)
2774 {
2775   if (n->op->ops.transform_node)
2776     n = n->op->ops.transform_node(n);
2777   return n;
2778 }
2779
2780 /**
2781  * sSets the default transform node operation for an ir_op_ops.
2782  *
2783  * @param code   the opcode for the default operation
2784  * @param ops    the operations initialized
2785  *
2786  * @return
2787  *    The operations.
2788  */
2789 static ir_op_ops *firm_set_default_transform_node(opcode code, ir_op_ops *ops)
2790 {
2791 #define CASE(a)                                 \
2792   case iro_##a:                                 \
2793     ops->transform_node  = transform_node_##a;   \
2794     break
2795
2796   switch (code) {
2797   CASE(Add);
2798   CASE(Sub);
2799   CASE(Mul);
2800   CASE(Div);
2801   CASE(Mod);
2802   CASE(DivMod);
2803   CASE(Abs);
2804   CASE(Cond);
2805   CASE(Eor);
2806   CASE(Not);
2807   CASE(Cast);
2808   CASE(Proj);
2809   CASE(Sel);
2810   CASE(Or);
2811   CASE(Shr);
2812   CASE(Shrs);
2813   CASE(Shl);
2814   CASE(End);
2815   CASE(Mux);
2816   default:
2817     /* leave NULL */;
2818   }
2819
2820   return ops;
2821 #undef CASE
2822 }
2823
2824
2825 /* **************** Common Subexpression Elimination **************** */
2826
2827 /** The size of the hash table used, should estimate the number of nodes
2828     in a graph. */
2829 #define N_IR_NODES 512
2830
2831 /** Compares the attributes of two Const nodes. */
2832 static int node_cmp_attr_Const(ir_node *a, ir_node *b)
2833 {
2834   return (get_Const_tarval(a) != get_Const_tarval(b))
2835       || (get_Const_type(a) != get_Const_type(b));
2836 }
2837
2838 /** Compares the attributes of two Proj nodes. */
2839 static int node_cmp_attr_Proj(ir_node *a, ir_node *b)
2840 {
2841   return get_irn_proj_attr (a) != get_irn_proj_attr (b);
2842 }
2843
2844 /** Compares the attributes of two Filter nodes. */
2845 static int node_cmp_attr_Filter(ir_node *a, ir_node *b)
2846 {
2847   return get_Filter_proj(a) != get_Filter_proj(b);
2848 }
2849
2850 /** Compares the attributes of two Alloc nodes. */
2851 static int node_cmp_attr_Alloc(ir_node *a, ir_node *b)
2852 {
2853   return (get_irn_alloc_attr(a).where != get_irn_alloc_attr(b).where)
2854       || (get_irn_alloc_attr(a).type != get_irn_alloc_attr(b).type);
2855 }
2856
2857 /** Compares the attributes of two Free nodes. */
2858 static int node_cmp_attr_Free(ir_node *a, ir_node *b)
2859 {
2860   return (get_irn_free_attr(a).where != get_irn_free_attr(b).where)
2861       || (get_irn_free_attr(a).type != get_irn_free_attr(b).type);
2862 }
2863
2864 /** Compares the attributes of two SymConst nodes. */
2865 static int node_cmp_attr_SymConst(ir_node *a, ir_node *b)
2866 {
2867   return (get_irn_symconst_attr(a).num != get_irn_symconst_attr(b).num)
2868       || (get_irn_symconst_attr(a).sym.type_p != get_irn_symconst_attr(b).sym.type_p)
2869       || (get_irn_symconst_attr(a).tp != get_irn_symconst_attr(b).tp);
2870 }
2871
2872 /** Compares the attributes of two Call nodes. */
2873 static int node_cmp_attr_Call(ir_node *a, ir_node *b)
2874 {
2875   return (get_irn_call_attr(a) != get_irn_call_attr(b));
2876 }
2877
2878 /** Compares the attributes of two Sel nodes. */
2879 static int node_cmp_attr_Sel(ir_node *a, ir_node *b)
2880 {
2881   return (get_irn_sel_attr(a).ent->kind  != get_irn_sel_attr(b).ent->kind)
2882       || (get_irn_sel_attr(a).ent->name    != get_irn_sel_attr(b).ent->name)
2883       || (get_irn_sel_attr(a).ent->owner   != get_irn_sel_attr(b).ent->owner)
2884       || (get_irn_sel_attr(a).ent->ld_name != get_irn_sel_attr(b).ent->ld_name)
2885       || (get_irn_sel_attr(a).ent->type    != get_irn_sel_attr(b).ent->type);
2886 }
2887
2888 /** Compares the attributes of two Phi nodes. */
2889 static int node_cmp_attr_Phi(ir_node *a, ir_node *b)
2890 {
2891   return get_irn_phi_attr (a) != get_irn_phi_attr (b);
2892 }
2893
2894 /** Compares the attributes of two Cast nodes. */
2895 static int node_cmp_attr_Cast(ir_node *a, ir_node *b)
2896 {
2897   return get_Cast_type(a) != get_Cast_type(b);
2898 }
2899
2900 /** Compares the attributes of two Load nodes. */
2901 static int node_cmp_attr_Load(ir_node *a, ir_node *b)
2902 {
2903   if (get_Load_volatility(a) == volatility_is_volatile ||
2904       get_Load_volatility(b) == volatility_is_volatile)
2905     /* NEVER do CSE on volatile Loads */
2906     return 1;
2907
2908   return get_Load_mode(a) != get_Load_mode(b);
2909 }
2910
2911 /** Compares the attributes of two Store nodes. */
2912 static int node_cmp_attr_Store(ir_node *a, ir_node *b)
2913 {
2914   /* NEVER do CSE on volatile Stores */
2915   return (get_Store_volatility(a) == volatility_is_volatile ||
2916           get_Store_volatility(b) == volatility_is_volatile);
2917 }
2918
2919 /** Compares the attributes of two Confirm nodes. */
2920 static int node_cmp_attr_Confirm(ir_node *a, ir_node *b)
2921 {
2922   return (get_Confirm_cmp(a) != get_Confirm_cmp(b));
2923 }
2924
2925 /**
2926  * Set the default node attribute compare operation for an ir_op_ops.
2927  *
2928  * @param code   the opcode for the default operation
2929  * @param ops    the operations initialized
2930  *
2931  * @return
2932  *    The operations.
2933  */
2934 static ir_op_ops *firm_set_default_node_cmp_attr(opcode code, ir_op_ops *ops)
2935 {
2936 #define CASE(a)                              \
2937   case iro_##a:                              \
2938     ops->node_cmp_attr  = node_cmp_attr_##a; \
2939     break
2940
2941   switch (code) {
2942   CASE(Const);
2943   CASE(Proj);
2944   CASE(Filter);
2945   CASE(Alloc);
2946   CASE(Free);
2947   CASE(SymConst);
2948   CASE(Call);
2949   CASE(Sel);
2950   CASE(Phi);
2951   CASE(Cast);
2952   CASE(Load);
2953   CASE(Store);
2954   CASE(Confirm);
2955   default:
2956     /* leave NULL */;
2957   }
2958
2959   return ops;
2960 #undef CASE
2961 }
2962
2963 /**
2964  * Compare function for two nodes in the hash table. Gets two
2965  * nodes as parameters.  Returns 0 if the nodes are a cse.
2966  */
2967 static int
2968 vt_cmp (const void *elt, const void *key)
2969 {
2970   ir_node *a, *b;
2971   int i, irn_arity_a;
2972
2973   a = (void *)elt;
2974   b = (void *)key;
2975
2976   if (a == b) return 0;
2977
2978   if ((get_irn_op(a) != get_irn_op(b)) ||
2979       (get_irn_mode(a) != get_irn_mode(b))) return 1;
2980
2981   /* compare if a's in and b's in are of equal length */
2982   irn_arity_a = get_irn_intra_arity (a);
2983   if (irn_arity_a != get_irn_intra_arity(b))
2984     return 1;
2985
2986   /* for block-local cse and op_pin_state_pinned nodes: */
2987   if (!get_opt_global_cse() || (get_irn_pinned(a) == op_pin_state_pinned)) {
2988     if (get_irn_intra_n(a, -1) != get_irn_intra_n(b, -1))
2989       return 1;
2990   }
2991
2992   /* compare a->in[0..ins] with b->in[0..ins] */
2993   for (i = 0; i < irn_arity_a; i++)
2994     if (get_irn_intra_n(a, i) != get_irn_intra_n(b, i))
2995       return 1;
2996
2997   /*
2998    * here, we already now that the nodes are identical except their
2999    * attributes
3000    */
3001   if (a->op->ops.node_cmp_attr)
3002     return a->op->ops.node_cmp_attr(a, b);
3003
3004   return 0;
3005 }
3006
3007 /*
3008  * Calculate a hash value of a node.
3009  */
3010 unsigned
3011 ir_node_hash (ir_node *node)
3012 {
3013   unsigned h;
3014   int i, irn_arity;
3015
3016   if (node->op == op_Const) {
3017     /* special value for const, as they only differ in their tarval. */
3018     h = HASH_PTR(node->attr.con.tv);
3019     h = 9*h + HASH_PTR(get_irn_mode(node));
3020   } else if (node->op == op_SymConst) {
3021     /* special value for const, as they only differ in their symbol. */
3022     h = HASH_PTR(node->attr.i.sym.type_p);
3023     h = 9*h + HASH_PTR(get_irn_mode(node));
3024   } else {
3025
3026     /* hash table value = 9*(9*(9*(9*(9*arity+in[0])+in[1])+ ...)+mode)+code */
3027     h = irn_arity = get_irn_intra_arity(node);
3028
3029     /* consider all in nodes... except the block if not a control flow. */
3030     for (i =  is_cfop(node) ? -1 : 0;  i < irn_arity;  i++) {
3031       h = 9*h + HASH_PTR(get_irn_intra_n(node, i));
3032     }
3033
3034     /* ...mode,... */
3035     h = 9*h + HASH_PTR(get_irn_mode(node));
3036     /* ...and code */
3037     h = 9*h + HASH_PTR(get_irn_op(node));
3038   }
3039
3040   return h;
3041 }
3042
3043 pset *
3044 new_identities(void) {
3045   return new_pset(vt_cmp, N_IR_NODES);
3046 }
3047
3048 void
3049 del_identities(pset *value_table) {
3050   del_pset(value_table);
3051 }
3052
3053 /**
3054  * Return the canonical node computing the same value as n.
3055  * Looks up the node in a hash table.
3056  *
3057  * For Const nodes this is performed in the constructor, too.  Const
3058  * nodes are extremely time critical because of their frequent use in
3059  * constant string arrays.
3060  */
3061 static INLINE ir_node *
3062 identify (pset *value_table, ir_node *n)
3063 {
3064   ir_node *o = NULL;
3065
3066   if (!value_table) return n;
3067
3068   if (get_opt_reassociation()) {
3069     if (is_op_commutative(get_irn_op(n))) {
3070       ir_node *l = get_binop_left(n);
3071       ir_node *r = get_binop_right(n);
3072
3073       /* for commutative operators perform  a OP b == b OP a */
3074       if (l > r) {
3075         set_binop_left(n, r);
3076         set_binop_right(n, l);
3077       }
3078     }
3079   }
3080
3081   o = pset_find (value_table, n, ir_node_hash (n));
3082   if (!o) return n;
3083
3084   DBG_OPT_CSE(n, o);
3085
3086   return o;
3087 }
3088
3089 /**
3090  * During construction we set the op_pin_state_pinned flag in the graph right when the
3091  * optimization is performed.  The flag turning on procedure global cse could
3092  * be changed between two allocations.  This way we are safe.
3093  */
3094 static INLINE ir_node *
3095 identify_cons (pset *value_table, ir_node *n) {
3096   ir_node *old = n;
3097
3098   n = identify(value_table, n);
3099   if (get_irn_n(old, -1) != get_irn_n(n, -1))
3100     set_irg_pinned(current_ir_graph, op_pin_state_floats);
3101   return n;
3102 }
3103
3104 /**
3105  * Return the canonical node computing the same value as n.
3106  * Looks up the node in a hash table, enters it in the table
3107  * if it isn't there yet.
3108  */
3109 static ir_node *
3110 identify_remember (pset *value_table, ir_node *n)
3111 {
3112   ir_node *o = NULL;
3113
3114   if (!value_table) return n;
3115
3116   if (get_opt_reassociation()) {
3117     if (is_op_commutative(get_irn_op(n))) {
3118       ir_node *l = get_binop_left(n);
3119       ir_node *r = get_binop_right(n);
3120
3121       /* for commutative operators perform  a OP b == b OP a */
3122       if (l > r) {
3123         set_binop_left(n, r);
3124         set_binop_right(n, l);
3125       }
3126     }
3127   }
3128
3129   /* lookup or insert in hash table with given hash key. */
3130   o = pset_insert (value_table, n, ir_node_hash (n));
3131
3132   if (o != n) {
3133     DBG_OPT_CSE(n, o);
3134   }
3135
3136   return o;
3137 }
3138
3139 void
3140 add_identities (pset *value_table, ir_node *node) {
3141   if (get_opt_cse() && (get_irn_opcode(node) != iro_Block))
3142     identify_remember (value_table, node);
3143 }
3144
3145 /**
3146  * garbage in, garbage out. If a node has a dead input, i.e., the
3147  * Bad node is input to the node, return the Bad node.
3148  */
3149 static INLINE ir_node *
3150 gigo (ir_node *node)
3151 {
3152   int i, irn_arity;
3153   ir_op *op = get_irn_op(node);
3154
3155   /* remove garbage blocks by looking at control flow that leaves the block
3156      and replacing the control flow by Bad. */
3157   if (get_irn_mode(node) == mode_X) {
3158     ir_node *block = get_nodes_block(skip_Proj(node));
3159
3160     /* Don't optimize nodes in immature blocks. */
3161     if (!get_Block_matured(block)) return node;
3162      /* Don't optimize End, may have Bads. */
3163     if (op == op_End) return node;
3164
3165     if (is_Block(block)) {
3166       irn_arity = get_irn_arity(block);
3167       for (i = 0; i < irn_arity; i++) {
3168         if (!is_Bad(get_irn_n(block, i)))
3169           break;
3170       }
3171       if (i == irn_arity) return new_Bad();
3172     }
3173   }
3174
3175   /* Blocks, Phis and Tuples may have dead inputs, e.g., if one of the
3176      blocks predecessors is dead. */
3177   if ( op != op_Block && op != op_Phi && op != op_Tuple) {
3178     irn_arity = get_irn_arity(node);
3179
3180     /*
3181      * Beware: we can only read the block of a non-floating node.
3182      */
3183     if (is_irn_pinned_in_irg(node) &&
3184         is_Block_dead(get_nodes_block(node)))
3185       return new_Bad();
3186
3187     for (i = 0; i < irn_arity; i++) {
3188       ir_node *pred = get_irn_n(node, i);
3189
3190       if (is_Bad(pred))
3191         return new_Bad();
3192       if (is_Unknown(pred) && mode_is_data(get_irn_mode(node)))
3193         return new_Unknown(get_irn_mode(node));
3194     }
3195   }
3196 #if 0
3197   /* With this code we violate the agreement that local_optimize
3198      only leaves Bads in Block, Phi and Tuple nodes. */
3199   /* If Block has only Bads as predecessors it's garbage. */
3200   /* If Phi has only Bads as predecessors it's garbage. */
3201   if ((op == op_Block && get_Block_matured(node)) || op == op_Phi)  {
3202     irn_arity = get_irn_arity(node);
3203     for (i = 0; i < irn_arity; i++) {
3204       if (!is_Bad(get_irn_n(node, i))) break;
3205     }
3206     if (i == irn_arity) node = new_Bad();
3207   }
3208 #endif
3209   return node;
3210 }
3211
3212
3213 /**
3214  * These optimizations deallocate nodes from the obstack.
3215  * It can only be called if it is guaranteed that no other nodes
3216  * reference this one, i.e., right after construction of a node.
3217  *
3218  * current_ir_graph must be set to the graph of the node!
3219  */
3220 ir_node *
3221 optimize_node(ir_node *n)
3222 {
3223   tarval *tv;
3224   ir_node *oldn = n;
3225   opcode iro = get_irn_opcode(n);
3226
3227   /* Always optimize Phi nodes: part of the construction. */
3228   if ((!get_opt_optimize()) && (iro != iro_Phi)) return n;
3229
3230   /* constant expression evaluation / constant folding */
3231   if (get_opt_constant_folding()) {
3232     /* neither constants nor Tuple values can be evaluated */
3233     if (iro != iro_Const && (get_irn_mode(n) != mode_T)) {
3234       /* try to evaluate */
3235       tv = computed_value(n);
3236       if (tv != tarval_bad) {
3237         ir_node *nw;
3238         type *old_tp = get_irn_type(n);
3239         int i, arity = get_irn_arity(n);
3240         int node_size;
3241
3242         /*
3243          * Try to recover the type of the new expression.
3244          */
3245         for (i = 0; i < arity && !old_tp; ++i)
3246           old_tp = get_irn_type(get_irn_n(n, i));
3247
3248         /*
3249          * we MUST copy the node here temporary, because it's still needed
3250          * for DBG_OPT_CSTEVAL
3251          */
3252         node_size = offsetof(ir_node, attr) +  n->op->attr_size;
3253         oldn = alloca(node_size);
3254
3255         memcpy(oldn, n, node_size);
3256         CLONE_ARR_A(ir_node *, oldn->in, n->in);
3257
3258         /* ARG, copy the in array, we need it for statistics */
3259         memcpy(oldn->in, n->in, ARR_LEN(n->in) * sizeof(n->in[0]));
3260
3261         /* note the inplace edges module */
3262         edges_node_deleted(n, current_ir_graph);
3263
3264         /* evaluation was successful -- replace the node. */
3265         obstack_free(current_ir_graph->obst, n);
3266         nw = new_Const(get_tarval_mode (tv), tv);
3267
3268         if (old_tp && get_type_mode(old_tp) == get_tarval_mode (tv))
3269           set_Const_type(nw, old_tp);
3270         DBG_OPT_CSTEVAL(oldn, nw);
3271         return nw;
3272       }
3273     }
3274   }
3275
3276   /* remove unnecessary nodes */
3277   if (get_opt_constant_folding() ||
3278     (iro == iro_Phi)  ||   /* always optimize these nodes. */
3279     (iro == iro_Id)   ||
3280     (iro == iro_Proj) ||
3281     (iro == iro_Block)  )  /* Flags tested local. */
3282     n = equivalent_node (n);
3283
3284   optimize_preds(n);                  /* do node specific optimizations of nodes predecessors. */
3285
3286   /* Common Subexpression Elimination.
3287    *
3288    * Checks whether n is already available.
3289    * The block input is used to distinguish different subexpressions. Right
3290    * now all nodes are op_pin_state_pinned to blocks, i.e., the CSE only finds common
3291    * subexpressions within a block.
3292    */
3293   if (get_opt_cse())
3294     n = identify_cons (current_ir_graph->value_table, n);
3295
3296   if (n != oldn) {
3297     edges_node_deleted(oldn, current_ir_graph);
3298
3299     /* We found an existing, better node, so we can deallocate the old node. */
3300     obstack_free (current_ir_graph->obst, oldn);
3301
3302     return n;
3303   }
3304
3305   /* Some more constant expression evaluation that does not allow to
3306      free the node. */
3307   iro = get_irn_opcode(n);
3308   if (get_opt_constant_folding() ||
3309     (iro == iro_Cond) ||
3310     (iro == iro_Proj) ||
3311     (iro == iro_Sel))     /* Flags tested local. */
3312     n = transform_node (n);
3313
3314   /* Remove nodes with dead (Bad) input.
3315      Run always for transformation induced Bads. */
3316   n = gigo (n);
3317
3318   /* Now we have a legal, useful node. Enter it in hash table for CSE */
3319   if (get_opt_cse() && (get_irn_opcode(n) != iro_Block)) {
3320     n = identify_remember (current_ir_graph->value_table, n);
3321   }
3322
3323   return n;
3324 }
3325
3326
3327 /**
3328  * These optimizations never deallocate nodes (in place).  This can cause dead
3329  * nodes lying on the obstack.  Remove these by a dead node elimination,
3330  * i.e., a copying garbage collection.
3331  */
3332 ir_node *
3333 optimize_in_place_2 (ir_node *n)
3334 {
3335   tarval *tv;
3336   ir_node *oldn = n;
3337   opcode iro = get_irn_opcode(n);
3338
3339   if (!get_opt_optimize() && (get_irn_op(n) != op_Phi)) return n;
3340
3341   /* constant expression evaluation / constant folding */
3342   if (get_opt_constant_folding()) {
3343     /* neither constants nor Tuple values can be evaluated */
3344     if (iro != iro_Const && get_irn_mode(n) != mode_T) {
3345       /* try to evaluate */
3346       tv = computed_value(n);
3347       if (tv != tarval_bad) {
3348         /* evaluation was successful -- replace the node. */
3349         type *old_tp = get_irn_type(n);
3350         int i, arity = get_irn_arity(n);
3351
3352         /*
3353          * Try to recover the type of the new expression.
3354          */
3355         for (i = 0; i < arity && !old_tp; ++i)
3356           old_tp = get_irn_type(get_irn_n(n, i));
3357
3358         n = new_Const(get_tarval_mode(tv), tv);
3359
3360         if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
3361           set_Const_type(n, old_tp);
3362
3363         DBG_OPT_CSTEVAL(oldn, n);
3364         return n;
3365       }
3366     }
3367   }
3368
3369   /* remove unnecessary nodes */
3370   if (get_opt_constant_folding() ||
3371       (iro == iro_Phi)  ||   /* always optimize these nodes. */
3372       (iro == iro_Id)   ||   /* ... */
3373       (iro == iro_Proj) ||   /* ... */
3374       (iro == iro_Block)  )  /* Flags tested local. */
3375     n = equivalent_node(n);
3376
3377   optimize_preds(n);                  /* do node specific optimizations of nodes predecessors. */
3378
3379   /** common subexpression elimination **/
3380   /* Checks whether n is already available. */
3381   /* The block input is used to distinguish different subexpressions.  Right
3382      now all nodes are op_pin_state_pinned to blocks, i.e., the cse only finds common
3383      subexpressions within a block. */
3384   if (get_opt_cse()) {
3385     n = identify(current_ir_graph->value_table, n);
3386   }
3387
3388   /* Some more constant expression evaluation. */
3389   iro = get_irn_opcode(n);
3390   if (get_opt_constant_folding() ||
3391       (iro == iro_Cond) ||
3392       (iro == iro_Proj) ||
3393       (iro == iro_Sel))     /* Flags tested local. */
3394     n = transform_node(n);
3395
3396   /* Remove nodes with dead (Bad) input.
3397      Run always for transformation induced Bads.  */
3398   n = gigo(n);
3399
3400   /* Now we can verify the node, as it has no dead inputs any more. */
3401   irn_vrfy(n);
3402
3403   /* Now we have a legal, useful node. Enter it in hash table for cse.
3404      Blocks should be unique anyways.  (Except the successor of start:
3405      is cse with the start block!) */
3406   if (get_opt_cse() && (get_irn_opcode(n) != iro_Block))
3407     n = identify_remember(current_ir_graph->value_table, n);
3408
3409   return n;
3410 }
3411
3412 /**
3413  * Wrapper for external use, set proper status bits after optimization.
3414  */
3415 ir_node *
3416 optimize_in_place (ir_node *n)
3417 {
3418   /* Handle graph state */
3419   assert(get_irg_phase_state(current_ir_graph) != phase_building);
3420
3421   if (get_opt_global_cse())
3422     set_irg_pinned(current_ir_graph, op_pin_state_floats);
3423   if (get_irg_outs_state(current_ir_graph) == outs_consistent)
3424     set_irg_outs_inconsistent(current_ir_graph);
3425
3426   /* Maybe we could also test whether optimizing the node can
3427      change the control graph. */
3428   if (get_irg_dom_state(current_ir_graph) == dom_consistent)
3429     set_irg_dom_inconsistent(current_ir_graph);
3430   return optimize_in_place_2 (n);
3431 }
3432
3433 /*
3434  * Sets the default operation for an ir_ops.
3435  */
3436 ir_op_ops *firm_set_default_operations(opcode code, ir_op_ops *ops)
3437 {
3438   ops = firm_set_default_computed_value(code, ops);
3439   ops = firm_set_default_equivalent_node(code, ops);
3440   ops = firm_set_default_transform_node(code, ops);
3441   ops = firm_set_default_node_cmp_attr(code, ops);
3442   ops = firm_set_default_get_type(code, ops);
3443
3444   return ops;
3445 }