9b22543974c6e0cfc0f678a43f7201d2e75c536d
[libfirm] / ir / ir / iropt.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   iropt --- optimizations intertwined with IR construction.
23  * @author  Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <string.h>
31
32 #include "irnode_t.h"
33 #include "irgraph_t.h"
34 #include "iredges_t.h"
35 #include "irmode_t.h"
36 #include "iropt_t.h"
37 #include "ircons_t.h"
38 #include "irgmod.h"
39 #include "irvrfy.h"
40 #include "tv_t.h"
41 #include "dbginfo_t.h"
42 #include "iropt_dbg.h"
43 #include "irflag_t.h"
44 #include "irhooks.h"
45 #include "irarch.h"
46 #include "hashptr.h"
47 #include "archop.h"
48 #include "opt_confirms.h"
49 #include "opt_polymorphy.h"
50 #include "irtools.h"
51 #include "xmalloc.h"
52
53 /* Make types visible to allow most efficient access */
54 #include "entity_t.h"
55
56 /**
57  * Return the value of a Constant.
58  */
59 static tarval *computed_value_Const(ir_node *n) {
60         return get_Const_tarval(n);
61 }  /* computed_value_Const */
62
63 /**
64  * Return the value of a 'sizeof', 'alignof' or 'offsetof' SymConst.
65  */
66 static tarval *computed_value_SymConst(ir_node *n) {
67         ir_type   *type;
68         ir_entity *ent;
69
70         switch (get_SymConst_kind(n)) {
71         case symconst_type_size:
72                 type = get_SymConst_type(n);
73                 if (get_type_state(type) == layout_fixed)
74                         return new_tarval_from_long(get_type_size_bytes(type), get_irn_mode(n));
75                 break;
76         case symconst_type_align:
77                 type = get_SymConst_type(n);
78                 if (get_type_state(type) == layout_fixed)
79                         return new_tarval_from_long(get_type_alignment_bytes(type), get_irn_mode(n));
80                 break;
81         case symconst_ofs_ent:
82                 ent  = get_SymConst_entity(n);
83                 type = get_entity_owner(ent);
84                 if (get_type_state(type) == layout_fixed)
85                         return new_tarval_from_long(get_entity_offset(ent), get_irn_mode(n));
86                 break;
87         default:
88                 break;
89         }
90         return tarval_bad;
91 }  /* computed_value_SymConst */
92
93 /**
94  * Return the value of an Add.
95  */
96 static tarval *computed_value_Add(ir_node *n) {
97         ir_node *a = get_Add_left(n);
98         ir_node *b = get_Add_right(n);
99
100         tarval *ta = value_of(a);
101         tarval *tb = value_of(b);
102
103         if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b)))
104                 return tarval_add(ta, tb);
105
106         return tarval_bad;
107 }  /* computed_value_Add */
108
109 /**
110  * Return the value of a Sub.
111  * Special case: a - a
112  */
113 static tarval *computed_value_Sub(ir_node *n) {
114         ir_node *a = get_Sub_left(n);
115         ir_node *b = get_Sub_right(n);
116         tarval *ta;
117         tarval *tb;
118
119         /* a - a */
120         if (a == b && !is_Bad(a))
121                 return get_mode_null(get_irn_mode(n));
122
123         ta = value_of(a);
124         tb = value_of(b);
125
126         if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b)))
127                 return tarval_sub(ta, tb);
128
129         return tarval_bad;
130 }  /* computed_value_Sub */
131
132 /**
133  * Return the value of a Carry.
134  * Special : a op 0, 0 op b
135  */
136 static tarval *computed_value_Carry(ir_node *n) {
137         ir_node *a = get_binop_left(n);
138         ir_node *b = get_binop_right(n);
139         ir_mode *m = get_irn_mode(n);
140
141         tarval *ta = value_of(a);
142         tarval *tb = value_of(b);
143
144         if ((ta != tarval_bad) && (tb != tarval_bad)) {
145                 tarval_add(ta, tb);
146                 return tarval_carry() ? get_mode_one(m) : get_mode_null(m);
147         } else {
148                 if (tarval_is_null(ta) || tarval_is_null(tb))
149                         return get_mode_null(m);
150         }
151         return tarval_bad;
152 }  /* computed_value_Carry */
153
154 /**
155  * Return the value of a Borrow.
156  * Special : a op 0
157  */
158 static tarval *computed_value_Borrow(ir_node *n) {
159         ir_node *a = get_binop_left(n);
160         ir_node *b = get_binop_right(n);
161         ir_mode *m = get_irn_mode(n);
162
163         tarval *ta = value_of(a);
164         tarval *tb = value_of(b);
165
166         if ((ta != tarval_bad) && (tb != tarval_bad)) {
167                 return tarval_cmp(ta, tb) == pn_Cmp_Lt ? get_mode_one(m) : get_mode_null(m);
168         } else if (tarval_is_null(ta)) {
169                 return get_mode_null(m);
170         }
171         return tarval_bad;
172 }  /* computed_value_Borrow */
173
174 /**
175  * Return the value of an unary Minus.
176  */
177 static tarval *computed_value_Minus(ir_node *n) {
178         ir_node *a = get_Minus_op(n);
179         tarval *ta = value_of(a);
180
181         if ((ta != tarval_bad) && mode_is_signed(get_irn_mode(a)))
182                 return tarval_neg(ta);
183
184         return tarval_bad;
185 }  /* computed_value_Minus */
186
187 /**
188  * Return the value of a Mul.
189  */
190 static tarval *computed_value_Mul(ir_node *n) {
191         ir_node *a = get_Mul_left(n);
192         ir_node *b = get_Mul_right(n);
193         ir_mode *mode;
194
195         tarval *ta = value_of(a);
196         tarval *tb = value_of(b);
197
198         mode = get_irn_mode(n);
199         if (mode != get_irn_mode(a)) {
200                 /* n * n = 2n bit multiplication */
201                 ta = tarval_convert_to(ta, mode);
202                 tb = tarval_convert_to(tb, mode);
203         }
204
205         if (ta != tarval_bad && tb != tarval_bad) {
206                 return tarval_mul(ta, tb);
207         } else {
208                 /* a*0 = 0 or 0*b = 0 */
209                 if (ta == get_mode_null(mode))
210                         return ta;
211                 if (tb == get_mode_null(mode))
212                         return tb;
213         }
214         return tarval_bad;
215 }  /* computed_value_Mul */
216
217 /**
218  * Return the value of a floating point Quot.
219  */
220 static tarval *computed_value_Quot(ir_node *n) {
221         ir_node *a = get_Quot_left(n);
222         ir_node *b = get_Quot_right(n);
223
224         tarval *ta = value_of(a);
225         tarval *tb = value_of(b);
226
227         /* This was missing in original implementation. Why? */
228         if ((ta != tarval_bad) && (tb != tarval_bad) && (get_irn_mode(a) == get_irn_mode(b))) {
229                 if (tb != get_mode_null(get_tarval_mode(tb)))   /* div by zero: return tarval_bad */
230                         return tarval_quo(ta, tb);
231         }
232         return tarval_bad;
233 }  /* computed_value_Quot */
234
235 /**
236  * Calculate the value of an integer Div of two nodes.
237  * Special case: 0 / b
238  */
239 static tarval *do_computed_value_Div(ir_node *a, ir_node *b) {
240         tarval *ta = value_of(a);
241         tarval *tb = value_of(b);
242
243         /* Compute c1 / c2 or 0 / a, a != 0 */
244         if (ta != tarval_bad) {
245                 if ((tb != tarval_bad) && (tb != get_mode_null(get_irn_mode(b))))   /* div by zero: return tarval_bad */
246                         return tarval_div(ta, tb);
247                 else if (ta == get_mode_null(get_tarval_mode(ta)))  /* 0 / b == 0 */
248                         return ta;
249         }
250         return tarval_bad;
251 }  /* do_computed_value_Div */
252
253 /**
254  * Return the value of an integer Div.
255  */
256 static tarval *computed_value_Div(ir_node *n) {
257         return do_computed_value_Div(get_Div_left(n), get_Div_right(n));
258 }  /* computed_value_Div */
259
260 /**
261  * Calculate the value of an integer Mod of two nodes.
262  * Special case: a % 1
263  */
264 static tarval *do_computed_value_Mod(ir_node *a, ir_node *b) {
265         tarval *ta = value_of(a);
266         tarval *tb = value_of(b);
267
268         /* Compute c1 % c2 or a % 1 */
269         if (tb != tarval_bad) {
270                 if ((ta != tarval_bad) && (tb != get_mode_null(get_tarval_mode(tb))))   /* div by zero: return tarval_bad */
271                         return tarval_mod(ta, tb);
272                 else if (tb == get_mode_one(get_tarval_mode(tb)))    /* x mod 1 == 0 */
273                         return get_mode_null(get_irn_mode(a));
274         }
275         return tarval_bad;
276 }  /* do_computed_value_Mod */
277
278 /**
279  * Return the value of an integer Mod.
280  */
281 static tarval *computed_value_Mod(ir_node *n) {
282         return do_computed_value_Mod(get_Mod_left(n), get_Mod_right(n));
283 }  /* computed_value_Mod */
284
285 /**
286  * Return the value of an Abs.
287  */
288 static tarval *computed_value_Abs(ir_node *n) {
289         ir_node *a = get_Abs_op(n);
290         tarval *ta = value_of(a);
291
292         if (ta != tarval_bad)
293                 return tarval_abs(ta);
294
295         return tarval_bad;
296 }  /* computed_value_Abs */
297
298 /**
299  * Return the value of an And.
300  * Special case: a & 0, 0 & b
301  */
302 static tarval *computed_value_And(ir_node *n) {
303         ir_node *a = get_And_left(n);
304         ir_node *b = get_And_right(n);
305
306         tarval *ta = value_of(a);
307         tarval *tb = value_of(b);
308
309         if ((ta != tarval_bad) && (tb != tarval_bad)) {
310                 return tarval_and (ta, tb);
311         } else {
312                 if (tarval_is_null(ta)) return ta;
313                 if (tarval_is_null(tb)) return tb;
314         }
315         return tarval_bad;
316 }  /* computed_value_And */
317
318 /**
319  * Return the value of an Or.
320  * Special case: a | 1...1, 1...1 | b
321  */
322 static tarval *computed_value_Or(ir_node *n) {
323         ir_node *a = get_Or_left(n);
324         ir_node *b = get_Or_right(n);
325
326         tarval *ta = value_of(a);
327         tarval *tb = value_of(b);
328
329         if ((ta != tarval_bad) && (tb != tarval_bad)) {
330                 return tarval_or (ta, tb);
331         } else {
332                 if (tarval_is_all_one(ta)) return ta;
333                 if (tarval_is_all_one(tb)) return tb;
334         }
335         return tarval_bad;
336 }  /* computed_value_Or */
337
338 /**
339  * Return the value of an Eor.
340  */
341 static tarval *computed_value_Eor(ir_node *n) {
342         ir_node *a = get_Eor_left(n);
343         ir_node *b = get_Eor_right(n);
344
345         tarval *ta, *tb;
346
347         if (a == b)
348                 return get_mode_null(get_irn_mode(n));
349
350         ta = value_of(a);
351         tb = value_of(b);
352
353         if ((ta != tarval_bad) && (tb != tarval_bad)) {
354                 return tarval_eor (ta, tb);
355         }
356         return tarval_bad;
357 }  /* computed_value_Eor */
358
359 /**
360  * Return the value of a Not.
361  */
362 static tarval *computed_value_Not(ir_node *n) {
363         ir_node *a = get_Not_op(n);
364         tarval *ta = value_of(a);
365
366         if (ta != tarval_bad)
367                 return tarval_not(ta);
368
369         return tarval_bad;
370 }  /* computed_value_Not */
371
372 /**
373  * Return the value of a Shl.
374  */
375 static tarval *computed_value_Shl(ir_node *n) {
376         ir_node *a = get_Shl_left(n);
377         ir_node *b = get_Shl_right(n);
378
379         tarval *ta = value_of(a);
380         tarval *tb = value_of(b);
381
382         if ((ta != tarval_bad) && (tb != tarval_bad)) {
383                 return tarval_shl (ta, tb);
384         }
385         return tarval_bad;
386 }  /* computed_value_Shl */
387
388 /**
389  * Return the value of a Shr.
390  */
391 static tarval *computed_value_Shr(ir_node *n) {
392         ir_node *a = get_Shr_left(n);
393         ir_node *b = get_Shr_right(n);
394
395         tarval *ta = value_of(a);
396         tarval *tb = value_of(b);
397
398         if ((ta != tarval_bad) && (tb != tarval_bad)) {
399                 return tarval_shr (ta, tb);
400         }
401         return tarval_bad;
402 }  /* computed_value_Shr */
403
404 /**
405  * Return the value of a Shrs.
406  */
407 static tarval *computed_value_Shrs(ir_node *n) {
408         ir_node *a = get_Shrs_left(n);
409         ir_node *b = get_Shrs_right(n);
410
411         tarval *ta = value_of(a);
412         tarval *tb = value_of(b);
413
414         if ((ta != tarval_bad) && (tb != tarval_bad)) {
415                 return tarval_shrs (ta, tb);
416         }
417         return tarval_bad;
418 }  /* computed_value_Shrs */
419
420 /**
421  * Return the value of a Rot.
422  */
423 static tarval *computed_value_Rot(ir_node *n) {
424         ir_node *a = get_Rot_left(n);
425         ir_node *b = get_Rot_right(n);
426
427         tarval *ta = value_of(a);
428         tarval *tb = value_of(b);
429
430         if ((ta != tarval_bad) && (tb != tarval_bad)) {
431                 return tarval_rot (ta, tb);
432         }
433         return tarval_bad;
434 }  /* computed_value_Rot */
435
436 /**
437  * Return the value of a Conv.
438  */
439 static tarval *computed_value_Conv(ir_node *n) {
440         ir_node *a = get_Conv_op(n);
441         tarval *ta = value_of(a);
442
443         if (ta != tarval_bad)
444                 return tarval_convert_to(ta, get_irn_mode(n));
445
446         return tarval_bad;
447 }  /* computed_value_Conv */
448
449 /**
450  * Return the value of a Proj(Cmp).
451  *
452  * This performs a first step of unreachable code elimination.
453  * Proj can not be computed, but folding a Cmp above the Proj here is
454  * not as wasteful as folding a Cmp into a Tuple of 16 Consts of which
455  * only 1 is used.
456  * There are several case where we can evaluate a Cmp node, see later.
457  */
458 static tarval *computed_value_Proj_Cmp(ir_node *n) {
459         ir_node *a   = get_Proj_pred(n);
460         ir_node *aa  = get_Cmp_left(a);
461         ir_node *ab  = get_Cmp_right(a);
462         long proj_nr = get_Proj_proj(n);
463
464         /*
465          * BEWARE: a == a is NOT always True for floating Point values, as
466          * NaN != NaN is defined, so we must check this here.
467          */
468         if (aa == ab && (
469                 !mode_is_float(get_irn_mode(aa)) || proj_nr == pn_Cmp_Lt ||  proj_nr == pn_Cmp_Gt)
470                 ) { /* 1.: */
471
472                 /* This is a trick with the bits used for encoding the Cmp
473                    Proj numbers, the following statement is not the same:
474                 return new_tarval_from_long (proj_nr == pn_Cmp_Eq, mode_b) */
475                 return new_tarval_from_long (proj_nr & pn_Cmp_Eq, mode_b);
476         }
477         else {
478                 tarval *taa = value_of(aa);
479                 tarval *tab = value_of(ab);
480                 ir_mode *mode = get_irn_mode(aa);
481
482                 /*
483                  * The predecessors of Cmp are target values.  We can evaluate
484                  * the Cmp.
485                  */
486                 if ((taa != tarval_bad) && (tab != tarval_bad)) {
487                         /* strange checks... */
488                         pn_Cmp flags = tarval_cmp(taa, tab);
489                         if (flags != pn_Cmp_False) {
490                                 return new_tarval_from_long (proj_nr & flags, mode_b);
491                         }
492                 }
493                 /* for integer values, we can check against MIN/MAX */
494                 else if (mode_is_int(mode)) {
495                         /* MIN <=/> x.  This results in true/false. */
496                         if (taa == get_mode_min(mode)) {
497                                 /* a compare with the MIN value */
498                                 if (proj_nr == pn_Cmp_Le)
499                                         return get_tarval_b_true();
500                                 else if (proj_nr == pn_Cmp_Gt)
501                                         return get_tarval_b_false();
502                         }
503                         /* x >=/< MIN.  This results in true/false. */
504                         else
505                                 if (tab == get_mode_min(mode)) {
506                                         /* a compare with the MIN value */
507                                         if (proj_nr == pn_Cmp_Ge)
508                                                 return get_tarval_b_true();
509                                         else if (proj_nr == pn_Cmp_Lt)
510                                                 return get_tarval_b_false();
511                                 }
512                                 /* MAX >=/< x.  This results in true/false. */
513                                 else if (taa == get_mode_max(mode)) {
514                                         if (proj_nr == pn_Cmp_Ge)
515                                                 return get_tarval_b_true();
516                                         else if (proj_nr == pn_Cmp_Lt)
517                                                 return get_tarval_b_false();
518                                 }
519                                 /* x <=/> MAX.  This results in true/false. */
520                                 else if (tab == get_mode_max(mode)) {
521                                         if (proj_nr == pn_Cmp_Le)
522                                                 return get_tarval_b_true();
523                                         else if (proj_nr == pn_Cmp_Gt)
524                                                 return get_tarval_b_false();
525                                 }
526                 }
527                 /*
528                  * The predecessors are Allocs or (void*)(0) constants.  Allocs never
529                  * return NULL, they raise an exception.   Therefore we can predict
530                  * the Cmp result.
531                  */
532                 else {
533                         ir_node *aaa = skip_Id(skip_Proj(aa));
534                         ir_node *aba = skip_Id(skip_Proj(ab));
535
536                         if (   (   (/* aa is ProjP and aaa is Alloc */
537                                        is_Proj(aa)
538                                     && mode_is_reference(get_irn_mode(aa))
539                                     && is_Alloc(aaa))
540                                 && (   (/* ab is NULL */
541                                            is_Const(ab)
542                                         && mode_is_reference(get_irn_mode(ab))
543                                         && is_Const_null(ab))
544                                     || (/* ab is other Alloc */
545                                            is_Proj(ab)
546                                         && mode_is_reference(get_irn_mode(ab))
547                                         && is_Alloc(aba)
548                                         && (aaa != aba))))
549                             || (/* aa is NULL and aba is Alloc */
550                                    is_Const(aa)
551                                 && mode_is_reference(get_irn_mode(aa))
552                                 && is_Const_null(aa)
553                                 && is_Proj(ab)
554                                 && mode_is_reference(get_irn_mode(ab))
555                                 && is_Alloc(aba)))
556                                 /* 3.: */
557                         return new_tarval_from_long(proj_nr & pn_Cmp_Ne, mode_b);
558                 }
559         }
560         return computed_value_Cmp_Confirm(a, aa, ab, proj_nr);
561 }  /* computed_value_Proj_Cmp */
562
563 /**
564  * Return the value of a Proj, handle Proj(Cmp), Proj(Div), Proj(Mod),
565  * Proj(DivMod) and Proj(Quot).
566  */
567 static tarval *computed_value_Proj(ir_node *n) {
568         ir_node *a = get_Proj_pred(n);
569         long proj_nr;
570
571         switch (get_irn_opcode(a)) {
572         case iro_Cmp:
573                 return computed_value_Proj_Cmp(n);
574
575         case iro_DivMod:
576                 /* compute either the Div or the Mod part */
577                 proj_nr = get_Proj_proj(n);
578                 if (proj_nr == pn_DivMod_res_div)
579                         return do_computed_value_Div(get_DivMod_left(a), get_DivMod_right(a));
580                 else if (proj_nr == pn_DivMod_res_mod)
581                         return do_computed_value_Mod(get_DivMod_left(a), get_DivMod_right(a));
582                 break;
583
584         case iro_Div:
585                 if (get_Proj_proj(n) == pn_Div_res)
586                         return computed_value(a);
587                 break;
588
589         case iro_Mod:
590                 if (get_Proj_proj(n) == pn_Mod_res)
591                         return computed_value(a);
592                 break;
593
594         case iro_Quot:
595                 if (get_Proj_proj(n) == pn_Quot_res)
596                         return computed_value(a);
597                 break;
598
599         default:
600                 return tarval_bad;
601         }
602         return tarval_bad;
603 }  /* computed_value_Proj */
604
605 /**
606  * Calculate the value of a Mux: can be evaluated, if the
607  * sel and the right input are known.
608  */
609 static tarval *computed_value_Mux(ir_node *n) {
610         ir_node *sel = get_Mux_sel(n);
611         tarval *ts = value_of(sel);
612
613         if (ts == get_tarval_b_true()) {
614                 ir_node *v = get_Mux_true(n);
615                 return value_of(v);
616         }
617         else if (ts == get_tarval_b_false()) {
618                 ir_node *v = get_Mux_false(n);
619                 return value_of(v);
620         }
621         return tarval_bad;
622 }  /* computed_value_Mux */
623
624 /**
625  * Calculate the value of a Psi: can be evaluated, if a condition is true
626  * and all previous conditions are false. If all conditions are false
627  * we evaluate to the default one.
628  */
629 static tarval *computed_value_Psi(ir_node *n) {
630         if (is_Mux(n))
631                 return computed_value_Mux(n);
632         return tarval_bad;
633 }  /* computed_value_Psi */
634
635 /**
636  * Calculate the value of a Confirm: can be evaluated,
637  * if it has the form Confirm(x, '=', Const).
638  */
639 static tarval *computed_value_Confirm(ir_node *n) {
640         return get_Confirm_cmp(n) == pn_Cmp_Eq ?
641                 value_of(get_Confirm_bound(n)) : tarval_bad;
642 }  /* computed_value_Confirm */
643
644 /**
645  * If the parameter n can be computed, return its value, else tarval_bad.
646  * Performs constant folding.
647  *
648  * @param n  The node this should be evaluated
649  */
650 tarval *computed_value(ir_node *n) {
651         if (n->op->ops.computed_value)
652                 return n->op->ops.computed_value(n);
653         return tarval_bad;
654 }  /* computed_value */
655
656 /**
657  * Set the default computed_value evaluator in an ir_op_ops.
658  *
659  * @param code   the opcode for the default operation
660  * @param ops    the operations initialized
661  *
662  * @return
663  *    The operations.
664  */
665 static ir_op_ops *firm_set_default_computed_value(ir_opcode code, ir_op_ops *ops)
666 {
667 #define CASE(a)                                    \
668         case iro_##a:                                  \
669                 ops->computed_value  = computed_value_##a; \
670                 break
671
672         switch (code) {
673         CASE(Const);
674         CASE(SymConst);
675         CASE(Add);
676         CASE(Sub);
677         CASE(Minus);
678         CASE(Mul);
679         CASE(Quot);
680         CASE(Div);
681         CASE(Mod);
682         CASE(Abs);
683         CASE(And);
684         CASE(Or);
685         CASE(Eor);
686         CASE(Not);
687         CASE(Shl);
688         CASE(Shr);
689         CASE(Shrs);
690         CASE(Rot);
691         CASE(Carry);
692         CASE(Borrow);
693         CASE(Conv);
694         CASE(Proj);
695         CASE(Mux);
696         CASE(Psi);
697         CASE(Confirm);
698         default:
699                 /* leave NULL */;
700         }
701
702         return ops;
703 #undef CASE
704 }  /* firm_set_default_computed_value */
705
706 /**
707  * Returns a equivalent block for another block.
708  * If the block has only one predecessor, this is
709  * the equivalent one. If the only predecessor of a block is
710  * the block itself, this is a dead block.
711  *
712  * If both predecessors of a block are the branches of a binary
713  * Cond, the equivalent block is Cond's block.
714  *
715  * If all predecessors of a block are bad or lies in a dead
716  * block, the current block is dead as well.
717  *
718  * Note, that blocks are NEVER turned into Bad's, instead
719  * the dead_block flag is set. So, never test for is_Bad(block),
720  * always use is_dead_Block(block).
721  */
722 static ir_node *equivalent_node_Block(ir_node *n)
723 {
724         ir_node *oldn = n;
725         int n_preds   = get_Block_n_cfgpreds(n);
726
727         /* The Block constructor does not call optimize, but mature_immBlock
728         calls the optimization. */
729         assert(get_Block_matured(n));
730
731         /* Straightening: a single entry Block following a single exit Block
732            can be merged, if it is not the Start block. */
733         /* !!! Beware, all Phi-nodes of n must have been optimized away.
734            This should be true, as the block is matured before optimize is called.
735            But what about Phi-cycles with the Phi0/Id that could not be resolved?
736            Remaining Phi nodes are just Ids. */
737         if (n_preds == 1 && is_Jmp(get_Block_cfgpred(n, 0))) {
738                 ir_node *predblock = get_nodes_block(get_Block_cfgpred(n, 0));
739                 if (predblock == oldn) {
740                         /* Jmp jumps into the block it is in -- deal self cycle. */
741                         n = set_Block_dead(n);
742                         DBG_OPT_DEAD_BLOCK(oldn, n);
743                 } else if (get_opt_control_flow_straightening()) {
744                         n = predblock;
745                         DBG_OPT_STG(oldn, n);
746                 }
747         } else if (n_preds == 1 && is_Cond(skip_Proj(get_Block_cfgpred(n, 0)))) {
748                 ir_node *predblock = get_Block_cfgpred_block(n, 0);
749                 if (predblock == oldn) {
750                         /* Jmp jumps into the block it is in -- deal self cycle. */
751                         n = set_Block_dead(n);
752                         DBG_OPT_DEAD_BLOCK(oldn, n);
753                 }
754         } else if ((n_preds == 2) &&
755                    (get_opt_control_flow_weak_simplification())) {
756                 /* Test whether Cond jumps twice to this block
757                  * The more general case which more than 2 predecessors is handles
758                  * in optimize_cf(), we handle only this special case for speed here.
759                  */
760                 ir_node *a = get_Block_cfgpred(n, 0);
761                 ir_node *b = get_Block_cfgpred(n, 1);
762
763                 if (is_Proj(a) &&
764                     is_Proj(b) &&
765                     (get_Proj_pred(a) == get_Proj_pred(b)) &&
766                     is_Cond(get_Proj_pred(a)) &&
767                     (get_irn_mode(get_Cond_selector(get_Proj_pred(a))) == mode_b)) {
768                         /* Also a single entry Block following a single exit Block.  Phis have
769                            twice the same operand and will be optimized away. */
770                         n = get_nodes_block(get_Proj_pred(a));
771                         DBG_OPT_IFSIM1(oldn, a, b, n);
772                 }
773         } else if (get_opt_unreachable_code() &&
774                    (n != get_irg_start_block(current_ir_graph)) &&
775                    (n != get_irg_end_block(current_ir_graph))    ) {
776                 int i;
777
778                 /* If all inputs are dead, this block is dead too, except if it is
779                    the start or end block.  This is one step of unreachable code
780                    elimination */
781                 for (i = get_Block_n_cfgpreds(n) - 1; i >= 0; --i) {
782                         ir_node *pred = get_Block_cfgpred(n, i);
783                         ir_node *pred_blk;
784
785                         if (is_Bad(pred)) continue;
786                         pred_blk = get_nodes_block(skip_Proj(pred));
787
788                         if (is_Block_dead(pred_blk)) continue;
789
790                         if (pred_blk != n) {
791                                 /* really found a living input */
792                                 break;
793                         }
794                 }
795                 if (i < 0) {
796                         n = set_Block_dead(n);
797                         DBG_OPT_DEAD_BLOCK(oldn, n);
798                 }
799         }
800
801         return n;
802 }  /* equivalent_node_Block */
803
804 /**
805  * Returns a equivalent node for a Jmp, a Bad :-)
806  * Of course this only happens if the Block of the Jmp is dead.
807  */
808 static ir_node *equivalent_node_Jmp(ir_node *n) {
809         /* unreachable code elimination */
810         if (is_Block_dead(get_nodes_block(n)))
811                 n = new_Bad();
812
813         return n;
814 }  /* equivalent_node_Jmp */
815
816 /** Raise is handled in the same way as Jmp. */
817 #define equivalent_node_Raise   equivalent_node_Jmp
818
819
820 /* We do not evaluate Cond here as we replace it by a new node, a Jmp.
821    See transform_node_Proj_Cond(). */
822
823 /**
824  * Optimize operations that are commutative and have neutral 0,
825  * so a op 0 = 0 op a = a.
826  */
827 static ir_node *equivalent_node_neutral_zero(ir_node *n)
828 {
829         ir_node *oldn = n;
830
831         ir_node *a = get_binop_left(n);
832         ir_node *b = get_binop_right(n);
833
834         tarval *tv;
835         ir_node *on;
836
837         /* After running compute_node there is only one constant predecessor.
838            Find this predecessors value and remember the other node: */
839         if ((tv = value_of(a)) != tarval_bad) {
840                 on = b;
841         } else if ((tv = value_of(b)) != tarval_bad) {
842                 on = a;
843         } else
844                 return n;
845
846         /* If this predecessors constant value is zero, the operation is
847          * unnecessary. Remove it.
848          *
849          * Beware: If n is a Add, the mode of on and n might be different
850          * which happens in this rare construction: NULL + 3.
851          * Then, a Conv would be needed which we cannot include here.
852          */
853         if (tarval_is_null(tv) && get_irn_mode(on) == get_irn_mode(n)) {
854                 n = on;
855
856                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
857         }
858
859         return n;
860 }  /* equivalent_node_neutral_zero */
861
862 /**
863  * Eor is commutative and has neutral 0.
864  */
865 #define equivalent_node_Eor  equivalent_node_neutral_zero
866
867 /*
868  * Optimize a - 0 and (a - x) + x (for modes with wrap-around).
869  *
870  * The second one looks strange, but this construct
871  * is used heavily in the LCC sources :-).
872  *
873  * Beware: The Mode of an Add may be different than the mode of its
874  * predecessors, so we could not return a predecessors in all cases.
875  */
876 static ir_node *equivalent_node_Add(ir_node *n) {
877         ir_node *oldn = n;
878         ir_node *left, *right;
879         ir_mode *mode = get_irn_mode(n);
880
881         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
882         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
883                 return n;
884
885         n = equivalent_node_neutral_zero(n);
886         if (n != oldn)
887                 return n;
888
889         left  = get_Add_left(n);
890         right = get_Add_right(n);
891
892         if (is_Sub(left)) {
893                 if (get_Sub_right(left) == right) {
894                         /* (a - x) + x */
895
896                         n = get_Sub_left(left);
897                         if (mode == get_irn_mode(n)) {
898                                 DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
899                                 return n;
900                         }
901                 }
902         }
903         if (is_Sub(right)) {
904                 if (get_Sub_right(right) == left) {
905                         /* x + (a - x) */
906
907                         n = get_Sub_left(right);
908                         if (mode == get_irn_mode(n)) {
909                                 DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
910                                 return n;
911                         }
912                 }
913         }
914         return n;
915 }  /* equivalent_node_Add */
916
917 /**
918  * optimize operations that are not commutative but have neutral 0 on left,
919  * so a op 0 = a.
920  */
921 static ir_node *equivalent_node_left_zero(ir_node *n) {
922         ir_node *oldn = n;
923
924         ir_node *a = get_binop_left(n);
925         ir_node *b = get_binop_right(n);
926
927         if (is_Const(b) && is_Const_null(b)) {
928                 n = a;
929
930                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
931         }
932         return n;
933 }  /* equivalent_node_left_zero */
934
935 #define equivalent_node_Shl   equivalent_node_left_zero
936 #define equivalent_node_Shr   equivalent_node_left_zero
937 #define equivalent_node_Shrs  equivalent_node_left_zero
938 #define equivalent_node_Rot   equivalent_node_left_zero
939
940 /**
941  * Optimize a - 0 and (a + x) - x (for modes with wrap-around).
942  *
943  * The second one looks strange, but this construct
944  * is used heavily in the LCC sources :-).
945  *
946  * Beware: The Mode of a Sub may be different than the mode of its
947  * predecessors, so we could not return a predecessors in all cases.
948  */
949 static ir_node *equivalent_node_Sub(ir_node *n) {
950         ir_node *oldn = n;
951         ir_node *b;
952         ir_mode *mode = get_irn_mode(n);
953
954         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
955         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
956                 return n;
957
958         b = get_Sub_right(n);
959
960         /* Beware: modes might be different */
961         if (is_Const(b) && is_Const_null(b)) {
962                 ir_node *a = get_Sub_left(n);
963                 if (mode == get_irn_mode(a)) {
964                         n = a;
965
966                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
967                 }
968         }
969         return n;
970 }  /* equivalent_node_Sub */
971
972
973 /**
974  * Optimize an "idempotent unary op", ie op(op(n)) = n.
975  *
976  * @todo
977  *   -(-a) == a, but might overflow two times.
978  *   We handle it anyway here but the better way would be a
979  *   flag. This would be needed for Pascal for instance.
980  */
981 static ir_node *equivalent_node_idempotent_unop(ir_node *n) {
982         ir_node *oldn = n;
983         ir_node *pred = get_unop_op(n);
984
985         /* optimize symmetric unop */
986         if (get_irn_op(pred) == get_irn_op(n)) {
987                 n = get_unop_op(pred);
988                 DBG_OPT_ALGSIM2(oldn, pred, n, FS_OPT_IDEM_UNARY);
989         }
990         return n;
991 }  /* equivalent_node_idempotent_unop */
992
993 /** Optimize Not(Not(x)) == x. */
994 #define equivalent_node_Not    equivalent_node_idempotent_unop
995
996 /** -(-x) == x       ??? Is this possible or can --x raise an
997                        out of bounds exception if min =! max? */
998 #define equivalent_node_Minus  equivalent_node_idempotent_unop
999
1000 /**
1001  * Optimize a * 1 = 1 * a = a.
1002  */
1003 static ir_node *equivalent_node_Mul(ir_node *n) {
1004         ir_node *oldn = n;
1005         ir_node *a = get_Mul_left(n);
1006
1007         /* we can handle here only the n * n = n bit cases */
1008         if (get_irn_mode(n) == get_irn_mode(a)) {
1009                 ir_node *b = get_Mul_right(n);
1010
1011                 /* Mul is commutative and has again an other neutral element. */
1012                 if (is_Const(a) && is_Const_one(a)) {
1013                         n = b;
1014                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
1015                 } else if (is_Const(b) && is_Const_one(b)) {
1016                         n = a;
1017                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
1018                 }
1019         }
1020         return n;
1021 }  /* equivalent_node_Mul */
1022
1023 /**
1024  * Optimize a / 1 = a.
1025  */
1026 static ir_node *equivalent_node_Div(ir_node *n) {
1027         ir_node *a = get_Div_left(n);
1028         ir_node *b = get_Div_right(n);
1029
1030         /* Div is not commutative. */
1031         if (is_Const(b) && is_Const_one(b)) { /* div(x, 1) == x */
1032                 /* Turn Div into a tuple (mem, bad, a) */
1033                 ir_node *mem = get_Div_mem(n);
1034                 ir_node *blk = get_irn_n(n, -1);
1035                 turn_into_tuple(n, pn_Div_max);
1036                 set_Tuple_pred(n, pn_Div_M,         mem);
1037                 set_Tuple_pred(n, pn_Div_X_regular, new_r_Jmp(current_ir_graph, blk));
1038                 set_Tuple_pred(n, pn_Div_X_except,  new_Bad());        /* no exception */
1039                 set_Tuple_pred(n, pn_Div_res,       a);
1040         }
1041         return n;
1042 }  /* equivalent_node_Div */
1043
1044 /**
1045  * Optimize a / 1.0 = a.
1046  */
1047 static ir_node *equivalent_node_Quot(ir_node *n) {
1048         ir_node *a = get_Quot_left(n);
1049         ir_node *b = get_Quot_right(n);
1050
1051         /* Div is not commutative. */
1052         if (is_Const(b) && is_Const_one(b)) { /* Quot(x, 1) == x */
1053                 /* Turn Quot into a tuple (mem, jmp, bad, a) */
1054                 ir_node *mem = get_Quot_mem(n);
1055                 ir_node *blk = get_irn_n(n, -1);
1056                 turn_into_tuple(n, pn_Quot_max);
1057                 set_Tuple_pred(n, pn_Quot_M,         mem);
1058                 set_Tuple_pred(n, pn_Quot_X_regular, new_r_Jmp(current_ir_graph, blk));
1059                 set_Tuple_pred(n, pn_Quot_X_except,  new_Bad());        /* no exception */
1060                 set_Tuple_pred(n, pn_Quot_res,       a);
1061         }
1062         return n;
1063 }  /* equivalent_node_Quot */
1064
1065 /**
1066  * Optimize a / 1 = a.
1067  */
1068 static ir_node *equivalent_node_DivMod(ir_node *n) {
1069         ir_node *b = get_DivMod_right(n);
1070
1071         /* Div is not commutative. */
1072         if (is_Const(b) && is_Const_one(b)) { /* div(x, 1) == x */
1073                 /* Turn DivMod into a tuple (mem, jmp, bad, a, 0) */
1074                 ir_node *a = get_DivMod_left(n);
1075                 ir_node *mem = get_Div_mem(n);
1076                 ir_node *blk = get_irn_n(n, -1);
1077                 ir_mode *mode = get_DivMod_resmode(n);
1078
1079                 turn_into_tuple(n, pn_DivMod_max);
1080                 set_Tuple_pred(n, pn_DivMod_M,         mem);
1081                 set_Tuple_pred(n, pn_DivMod_X_regular, new_r_Jmp(current_ir_graph, blk));
1082                 set_Tuple_pred(n, pn_DivMod_X_except,  new_Bad());        /* no exception */
1083                 set_Tuple_pred(n, pn_DivMod_res_div,   a);
1084                 set_Tuple_pred(n, pn_DivMod_res_mod,   new_Const(mode, get_mode_null(mode)));
1085         }
1086         return n;
1087 }  /* equivalent_node_DivMod */
1088
1089 /**
1090  * Use algebraic simplification a | a = a | 0 = 0 | a = a.
1091  */
1092 static ir_node *equivalent_node_Or(ir_node *n) {
1093         ir_node *oldn = n;
1094
1095         ir_node *a = get_Or_left(n);
1096         ir_node *b = get_Or_right(n);
1097
1098         if (a == b) {
1099                 n = a;    /* Or has it's own neutral element */
1100                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_OR);
1101         } else if (is_Const(a) && is_Const_null(a)) {
1102                 n = b;
1103                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1104         } else if (is_Const(b) && is_Const_null(b)) {
1105                 n = a;
1106                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1107         }
1108
1109         return n;
1110 }  /* equivalent_node_Or */
1111
1112 /**
1113  * Optimize a & 0b1...1 = 0b1...1 & a = a & a = (a|X) & a = a.
1114  */
1115 static ir_node *equivalent_node_And(ir_node *n) {
1116         ir_node *oldn = n;
1117
1118         ir_node *a = get_And_left(n);
1119         ir_node *b = get_And_right(n);
1120
1121         if (a == b) {
1122                 n = a;    /* And has it's own neutral element */
1123                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_AND);
1124                 return n;
1125         }
1126         if (is_Const(a) && is_Const_all_one(a)) {
1127                 n = b;
1128                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1129                 return n;
1130         }
1131         if (is_Const(b) && is_Const_all_one(b)) {
1132                 n = a;
1133                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1134                 return n;
1135         }
1136         if (is_Or(a)) {
1137                 if (b == get_Or_left(a) || b == get_Or_right(a)) {
1138                         /* (a|X) & a */
1139                         n = b;
1140                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1141                         return n;
1142                 }
1143         }
1144         if (is_Or(b)) {
1145                 if (a == get_Or_left(b) || a == get_Or_right(b)) {
1146                         /* a & (a|X) */
1147                         n = a;
1148                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1149                         return n;
1150                 }
1151         }
1152
1153         return n;
1154 }  /* equivalent_node_And */
1155
1156 /**
1157  * Try to remove useless Conv's:
1158  */
1159 static ir_node *equivalent_node_Conv(ir_node *n) {
1160         ir_node *oldn = n;
1161         ir_node *a = get_Conv_op(n);
1162         ir_node *b;
1163
1164         ir_mode *n_mode = get_irn_mode(n);
1165         ir_mode *a_mode = get_irn_mode(a);
1166
1167         if (n_mode == a_mode) { /* No Conv necessary */
1168                 if (get_Conv_strict(n)) {
1169                         /* special case: the predecessor might be a also a Conv */
1170                         if (is_Conv(a)) {
1171                                 if (! get_Conv_strict(a)) {
1172                                         /* first one is not strict, kick it */
1173                                         set_Conv_op(n, get_Conv_op(a));
1174                                         return n;
1175                                 }
1176                                 /* else both are strict conv, second is superflous */
1177                         } else {
1178                                 /* leave strict floating point Conv's */
1179                                 return n;
1180                         }
1181                 }
1182                 n = a;
1183                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1184         } else if (is_Conv(a)) { /* Conv(Conv(b)) */
1185                 ir_mode *b_mode;
1186
1187                 b = get_Conv_op(a);
1188                 n_mode = get_irn_mode(n);
1189                 b_mode = get_irn_mode(b);
1190
1191                 if (n_mode == b_mode) {
1192                         if (n_mode == mode_b) {
1193                                 n = b; /* Convb(Conv*(xxxb(...))) == xxxb(...) */
1194                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1195                         } else if (mode_is_int(n_mode)) {
1196                                 if (smaller_mode(b_mode, a_mode)){
1197                                         n = b;        /* ConvS(ConvL(xxxS(...))) == xxxS(...) */
1198                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1199                                 }
1200                         }
1201                 }
1202         }
1203         return n;
1204 }  /* equivalent_node_Conv */
1205
1206 /**
1207  * A Cast may be removed if the type of the previous node
1208  * is already the type of the Cast.
1209  */
1210 static ir_node *equivalent_node_Cast(ir_node *n) {
1211         ir_node *oldn = n;
1212         ir_node *pred = get_Cast_op(n);
1213
1214         if (get_irn_type(pred) == get_Cast_type(n)) {
1215                 n = pred;
1216                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CAST);
1217         }
1218         return n;
1219 }  /* equivalent_node_Cast */
1220
1221 /**
1222  * Several optimizations:
1223  * - no Phi in start block.
1224  * - remove Id operators that are inputs to Phi
1225  * - fold Phi-nodes, iff they have only one predecessor except
1226  *   themselves.
1227  */
1228 static ir_node *equivalent_node_Phi(ir_node *n) {
1229         int i, n_preds;
1230
1231         ir_node *oldn = n;
1232         ir_node *block = NULL;     /* to shutup gcc */
1233         ir_node *first_val = NULL; /* to shutup gcc */
1234
1235         if (!get_opt_normalize()) return n;
1236
1237         n_preds = get_Phi_n_preds(n);
1238
1239         block = get_nodes_block(n);
1240         /* @@@ fliegt 'raus, sollte aber doch immer wahr sein!!!
1241         assert(get_irn_arity(block) == n_preds && "phi in wrong block!"); */
1242         if ((is_Block_dead(block)) ||                  /* Control dead */
1243                 (block == get_irg_start_block(current_ir_graph)))  /* There should be no Phi nodes */
1244                 return new_Bad();                                    /* in the Start Block. */
1245
1246         if (n_preds == 0) return n;           /* Phi of dead Region without predecessors. */
1247
1248         /* If the Block has a Bad pred, we also have one. */
1249         for (i = 0;  i < n_preds;  ++i)
1250                 if (is_Bad(get_Block_cfgpred(block, i)))
1251                         set_Phi_pred(n, i, new_Bad());
1252
1253         /* Find first non-self-referencing input */
1254         for (i = 0; i < n_preds; ++i) {
1255                 first_val = get_Phi_pred(n, i);
1256                 if (   (first_val != n)                            /* not self pointer */
1257 #if 1
1258                     && (! is_Bad(first_val))
1259 #endif
1260                    ) {        /* value not dead */
1261                         break;          /* then found first value. */
1262                 }
1263         }
1264
1265         if (i >= n_preds) {
1266                 /* A totally Bad or self-referencing Phi (we didn't break the above loop) */
1267                 return new_Bad();
1268         }
1269
1270         /* search for rest of inputs, determine if any of these
1271         are non-self-referencing */
1272         while (++i < n_preds) {
1273                 ir_node *scnd_val = get_Phi_pred(n, i);
1274                 if (   (scnd_val != n)
1275                     && (scnd_val != first_val)
1276 #if 1
1277                     && (! is_Bad(scnd_val))
1278 #endif
1279                         ) {
1280                         break;
1281                 }
1282         }
1283
1284         if (i >= n_preds) {
1285                 /* Fold, if no multiple distinct non-self-referencing inputs */
1286                 n = first_val;
1287                 DBG_OPT_PHI(oldn, n);
1288         }
1289         return n;
1290 }  /* equivalent_node_Phi */
1291
1292 /**
1293  * Several optimizations:
1294  * - no Sync in start block.
1295  * - fold Sync-nodes, iff they have only one predecessor except
1296  *   themselves.
1297  */
1298 static ir_node *equivalent_node_Sync(ir_node *n) {
1299         int i, n_preds;
1300
1301         ir_node *oldn = n;
1302         ir_node *first_val = NULL; /* to shutup gcc */
1303
1304         if (!get_opt_normalize()) return n;
1305
1306         n_preds = get_Sync_n_preds(n);
1307
1308         /* Find first non-self-referencing input */
1309         for (i = 0; i < n_preds; ++i) {
1310                 first_val = get_Sync_pred(n, i);
1311                 if ((first_val != n)  /* not self pointer */ &&
1312                     (! is_Bad(first_val))
1313                    ) {                /* value not dead */
1314                         break;            /* then found first value. */
1315                 }
1316         }
1317
1318         if (i >= n_preds)
1319                 /* A totally Bad or self-referencing Sync (we didn't break the above loop) */
1320                 return new_Bad();
1321
1322         /* search the rest of inputs, determine if any of these
1323            are non-self-referencing */
1324         while (++i < n_preds) {
1325                 ir_node *scnd_val = get_Sync_pred(n, i);
1326                 if ((scnd_val != n) &&
1327                     (scnd_val != first_val) &&
1328                     (! is_Bad(scnd_val))
1329                    )
1330                         break;
1331         }
1332
1333         if (i >= n_preds) {
1334                 /* Fold, if no multiple distinct non-self-referencing inputs */
1335                 n = first_val;
1336                 DBG_OPT_SYNC(oldn, n);
1337         }
1338         return n;
1339 }  /* equivalent_node_Sync */
1340
1341 /**
1342  * Optimize Proj(Tuple) and gigo() for ProjX in Bad block,
1343  * ProjX(Load) and ProjX(Store).
1344  */
1345 static ir_node *equivalent_node_Proj(ir_node *proj) {
1346         ir_node *oldn = proj;
1347         ir_node *a = get_Proj_pred(proj);
1348
1349         if (is_Tuple(a)) {
1350                 /* Remove the Tuple/Proj combination. */
1351                 if ( get_Proj_proj(proj) <= get_Tuple_n_preds(a) ) {
1352                         proj = get_Tuple_pred(a, get_Proj_proj(proj));
1353                         DBG_OPT_TUPLE(oldn, a, proj);
1354                 } else {
1355                          /* This should not happen! */
1356                         assert(! "found a Proj with higher number than Tuple predecessors");
1357                         proj = new_Bad();
1358                 }
1359         } else if (get_irn_mode(proj) == mode_X) {
1360                 if (is_Block_dead(get_nodes_block(skip_Proj(proj)))) {
1361                         /* Remove dead control flow -- early gigo(). */
1362                         proj = new_Bad();
1363                 } else if (get_opt_ldst_only_null_ptr_exceptions()) {
1364                         if (is_Load(a)) {
1365                                 /* get the Load address */
1366                                 ir_node *addr = get_Load_ptr(a);
1367                                 ir_node *blk  = get_irn_n(a, -1);
1368                                 ir_node *confirm;
1369
1370                                 if (value_not_null(addr, &confirm)) {
1371                                         if (confirm == NULL) {
1372                                                 /* this node may float if it did not depend on a Confirm */
1373                                                 set_irn_pinned(a, op_pin_state_floats);
1374                                         }
1375                                         if (get_Proj_proj(proj) == pn_Load_X_except) {
1376                                                 DBG_OPT_EXC_REM(proj);
1377                                                 return new_Bad();
1378                                         } else
1379                                                 return new_r_Jmp(current_ir_graph, blk);
1380                                 }
1381                         } else if (is_Store(a)) {
1382                                 /* get the load/store address */
1383                                 ir_node *addr = get_Store_ptr(a);
1384                                 ir_node *blk  = get_irn_n(a, -1);
1385                                 ir_node *confirm;
1386
1387                                 if (value_not_null(addr, &confirm)) {
1388                                         if (confirm == NULL) {
1389                                                 /* this node may float if it did not depend on a Confirm */
1390                                                 set_irn_pinned(a, op_pin_state_floats);
1391                                         }
1392                                         if (get_Proj_proj(proj) == pn_Store_X_except) {
1393                                                 DBG_OPT_EXC_REM(proj);
1394                                                 return new_Bad();
1395                                         } else
1396                                                 return new_r_Jmp(current_ir_graph, blk);
1397                                 }
1398                         }
1399                 }
1400         }
1401
1402         return proj;
1403 }  /* equivalent_node_Proj */
1404
1405 /**
1406  * Remove Id's.
1407  */
1408 static ir_node *equivalent_node_Id(ir_node *n) {
1409         ir_node *oldn = n;
1410
1411         do {
1412                 n = get_Id_pred(n);
1413         } while (get_irn_op(n) == op_Id);
1414
1415         DBG_OPT_ID(oldn, n);
1416         return n;
1417 }  /* equivalent_node_Id */
1418
1419 /**
1420  * Optimize a Mux.
1421  */
1422 static ir_node *equivalent_node_Mux(ir_node *n)
1423 {
1424         ir_node *oldn = n, *sel = get_Mux_sel(n);
1425         tarval *ts = value_of(sel);
1426
1427         /* Mux(true, f, t) == t */
1428         if (ts == tarval_b_true) {
1429                 n = get_Mux_true(n);
1430                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1431         }
1432         /* Mux(false, f, t) == f */
1433         else if (ts == tarval_b_false) {
1434                 n = get_Mux_false(n);
1435                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1436         }
1437         /* Mux(v, x, x) == x */
1438         else if (get_Mux_false(n) == get_Mux_true(n)) {
1439                 n = get_Mux_true(n);
1440                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_EQ);
1441         }
1442         else if (is_Proj(sel) && !mode_honor_signed_zeros(get_irn_mode(n))) {
1443                 ir_node *cmp = get_Proj_pred(sel);
1444                 long proj_nr = get_Proj_proj(sel);
1445                 ir_node *b   = get_Mux_false(n);
1446                 ir_node *a   = get_Mux_true(n);
1447
1448                 /*
1449                  * Note: normalization puts the constant on the right site,
1450                  * so we check only one case.
1451                  *
1452                  * Note further that these optimization work even for floating point
1453                  * with NaN's because -NaN == NaN.
1454                  * However, if +0 and -0 is handled differently, we cannot use the first one.
1455                  */
1456                 if (is_Cmp(cmp) && get_Cmp_left(cmp) == a) {
1457                         ir_node *cmp_r = get_Cmp_right(cmp);
1458                         if (is_Const(cmp_r) && is_Const_null(cmp_r)) {
1459                                 /* Mux(a CMP 0, X, a) */
1460                                 if (is_Minus(b) && get_Minus_op(b) == a) {
1461                                         /* Mux(a CMP 0, -a, a) */
1462                                         if (proj_nr == pn_Cmp_Eq) {
1463                                                 /* Mux(a == 0, -a, a)  ==>  -a */
1464                                                 n = b;
1465                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1466                                         } else if (proj_nr == pn_Cmp_Lg || proj_nr == pn_Cmp_Ne) {
1467                                                 /* Mux(a != 0, -a, a)  ==> a */
1468                                                 n = a;
1469                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1470                                         }
1471                                 } else if (is_Const(b) && is_Const_null(b)) {
1472                                         /* Mux(a CMP 0, 0, a) */
1473                                         if (proj_nr == pn_Cmp_Lg || proj_nr == pn_Cmp_Ne) {
1474                                                 /* Mux(a != 0, 0, a) ==> a */
1475                                                 n = a;
1476                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1477                                         } else if (proj_nr == pn_Cmp_Eq) {
1478                                                 /* Mux(a == 0, 0, a) ==> 0 */
1479                                                 n = b;
1480                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1481                                         }
1482                                 }
1483                         }
1484                 }
1485         }
1486         return n;
1487 }  /* equivalent_node_Mux */
1488
1489 /**
1490  * Returns a equivalent node of a Psi: if a condition is true
1491  * and all previous conditions are false we know its value.
1492  * If all conditions are false its value is the default one.
1493  */
1494 static ir_node *equivalent_node_Psi(ir_node *n) {
1495         if (is_Mux(n))
1496                 return equivalent_node_Mux(n);
1497         return n;
1498 }  /* equivalent_node_Psi */
1499
1500 /**
1501  * Optimize -a CMP -b into b CMP a.
1502  * This works only for for modes where unary Minus
1503  * cannot Overflow.
1504  * Note that two-complement integers can Overflow
1505  * so it will NOT work.
1506  *
1507  * For == and != can be handled in Proj(Cmp)
1508  */
1509 static ir_node *equivalent_node_Cmp(ir_node *n) {
1510         ir_node *left  = get_Cmp_left(n);
1511         ir_node *right = get_Cmp_right(n);
1512
1513         if (is_Minus(left) && is_Minus(right) &&
1514                 !mode_overflow_on_unary_Minus(get_irn_mode(left))) {
1515                 left  = get_Minus_op(left);
1516                 right = get_Minus_op(right);
1517                 set_Cmp_left(n, right);
1518                 set_Cmp_right(n, left);
1519         }
1520         return n;
1521 }  /* equivalent_node_Cmp */
1522
1523 /**
1524  * Remove Confirm nodes if setting is on.
1525  * Replace Confirms(x, '=', Constlike) by Constlike.
1526  */
1527 static ir_node *equivalent_node_Confirm(ir_node *n) {
1528         ir_node *pred = get_Confirm_value(n);
1529         pn_Cmp  pnc   = get_Confirm_cmp(n);
1530
1531         if (is_Confirm(pred) && pnc == get_Confirm_cmp(pred)) {
1532                 /*
1533                  * rare case: two identical Confirms one after another,
1534                  * replace the second one with the first.
1535                  */
1536                 n = pred;
1537         }
1538         if (pnc == pn_Cmp_Eq) {
1539                 ir_node *bound = get_Confirm_bound(n);
1540
1541                 /*
1542                  * Optimize a rare case:
1543                  * Confirm(x, '=', Constlike) ==> Constlike
1544                  */
1545                 if (is_irn_constlike(bound)) {
1546                         DBG_OPT_CONFIRM(n, bound);
1547                         return bound;
1548                 }
1549         }
1550         return get_opt_remove_confirm() ? get_Confirm_value(n) : n;
1551 }
1552
1553 /**
1554  * Optimize CopyB(mem, x, x) into a Nop.
1555  */
1556 static ir_node *equivalent_node_CopyB(ir_node *n) {
1557         ir_node *a = get_CopyB_dst(n);
1558         ir_node *b = get_CopyB_src(n);
1559
1560         if (a == b) {
1561                 /* Turn CopyB into a tuple (mem, jmp, bad, bad) */
1562                 ir_node *mem = get_CopyB_mem(n);
1563                 ir_node *blk = get_nodes_block(n);
1564                 turn_into_tuple(n, pn_CopyB_max);
1565                 set_Tuple_pred(n, pn_CopyB_M,         mem);
1566                 set_Tuple_pred(n, pn_CopyB_X_regular, new_r_Jmp(current_ir_graph, blk));
1567                 set_Tuple_pred(n, pn_CopyB_X_except,  new_Bad());        /* no exception */
1568                 set_Tuple_pred(n, pn_CopyB_M_except,  new_Bad());
1569         }
1570         return n;
1571 }  /* equivalent_node_CopyB */
1572
1573 /**
1574  * Optimize Bounds(idx, idx, upper) into idx.
1575  */
1576 static ir_node *equivalent_node_Bound(ir_node *n) {
1577         ir_node *idx   = get_Bound_index(n);
1578         ir_node *lower = get_Bound_lower(n);
1579         int ret_tuple = 0;
1580
1581         /* By definition lower < upper, so if idx == lower -->
1582         lower <= idx && idx < upper */
1583         if (idx == lower) {
1584                 /* Turn Bound into a tuple (mem, jmp, bad, idx) */
1585                 ret_tuple = 1;
1586         } else {
1587                 ir_node *pred = skip_Proj(idx);
1588
1589                 if (get_irn_op(pred) == op_Bound) {
1590                         /*
1591                          * idx was Bounds_check previously, it is still valid if
1592                          * lower <= pred_lower && pred_upper <= upper.
1593                          */
1594                         ir_node *upper = get_Bound_upper(n);
1595                         if (get_Bound_lower(pred) == lower &&
1596                                 get_Bound_upper(pred) == upper) {
1597                                 /*
1598                                  * One could expect that we simply return the previous
1599                                  * Bound here. However, this would be wrong, as we could
1600                                  * add an exception Proj to a new location then.
1601                                  * So, we must turn in into a tuple.
1602                                  */
1603                                 ret_tuple = 1;
1604                         }
1605                 }
1606         }
1607         if (ret_tuple) {
1608                 /* Turn Bound into a tuple (mem, jmp, bad, idx) */
1609                 ir_node *mem = get_Bound_mem(n);
1610                 ir_node *blk = get_nodes_block(n);
1611                 turn_into_tuple(n, pn_Bound_max);
1612                 set_Tuple_pred(n, pn_Bound_M,         mem);
1613                 set_Tuple_pred(n, pn_Bound_X_regular, new_r_Jmp(current_ir_graph, blk));       /* no exception */
1614                 set_Tuple_pred(n, pn_Bound_X_except,  new_Bad());       /* no exception */
1615                 set_Tuple_pred(n, pn_Bound_res,       idx);
1616         }
1617         return n;
1618 }  /* equivalent_node_Bound */
1619
1620 /**
1621  * equivalent_node() returns a node equivalent to input n. It skips all nodes that
1622  * perform no actual computation, as, e.g., the Id nodes.  It does not create
1623  * new nodes.  It is therefore safe to free n if the node returned is not n.
1624  * If a node returns a Tuple we can not just skip it.  If the size of the
1625  * in array fits, we transform n into a tuple (e.g., Div).
1626  */
1627 ir_node *equivalent_node(ir_node *n) {
1628         if (n->op->ops.equivalent_node)
1629                 return n->op->ops.equivalent_node(n);
1630         return n;
1631 }  /* equivalent_node */
1632
1633 /**
1634  * Sets the default equivalent node operation for an ir_op_ops.
1635  *
1636  * @param code   the opcode for the default operation
1637  * @param ops    the operations initialized
1638  *
1639  * @return
1640  *    The operations.
1641  */
1642 static ir_op_ops *firm_set_default_equivalent_node(ir_opcode code, ir_op_ops *ops)
1643 {
1644 #define CASE(a)                                      \
1645         case iro_##a:                                    \
1646                 ops->equivalent_node  = equivalent_node_##a; \
1647                 break
1648
1649         switch (code) {
1650         CASE(Block);
1651         CASE(Jmp);
1652         CASE(Raise);
1653         CASE(Or);
1654         CASE(Add);
1655         CASE(Eor);
1656         CASE(Sub);
1657         CASE(Shl);
1658         CASE(Shr);
1659         CASE(Shrs);
1660         CASE(Rot);
1661         CASE(Not);
1662         CASE(Minus);
1663         CASE(Mul);
1664         CASE(Div);
1665         CASE(Quot);
1666         CASE(DivMod);
1667         CASE(And);
1668         CASE(Conv);
1669         CASE(Cast);
1670         CASE(Phi);
1671         CASE(Sync);
1672         CASE(Proj);
1673         CASE(Id);
1674         CASE(Mux);
1675         CASE(Psi);
1676         CASE(Cmp);
1677         CASE(Confirm);
1678         CASE(CopyB);
1679         CASE(Bound);
1680         default:
1681                 /* leave NULL */;
1682         }
1683
1684         return ops;
1685 #undef CASE
1686 }  /* firm_set_default_equivalent_node */
1687
1688 /**
1689  * Returns non-zero if a node is a Phi node
1690  * with all predecessors constant.
1691  */
1692 static int is_const_Phi(ir_node *n) {
1693         int i;
1694
1695         if (! is_Phi(n))
1696                 return 0;
1697         for (i = get_irn_arity(n) - 1; i >= 0; --i)
1698                 if (! is_Const(get_irn_n(n, i)))
1699                         return 0;
1700                 return 1;
1701 }  /* is_const_Phi */
1702
1703 /**
1704  * Apply an evaluator on a binop with a constant operators (and one Phi).
1705  *
1706  * @param phi    the Phi node
1707  * @param other  the other operand
1708  * @param eval   an evaluator function
1709  * @param left   if non-zero, other is the left operand, else the right
1710  *
1711  * @return a new Phi node if the conversion was successful, NULL else
1712  */
1713 static ir_node *apply_binop_on_phi(ir_node *phi, tarval *other, tarval *(*eval)(tarval *, tarval *), int left) {
1714         tarval   *tv;
1715         void     **res;
1716         ir_node  *pred;
1717         ir_mode  *mode;
1718         ir_graph *irg;
1719         int      i, n = get_irn_arity(phi);
1720
1721         NEW_ARR_A(void *, res, n);
1722         if (left) {
1723                 for (i = 0; i < n; ++i) {
1724                         pred = get_irn_n(phi, i);
1725                         tv   = get_Const_tarval(pred);
1726                         tv   = eval(other, tv);
1727
1728                         if (tv == tarval_bad) {
1729                                 /* folding failed, bad */
1730                                 return NULL;
1731                         }
1732                         res[i] = tv;
1733                 }
1734         } else {
1735                 for (i = 0; i < n; ++i) {
1736                         pred = get_irn_n(phi, i);
1737                         tv   = get_Const_tarval(pred);
1738                         tv   = eval(tv, other);
1739
1740                         if (tv == tarval_bad) {
1741                                 /* folding failed, bad */
1742                                 return 0;
1743                         }
1744                         res[i] = tv;
1745                 }
1746         }
1747         mode = get_irn_mode(phi);
1748         irg  = current_ir_graph;
1749         for (i = 0; i < n; ++i) {
1750                 pred = get_irn_n(phi, i);
1751                 res[i] = new_r_Const_type(irg, get_irg_start_block(irg),
1752                         mode, res[i], get_Const_type(pred));
1753         }
1754         return new_r_Phi(irg, get_nodes_block(phi), n, (ir_node **)res, mode);
1755 }  /* apply_binop_on_phi */
1756
1757 /**
1758  * Apply an evaluator on a unop with a constant operator (a Phi).
1759  *
1760  * @param phi    the Phi node
1761  * @param eval   an evaluator function
1762  *
1763  * @return a new Phi node if the conversion was successful, NULL else
1764  */
1765 static ir_node *apply_unop_on_phi(ir_node *phi, tarval *(*eval)(tarval *)) {
1766         tarval   *tv;
1767         void     **res;
1768         ir_node  *pred;
1769         ir_mode  *mode;
1770         ir_graph *irg;
1771         int      i, n = get_irn_arity(phi);
1772
1773         NEW_ARR_A(void *, res, n);
1774         for (i = 0; i < n; ++i) {
1775                 pred = get_irn_n(phi, i);
1776                 tv   = get_Const_tarval(pred);
1777                 tv   = eval(tv);
1778
1779                 if (tv == tarval_bad) {
1780                         /* folding failed, bad */
1781                         return 0;
1782                 }
1783                 res[i] = tv;
1784         }
1785         mode = get_irn_mode(phi);
1786         irg  = current_ir_graph;
1787         for (i = 0; i < n; ++i) {
1788                 pred = get_irn_n(phi, i);
1789                 res[i] = new_r_Const_type(irg, get_irg_start_block(irg),
1790                         mode, res[i], get_Const_type(pred));
1791         }
1792         return new_r_Phi(irg, get_nodes_block(phi), n, (ir_node **)res, mode);
1793 }  /* apply_unop_on_phi */
1794
1795 /**
1796  * Transform AddP(P, ConvIs(Iu)), AddP(P, ConvIu(Is)) and
1797  * SubP(P, ConvIs(Iu)), SubP(P, ConvIu(Is)).
1798  * If possible, remove the Conv's.
1799  */
1800 static ir_node *transform_node_AddSub(ir_node *n) {
1801         ir_mode *mode = get_irn_mode(n);
1802
1803         if (mode_is_reference(mode)) {
1804                 ir_node *left  = get_binop_left(n);
1805                 ir_node *right = get_binop_right(n);
1806                 int ref_bits   = get_mode_size_bits(mode);
1807
1808                 if (is_Conv(left)) {
1809                         ir_mode *mode = get_irn_mode(left);
1810                         int bits      = get_mode_size_bits(mode);
1811
1812                         if (ref_bits == bits &&
1813                             mode_is_int(mode) &&
1814                             get_mode_arithmetic(mode) == irma_twos_complement) {
1815                                 ir_node *pre      = get_Conv_op(left);
1816                                 ir_mode *pre_mode = get_irn_mode(pre);
1817
1818                                 if (mode_is_int(pre_mode) &&
1819                                     get_mode_size_bits(pre_mode) == bits &&
1820                                     get_mode_arithmetic(pre_mode) == irma_twos_complement) {
1821                                         /* ok, this conv just changes to sign, moreover the calculation
1822                                          * is done with same number of bits as our address mode, so
1823                                          * we can ignore the conv as address calculation can be viewed
1824                                          * as either signed or unsigned
1825                                          */
1826                                         set_binop_left(n, pre);
1827                                 }
1828                         }
1829                 }
1830
1831                 if (is_Conv(right)) {
1832                         ir_mode *mode = get_irn_mode(right);
1833                         int bits      = get_mode_size_bits(mode);
1834
1835                         if (ref_bits == bits &&
1836                                 mode_is_int(mode) &&
1837                                 get_mode_arithmetic(mode) == irma_twos_complement) {
1838                                 ir_node *pre      = get_Conv_op(right);
1839                                 ir_mode *pre_mode = get_irn_mode(pre);
1840
1841                                 if (mode_is_int(pre_mode) &&
1842                                     get_mode_size_bits(pre_mode) == bits &&
1843                                     get_mode_arithmetic(pre_mode) == irma_twos_complement) {
1844                                         /* ok, this conv just changes to sign, moreover the calculation
1845                                          * is done with same number of bits as our address mode, so
1846                                          * we can ignore the conv as address calculation can be viewed
1847                                          * as either signed or unsigned
1848                                          */
1849                                         set_binop_right(n, pre);
1850                                 }
1851                         }
1852                 }
1853         }
1854         return n;
1855 }  /* transform_node_AddSub */
1856
1857 #define HANDLE_BINOP_PHI(op,a,b,c)                          \
1858   c = NULL;                                                 \
1859   if (is_Const(b) && is_const_Phi(a)) {                     \
1860     /* check for Op(Phi, Const) */                          \
1861     c = apply_binop_on_phi(a, get_Const_tarval(b), op, 0);  \
1862   }                                                         \
1863   else if (is_Const(a) && is_const_Phi(b)) {                \
1864     /* check for Op(Const, Phi) */                          \
1865     c = apply_binop_on_phi(b, get_Const_tarval(a), op, 1);  \
1866   }                                                         \
1867   if (c) {                                                  \
1868     DBG_OPT_ALGSIM0(oldn, c, FS_OPT_CONST_PHI);             \
1869     return c;                                               \
1870   }
1871
1872 #define HANDLE_UNOP_PHI(op,a,c)                   \
1873   c = NULL;                                       \
1874   if (is_const_Phi(a)) {                          \
1875     /* check for Op(Phi) */                       \
1876     c = apply_unop_on_phi(a, op);                 \
1877     if (c) {                                      \
1878       DBG_OPT_ALGSIM0(oldn, c, FS_OPT_CONST_PHI); \
1879       return c;                                   \
1880     }                                             \
1881   }
1882
1883 /**
1884  * Do the AddSub optimization, then Transform
1885  *   Constant folding on Phi
1886  *   Add(a,a)          -> Mul(a, 2)
1887  *   Add(Mul(a, x), a) -> Mul(a, x+1)
1888  * if the mode is integer or float.
1889  * Transform Add(a,-b) into Sub(a,b).
1890  * Reassociation might fold this further.
1891  */
1892 static ir_node *transform_node_Add(ir_node *n) {
1893         ir_mode *mode;
1894         ir_node *a, *b, *c, *oldn = n;
1895
1896         n = transform_node_AddSub(n);
1897
1898         a = get_Add_left(n);
1899         b = get_Add_right(n);
1900
1901         HANDLE_BINOP_PHI(tarval_add, a,b,c);
1902
1903         mode = get_irn_mode(n);
1904
1905         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
1906         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
1907                 return n;
1908
1909         if (mode_is_num(mode)) {
1910                 /* the following code leads to endless recursion when Mul are replaced by a simple instruction chain */
1911                 if (!is_arch_dep_running() && a == b && mode_is_int(mode)) {
1912                         ir_node *block = get_irn_n(n, -1);
1913
1914                         n = new_rd_Mul(
1915                                 get_irn_dbg_info(n),
1916                                 current_ir_graph,
1917                                 block,
1918                                 a,
1919                                 new_r_Const_long(current_ir_graph, block, mode, 2),
1920                                 mode);
1921                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_A);
1922                         return n;
1923                 }
1924                 if (is_Minus(a)) {
1925                         n = new_rd_Sub(
1926                                         get_irn_dbg_info(n),
1927                                         current_ir_graph,
1928                                         get_irn_n(n, -1),
1929                                         b,
1930                                         get_Minus_op(a),
1931                                         mode);
1932                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
1933                         return n;
1934                 }
1935                 if (is_Minus(b)) {
1936                         n = new_rd_Sub(
1937                                         get_irn_dbg_info(n),
1938                                         current_ir_graph,
1939                                         get_irn_n(n, -1),
1940                                         a,
1941                                         get_Minus_op(b),
1942                                         mode);
1943                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
1944                         return n;
1945                 }
1946                 if (! is_reassoc_running()) {
1947                         /* do NOT execute this code if reassociation is enabled, it does the inverse! */
1948                         if (is_Mul(a)) {
1949                                 ir_node *ma = get_Mul_left(a);
1950                                 ir_node *mb = get_Mul_right(a);
1951
1952                                 if (b == ma) {
1953                                         ir_node *blk = get_irn_n(n, -1);
1954                                         n = new_rd_Mul(
1955                                                         get_irn_dbg_info(n), current_ir_graph, blk,
1956                                                         ma,
1957                                                         new_rd_Add(
1958                                                                 get_irn_dbg_info(n), current_ir_graph, blk,
1959                                                                 mb,
1960                                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
1961                                                                 mode),
1962                                                         mode);
1963                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
1964                                         return n;
1965                                 } else if (b == mb) {
1966                                         ir_node *blk = get_irn_n(n, -1);
1967                                         n = new_rd_Mul(
1968                                                         get_irn_dbg_info(n), current_ir_graph, blk,
1969                                                         mb,
1970                                                         new_rd_Add(
1971                                                                 get_irn_dbg_info(n), current_ir_graph, blk,
1972                                                                 ma,
1973                                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
1974                                                                 mode),
1975                                                         mode);
1976                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
1977                                         return n;
1978                                 }
1979                         }
1980                         if (is_Mul(b)) {
1981                                 ir_node *ma = get_Mul_left(b);
1982                                 ir_node *mb = get_Mul_right(b);
1983
1984                                 if (a == ma) {
1985                                         ir_node *blk = get_irn_n(n, -1);
1986                                         n = new_rd_Mul(
1987                                                         get_irn_dbg_info(n), current_ir_graph, blk,
1988                                                         ma,
1989                                                         new_rd_Add(
1990                                                                 get_irn_dbg_info(n), current_ir_graph, blk,
1991                                                                 mb,
1992                                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
1993                                                                 mode),
1994                                                         mode);
1995                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
1996                                         return n;
1997                                 }
1998                                 if (a == mb) {
1999                                         ir_node *blk = get_irn_n(n, -1);
2000                                         n = new_rd_Mul(
2001                                                         get_irn_dbg_info(n), current_ir_graph, blk,
2002                                                         mb,
2003                                                         new_rd_Add(
2004                                                                 get_irn_dbg_info(n), current_ir_graph, blk,
2005                                                                 ma,
2006                                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
2007                                                                 mode),
2008                                                         mode);
2009                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
2010                                         return n;
2011                                 }
2012                         }
2013                 }
2014                 if (get_mode_arithmetic(mode) == irma_twos_complement) {
2015                         /* Here we rely on constants be on the RIGHT side */
2016                         if (is_Not(a)) {
2017                                 ir_node *op = get_Not_op(a);
2018
2019                                 if (is_Const(b) && is_Const_one(b)) {
2020                                         /* ~x + 1 = -x */
2021                                         ir_node *blk = get_irn_n(n, -1);
2022                                         n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, op, mode);
2023                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_PLUS_1);
2024                                         return n;
2025                                 }
2026                                 if (op == b) {
2027                                         /* ~x + x = -1 */
2028                                         ir_node *blk = get_irn_n(n, -1);
2029                                         n = new_r_Const(current_ir_graph, blk, mode, get_mode_minus_one(mode));
2030                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_X_NOT_X);
2031                                         return n;
2032                                 }
2033                         }
2034                         if (is_Not(b)) {
2035                                 ir_node *op = get_Not_op(b);
2036
2037                                 if (op == a) {
2038                                         /* x + ~x = -1 */
2039                                         ir_node *blk = get_irn_n(n, -1);
2040                                         n = new_r_Const(current_ir_graph, blk, mode, get_mode_minus_one(mode));
2041                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_X_NOT_X);
2042                                         return n;
2043                                 }
2044                         }
2045                 }
2046         }
2047         return n;
2048 }  /* transform_node_Add */
2049
2050 /* returns -cnst */
2051 static ir_node *const_negate(ir_node *cnst) {
2052         tarval   *tv    = tarval_neg(get_Const_tarval(cnst));
2053         dbg_info *dbgi  = get_irn_dbg_info(cnst);
2054         ir_graph *irg   = get_irn_irg(cnst);
2055         ir_node  *block = get_nodes_block(cnst);
2056         ir_mode  *mode  = get_irn_mode(cnst);
2057         if (tv == tarval_bad) return NULL;
2058         return new_rd_Const(dbgi, irg, block, mode, tv);
2059 }
2060
2061 /**
2062  * Do the AddSub optimization, then Transform
2063  *   Constant folding on Phi
2064  *   Sub(0,a)          -> Minus(a)
2065  *   Sub(Mul(a, x), a) -> Mul(a, x-1)
2066  *   Sub(Sub(x, y), b) -> Sub(x, Add(y,b))
2067  *   Sub(Add(a, x), x) -> a
2068  *   Sub(x, Add(x, a)) -> -a
2069  *   Sub(x, Const)     -> Add(x, -Const)
2070  */
2071 static ir_node *transform_node_Sub(ir_node *n) {
2072         ir_mode *mode;
2073         ir_node *oldn = n;
2074         ir_node *a, *b, *c;
2075
2076         n = transform_node_AddSub(n);
2077
2078         a = get_Sub_left(n);
2079         b = get_Sub_right(n);
2080
2081         mode = get_irn_mode(n);
2082
2083 restart:
2084         HANDLE_BINOP_PHI(tarval_sub, a,b,c);
2085
2086         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2087         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2088                 return n;
2089
2090         if (is_Const(b) && get_irn_mode(b) != mode_P) {
2091                 /* a - C -> a + (-C) */
2092                 ir_node *cnst = const_negate(b);
2093                 if (cnst != NULL) {
2094                         ir_node  *block = get_nodes_block(n);
2095                         dbg_info *dbgi  = get_irn_dbg_info(n);
2096                         ir_graph *irg   = get_irn_irg(n);
2097
2098                         n = new_rd_Add(dbgi, irg, block, a, cnst, mode);
2099                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2100                         return n;
2101                 }
2102         }
2103
2104         if (is_Minus(a)) { /* (-a) - b -> -(a + b) */
2105                 ir_graph *irg   = current_ir_graph;
2106                 dbg_info *dbg   = get_irn_dbg_info(n);
2107                 ir_node  *block = get_nodes_block(n);
2108                 ir_node  *left  = get_Minus_op(a);
2109                 ir_mode  *mode  = get_irn_mode(n);
2110                 ir_node  *add   = new_rd_Add(dbg, irg, block, left, b, mode);
2111
2112                 n = new_rd_Minus(dbg, irg, block, add, mode);
2113                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2114                 return n;
2115         } else if (is_Minus(b)) { /* a - (-b) -> a + b */
2116                 ir_graph *irg   = current_ir_graph;
2117                 dbg_info *dbg   = get_irn_dbg_info(n);
2118                 ir_node  *block = get_nodes_block(n);
2119                 ir_node  *right = get_Minus_op(b);
2120                 ir_mode  *mode  = get_irn_mode(n);
2121
2122                 n = new_rd_Add(dbg, irg, block, a, right, mode);
2123                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MINUS);
2124                 return n;
2125         } else if (is_Sub(b)) { /* a - (b - c) -> a + (c - b) */
2126                 ir_graph *irg     = current_ir_graph;
2127                 dbg_info *s_dbg   = get_irn_dbg_info(b);
2128                 ir_node  *s_block = get_nodes_block(b);
2129                 ir_node  *s_left  = get_Sub_right(b);
2130                 ir_node  *s_right = get_Sub_left(b);
2131                 ir_mode  *s_mode  = get_irn_mode(b);
2132                 ir_node  *sub     = new_rd_Sub(s_dbg, irg, s_block, s_left, s_right, s_mode);
2133                 dbg_info *a_dbg   = get_irn_dbg_info(n);
2134                 ir_node  *a_block = get_nodes_block(n);
2135                 ir_mode  *a_mode  = get_irn_mode(n);
2136
2137                 n = new_rd_Add(a_dbg, irg, a_block, a, sub, a_mode);
2138                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2139                 return n;
2140         } else if (is_Mul(b)) { /* a - (b * C) -> a + (b * -C) */
2141                 ir_node *m_right = get_Mul_right(b);
2142                 if (is_Const(m_right)) {
2143                         ir_node *cnst2 = const_negate(m_right);
2144                         if (cnst2 != NULL) {
2145                                 ir_graph *irg     = current_ir_graph;
2146                                 dbg_info *m_dbg   = get_irn_dbg_info(b);
2147                                 ir_node  *m_block = get_nodes_block(b);
2148                                 ir_node  *m_left  = get_Mul_left(b);
2149                                 ir_mode  *m_mode  = get_irn_mode(b);
2150                                 ir_node  *mul     = new_rd_Mul(m_dbg, irg, m_block, m_left, cnst2, m_mode);
2151                                 dbg_info *a_dbg   = get_irn_dbg_info(n);
2152                                 ir_node  *a_block = get_nodes_block(n);
2153                                 ir_mode  *a_mode  = get_irn_mode(n);
2154
2155                                 n = new_rd_Add(a_dbg, irg, a_block, a, mul, a_mode);
2156                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2157                                 return n;
2158                         }
2159                 }
2160         }
2161
2162         /* Beware of Sub(P, P) which cannot be optimized into a simple Minus ... */
2163         if (mode_is_num(mode) && mode == get_irn_mode(a) && is_Const(a) && is_Const_null(a)) {
2164                 n = new_rd_Minus(
2165                                 get_irn_dbg_info(n),
2166                                 current_ir_graph,
2167                                 get_irn_n(n, -1),
2168                                 b,
2169                                 mode);
2170                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
2171                 return n;
2172         }
2173         if (is_Add(a)) {
2174                 if (mode_wrap_around(mode)) {
2175                         ir_node *left  = get_Add_left(a);
2176                         ir_node *right = get_Add_right(a);
2177
2178                         /* FIXME: Does the Conv's work only for two complement or generally? */
2179                         if (left == b) {
2180                                 if (mode != get_irn_mode(right)) {
2181                                         /* This Sub is an effective Cast */
2182                                         right = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), right, mode);
2183                                 }
2184                                 n = right;
2185                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2186                                 return n;
2187                         } else if (right == b) {
2188                                 if (mode != get_irn_mode(left)) {
2189                                         /* This Sub is an effective Cast */
2190                                         left = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), left, mode);
2191                                 }
2192                                 n = left;
2193                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2194                                 return n;
2195                         }
2196                 }
2197         }
2198         if (is_Add(b)) {
2199                 if (mode_wrap_around(mode)) {
2200                         ir_node *left  = get_Add_left(b);
2201                         ir_node *right = get_Add_right(b);
2202
2203                         /* FIXME: Does the Conv's work only for two complement or generally? */
2204                         if (left == a) {
2205                                 ir_mode *r_mode = get_irn_mode(right);
2206
2207                                 n = new_r_Minus(get_irn_irg(n), get_irn_n(n, -1), right, r_mode);
2208                                 if (mode != r_mode) {
2209                                         /* This Sub is an effective Cast */
2210                                         n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
2211                                 }
2212                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2213                                 return n;
2214                         } else if (right == a) {
2215                                 ir_mode *l_mode = get_irn_mode(left);
2216
2217                                 n = new_r_Minus(get_irn_irg(n), get_irn_n(n, -1), left, l_mode);
2218                                 if (mode != l_mode) {
2219                                         /* This Sub is an effective Cast */
2220                                         n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
2221                                 }
2222                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2223                                 return n;
2224                         }
2225                 }
2226         }
2227         if (mode_is_int(mode) && is_Conv(a) && is_Conv(b)) {
2228                 ir_mode *mode = get_irn_mode(a);
2229
2230                 if (mode == get_irn_mode(b)) {
2231                         ir_mode *ma, *mb;
2232
2233                         a = get_Conv_op(a);
2234                         b = get_Conv_op(b);
2235
2236                         /* check if it's allowed to skip the conv */
2237                         ma = get_irn_mode(a);
2238                         mb = get_irn_mode(b);
2239
2240                         if (mode_is_reference(ma) && mode_is_reference(mb)) {
2241                                 /* SubInt(ConvInt(aP), ConvInt(bP)) -> SubInt(aP,bP) */
2242                                 set_Sub_left(n, a);
2243                                 set_Sub_right(n, b);
2244
2245                                 goto restart;
2246                         }
2247                 }
2248         }
2249         /* do NOT execute this code if reassociation is enabled, it does the inverse! */
2250         if (!is_reassoc_running() && is_Mul(a)) {
2251                 ir_node *ma = get_Mul_left(a);
2252                 ir_node *mb = get_Mul_right(a);
2253
2254                 if (ma == b) {
2255                         ir_node *blk = get_irn_n(n, -1);
2256                         n = new_rd_Mul(
2257                                         get_irn_dbg_info(n),
2258                                         current_ir_graph, blk,
2259                                         ma,
2260                                         new_rd_Sub(
2261                                                 get_irn_dbg_info(n),
2262                                                 current_ir_graph, blk,
2263                                                 mb,
2264                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
2265                                                 mode),
2266                                         mode);
2267                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2268                         return n;
2269                 } else if (mb == b) {
2270                         ir_node *blk = get_irn_n(n, -1);
2271                         n = new_rd_Mul(
2272                                         get_irn_dbg_info(n),
2273                                         current_ir_graph, blk,
2274                                         mb,
2275                                         new_rd_Sub(
2276                                                 get_irn_dbg_info(n),
2277                                                 current_ir_graph, blk,
2278                                                 ma,
2279                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
2280                                                 mode),
2281                                         mode);
2282                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2283                         return n;
2284                 }
2285         }
2286         if (is_Sub(a)) {
2287                 ir_node *x   = get_Sub_left(a);
2288                 ir_node *y   = get_Sub_right(a);
2289                 ir_node *blk = get_irn_n(n, -1);
2290                 ir_mode *m_b = get_irn_mode(b);
2291                 ir_mode *m_y = get_irn_mode(y);
2292                 ir_node *add;
2293
2294                 /* Determine the right mode for the Add. */
2295                 if (m_b == m_y)
2296                         mode = m_b;
2297                 else if (mode_is_reference(m_b))
2298                         mode = m_b;
2299                 else if (mode_is_reference(m_y))
2300                         mode = m_y;
2301                 else {
2302                         /*
2303                          * Both modes are different but none is reference,
2304                          * happens for instance in SubP(SubP(P, Iu), Is).
2305                          * We have two possibilities here: Cast or ignore.
2306                          * Currently we ignore this case.
2307                          */
2308                         return n;
2309                 }
2310
2311                 add = new_r_Add(current_ir_graph, blk, y, b, mode);
2312
2313                 n = new_rd_Sub(get_irn_dbg_info(n), current_ir_graph, blk, x, add, mode);
2314                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_SUB_X_Y_Z);
2315                 return n;
2316         }
2317
2318         if (get_mode_arithmetic(mode) == irma_twos_complement) {
2319                 if (is_Const(a) && is_Not(b)) {
2320                         /* c - ~X = X + (c+1) */
2321                         tarval *tv = get_Const_tarval(a);
2322
2323                         tv = tarval_add(tv, get_mode_one(mode));
2324                         if (tv != tarval_bad) {
2325                                 ir_node *blk = get_irn_n(n, -1);
2326                                 ir_node *c = new_r_Const(current_ir_graph, blk, mode, tv);
2327                                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, blk, get_Not_op(b), c, mode);
2328                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_C_NOT_X);
2329                                 return n;
2330                         }
2331                 }
2332         }
2333         return n;
2334 }  /* transform_node_Sub */
2335
2336 /**
2337  * Several transformation done on n*n=2n bits mul.
2338  * These transformations must be done here because new nodes may be produced.
2339  */
2340 static ir_node *transform_node_Mul2n(ir_node *n, ir_mode *mode) {
2341         ir_node *oldn = n;
2342         ir_node *a = get_Mul_left(n);
2343         ir_node *b = get_Mul_right(n);
2344         tarval *ta = value_of(a);
2345         tarval *tb = value_of(b);
2346         ir_mode *smode = get_irn_mode(a);
2347
2348         if (ta == get_mode_one(smode)) {
2349                 ir_node *blk = get_irn_n(n, -1);
2350                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, b, mode);
2351                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2352                 return n;
2353         }
2354         else if (ta == get_mode_minus_one(smode)) {
2355                 ir_node *blk = get_irn_n(n, -1);
2356                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, b, smode);
2357                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, n, mode);
2358                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2359                 return n;
2360         }
2361         if (tb == get_mode_one(smode)) {
2362                 ir_node *blk = get_irn_n(a, -1);
2363                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, a, mode);
2364                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2365                 return n;
2366         }
2367         else if (tb == get_mode_minus_one(smode)) {
2368                 ir_node *blk = get_irn_n(n, -1);
2369                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, a, smode);
2370                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, n, mode);
2371                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2372                 return n;
2373         }
2374         return n;
2375 }
2376
2377 /**
2378  * Transform Mul(a,-1) into -a.
2379  * Do constant evaluation of Phi nodes.
2380  * Do architecture dependent optimizations on Mul nodes
2381  */
2382 static ir_node *transform_node_Mul(ir_node *n) {
2383         ir_node *c, *oldn = n;
2384         ir_mode *mode = get_irn_mode(n);
2385         ir_node *a = get_Mul_left(n);
2386         ir_node *b = get_Mul_right(n);
2387
2388         if (is_Bad(a) || is_Bad(b))
2389                 return n;
2390
2391         if (mode != get_irn_mode(a))
2392                 return transform_node_Mul2n(n, mode);
2393
2394         HANDLE_BINOP_PHI(tarval_mul, a,b,c);
2395
2396         if (mode_is_signed(mode)) {
2397                 ir_node *r = NULL;
2398
2399                 if (value_of(a) == get_mode_minus_one(mode))
2400                         r = b;
2401                 else if (value_of(b) == get_mode_minus_one(mode))
2402                         r = a;
2403                 if (r) {
2404                         n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), r, mode);
2405                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2406                         return n;
2407                 }
2408         }
2409         if (is_Minus(a)) {
2410                 if (is_Const(b)) { /* (-a) * const -> a * -const */
2411                         ir_node *cnst = const_negate(b);
2412                         if (cnst != NULL) {
2413                                 dbg_info *dbgi  = get_irn_dbg_info(n);
2414                                 ir_node  *block = get_nodes_block(n);
2415                                 n = new_rd_Mul(dbgi, current_ir_graph, block, get_Minus_op(a), cnst, mode);
2416                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2417                                 return n;
2418                         }
2419                 } else if (is_Minus(b)) { /* (-a) * (-b) -> a * b */
2420                         dbg_info *dbgi  = get_irn_dbg_info(n);
2421                         ir_node  *block = get_nodes_block(n);
2422                         n = new_rd_Mul(dbgi, current_ir_graph, block, get_Minus_op(a), get_Minus_op(b), mode);
2423                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_MINUS);
2424                         return n;
2425                 } else if (is_Sub(b)) { /* (-a) * (b - c) -> a * (c - b) */
2426                         ir_node  *sub_l = get_Sub_left(b);
2427                         ir_node  *sub_r = get_Sub_right(b);
2428                         dbg_info *dbgi  = get_irn_dbg_info(n);
2429                         ir_graph *irg   = current_ir_graph;
2430                         ir_node  *block = get_nodes_block(n);
2431                         ir_node  *new_b = new_rd_Sub(dbgi, irg, block, sub_r, sub_l, mode);
2432                         n = new_rd_Mul(dbgi, irg, block, get_Minus_op(a), new_b, mode);
2433                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS);
2434                         return n;
2435                 }
2436         } else if (is_Minus(b)) {
2437                 if (is_Sub(a)) { /* (a - b) * (-c) -> (b - a) * c */
2438                         ir_node  *sub_l = get_Sub_left(a);
2439                         ir_node  *sub_r = get_Sub_right(a);
2440                         dbg_info *dbgi  = get_irn_dbg_info(n);
2441                         ir_graph *irg   = current_ir_graph;
2442                         ir_node  *block = get_nodes_block(n);
2443                         ir_node  *new_a = new_rd_Sub(dbgi, irg, block, sub_r, sub_l, mode);
2444                         n = new_rd_Mul(dbgi, irg, block, new_a, get_Minus_op(b), mode);
2445                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS);
2446                         return n;
2447                 }
2448         }
2449         if (get_mode_arithmetic(mode) == irma_ieee754) {
2450                 if (is_Const(a)) {
2451                         tarval *tv = get_Const_tarval(a);
2452                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)) {
2453                                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), b, b, mode);
2454                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2455                                 return n;
2456                         }
2457                 }
2458                 else if (is_Const(b)) {
2459                         tarval *tv = get_Const_tarval(b);
2460                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)) {
2461                                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, a, mode);
2462                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2463                                 return n;
2464                         }
2465                 }
2466         }
2467         return arch_dep_replace_mul_with_shifts(n);
2468 }  /* transform_node_Mul */
2469
2470 /**
2471  * Transform a Div Node.
2472  */
2473 static ir_node *transform_node_Div(ir_node *n) {
2474         tarval *tv = value_of(n);
2475         ir_mode *mode = get_Div_resmode(n);
2476         ir_node *value = n;
2477
2478         if (tv != tarval_bad) {
2479                 value = new_Const(get_tarval_mode(tv), tv);
2480
2481                 DBG_OPT_CSTEVAL(n, value);
2482                 goto make_tuple;
2483         } else {
2484                 ir_node *a = get_Div_left(n);
2485                 ir_node *b = get_Div_right(n);
2486                 ir_node *dummy;
2487
2488                 if (a == b && value_not_zero(a, &dummy)) {
2489                         /* BEWARE: we can optimize a/a to 1 only if this cannot cause a exception */
2490                         value = new_Const(mode, get_mode_one(mode));
2491                         DBG_OPT_CSTEVAL(n, value);
2492                         goto make_tuple;
2493                 } else {
2494                         if (mode_is_signed(mode) && is_Const(b)) {
2495                                 tarval *tv = get_Const_tarval(b);
2496
2497                                 if (tv == get_mode_minus_one(mode)) {
2498                                         /* a / -1 */
2499                                         value = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, mode);
2500                                         DBG_OPT_CSTEVAL(n, value);
2501                                         goto make_tuple;
2502                                 }
2503                         }
2504                         /* Try architecture dependent optimization */
2505                         value = arch_dep_replace_div_by_const(n);
2506                 }
2507         }
2508
2509         if (value != n) {
2510                 ir_node *mem, *blk;
2511
2512 make_tuple:
2513                 /* Turn Div into a tuple (mem, jmp, bad, value) */
2514                 mem = get_Div_mem(n);
2515                 blk = get_irn_n(n, -1);
2516
2517                 /* skip a potential Pin */
2518                 if (is_Pin(mem))
2519                         mem = get_Pin_op(mem);
2520                 turn_into_tuple(n, pn_Div_max);
2521                 set_Tuple_pred(n, pn_Div_M,         mem);
2522                 set_Tuple_pred(n, pn_Div_X_regular, new_r_Jmp(current_ir_graph, blk));
2523                 set_Tuple_pred(n, pn_Div_X_except,  new_Bad());
2524                 set_Tuple_pred(n, pn_Div_res,       value);
2525         }
2526         return n;
2527 }  /* transform_node_Div */
2528
2529 /**
2530  * Transform a Mod node.
2531  */
2532 static ir_node *transform_node_Mod(ir_node *n) {
2533         tarval *tv = value_of(n);
2534         ir_mode *mode = get_Mod_resmode(n);
2535         ir_node *value = n;
2536
2537         if (tv != tarval_bad) {
2538                 value = new_Const(get_tarval_mode(tv), tv);
2539
2540                 DBG_OPT_CSTEVAL(n, value);
2541                 goto make_tuple;
2542         } else {
2543                 ir_node *a = get_Mod_left(n);
2544                 ir_node *b = get_Mod_right(n);
2545                 ir_node *dummy;
2546
2547                 if (a == b && value_not_zero(a, &dummy)) {
2548                         /* BEWARE: we can optimize a%a to 0 only if this cannot cause a exception */
2549                         value = new_Const(mode, get_mode_null(mode));
2550                         DBG_OPT_CSTEVAL(n, value);
2551                         goto make_tuple;
2552                 } else {
2553                         if (mode_is_signed(mode) && is_Const(b)) {
2554                                 tarval *tv = get_Const_tarval(b);
2555
2556                                 if (tv == get_mode_minus_one(mode)) {
2557                                         /* a % -1 = 0 */
2558                                         value = new_Const(mode, get_mode_null(mode));
2559                                         DBG_OPT_CSTEVAL(n, value);
2560                                         goto make_tuple;
2561                                 }
2562                         }
2563                         /* Try architecture dependent optimization */
2564                         value = arch_dep_replace_mod_by_const(n);
2565                 }
2566         }
2567
2568         if (value != n) {
2569                 ir_node *mem, *blk;
2570
2571 make_tuple:
2572                 /* Turn Mod into a tuple (mem, jmp, bad, value) */
2573                 mem = get_Mod_mem(n);
2574                 blk = get_irn_n(n, -1);
2575
2576                 /* skip a potential Pin */
2577                 if (is_Pin(mem))
2578                         mem = get_Pin_op(mem);
2579                 turn_into_tuple(n, pn_Mod_max);
2580                 set_Tuple_pred(n, pn_Mod_M,         mem);
2581                 set_Tuple_pred(n, pn_Mod_X_regular, new_r_Jmp(current_ir_graph, blk));
2582                 set_Tuple_pred(n, pn_Mod_X_except,  new_Bad());
2583                 set_Tuple_pred(n, pn_Mod_res,       value);
2584         }
2585         return n;
2586 }  /* transform_node_Mod */
2587
2588 /**
2589  * Transform a DivMod node.
2590  */
2591 static ir_node *transform_node_DivMod(ir_node *n) {
2592         ir_node *dummy;
2593         ir_node *a = get_DivMod_left(n);
2594         ir_node *b = get_DivMod_right(n);
2595         ir_mode *mode = get_DivMod_resmode(n);
2596         tarval *ta = value_of(a);
2597         tarval *tb = value_of(b);
2598         int evaluated = 0;
2599
2600         if (tb != tarval_bad) {
2601                 if (tb == get_mode_one(get_tarval_mode(tb))) {
2602                         b = new_Const(mode, get_mode_null(mode));
2603                         DBG_OPT_CSTEVAL(n, b);
2604                         goto make_tuple;
2605                 } else if (ta != tarval_bad) {
2606                         tarval *resa, *resb;
2607                         resa = tarval_div(ta, tb);
2608                         if (resa == tarval_bad) return n; /* Causes exception!!! Model by replacing through
2609                                                              Jmp for X result!? */
2610                         resb = tarval_mod(ta, tb);
2611                         if (resb == tarval_bad) return n; /* Causes exception! */
2612                         a = new_Const(mode, resa);
2613                         b = new_Const(mode, resb);
2614                         DBG_OPT_CSTEVAL(n, a);
2615                         DBG_OPT_CSTEVAL(n, b);
2616                         goto make_tuple;
2617                 } else if (mode_is_signed(mode) && tb == get_mode_minus_one(mode)) {
2618                         a = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, mode);
2619                         b = new_Const(mode, get_mode_null(mode));
2620                         DBG_OPT_CSTEVAL(n, a);
2621                         DBG_OPT_CSTEVAL(n, b);
2622                         goto make_tuple;
2623                 } else { /* Try architecture dependent optimization */
2624                         arch_dep_replace_divmod_by_const(&a, &b, n);
2625                         evaluated = a != NULL;
2626                 }
2627         } else if (a == b) {
2628                 if (value_not_zero(a, &dummy)) {
2629                         /* a/a && a != 0 */
2630                         a = new_Const(mode, get_mode_one(mode));
2631                         b = new_Const(mode, get_mode_null(mode));
2632                         DBG_OPT_CSTEVAL(n, a);
2633                         DBG_OPT_CSTEVAL(n, b);
2634                         goto make_tuple;
2635                 } else {
2636                         /* BEWARE: it is NOT possible to optimize a/a to 1, as this may cause a exception */
2637                         return n;
2638                 }
2639         } else if (ta == get_mode_null(mode) && value_not_zero(b, &dummy)) {
2640                 /* 0 / non-Const = 0 */
2641                 b = a;
2642                 goto make_tuple;
2643         }
2644
2645         if (evaluated) { /* replace by tuple */
2646                 ir_node *mem, *blk;
2647
2648 make_tuple:
2649                 mem = get_DivMod_mem(n);
2650                 /* skip a potential Pin */
2651                 if (is_Pin(mem))
2652                         mem = get_Pin_op(mem);
2653
2654                 blk = get_irn_n(n, -1);
2655                 turn_into_tuple(n, pn_DivMod_max);
2656                 set_Tuple_pred(n, pn_DivMod_M,         mem);
2657                 set_Tuple_pred(n, pn_DivMod_X_regular, new_r_Jmp(current_ir_graph, blk));
2658                 set_Tuple_pred(n, pn_DivMod_X_except,  new_Bad());  /* no exception */
2659                 set_Tuple_pred(n, pn_DivMod_res_div,   a);
2660                 set_Tuple_pred(n, pn_DivMod_res_mod,  b);
2661         }
2662
2663         return n;
2664 }  /* transform_node_DivMod */
2665
2666 /**
2667  * Optimize x / c to x * (1/c)
2668  */
2669 static ir_node *transform_node_Quot(ir_node *n) {
2670         ir_mode *mode = get_Quot_resmode(n);
2671         ir_node *oldn = n;
2672
2673         if (get_mode_arithmetic(mode) == irma_ieee754) {
2674                 ir_node *b = get_Quot_right(n);
2675
2676                 if (is_Const(b)) {
2677                         tarval *tv = get_Const_tarval(b);
2678
2679                         tv = tarval_quo(get_mode_one(mode), tv);
2680
2681                         /* Do the transformation if the result is either exact or we are not
2682                            using strict rules. */
2683                         if (tv != tarval_bad &&
2684                             (tarval_ieee754_get_exact() || (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic) == 0)) {
2685                                 ir_node *blk = get_irn_n(n, -1);
2686                                 ir_node *c = new_r_Const(current_ir_graph, blk, mode, tv);
2687                                 ir_node *a = get_Quot_left(n);
2688                                 ir_node *m = new_rd_Mul(get_irn_dbg_info(n), current_ir_graph, blk, a, c, mode);
2689                                 ir_node *mem = get_Quot_mem(n);
2690
2691                                 /* skip a potential Pin */
2692                                 if (is_Pin(mem))
2693                                         mem = get_Pin_op(mem);
2694                                 turn_into_tuple(n, pn_Quot_max);
2695                                 set_Tuple_pred(n, pn_Quot_M, mem);
2696                                 set_Tuple_pred(n, pn_Quot_X_regular, new_r_Jmp(current_ir_graph, blk));
2697                                 set_Tuple_pred(n, pn_Quot_X_except,  new_r_Bad(current_ir_graph));
2698                                 set_Tuple_pred(n, pn_Quot_res, m);
2699                                 DBG_OPT_ALGSIM1(oldn, a, b, m, FS_OPT_FP_INV_MUL);
2700                         }
2701                 }
2702         }
2703         return n;
2704 }  /* transform_node_Quot */
2705
2706 /**
2707  * Optimize Abs(x) into  x if x is Confirmed >= 0
2708  * Optimize Abs(x) into -x if x is Confirmed <= 0
2709  */
2710 static ir_node *transform_node_Abs(ir_node *n) {
2711         ir_node        *oldn = n;
2712         ir_node        *a = get_Abs_op(n);
2713         value_classify_sign sign = classify_value_sign(a);
2714
2715         if (sign == value_classified_negative) {
2716                 ir_mode *mode = get_irn_mode(n);
2717
2718                 /*
2719                  * We can replace the Abs by -x here.
2720                  * We even could add a new Confirm here.
2721                  *
2722                  * Note that -x would create a new node, so we could
2723                  * not run it in the equivalent_node() context.
2724                  */
2725                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph,
2726                                 get_irn_n(n, -1), a, mode);
2727
2728                 DBG_OPT_CONFIRM(oldn, n);
2729         } else if (sign == value_classified_positive) {
2730                 /* n is positive, Abs is not needed */
2731                 n = a;
2732
2733                 DBG_OPT_CONFIRM(oldn, n);
2734         }
2735
2736         return n;
2737 }  /* transform_node_Abs */
2738
2739 /**
2740  * Transform a Cond node.
2741  *
2742  * Replace the Cond by a Jmp if it branches on a constant
2743  * condition.
2744  */
2745 static ir_node *transform_node_Cond(ir_node *n) {
2746
2747         ir_node *jmp;
2748         ir_node *a = get_Cond_selector(n);
2749         tarval *ta = value_of(a);
2750
2751         /* we need block info which is not available in floating irgs */
2752         if (get_irg_pinned(current_ir_graph) == op_pin_state_floats)
2753                 return n;
2754
2755         if ((ta != tarval_bad) &&
2756             (get_irn_mode(a) == mode_b) &&
2757             (get_opt_unreachable_code())) {
2758                 /* It's a boolean Cond, branching on a boolean constant.
2759                    Replace it by a tuple (Bad, Jmp) or (Jmp, Bad) */
2760                 jmp = new_r_Jmp(current_ir_graph, get_nodes_block(n));
2761                 turn_into_tuple(n, pn_Cond_max);
2762                 if (ta == tarval_b_true) {
2763                         set_Tuple_pred(n, pn_Cond_false, new_Bad());
2764                         set_Tuple_pred(n, pn_Cond_true, jmp);
2765                 } else {
2766                         set_Tuple_pred(n, pn_Cond_false, jmp);
2767                         set_Tuple_pred(n, pn_Cond_true, new_Bad());
2768                 }
2769                 /* We might generate an endless loop, so keep it alive. */
2770                 add_End_keepalive(get_irg_end(current_ir_graph), get_nodes_block(n));
2771         }
2772         return n;
2773 }  /* transform_node_Cond */
2774
2775 typedef ir_node* (*recursive_transform) (ir_node *n);
2776
2777 /**
2778  * makes use of distributive laws for and, or, eor
2779  *     and(a OP c, b OP c) -> and(a, b) OP c
2780  * note, might return a different op than n
2781  */
2782 static ir_node *transform_bitwise_distributive(ir_node *n,
2783                                                recursive_transform trans_func)
2784 {
2785         ir_node *oldn    = n;
2786         ir_node *a       = get_binop_left(n);
2787         ir_node *b       = get_binop_right(n);
2788         ir_op   *op      = get_irn_op(a);
2789         ir_op   *op_root = get_irn_op(n);
2790
2791         if(op != get_irn_op(b))
2792                 return n;
2793
2794         if (op == op_Conv) {
2795                 ir_node *a_op   = get_Conv_op(a);
2796                 ir_node *b_op   = get_Conv_op(b);
2797                 ir_mode *a_mode = get_irn_mode(a_op);
2798                 ir_mode *b_mode = get_irn_mode(b_op);
2799                 if(a_mode == b_mode && (mode_is_int(a_mode) || a_mode == mode_b)) {
2800                         ir_node *blk = get_irn_n(n, -1);
2801
2802                         n = exact_copy(n);
2803                         set_binop_left(n, a_op);
2804                         set_binop_right(n, b_op);
2805                         set_irn_mode(n, a_mode);
2806                         n = trans_func(n);
2807                         n = new_r_Conv(current_ir_graph, blk, n, get_irn_mode(oldn));
2808
2809                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_SHIFT_AND);
2810                         return n;
2811                 }
2812         }
2813
2814         if (op == op_Eor) {
2815                 /* nothing to gain here */
2816                 return n;
2817         }
2818
2819         if (op == op_Shrs || op == op_Shr || op == op_Shl
2820                         || op == op_And || op == op_Or || op == op_Eor) {
2821                 ir_node *a_left  = get_binop_left(a);
2822                 ir_node *a_right = get_binop_right(a);
2823                 ir_node *b_left  = get_binop_left(b);
2824                 ir_node *b_right = get_binop_right(b);
2825                 ir_node *c       = NULL;
2826                 ir_node *op1, *op2;
2827
2828                 if (is_op_commutative(op)) {
2829                         if (a_left == b_left) {
2830                                 c   = a_left;
2831                                 op1 = a_right;
2832                                 op2 = b_right;
2833                         } else if(a_left == b_right) {
2834                                 c   = a_left;
2835                                 op1 = a_right;
2836                                 op2 = b_left;
2837                         } else if(a_right == b_left) {
2838                                 c   = a_right;
2839                                 op1 = a_left;
2840                                 op2 = b_right;
2841                         }
2842                 }
2843                 if(a_right == b_right) {
2844                         c   = a_right;
2845                         op1 = a_left;
2846                         op2 = b_left;
2847                 }
2848
2849                 if (c != NULL) {
2850                         /* (a sop c) & (b sop c) => (a & b) sop c */
2851                         ir_node *blk = get_irn_n(n, -1);
2852
2853                         ir_node *new_n = exact_copy(n);
2854                         set_binop_left(new_n, op1);
2855                         set_binop_right(new_n, op2);
2856                         new_n = trans_func(new_n);
2857
2858                         if(op_root == op_Eor && op == op_Or) {
2859                                 dbg_info  *dbgi = get_irn_dbg_info(n);
2860                                 ir_graph  *irg  = current_ir_graph;
2861                                 ir_mode   *mode = get_irn_mode(c);
2862
2863                                 c = new_rd_Not(dbgi, irg, blk, c, mode);
2864                                 n = new_rd_And(dbgi, irg, blk, new_n, c, mode);
2865                         } else {
2866                                 n = exact_copy(a);
2867                                 set_irn_n(n, -1, blk);
2868                                 set_binop_left(n, new_n);
2869                                 set_binop_right(n, c);
2870                         }
2871
2872                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_SHIFT_AND);
2873                         return n;
2874                 }
2875         }
2876
2877         return n;
2878 }
2879
2880 /**
2881  * Transform an And.
2882  */
2883 static ir_node *transform_node_And(ir_node *n) {
2884         ir_node *c, *oldn = n;
2885         ir_node *a = get_And_left(n);
2886         ir_node *b = get_And_right(n);
2887         ir_mode *mode;
2888
2889         HANDLE_BINOP_PHI(tarval_and, a,b,c);
2890
2891         mode = get_irn_mode(n);
2892
2893         /* we can evaluate 2 Projs of the same Cmp */
2894         if (mode == mode_b && is_Proj(a) && is_Proj(b)) {
2895                 ir_node *pred_a = get_Proj_pred(a);
2896                 ir_node *pred_b = get_Proj_pred(b);
2897                 if (pred_a == pred_b) {
2898                         dbg_info *dbgi  = get_irn_dbg_info(n);
2899                         ir_node  *block = get_nodes_block(pred_a);
2900                         pn_Cmp pn_a     = get_Proj_proj(a);
2901                         pn_Cmp pn_b     = get_Proj_proj(b);
2902                         /* yes, we can simply calculate with pncs */
2903                         pn_Cmp new_pnc  = pn_a & pn_b;
2904
2905                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b, new_pnc);
2906                 }
2907         }
2908         if (is_Or(a)) {
2909                 if (is_Not(b)) {
2910                         ir_node *op = get_Not_op(b);
2911                         if (is_And(op)) {
2912                                 ir_node *ba = get_And_left(op);
2913                                 ir_node *bb = get_And_right(op);
2914
2915                                 /* it's enough to test the following cases due to normalization! */
2916                                 if (get_Or_left(a) == ba && get_Or_right(a) == bb) {
2917                                         /* (a|b) & ~(a&b) = a^b */
2918                                         ir_node *block = get_nodes_block(n);
2919
2920                                         n = new_rd_Eor(get_irn_dbg_info(n), current_ir_graph, block, ba, bb, mode);
2921                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_TO_EOR);
2922                                         return n;
2923                                 }
2924                         }
2925                 }
2926         }
2927         if (is_Or(b)) {
2928                 if (is_Not(a)) {
2929                         ir_node *op = get_Not_op(a);
2930                         if (is_And(op)) {
2931                                 ir_node *aa = get_And_left(op);
2932                                 ir_node *ab = get_And_right(op);
2933
2934                                 /* it's enough to test the following cases due to normalization! */
2935                                 if (get_Or_left(b) == aa && get_Or_right(b) == ab) {
2936                                         /* (a|b) & ~(a&b) = a^b */
2937                                         ir_node *block = get_nodes_block(n);
2938
2939                                         n = new_rd_Eor(get_irn_dbg_info(n), current_ir_graph, block, aa, ab, mode);
2940                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_TO_EOR);
2941                                         return n;
2942                                 }
2943                         }
2944                 }
2945         }
2946         if (is_Eor(a)) {
2947                 ir_node *al = get_Eor_left(a);
2948                 ir_node *ar = get_Eor_right(a);
2949
2950                 if (al == b) {
2951                         /* (b ^ a) & b -> ~a & b */
2952                         dbg_info *dbg  = get_irn_dbg_info(n);
2953                         ir_node *block = get_nodes_block(n);
2954
2955                         ar = new_rd_Not(dbg, current_ir_graph, block, ar, mode);
2956                         n  = new_rd_And(dbg, current_ir_graph, block, ar, b, mode);
2957                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
2958                         return n;
2959                 }
2960                 if (ar == b) {
2961                         /* (a ^ b) & b -> ~a & b */
2962                         dbg_info *dbg  = get_irn_dbg_info(n);
2963                         ir_node *block = get_nodes_block(n);
2964
2965                         al = new_rd_Not(dbg, current_ir_graph, block, al, mode);
2966                         n  = new_rd_And(dbg, current_ir_graph, block, al, b, mode);
2967                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
2968                         return n;
2969                 }
2970         }
2971         if (is_Eor(b)) {
2972                 ir_node *bl = get_Eor_left(b);
2973                 ir_node *br = get_Eor_right(b);
2974
2975                 if (bl == a) {
2976                         /* a & (a ^ b) -> a & ~b */
2977                         dbg_info *dbg  = get_irn_dbg_info(n);
2978                         ir_node *block = get_nodes_block(n);
2979
2980                         br = new_rd_Not(dbg, current_ir_graph, block, br, mode);
2981                         n  = new_rd_And(dbg, current_ir_graph, block, br, a, mode);
2982                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
2983                         return n;
2984                 }
2985                 if (br == a) {
2986                         /* a & (b ^ a) -> a & ~b */
2987                         dbg_info *dbg  = get_irn_dbg_info(n);
2988                         ir_node *block = get_nodes_block(n);
2989
2990                         bl = new_rd_Not(dbg, current_ir_graph, block, bl, mode);
2991                         n  = new_rd_And(dbg, current_ir_graph, block, bl, a, mode);
2992                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
2993                         return n;
2994                 }
2995         }
2996         if (is_Not(a) && is_Not(b)) {
2997                 /* ~a & ~b = ~(a|b) */
2998                 ir_node *block = get_nodes_block(n);
2999                 ir_mode *mode = get_irn_mode(n);
3000
3001                 a = get_Not_op(a);
3002                 b = get_Not_op(b);
3003                 n = new_rd_Or(get_irn_dbg_info(n), current_ir_graph, block, a, b, mode);
3004                 n = new_rd_Not(get_irn_dbg_info(n), current_ir_graph, block, n, mode);
3005                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_DEMORGAN);
3006                 return n;
3007         }
3008
3009         n = transform_bitwise_distributive(n, transform_node_And);
3010
3011         return n;
3012 }  /* transform_node_And */
3013
3014 /**
3015  * Transform an Eor.
3016  */
3017 static ir_node *transform_node_Eor(ir_node *n) {
3018         ir_node *c, *oldn = n;
3019         ir_node *a = get_Eor_left(n);
3020         ir_node *b = get_Eor_right(n);
3021         ir_mode *mode = get_irn_mode(n);
3022
3023         HANDLE_BINOP_PHI(tarval_eor, a,b,c);
3024
3025         /* we can evaluate 2 Projs of the same Cmp */
3026         if (mode == mode_b && is_Proj(a) && is_Proj(b)) {
3027                 ir_node *pred_a = get_Proj_pred(a);
3028                 ir_node *pred_b = get_Proj_pred(b);
3029                 if(pred_a == pred_b) {
3030                         dbg_info *dbgi  = get_irn_dbg_info(n);
3031                         ir_node  *block = get_nodes_block(pred_a);
3032                         pn_Cmp pn_a     = get_Proj_proj(a);
3033                         pn_Cmp pn_b     = get_Proj_proj(b);
3034                         /* yes, we can simply calculate with pncs */
3035                         pn_Cmp new_pnc  = pn_a ^ pn_b;
3036
3037                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
3038                                            new_pnc);
3039                 }
3040         }
3041
3042         if (a == b) {
3043                 /* a ^ a = 0 */
3044                 n = new_rd_Const(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1),
3045                                  mode, get_mode_null(mode));
3046                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_A_A);
3047         } else if (mode == mode_b &&
3048                         is_Proj(a) &&
3049                         is_Const(b) && is_Const_one(b) &&
3050                         is_Cmp(get_Proj_pred(a))) {
3051                 /* The Eor negates a Cmp. The Cmp has the negated result anyways! */
3052                 n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
3053                                 mode_b, get_negated_pnc(get_Proj_proj(a), mode));
3054
3055                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT_BOOL);
3056         } else if (is_Const(b)) {
3057                 if (is_Not(a)) { /* ~x ^ const -> x ^ ~const */
3058                         n = new_Const(mode, tarval_not(get_Const_tarval(b)));
3059                 } else if (is_Const_all_one(b)) { /* x ^ 1...1 -> ~1 */
3060                         n = new_r_Not(current_ir_graph, get_nodes_block(n), a, mode);
3061                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3062                 }
3063         } else {
3064                 n = transform_bitwise_distributive(n, transform_node_Eor);
3065         }
3066
3067         return n;
3068 }  /* transform_node_Eor */
3069
3070 /**
3071  * Transform a Not.
3072  */
3073 static ir_node *transform_node_Not(ir_node *n) {
3074         ir_node *c, *oldn = n;
3075         ir_node *a    = get_Not_op(n);
3076         ir_mode *mode = get_irn_mode(n);
3077
3078         HANDLE_UNOP_PHI(tarval_not,a,c);
3079
3080         /* check for a boolean Not */
3081         if (mode == mode_b &&
3082                         is_Proj(a) &&
3083                         is_Cmp(get_Proj_pred(a))) {
3084                 /* We negate a Cmp. The Cmp has the negated result anyways! */
3085                 n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
3086                                 mode_b, get_negated_pnc(get_Proj_proj(a), mode_b));
3087                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_CMP);
3088                 return n;
3089         }
3090         if  (is_Eor(a)) {
3091                 ir_node *eor_b = get_Eor_right(a);
3092                 if (is_Const(eor_b)) { /* ~(x ^ const) -> x ^ ~const */
3093                         n = new_Const(mode, tarval_not(get_Const_tarval(eor_b)));
3094                         return n;
3095                 }
3096         }
3097         if (get_mode_arithmetic(mode) == irma_twos_complement) {
3098                 if (is_Minus(a)) { /* ~-x -> x + -1 */
3099                         dbg_info *dbg   = get_irn_dbg_info(n);
3100                         ir_graph *irg   = current_ir_graph;
3101                         ir_node  *block = get_nodes_block(n);
3102                         ir_node  *add_l = get_Minus_op(a);
3103                         ir_node  *add_r = new_rd_Const(dbg, irg, block, mode, get_mode_minus_one(mode));
3104                         n = new_rd_Add(dbg, irg, block, add_l, add_r, mode);
3105                 } else if (is_Add(a)) {
3106                         ir_node *add_r = get_Add_right(a);
3107                         if (is_Const(add_r) && is_Const_all_one(add_r)) {
3108                                 /* ~(x + -1) = -x */
3109                                 ir_node *op = get_Add_left(a);
3110                                 ir_node *blk = get_irn_n(n, -1);
3111                                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, op, get_irn_mode(n));
3112                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_MINUS_1);
3113                         }
3114                 }
3115         }
3116         return n;
3117 }  /* transform_node_Not */
3118
3119 /**
3120  * Transform a Minus.
3121  * Optimize:
3122  *   -(~x) = x + 1
3123  *   -(a-b) = b - a
3124  */
3125 static ir_node *transform_node_Minus(ir_node *n) {
3126         ir_node *c, *oldn = n;
3127         ir_node *a = get_Minus_op(n);
3128         ir_mode *mode;
3129
3130         HANDLE_UNOP_PHI(tarval_neg,a,c);
3131
3132         mode = get_irn_mode(a);
3133         if (get_mode_arithmetic(mode) == irma_twos_complement) {
3134                 /* the following rules are only to twos-complement */
3135                 if (is_Not(a)) {
3136                         /* -(~x) = x + 1 */
3137                         ir_node *op   = get_Not_op(a);
3138                         tarval *tv    = get_mode_one(mode);
3139                         ir_node *blk  = get_irn_n(n, -1);
3140                         ir_node *c    = new_r_Const(current_ir_graph, blk, mode, tv);
3141                         n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, blk, op, c, mode);
3142                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_NOT);
3143                         return n;
3144                 }
3145                 if (is_Shr(a)) {
3146                         ir_node *c = get_Shr_right(a);
3147
3148                         if (is_Const(c)) {
3149                                 tarval *tv = get_Const_tarval(c);
3150
3151                                 if (tarval_is_long(tv) && get_tarval_long(tv) == get_mode_size_bits(mode) - 1) {
3152                                         /* -(a >>u (size-1)) = a >>s (size-1) */
3153                                         ir_node *v = get_Shr_left(a);
3154
3155                                         n = new_rd_Shrs(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), v, c, mode);
3156                                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_PREDICATE);
3157                                         return n;
3158                                 }
3159                         }
3160                 }
3161                 if (is_Shrs(a)) {
3162                         ir_node *c = get_Shrs_right(a);
3163
3164                         if (is_Const(c)) {
3165                                 tarval *tv = get_Const_tarval(c);
3166
3167                                 if (tarval_is_long(tv) && get_tarval_long(tv) == get_mode_size_bits(mode) - 1) {
3168                                         /* -(a >>s (size-1)) = a >>u (size-1) */
3169                                         ir_node *v = get_Shrs_left(a);
3170
3171                                         n = new_rd_Shr(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), v, c, mode);
3172                                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_PREDICATE);
3173                                         return n;
3174                                 }
3175                         }
3176                 }
3177         }
3178         if (is_Sub(a)) {
3179                 /* - (a-b) = b - a */
3180                 ir_node *la  = get_Sub_left(a);
3181                 ir_node *ra  = get_Sub_right(a);
3182                 ir_node *blk = get_irn_n(n, -1);
3183
3184                 n = new_rd_Sub(get_irn_dbg_info(n), current_ir_graph, blk, ra, la, mode);
3185                 DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_SUB);
3186                 return n;
3187         }
3188
3189         if (is_Mul(a)) { /* -(a * const) -> a * -const */
3190                 ir_node *mul_l = get_Mul_left(a);
3191                 ir_node *mul_r = get_Mul_right(a);
3192                 if (is_Const(mul_r)) {
3193                         tarval   *tv    = tarval_neg(get_Const_tarval(mul_r));
3194                         ir_node  *cnst  = new_Const(mode, tv);
3195                         dbg_info *dbg   = get_irn_dbg_info(a);
3196                         ir_graph *irg   = current_ir_graph;
3197                         ir_node  *block = get_nodes_block(a);
3198                         n = new_rd_Mul(dbg, irg, block, mul_l, cnst, mode);
3199                         return n;
3200                 }
3201         }
3202
3203         return n;
3204 }  /* transform_node_Minus */
3205
3206 /**
3207  * Transform a Cast_type(Const) into a new Const_type
3208  */
3209 static ir_node *transform_node_Cast(ir_node *n) {
3210         ir_node *oldn = n;
3211         ir_node *pred = get_Cast_op(n);
3212         ir_type *tp = get_irn_type(n);
3213
3214         if (is_Const(pred) && get_Const_type(pred) != tp) {
3215                 n = new_rd_Const_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_irn_mode(pred),
3216                         get_Const_tarval(pred), tp);
3217                 DBG_OPT_CSTEVAL(oldn, n);
3218         } else if (is_SymConst(pred) && get_SymConst_value_type(pred) != tp) {
3219                 n = new_rd_SymConst_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_SymConst_symbol(pred),
3220                         get_SymConst_kind(pred), tp);
3221                 DBG_OPT_CSTEVAL(oldn, n);
3222         }
3223
3224         return n;
3225 }  /* transform_node_Cast */
3226
3227 /**
3228  * Transform a Proj(Div) with a non-zero value.
3229  * Removes the exceptions and routes the memory to the NoMem node.
3230  */
3231 static ir_node *transform_node_Proj_Div(ir_node *proj) {
3232         ir_node *div = get_Proj_pred(proj);
3233         ir_node *b   = get_Div_right(div);
3234         ir_node *confirm, *res, *new_mem;
3235         long proj_nr;
3236
3237         if (value_not_zero(b, &confirm)) {
3238                 /* div(x, y) && y != 0 */
3239                 proj_nr = get_Proj_proj(proj);
3240                 switch (proj_nr) {
3241                 case pn_Div_X_regular:
3242                         return new_r_Jmp(current_ir_graph, get_irn_n(div, -1));
3243
3244                 case pn_Div_X_except:
3245                         /* we found an exception handler, remove it */
3246                         DBG_OPT_EXC_REM(proj);
3247                         return new_Bad();
3248
3249                 case pn_Div_M:
3250                         res = get_Div_mem(div);
3251                         new_mem = get_irg_no_mem(current_ir_graph);
3252
3253                         if (confirm) {
3254                                 /* This node can only float up to the Confirm block */
3255                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3256                         }
3257                         set_irn_pinned(div, op_pin_state_floats);
3258                         /* this is a Div without exception, we can remove the memory edge */
3259                         set_Div_mem(div, new_mem);
3260                         return res;
3261                 }
3262         }
3263         return proj;
3264 }  /* transform_node_Proj_Div */
3265
3266 /**
3267  * Transform a Proj(Mod) with a non-zero value.
3268  * Removes the exceptions and routes the memory to the NoMem node.
3269  */
3270 static ir_node *transform_node_Proj_Mod(ir_node *proj) {
3271         ir_node *mod = get_Proj_pred(proj);
3272         ir_node *b   = get_Mod_right(mod);
3273         ir_node *confirm, *res, *new_mem;
3274         long proj_nr;
3275
3276         if (value_not_zero(b, &confirm)) {
3277                 /* mod(x, y) && y != 0 */
3278                 proj_nr = get_Proj_proj(proj);
3279
3280                 switch (proj_nr) {
3281
3282                 case pn_Mod_X_regular:
3283                         return new_r_Jmp(current_ir_graph, get_irn_n(mod, -1));
3284
3285                 case pn_Mod_X_except:
3286                         /* we found an exception handler, remove it */
3287                         DBG_OPT_EXC_REM(proj);
3288                         return new_Bad();
3289
3290                 case pn_Mod_M:
3291                         res = get_Mod_mem(mod);
3292                         new_mem = get_irg_no_mem(current_ir_graph);
3293
3294                         if (confirm) {
3295                                 /* This node can only float up to the Confirm block */
3296                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3297                         }
3298                         set_irn_pinned(mod, op_pin_state_floats);
3299                         /* this is a Mod without exception, we can remove the memory edge */
3300                         set_Mod_mem(mod, get_irg_no_mem(current_ir_graph));
3301                         return res;
3302                 case pn_Mod_res:
3303                         if (get_Mod_left(mod) == b) {
3304                                 /* a % a = 0 if a != 0 */
3305                                 ir_mode *mode = get_irn_mode(proj);
3306                                 ir_node *res  = new_Const(mode, get_mode_null(mode));
3307
3308                                 DBG_OPT_CSTEVAL(mod, res);
3309                                 return res;
3310                         }
3311                 }
3312         }
3313         return proj;
3314 }  /* transform_node_Proj_Mod */
3315
3316 /**
3317  * Transform a Proj(DivMod) with a non-zero value.
3318  * Removes the exceptions and routes the memory to the NoMem node.
3319  */
3320 static ir_node *transform_node_Proj_DivMod(ir_node *proj) {
3321         ir_node *divmod = get_Proj_pred(proj);
3322         ir_node *b      = get_DivMod_right(divmod);
3323         ir_node *confirm, *res, *new_mem;
3324         long proj_nr;
3325
3326         if (value_not_zero(b, &confirm)) {
3327                 /* DivMod(x, y) && y != 0 */
3328                 proj_nr = get_Proj_proj(proj);
3329
3330                 switch (proj_nr) {
3331
3332                 case pn_DivMod_X_regular:
3333                         return new_r_Jmp(current_ir_graph, get_irn_n(divmod, -1));
3334
3335                 case pn_DivMod_X_except:
3336                         /* we found an exception handler, remove it */
3337                         DBG_OPT_EXC_REM(proj);
3338                         return new_Bad();
3339
3340                 case pn_DivMod_M:
3341                         res = get_DivMod_mem(divmod);
3342                         new_mem = get_irg_no_mem(current_ir_graph);
3343
3344                         if (confirm) {
3345                                 /* This node can only float up to the Confirm block */
3346                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3347                         }
3348                         set_irn_pinned(divmod, op_pin_state_floats);
3349                         /* this is a DivMod without exception, we can remove the memory edge */
3350                         set_DivMod_mem(divmod, get_irg_no_mem(current_ir_graph));
3351                         return res;
3352
3353                 case pn_DivMod_res_mod:
3354                         if (get_DivMod_left(divmod) == b) {
3355                                 /* a % a = 0 if a != 0 */
3356                                 ir_mode *mode = get_irn_mode(proj);
3357                                 ir_node *res  = new_Const(mode, get_mode_null(mode));
3358
3359                                 DBG_OPT_CSTEVAL(divmod, res);
3360                                 return res;
3361                         }
3362                 }
3363         }
3364         return proj;
3365 }  /* transform_node_Proj_DivMod */
3366
3367 /**
3368  * Optimizes jump tables (CondIs or CondIu) by removing all impossible cases.
3369  */
3370 static ir_node *transform_node_Proj_Cond(ir_node *proj) {
3371         if (get_opt_unreachable_code()) {
3372                 ir_node *n = get_Proj_pred(proj);
3373                 ir_node *b = get_Cond_selector(n);
3374
3375                 if (mode_is_int(get_irn_mode(b))) {
3376                         tarval *tb = value_of(b);
3377
3378                         if (tb != tarval_bad) {
3379                                 /* we have a constant switch */
3380                                 long num = get_Proj_proj(proj);
3381
3382                                 if (num != get_Cond_defaultProj(n)) { /* we cannot optimize default Proj's yet */
3383                                         if (get_tarval_long(tb) == num) {
3384                                                 /* Do NOT create a jump here, or we will have 2 control flow ops
3385                                                  * in a block. This case is optimized away in optimize_cf(). */
3386                                                 return proj;
3387                                         } else {
3388                                                 /* this case will NEVER be taken, kill it */
3389                                                 return new_Bad();
3390                                         }
3391                                 }
3392                         }
3393                 }
3394         }
3395         return proj;
3396 }  /* transform_node_Proj_Cond */
3397
3398 /**
3399  * Normalizes and optimizes Cmp nodes.
3400  */
3401 static ir_node *transform_node_Proj_Cmp(ir_node *proj) {
3402         ir_node *n     = get_Proj_pred(proj);
3403         ir_node *left  = get_Cmp_left(n);
3404         ir_node *right = get_Cmp_right(n);
3405         ir_node *c     = NULL;
3406         tarval *tv     = NULL;
3407         int changed    = 0;
3408         ir_mode *mode  = NULL;
3409         long proj_nr   = get_Proj_proj(proj);
3410
3411         /* we can evaluate this direct */
3412         switch(proj_nr) {
3413         case pn_Cmp_False:
3414                 return new_Const(mode_b, get_tarval_b_false());
3415         case pn_Cmp_True:
3416                 return new_Const(mode_b, get_tarval_b_true());
3417         case pn_Cmp_Leg:
3418                 if(!mode_is_float(get_irn_mode(left)))
3419                         return new_Const(mode_b, get_tarval_b_true());
3420                 break;
3421         default:
3422                 break;
3423         }
3424
3425         /* Remove unnecessary conversions */
3426         /* TODO handle constants */
3427         if (is_Conv(left) && is_Conv(right)) {
3428                 ir_mode *mode        = get_irn_mode(left);
3429                 ir_node *op_left     = get_Conv_op(left);
3430                 ir_node *op_right    = get_Conv_op(right);
3431                 ir_mode *mode_left   = get_irn_mode(op_left);
3432                 ir_mode *mode_right  = get_irn_mode(op_right);
3433
3434                 if (smaller_mode(mode_left, mode) && smaller_mode(mode_right, mode)) {
3435                         ir_graph *irg   = current_ir_graph;
3436                         ir_node  *block = get_nodes_block(n);
3437
3438                         if (mode_left == mode_right) {
3439                                 left  = op_left;
3440                                 right = op_right;
3441                                 changed |= 1;
3442                         } else if (smaller_mode(mode_left, mode_right)) {
3443                                 left  = new_r_Conv(irg, block, op_left, mode_right);
3444                                 right = op_right;
3445                                 changed |= 1;
3446                         } else if (smaller_mode(mode_right, mode_left)) {
3447                                 left  = op_left;
3448                                 right = new_r_Conv(irg, block, op_right, mode_left);
3449                                 changed |= 1;
3450                         }
3451                 }
3452         }
3453
3454         /* TODO extend to arbitrary constants */
3455         if (is_Conv(left) && is_Const(right) && is_Const_null(right)) {
3456                 ir_mode* mode    = get_irn_mode(left);
3457                 ir_node* op      = get_Conv_op(left);
3458                 ir_mode* op_mode = get_irn_mode(op);
3459
3460                 if (get_mode_size_bits(mode) > get_mode_size_bits(op_mode) &&
3461                                 (mode_is_signed(mode) || !mode_is_signed(op_mode))) {
3462                         ir_node  *null  = new_Const(op_mode, get_mode_null(op_mode));
3463                         set_Cmp_left( n, op);
3464                         set_Cmp_right(n, null);
3465                         return proj;
3466                 }
3467         }
3468
3469         /* remove Casts */
3470         if (is_Cast(left))
3471                 left = get_Cast_op(left);
3472         if (is_Cast(right))
3473                 right = get_Cast_op(right);
3474
3475         /* remove operation of both sides if possible */
3476         if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
3477                 ir_opcode lop = get_irn_opcode(left);
3478
3479                 if (lop == get_irn_opcode(right)) {
3480                         ir_node *ll, *lr, *rl, *rr;
3481
3482                         /* same operation on both sides, try to remove */
3483                         switch (lop) {
3484                         case iro_Not:
3485                         case iro_Minus:
3486                                 /* ~a CMP ~b => a CMP b, -a CMP -b ==> a CMP b */
3487                                 left  = get_unop_op(left);
3488                                 right = get_unop_op(right);
3489                                 changed |= 1;
3490                                 break;
3491                         case iro_Add:
3492                                 ll = get_Add_left(left);
3493                                 lr = get_Add_right(left);
3494                                 rl = get_Add_left(right);
3495                                 rr = get_Add_right(right);
3496
3497                                 if (ll == rl) {
3498                                         /* X + a CMP X + b ==> a CMP b */
3499                                         left  = lr;
3500                                         right = rr;
3501                                         changed |= 1;
3502                                 } else if (ll == rr) {
3503                                         /* X + a CMP b + X ==> a CMP b */
3504                                         left  = lr;
3505                                         right = rl;
3506                                         changed |= 1;
3507                                 } else if (lr == rl) {
3508                                         /* a + X CMP X + b ==> a CMP b */
3509                                         left  = ll;
3510                                         right = rr;
3511                                         changed |= 1;
3512                                 } else if (lr == rr) {
3513                                         /* a + X CMP b + X ==> a CMP b */
3514                                         left  = ll;
3515                                         right = rl;
3516                                         changed |= 1;
3517                                 }
3518                                 break;
3519                         case iro_Sub:
3520                                 ll = get_Sub_left(left);
3521                                 lr = get_Sub_right(left);
3522                                 rl = get_Sub_left(right);
3523                                 rr = get_Sub_right(right);
3524
3525                                 if (ll == rl) {
3526                                         /* X - a CMP X - b ==> a CMP b */
3527                                         left  = lr;
3528                                         right = rr;
3529                                         changed |= 1;
3530                                 } else if (lr == rr) {
3531                                         /* a - X CMP b - X ==> a CMP b */
3532                                         left  = ll;
3533                                         right = rl;
3534                                         changed |= 1;
3535                                 }
3536                                 break;
3537                         case iro_Rot:
3538                                 if (get_Rot_right(left) == get_Rot_right(right)) {
3539                                         /* a ROT X CMP b ROT X */
3540                                         left  = get_Rot_left(left);
3541                                         right = get_Rot_left(right);
3542                                         changed |= 1;
3543                                 }
3544                                 break;
3545                         default:
3546                                 break;
3547                         }
3548                 }
3549         }
3550
3551         if (get_irn_mode(left) == mode_b) {
3552                 ir_graph *irg   = current_ir_graph;
3553                 ir_node  *block = get_nodes_block(n);
3554
3555                 switch (proj_nr) {
3556                         case pn_Cmp_Le: return new_r_Or( irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
3557                         case pn_Cmp_Lt: return new_r_And(irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
3558                         case pn_Cmp_Ge: return new_r_Or( irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
3559                         case pn_Cmp_Gt: return new_r_And(irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
3560                         case pn_Cmp_Lg: return new_r_Eor(irg, block, left, right, mode_b);
3561                         case pn_Cmp_Eq: return new_r_Not(irg, block, new_r_Eor(irg, block, left, right, mode_b), mode_b);
3562                 }
3563         }
3564
3565         if (!get_opt_reassociation())
3566                 return proj;
3567
3568         /*
3569          * First step: normalize the compare op
3570          * by placing the constant on the right side
3571          * or moving the lower address node to the left.
3572          * We ignore the case that both are constants
3573          * this case should be optimized away.
3574          */
3575         if (is_Const(right)) {
3576                 c = right;
3577         } else if (is_Const(left)) {
3578                 c     = left;
3579                 left  = right;
3580                 right = c;
3581
3582                 proj_nr = get_inversed_pnc(proj_nr);
3583                 changed |= 1;
3584         } else if (get_irn_idx(left) > get_irn_idx(right)) {
3585                 ir_node *t = left;
3586
3587                 left  = right;
3588                 right = t;
3589
3590                 proj_nr = get_inversed_pnc(proj_nr);
3591                 changed |= 1;
3592         }
3593
3594         /*
3595          * Second step: Try to reduce the magnitude
3596          * of a constant. This may help to generate better code
3597          * later and may help to normalize more compares.
3598          * Of course this is only possible for integer values.
3599          */
3600         if (c) {
3601                 mode = get_irn_mode(c);
3602                 tv = get_Const_tarval(c);
3603
3604                 if (tv != tarval_bad) {
3605                         /* the following optimization is possible on modes without Overflow
3606                          * on Unary Minus or on == and !=:
3607                          * -a CMP c  ==>  a swap(CMP) -c
3608                          *
3609                          * Beware: for two-complement Overflow may occur, so only == and != can
3610                          * be optimized, see this:
3611                          * -MININT < 0 =/=> MININT > 0 !!!
3612                          */
3613                         if (is_Minus(left) &&
3614                                 (!mode_overflow_on_unary_Minus(mode) ||
3615                                 (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
3616                                 tv = tarval_neg(tv);
3617
3618                                 if (tv != tarval_bad) {
3619                                         left = get_Minus_op(left);
3620                                         proj_nr = get_inversed_pnc(proj_nr);
3621                                         changed |= 2;
3622                                 }
3623                         } else if (is_Not(left) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)) {
3624                                 tv = tarval_not(tv);
3625
3626                                 if (tv != tarval_bad) {
3627                                         left = get_Not_op(left);
3628                                         changed |= 2;
3629                                 }
3630                         }
3631
3632                         /* for integer modes, we have more */
3633                         if (mode_is_int(mode)) {
3634                                 /* Ne includes Unordered which is not possible on integers.
3635                                  * However, frontends often use this wrong, so fix it here */
3636                                 if (proj_nr & pn_Cmp_Uo) {
3637                                         proj_nr &= ~pn_Cmp_Uo;
3638                                         set_Proj_proj(proj, proj_nr);
3639                                 }
3640
3641                                 /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
3642                                 if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
3643                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
3644                                         tv = tarval_sub(tv, get_mode_one(mode));
3645
3646                                         if (tv != tarval_bad) {
3647                                                 proj_nr ^= pn_Cmp_Eq;
3648                                                 changed |= 2;
3649                                         }
3650                                 }
3651                                 /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
3652                                 else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
3653                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
3654                                         tv = tarval_add(tv, get_mode_one(mode));
3655
3656                                         if (tv != tarval_bad) {
3657                                                 proj_nr ^= pn_Cmp_Eq;
3658                                                 changed |= 2;
3659                                         }
3660                                 }
3661
3662                                 /* the following reassociations work only for == and != */
3663                                 if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
3664
3665                                         /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
3666                                         if (tarval_is_null(tv) && is_Sub(left)) {
3667                                                 right =get_Sub_right(left);
3668                                                 left  = get_Sub_left(left);
3669
3670                                                 tv = value_of(right);
3671                                                 changed = 1;
3672                                         }
3673
3674                                         if (tv != tarval_bad) {
3675                                                 /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
3676                                                 if (is_Sub(left)) {
3677                                                         ir_node *c1 = get_Sub_right(left);
3678                                                         tarval *tv2 = value_of(c1);
3679
3680                                                         if (tv2 != tarval_bad) {
3681                                                                 tv2 = tarval_add(tv, value_of(c1));
3682
3683                                                                 if (tv2 != tarval_bad) {
3684                                                                         left    = get_Sub_left(left);
3685                                                                         tv      = tv2;
3686                                                                         changed |= 2;
3687                                                                 }
3688                                                         }
3689                                                 }
3690                                                 /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
3691                                                 else if (is_Add(left)) {
3692                                                         ir_node *a_l = get_Add_left(left);
3693                                                         ir_node *a_r = get_Add_right(left);
3694                                                         ir_node *a;
3695                                                         tarval *tv2;
3696
3697                                                         if (is_Const(a_l)) {
3698                                                                 a = a_r;
3699                                                                 tv2 = value_of(a_l);
3700                                                         } else {
3701                                                                 a = a_l;
3702                                                                 tv2 = value_of(a_r);
3703                                                         }
3704
3705                                                         if (tv2 != tarval_bad) {
3706                                                                 tv2 = tarval_sub(tv, tv2);
3707
3708                                                                 if (tv2 != tarval_bad) {
3709                                                                         left    = a;
3710                                                                         tv      = tv2;
3711                                                                         changed |= 2;
3712                                                                 }
3713                                                         }
3714                                                 }
3715                                                 /* -a == c ==> a == -c, -a != c ==> a != -c */
3716                                                 else if (is_Minus(left)) {
3717                                                         tarval *tv2 = tarval_sub(get_mode_null(mode), tv);
3718
3719                                                         if (tv2 != tarval_bad) {
3720                                                                 left    = get_Minus_op(left);
3721                                                                 tv      = tv2;
3722                                                                 changed |= 2;
3723                                                         }
3724                                                 }
3725                                         }
3726                                 } /* == or != */
3727                                 /* the following reassociations work only for <= */
3728                                 else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
3729                                         if (tv != tarval_bad) {
3730                                                 /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
3731                                                 if (get_irn_op(left) == op_Abs) { // TODO something is missing here
3732                                                 }
3733                                         }
3734                                 }
3735                         } /* mode_is_int */
3736
3737                         /*
3738                          * optimization for AND:
3739                          * Optimize:
3740                          *   And(x, C) == C  ==>  And(x, C) != 0
3741                          *   And(x, C) != C  ==>  And(X, C) == 0
3742                          *
3743                          * if C is a single Bit constant.
3744                          */
3745                         if ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) && is_And(left)) {
3746                                 if (tarval_is_single_bit(tv)) {
3747                                         /* check for Constant's match. We have check hare the tarvals,
3748                                            because our const might be changed */
3749                                         ir_node *la = get_And_left(left);
3750                                         ir_node *ra = get_And_right(left);
3751                                         if ((is_Const(la) && get_Const_tarval(la) == tv) ||
3752                                                 (is_Const(ra) && get_Const_tarval(ra) == tv)) {
3753                                                         /* fine: do the transformation */
3754                                                         tv = get_mode_null(get_tarval_mode(tv));
3755                                                         proj_nr ^= pn_Cmp_Leg;
3756                                                         changed |= 2;
3757                                         }
3758                                 }
3759                         }
3760                 } /* tarval != bad */
3761         }
3762
3763         if (changed) {
3764                 ir_node *block = get_irn_n(n, -1); /* Beware of get_nodes_Block() */
3765
3766                 if (changed & 2)      /* need a new Const */
3767                         right = new_Const(mode, tv);
3768
3769                 /* create a new compare */
3770                 n = new_rd_Cmp(get_irn_dbg_info(n), current_ir_graph, block, left, right);
3771
3772                 set_Proj_pred(proj, n);
3773                 set_Proj_proj(proj, proj_nr);
3774         }
3775
3776         return proj;
3777 }  /* transform_node_Proj_Cmp */
3778
3779 /**
3780  * Does all optimizations on nodes that must be done on it's Proj's
3781  * because of creating new nodes.
3782  */
3783 static ir_node *transform_node_Proj(ir_node *proj) {
3784         ir_node *n = get_Proj_pred(proj);
3785
3786         switch (get_irn_opcode(n)) {
3787         case iro_Div:
3788                 return transform_node_Proj_Div(proj);
3789
3790         case iro_Mod:
3791                 return transform_node_Proj_Mod(proj);
3792
3793         case iro_DivMod:
3794                 return transform_node_Proj_DivMod(proj);
3795
3796         case iro_Cond:
3797                 return transform_node_Proj_Cond(proj);
3798
3799         case iro_Cmp:
3800                 return transform_node_Proj_Cmp(proj);
3801
3802         case iro_Tuple:
3803                 /* should not happen, but if it does will be optimized away */
3804                 return equivalent_node_Proj(proj);
3805
3806         default:
3807                 /* do nothing */
3808                 return proj;
3809         }
3810 }  /* transform_node_Proj */
3811
3812 /**
3813  * Move Confirms down through Phi nodes.
3814  */
3815 static ir_node *transform_node_Phi(ir_node *phi) {
3816         int i, n;
3817         ir_mode *mode = get_irn_mode(phi);
3818
3819         if (mode_is_reference(mode)) {
3820                 n = get_irn_arity(phi);
3821
3822                 /* Beware of Phi0 */
3823                 if (n > 0) {
3824                         ir_node *pred = get_irn_n(phi, 0);
3825                         ir_node *bound, *new_Phi, *block, **in;
3826                         pn_Cmp  pnc;
3827
3828                         if (! is_Confirm(pred))
3829                                 return phi;
3830
3831                         bound = get_Confirm_bound(pred);
3832                         pnc   = get_Confirm_cmp(pred);
3833
3834                         NEW_ARR_A(ir_node *, in, n);
3835                         in[0] = get_Confirm_value(pred);
3836
3837                         for (i = 1; i < n; ++i) {
3838                                 pred = get_irn_n(phi, i);
3839
3840                                 if (! is_Confirm(pred) ||
3841                                         get_Confirm_bound(pred) != bound ||
3842                                         get_Confirm_cmp(pred) != pnc)
3843                                         return phi;
3844                                 in[i] = get_Confirm_value(pred);
3845                         }
3846                         /* move the Confirm nodes "behind" the Phi */
3847                         block = get_irn_n(phi, -1);
3848                         new_Phi = new_r_Phi(current_ir_graph, block, n, in, get_irn_mode(phi));
3849                         return new_r_Confirm(current_ir_graph, block, new_Phi, bound, pnc);
3850                 }
3851         }
3852         return phi;
3853 }  /* transform_node_Phi */
3854
3855 /**
3856  * Returns the operands of a commutative bin-op, if one operand is
3857  * a const, it is returned as the second one.
3858  */
3859 static void get_comm_Binop_Ops(ir_node *binop, ir_node **a, ir_node **c) {
3860         ir_node *op_a = get_binop_left(binop);
3861         ir_node *op_b = get_binop_right(binop);
3862
3863         assert(is_op_commutative(get_irn_op(binop)));
3864
3865         if (is_Const(op_a)) {
3866                 *a = op_b;
3867                 *c = op_a;
3868         } else {
3869                 *a = op_a;
3870                 *c = op_b;
3871         }
3872 }  /* get_comm_Binop_Ops */
3873
3874 /**
3875  * Optimize a Or(And(Or(And(v,c4),c3),c2),c1) pattern if possible.
3876  * Such pattern may arise in bitfield stores.
3877  *
3878  * value  c4                  value      c4 & c2
3879  *    AND     c3                    AND           c1 | c3
3880  *        OR     c2      ===>               OR
3881  *           AND    c1
3882  *               OR
3883  *
3884  *
3885  * value  c2                 value  c1
3886  *     AND   c1    ===>           OR     if (c1 | c2) == 0x111..11
3887  *        OR
3888  */
3889 static ir_node *transform_node_Or_bf_store(ir_node *or) {
3890         ir_node *and, *c1;
3891         ir_node *or_l, *c2;
3892         ir_node *and_l, *c3;
3893         ir_node *value, *c4;
3894         ir_node *new_and, *new_const, *block;
3895         ir_mode *mode = get_irn_mode(or);
3896
3897         tarval *tv1, *tv2, *tv3, *tv4, *tv, *n_tv4, *n_tv2;
3898
3899         while (1) {
3900                 get_comm_Binop_Ops(or, &and, &c1);
3901                 if (!is_Const(c1) || !is_And(and))
3902                         return or;
3903
3904                 get_comm_Binop_Ops(and, &or_l, &c2);
3905                 if (!is_Const(c2))
3906                         return or;
3907
3908                 tv1 = get_Const_tarval(c1);
3909                 tv2 = get_Const_tarval(c2);
3910
3911                 tv = tarval_or(tv1, tv2);
3912                 if (tarval_is_all_one(tv)) {
3913                         /* the AND does NOT clear a bit with isn't set by the OR */
3914                         set_Or_left(or, or_l);
3915                         set_Or_right(or, c1);
3916
3917                         /* check for more */
3918                         continue;
3919                 }
3920
3921                 if (!is_Or(or_l))
3922                         return or;
3923
3924                 get_comm_Binop_Ops(or_l, &and_l, &c3);
3925                 if (!is_Const(c3) || !is_And(and_l))
3926                         return or;
3927
3928                 get_comm_Binop_Ops(and_l, &value, &c4);
3929                 if (!is_Const(c4))
3930                         return or;
3931
3932                 /* ok, found the pattern, check for conditions */
3933                 assert(mode == get_irn_mode(and));
3934                 assert(mode == get_irn_mode(or_l));
3935                 assert(mode == get_irn_mode(and_l));
3936
3937                 tv3 = get_Const_tarval(c3);
3938                 tv4 = get_Const_tarval(c4);
3939
3940                 tv = tarval_or(tv4, tv2);
3941                 if (!tarval_is_all_one(tv)) {
3942                         /* have at least one 0 at the same bit position */
3943                         return or;
3944                 }
3945
3946                 n_tv4 = tarval_not(tv4);
3947                 if (tv3 != tarval_and(tv3, n_tv4)) {
3948                         /* bit in the or_mask is outside the and_mask */
3949                         return or;
3950                 }
3951
3952                 n_tv2 = tarval_not(tv2);
3953                 if (tv1 != tarval_and(tv1, n_tv2)) {
3954                         /* bit in the or_mask is outside the and_mask */
3955                         return or;
3956                 }
3957
3958                 /* ok, all conditions met */
3959                 block = get_irn_n(or, -1);
3960
3961                 new_and = new_r_And(current_ir_graph, block,
3962                         value, new_r_Const(current_ir_graph, block, mode, tarval_and(tv4, tv2)), mode);
3963
3964                 new_const = new_r_Const(current_ir_graph, block, mode, tarval_or(tv3, tv1));
3965
3966                 set_Or_left(or, new_and);
3967                 set_Or_right(or, new_const);
3968
3969                 /* check for more */
3970         }
3971 }  /* transform_node_Or_bf_store */
3972
3973 /**
3974  * Optimize an Or(shl(x, c), shr(x, bits - c)) into a Rot
3975  */
3976 static ir_node *transform_node_Or_Rot(ir_node *or) {
3977         ir_mode *mode = get_irn_mode(or);
3978         ir_node *shl, *shr, *block;
3979         ir_node *irn, *x, *c1, *c2, *v, *sub, *n;
3980         tarval *tv1, *tv2;
3981
3982         if (! mode_is_int(mode))
3983                 return or;
3984
3985         shl = get_binop_left(or);
3986         shr = get_binop_right(or);
3987
3988         if (is_Shr(shl)) {
3989                 if (!is_Shl(shr))
3990                         return or;
3991
3992                 irn = shl;
3993                 shl = shr;
3994                 shr = irn;
3995         } else if (!is_Shl(shl)) {
3996                 return or;
3997         } else if (!is_Shr(shr)) {
3998                 return or;
3999         }
4000         x = get_Shl_left(shl);
4001         if (x != get_Shr_left(shr))
4002                 return or;
4003
4004         c1 = get_Shl_right(shl);
4005         c2 = get_Shr_right(shr);
4006         if (is_Const(c1) && is_Const(c2)) {
4007                 tv1 = get_Const_tarval(c1);
4008                 if (! tarval_is_long(tv1))
4009                         return or;
4010
4011                 tv2 = get_Const_tarval(c2);
4012                 if (! tarval_is_long(tv2))
4013                         return or;
4014
4015                 if (get_tarval_long(tv1) + get_tarval_long(tv2)
4016                         != get_mode_size_bits(mode))
4017                         return or;
4018
4019                 /* yet, condition met */
4020                 block = get_irn_n(or, -1);
4021
4022                 n = new_r_Rot(current_ir_graph, block, x, c1, mode);
4023
4024                 DBG_OPT_ALGSIM1(or, shl, shr, n, FS_OPT_OR_SHFT_TO_ROT);
4025                 return n;
4026         } else if (is_Sub(c1)) {
4027                 v   = c2;
4028                 sub = c1;
4029
4030                 if (get_Sub_right(sub) != v)
4031                         return or;
4032
4033                 c1 = get_Sub_left(sub);
4034                 if (!is_Const(c1))
4035                         return or;
4036
4037                 tv1 = get_Const_tarval(c1);
4038                 if (! tarval_is_long(tv1))
4039                         return or;
4040
4041                 if (get_tarval_long(tv1) != get_mode_size_bits(mode))
4042                         return or;
4043
4044                 /* yet, condition met */
4045                 block = get_nodes_block(or);
4046
4047                 /* a Rot right is not supported, so use a rot left */
4048                 n =  new_r_Rot(current_ir_graph, block, x, sub, mode);
4049
4050                 DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
4051                 return n;
4052         } else if (is_Sub(c2)) {
4053                 v   = c1;
4054                 sub = c2;
4055
4056                 c1 = get_Sub_left(sub);
4057                 if (!is_Const(c1))
4058                         return or;
4059
4060                 tv1 = get_Const_tarval(c1);
4061                 if (! tarval_is_long(tv1))
4062                         return or;
4063
4064                 if (get_tarval_long(tv1) != get_mode_size_bits(mode))
4065                         return or;
4066
4067                 /* yet, condition met */
4068                 block = get_irn_n(or, -1);
4069
4070                 /* a Rot Left */
4071                 n = new_r_Rot(current_ir_graph, block, x, v, mode);
4072
4073                 DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
4074                 return n;
4075         }
4076
4077         return or;
4078 }  /* transform_node_Or_Rot */
4079
4080 /**
4081  * Transform an Or.
4082  */
4083 static ir_node *transform_node_Or(ir_node *n) {
4084         ir_node *c, *oldn = n;
4085         ir_node *a = get_Or_left(n);
4086         ir_node *b = get_Or_right(n);
4087
4088         if (is_Not(a) && is_Not(b)) {
4089                 /* ~a | ~b = ~(a&b) */
4090                 ir_node *block = get_nodes_block(n);
4091                 ir_mode *mode = get_irn_mode(n);
4092
4093                 a = get_Not_op(a);
4094                 b = get_Not_op(b);
4095                 n = new_rd_And(get_irn_dbg_info(n), current_ir_graph, block, a, b, mode);
4096                 n = new_rd_Not(get_irn_dbg_info(n), current_ir_graph, block, n, mode);
4097                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_DEMORGAN);
4098                 return n;
4099         }
4100
4101         /* we can evaluate 2 Projs of the same Cmp */
4102         if (get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
4103                 ir_node *pred_a = get_Proj_pred(a);
4104                 ir_node *pred_b = get_Proj_pred(b);
4105                 if (pred_a == pred_b) {
4106                         dbg_info *dbgi  = get_irn_dbg_info(n);
4107                         ir_node  *block = get_nodes_block(pred_a);
4108                         pn_Cmp pn_a     = get_Proj_proj(a);
4109                         pn_Cmp pn_b     = get_Proj_proj(b);
4110                         /* yes, we can simply calculate with pncs */
4111                         pn_Cmp new_pnc  = pn_a | pn_b;
4112
4113                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
4114                                            new_pnc);
4115                 }
4116         }
4117
4118         HANDLE_BINOP_PHI(tarval_or, a,b,c);
4119
4120         n = transform_node_Or_bf_store(n);
4121         n = transform_node_Or_Rot(n);
4122         if (n != oldn)
4123                 return n;
4124
4125         n = transform_bitwise_distributive(n, transform_node_Or);
4126
4127         return n;
4128 }  /* transform_node_Or */
4129
4130
4131 /* forward */
4132 static ir_node *transform_node(ir_node *n);
4133
4134 /**
4135  * Optimize (a >> c1) >> c2), works for Shr, Shrs, Shl.
4136  *
4137  * Should be moved to reassociation?
4138  */
4139 static ir_node *transform_node_shift(ir_node *n) {
4140         ir_node *left, *right;
4141         tarval *tv1, *tv2, *res;
4142         ir_mode *mode;
4143         int modulo_shf, flag;
4144
4145         left = get_binop_left(n);
4146
4147         /* different operations */
4148         if (get_irn_op(left) != get_irn_op(n))
4149                 return n;
4150
4151         right = get_binop_right(n);
4152         tv1 = value_of(right);
4153         if (tv1 == tarval_bad)
4154                 return n;
4155
4156         tv2 = value_of(get_binop_right(left));
4157         if (tv2 == tarval_bad)
4158                 return n;
4159
4160         res = tarval_add(tv1, tv2);
4161
4162         /* beware: a simple replacement works only, if res < modulo shift */
4163         mode = get_irn_mode(n);
4164
4165         flag = 0;
4166
4167         modulo_shf = get_mode_modulo_shift(mode);
4168         if (modulo_shf > 0) {
4169                 tarval *modulo = new_tarval_from_long(modulo_shf, get_tarval_mode(res));
4170
4171                 if (tarval_cmp(res, modulo) & pn_Cmp_Lt)
4172                         flag = 1;
4173         } else
4174                 flag = 1;
4175
4176         if (flag) {
4177                 /* ok, we can replace it */
4178                 ir_node *in[2], *irn, *block = get_irn_n(n, -1);
4179
4180                 in[0] = get_binop_left(left);
4181                 in[1] = new_r_Const(current_ir_graph, block, get_tarval_mode(res), res);
4182
4183                 irn = new_ir_node(NULL, current_ir_graph, block, get_irn_op(n), mode, 2, in);
4184
4185                 DBG_OPT_ALGSIM0(n, irn, FS_OPT_REASSOC_SHIFT);
4186
4187                 return transform_node(irn);
4188         }
4189         return n;
4190 }  /* transform_node_shift */
4191
4192 /**
4193  * Transform a Shr.
4194  */
4195 static ir_node *transform_node_Shr(ir_node *n) {
4196         ir_node *c, *oldn = n;
4197         ir_node *a = get_Shr_left(n);
4198         ir_node *b = get_Shr_right(n);
4199
4200         HANDLE_BINOP_PHI(tarval_shr, a, b, c);
4201         return transform_node_shift(n);
4202 }  /* transform_node_Shr */
4203
4204 /**
4205  * Transform a Shrs.
4206  */
4207 static ir_node *transform_node_Shrs(ir_node *n) {
4208         ir_node *c, *oldn = n;
4209         ir_node *a = get_Shrs_left(n);
4210         ir_node *b = get_Shrs_right(n);
4211
4212         HANDLE_BINOP_PHI(tarval_shrs, a, b, c);
4213         return transform_node_shift(n);
4214 }  /* transform_node_Shrs */
4215
4216 /**
4217  * Transform a Shl.
4218  */
4219 static ir_node *transform_node_Shl(ir_node *n) {
4220         ir_node *c, *oldn = n;
4221         ir_node *a = get_Shl_left(n);
4222         ir_node *b = get_Shl_right(n);
4223
4224         HANDLE_BINOP_PHI(tarval_shl, a, b, c);
4225         return transform_node_shift(n);
4226 }  /* transform_node_Shl */
4227
4228 /**
4229  * Remove dead blocks and nodes in dead blocks
4230  * in keep alive list.  We do not generate a new End node.
4231  */
4232 static ir_node *transform_node_End(ir_node *n) {
4233         int i, j, n_keepalives = get_End_n_keepalives(n);
4234         ir_node **in;
4235
4236         NEW_ARR_A(ir_node *, in, n_keepalives);
4237
4238         for (i = j = 0; i < n_keepalives; ++i) {
4239                 ir_node *ka = get_End_keepalive(n, i);
4240                 if (is_Block(ka)) {
4241                         if (! is_Block_dead(ka)) {
4242                                 in[j++] = ka;
4243                         }
4244                         continue;
4245                 } else if (is_irn_pinned_in_irg(ka) && is_Block_dead(get_nodes_block(ka))) {
4246                         continue;
4247                 }
4248                 /* FIXME: beabi need to keep a Proj(M) */
4249                 if (is_Phi(ka) || is_irn_keep(ka) || is_Proj(ka))
4250                         in[j++] = ka;
4251         }
4252         if (j != n_keepalives)
4253                 set_End_keepalives(n, j, in);
4254         return n;
4255 }  /* transform_node_End */
4256
4257 /** returns 1 if a == -b */
4258 static int is_negated_value(ir_node *a, ir_node *b) {
4259         if(is_Minus(a) && get_Minus_op(a) == b)
4260                 return 1;
4261         if(is_Minus(b) && get_Minus_op(b) == a)
4262                 return 1;
4263         if(is_Sub(a) && is_Sub(b)) {
4264                 ir_node *a_left  = get_Sub_left(a);
4265                 ir_node *a_right = get_Sub_right(a);
4266                 ir_node *b_left  = get_Sub_left(b);
4267                 ir_node *b_right = get_Sub_right(b);
4268
4269                 if(a_left == b_right && a_right == b_left)
4270                         return 1;
4271         }
4272
4273         return 0;
4274 }
4275
4276 /**
4277  * Optimize a Mux into some simpler cases.
4278  */
4279 static ir_node *transform_node_Mux(ir_node *n) {
4280         ir_node *oldn = n, *sel = get_Mux_sel(n);
4281         ir_mode *mode = get_irn_mode(n);
4282
4283         if (mode == mode_b) {
4284                 ir_node  *t     = get_Mux_true(n);
4285                 ir_node  *f     = get_Mux_false(n);
4286                 dbg_info *dbg   = get_irn_dbg_info(n);
4287                 ir_node  *block = get_irn_n(n, -1);
4288                 ir_graph *irg   = current_ir_graph;
4289
4290                 if (is_Const(t)) {
4291                         tarval *tv_t = get_Const_tarval(t);
4292                         if (tv_t == tarval_b_true) {
4293                                 if (is_Const(f)) {
4294                                         assert(get_Const_tarval(f) == tarval_b_false);
4295                                         return sel;
4296                                 } else {
4297                                         return new_rd_Or(dbg, irg, block, sel, f, mode_b);
4298                                 }
4299                         } else {
4300                                 ir_node* not_sel = new_rd_Not(dbg, irg, block, sel, mode_b);
4301                                 assert(tv_t == tarval_b_false);
4302                                 if (is_Const(f)) {
4303                                         assert(get_Const_tarval(f) == tarval_b_true);
4304                                         return not_sel;
4305                                 } else {
4306                                         return new_rd_And(dbg, irg, block, not_sel, f, mode_b);
4307                                 }
4308                         }
4309                 } else if (is_Const(f)) {
4310                         tarval *tv_f = get_Const_tarval(f);
4311                         if (tv_f == tarval_b_true) {
4312                                 ir_node* not_sel = new_rd_Not(dbg, irg, block, sel, mode_b);
4313                                 return new_rd_Or(dbg, irg, block, not_sel, t, mode_b);
4314                         } else {
4315                                 assert(tv_f == tarval_b_false);
4316                                 return new_rd_And(dbg, irg, block, sel, t, mode_b);
4317                         }
4318                 }
4319         }
4320
4321         if (is_Proj(sel) && !mode_honor_signed_zeros(mode)) {
4322                 ir_node *cmp = get_Proj_pred(sel);
4323                 long     pn  = get_Proj_proj(sel);
4324                 ir_node *f   = get_Mux_false(n);
4325                 ir_node *t   = get_Mux_true(n);
4326
4327                 /*
4328                  * Note: normalization puts the constant on the right side,
4329                  * so we check only one case.
4330                  *
4331                  * Note further that these optimization work even for floating point
4332                  * with NaN's because -NaN == NaN.
4333                  * However, if +0 and -0 is handled differently, we cannot use the first
4334                  * one.
4335                  */
4336                 if (is_Cmp(cmp)) {
4337                         ir_node *cmp_r = get_Cmp_right(cmp);
4338                         if (is_Const(cmp_r) && is_Const_null(cmp_r)) {
4339                                 ir_node *block    = get_irn_n(n, -1);
4340
4341                                 if(is_negated_value(f, t)) {
4342                                         ir_node *cmp_left = get_Cmp_left(cmp);
4343
4344                                         /* Psi(a >= 0, a, -a) = Psi(a <= 0, -a, a) ==> Abs(a) */
4345                                         if ( (cmp_left == t && (pn == pn_Cmp_Ge || pn == pn_Cmp_Gt))
4346                                                 || (cmp_left == f && (pn == pn_Cmp_Le || pn == pn_Cmp_Lt)))
4347                                         {
4348                                                 n = new_rd_Abs(get_irn_dbg_info(n), current_ir_graph, block,
4349                                                                                  cmp_left, mode);
4350                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
4351                                                 return n;
4352                                         /* Psi(a <= 0, a, -a) = Psi(a >= 0, -a, a) ==> -Abs(a) */
4353                                         } else if ((cmp_left == t && (pn == pn_Cmp_Le || pn == pn_Cmp_Lt))
4354                                                 || (cmp_left == f && (pn == pn_Cmp_Ge || pn == pn_Cmp_Gt)))
4355                                         {
4356                                                 n = new_rd_Abs(get_irn_dbg_info(n), current_ir_graph, block,
4357                                                                                  cmp_left, mode);
4358                                                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph,
4359                                                                                                                  block, n, mode);
4360                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
4361                                                 return n;
4362                                         }
4363                                 }
4364
4365                                 if (mode_is_int(mode) && mode_is_signed(mode) &&
4366                                         get_mode_arithmetic(mode) == irma_twos_complement) {
4367                                         ir_node *x = get_Cmp_left(cmp);
4368
4369                                         /* the following optimization works only with signed integer two-complement mode */
4370
4371                                         if (mode == get_irn_mode(x)) {
4372                                                 /*
4373                                                  * FIXME: this restriction is two rigid, as it would still
4374                                                  * work if mode(x) = Hs and mode == Is, but at least it removes
4375                                                  * all wrong cases.
4376                                                  */
4377                                                 if ((pn == pn_Cmp_Lt || pn == pn_Cmp_Le) &&
4378                                                                 is_Const(t) && is_Const_all_one(t) &&
4379                                                                 is_Const(f) && is_Const_null(f)) {
4380                                                         /*
4381                                                          * Mux(x:T </<= 0, 0, -1) -> Shrs(x, sizeof_bits(T) - 1)
4382                                                          * Conditions:
4383                                                          * T must be signed.
4384                                                          */
4385                                                         n = new_rd_Shrs(get_irn_dbg_info(n),
4386                                                                         current_ir_graph, block, x,
4387                                                                         new_r_Const_long(current_ir_graph, block, mode_Iu,
4388                                                                         get_mode_size_bits(mode) - 1),
4389                                                                         mode);
4390                                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
4391                                                         return n;
4392                                                 } else if ((pn == pn_Cmp_Gt || pn == pn_Cmp_Ge) &&
4393                                                                 is_Const(t) && is_Const_one(t) &&
4394                                                                 is_Const(f) && is_Const_null(f)) {
4395                                                         /*
4396                                                          * Mux(x:T >/>= 0, 0, 1) -> Shr(-x, sizeof_bits(T) - 1)
4397                                                          * Conditions:
4398                                                          * T must be signed.
4399                                                          */
4400                                                         n = new_rd_Shr(get_irn_dbg_info(n),
4401                                                                 current_ir_graph, block,
4402                                                                 new_r_Minus(current_ir_graph, block, x, mode),
4403                                                                 new_r_Const_long(current_ir_graph, block, mode_Iu,
4404                                                                 get_mode_size_bits(mode) - 1),
4405                                                                 mode);
4406                                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
4407                                                         return n;
4408                                                 }
4409                                         }
4410                                 }
4411                         }
4412                 }
4413         }
4414         return arch_transform_node_Mux(n);
4415 }  /* transform_node_Mux */
4416
4417 /**
4418  * Optimize a Psi into some simpler cases.
4419  */
4420 static ir_node *transform_node_Psi(ir_node *n) {
4421         if (is_Mux(n))
4422                 return transform_node_Mux(n);
4423
4424         return n;
4425 }  /* transform_node_Psi */
4426
4427 /**
4428  * Tries several [inplace] [optimizing] transformations and returns an
4429  * equivalent node.  The difference to equivalent_node() is that these
4430  * transformations _do_ generate new nodes, and thus the old node must
4431  * not be freed even if the equivalent node isn't the old one.
4432  */
4433 static ir_node *transform_node(ir_node *n) {
4434         ir_node *oldn;
4435
4436         /*
4437          * Transform_node is the only "optimizing transformation" that might
4438          * return a node with a different opcode. We iterate HERE until fixpoint
4439          * to get the final result.
4440          */
4441         do {
4442                 oldn = n;
4443                 if (n->op->ops.transform_node)
4444                         n = n->op->ops.transform_node(n);
4445         } while (oldn != n);
4446
4447         return n;
4448 }  /* transform_node */
4449
4450 /**
4451  * Sets the default transform node operation for an ir_op_ops.
4452  *
4453  * @param code   the opcode for the default operation
4454  * @param ops    the operations initialized
4455  *
4456  * @return
4457  *    The operations.
4458  */
4459 static ir_op_ops *firm_set_default_transform_node(ir_opcode code, ir_op_ops *ops)
4460 {
4461 #define CASE(a)                                 \
4462         case iro_##a:                                 \
4463                 ops->transform_node  = transform_node_##a;  \
4464                 break
4465
4466         switch (code) {
4467         CASE(Add);
4468         CASE(Sub);
4469         CASE(Mul);
4470         CASE(Div);
4471         CASE(Mod);
4472         CASE(DivMod);
4473         CASE(Quot);
4474         CASE(Abs);
4475         CASE(Cond);
4476         CASE(And);
4477         CASE(Or);
4478         CASE(Eor);
4479         CASE(Minus);
4480         CASE(Not);
4481         CASE(Cast);
4482         CASE(Proj);
4483         CASE(Phi);
4484         CASE(Sel);
4485         CASE(Shr);
4486         CASE(Shrs);
4487         CASE(Shl);
4488         CASE(End);
4489         CASE(Mux);
4490         CASE(Psi);
4491         default:
4492           /* leave NULL */;
4493         }
4494
4495         return ops;
4496 #undef CASE
4497 }  /* firm_set_default_transform_node */
4498
4499
4500 /* **************** Common Subexpression Elimination **************** */
4501
4502 /** The size of the hash table used, should estimate the number of nodes
4503     in a graph. */
4504 #define N_IR_NODES 512
4505
4506 /** Compares the attributes of two Const nodes. */
4507 static int node_cmp_attr_Const(ir_node *a, ir_node *b) {
4508         return (get_Const_tarval(a) != get_Const_tarval(b))
4509             || (get_Const_type(a) != get_Const_type(b));
4510 }  /* node_cmp_attr_Const */
4511
4512 /** Compares the attributes of two Proj nodes. */
4513 static int node_cmp_attr_Proj(ir_node *a, ir_node *b) {
4514         return get_irn_proj_attr(a) != get_irn_proj_attr(b);
4515 }  /* node_cmp_attr_Proj */
4516
4517 /** Compares the attributes of two Filter nodes. */
4518 static int node_cmp_attr_Filter(ir_node *a, ir_node *b) {
4519         return get_Filter_proj(a) != get_Filter_proj(b);
4520 }  /* node_cmp_attr_Filter */
4521
4522 /** Compares the attributes of two Alloc nodes. */
4523 static int node_cmp_attr_Alloc(ir_node *a, ir_node *b) {
4524         const alloc_attr *pa = get_irn_alloc_attr(a);
4525         const alloc_attr *pb = get_irn_alloc_attr(b);
4526         return (pa->where != pb->where) || (pa->type != pb->type);
4527 }  /* node_cmp_attr_Alloc */
4528
4529 /** Compares the attributes of two Free nodes. */
4530 static int node_cmp_attr_Free(ir_node *a, ir_node *b) {
4531         const free_attr *pa = get_irn_free_attr(a);
4532         const free_attr *pb = get_irn_free_attr(b);
4533         return (pa->where != pb->where) || (pa->type != pb->type);
4534 }  /* node_cmp_attr_Free */
4535
4536 /** Compares the attributes of two SymConst nodes. */
4537 static int node_cmp_attr_SymConst(ir_node *a, ir_node *b) {
4538         const symconst_attr *pa = get_irn_symconst_attr(a);
4539         const symconst_attr *pb = get_irn_symconst_attr(b);
4540         return (pa->num        != pb->num)
4541             || (pa->sym.type_p != pb->sym.type_p)
4542             || (pa->tp         != pb->tp);
4543 }  /* node_cmp_attr_SymConst */
4544
4545 /** Compares the attributes of two Call nodes. */
4546 static int node_cmp_attr_Call(ir_node *a, ir_node *b) {
4547         return (get_irn_call_attr(a) != get_irn_call_attr(b));
4548 }  /* node_cmp_attr_Call */
4549
4550 /** Compares the attributes of two Sel nodes. */
4551 static int node_cmp_attr_Sel(ir_node *a, ir_node *b) {
4552         const ir_entity *a_ent = get_Sel_entity(a);
4553         const ir_entity *b_ent = get_Sel_entity(b);
4554         return
4555                 (a_ent->kind    != b_ent->kind)    ||
4556                 (a_ent->name    != b_ent->name)    ||
4557                 (a_ent->owner   != b_ent->owner)   ||
4558                 (a_ent->ld_name != b_ent->ld_name) ||
4559                 (a_ent->type    != b_ent->type);
4560 }  /* node_cmp_attr_Sel */
4561
4562 /** Compares the attributes of two Phi nodes. */
4563 static int node_cmp_attr_Phi(ir_node *a, ir_node *b) {
4564         /* we can only enter this function if both nodes have the same number of inputs,
4565            hence it is enough to check if one of them is a Phi0 */
4566         if (is_Phi0(a)) {
4567                 /* check the Phi0 attribute */
4568                 return get_irn_phi0_attr(a) != get_irn_phi0_attr(b);
4569         }
4570         return 0;
4571 }  /* node_cmp_attr_Phi */
4572
4573 /** Compares the attributes of two Conv nodes. */
4574 static int node_cmp_attr_Conv(ir_node *a, ir_node *b) {
4575         return get_Conv_strict(a) != get_Conv_strict(b);
4576 }  /* node_cmp_attr_Conv */
4577
4578 /** Compares the attributes of two Cast nodes. */
4579 static int node_cmp_attr_Cast(ir_node *a, ir_node *b) {
4580         return get_Cast_type(a) != get_Cast_type(b);
4581 }  /* node_cmp_attr_Cast */
4582
4583 /** Compares the attributes of two Load nodes. */
4584 static int node_cmp_attr_Load(ir_node *a, ir_node *b) {
4585         if (get_Load_volatility(a) == volatility_is_volatile ||
4586             get_Load_volatility(b) == volatility_is_volatile)
4587                 /* NEVER do CSE on volatile Loads */
4588                 return 1;
4589         /* do not CSE Loads with different alignment. Be conservative. */
4590         if (get_Load_align(a) != get_Load_align(b))
4591                 return 1;
4592
4593         return get_Load_mode(a) != get_Load_mode(b);
4594 }  /* node_cmp_attr_Load */
4595
4596 /** Compares the attributes of two Store nodes. */
4597 static int node_cmp_attr_Store(ir_node *a, ir_node *b) {
4598         /* do not CSE Stores with different alignment. Be conservative. */
4599         if (get_Store_align(a) != get_Store_align(b))
4600                 return 1;
4601
4602         /* NEVER do CSE on volatile Stores */
4603         return (get_Store_volatility(a) == volatility_is_volatile ||
4604                 get_Store_volatility(b) == volatility_is_volatile);
4605 }  /* node_cmp_attr_Store */
4606
4607 /** Compares the attributes of two Confirm nodes. */
4608 static int node_cmp_attr_Confirm(ir_node *a, ir_node *b) {
4609         return (get_Confirm_cmp(a) != get_Confirm_cmp(b));
4610 }  /* node_cmp_attr_Confirm */
4611
4612 /** Compares the attributes of two ASM nodes. */
4613 static int node_cmp_attr_ASM(ir_node *a, ir_node *b) {
4614         int i, n;
4615         const ir_asm_constraint *ca;
4616         const ir_asm_constraint *cb;
4617         ident **cla, **clb;
4618
4619         if (get_ASM_text(a) != get_ASM_text(b))
4620                 return 1;
4621
4622         /* Should we really check the constraints here? Should be better, but is strange. */
4623         n = get_ASM_n_input_constraints(a);
4624         if (n != get_ASM_n_input_constraints(b))
4625                 return 0;
4626
4627         ca = get_ASM_input_constraints(a);
4628         cb = get_ASM_input_constraints(b);
4629         for (i = 0; i < n; ++i) {
4630                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
4631                         return 1;
4632         }
4633
4634         n = get_ASM_n_output_constraints(a);
4635         if (n != get_ASM_n_output_constraints(b))
4636                 return 0;
4637
4638         ca = get_ASM_output_constraints(a);
4639         cb = get_ASM_output_constraints(b);
4640         for (i = 0; i < n; ++i) {
4641                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
4642                         return 1;
4643         }
4644
4645         n = get_ASM_n_clobbers(a);
4646         if (n != get_ASM_n_clobbers(b))
4647                 return 0;
4648
4649         cla = get_ASM_clobbers(a);
4650         clb = get_ASM_clobbers(b);
4651         for (i = 0; i < n; ++i) {
4652                 if (cla[i] != clb[i])
4653                         return 1;
4654         }
4655         return 0;
4656 }  /* node_cmp_attr_ASM */
4657
4658 /**
4659  * Set the default node attribute compare operation for an ir_op_ops.
4660  *
4661  * @param code   the opcode for the default operation
4662  * @param ops    the operations initialized
4663  *
4664  * @return
4665  *    The operations.
4666  */
4667 static ir_op_ops *firm_set_default_node_cmp_attr(ir_opcode code, ir_op_ops *ops)
4668 {
4669 #define CASE(a)                              \
4670         case iro_##a:                              \
4671                 ops->node_cmp_attr  = node_cmp_attr_##a; \
4672                 break
4673
4674         switch (code) {
4675         CASE(Const);
4676         CASE(Proj);
4677         CASE(Filter);
4678         CASE(Alloc);
4679         CASE(Free);
4680         CASE(SymConst);
4681         CASE(Call);
4682         CASE(Sel);
4683         CASE(Phi);
4684         CASE(Conv);
4685         CASE(Cast);
4686         CASE(Load);
4687         CASE(Store);
4688         CASE(Confirm);
4689         CASE(ASM);
4690         default:
4691           /* leave NULL */;
4692         }
4693
4694         return ops;
4695 #undef CASE
4696 }  /* firm_set_default_node_cmp_attr */
4697
4698 /*
4699  * Compare function for two nodes in the hash table. Gets two
4700  * nodes as parameters.  Returns 0 if the nodes are a cse.
4701  */
4702 int identities_cmp(const void *elt, const void *key) {
4703         ir_node *a, *b;
4704         int i, irn_arity_a;
4705
4706         a = (void *)elt;
4707         b = (void *)key;
4708
4709         if (a == b) return 0;
4710
4711         if ((get_irn_op(a) != get_irn_op(b)) ||
4712             (get_irn_mode(a) != get_irn_mode(b))) return 1;
4713
4714         /* compare if a's in and b's in are of equal length */
4715         irn_arity_a = get_irn_intra_arity (a);
4716         if (irn_arity_a != get_irn_intra_arity(b))
4717                 return 1;
4718
4719         /* for block-local cse and op_pin_state_pinned nodes: */
4720         if (!get_opt_global_cse() || (get_irn_pinned(a) == op_pin_state_pinned)) {
4721                 if (get_irn_intra_n(a, -1) != get_irn_intra_n(b, -1))
4722                         return 1;
4723         }
4724
4725         /* compare a->in[0..ins] with b->in[0..ins] */
4726         for (i = 0; i < irn_arity_a; i++)
4727                 if (get_irn_intra_n(a, i) != get_irn_intra_n(b, i))
4728                         return 1;
4729
4730         /*
4731          * here, we already now that the nodes are identical except their
4732          * attributes
4733          */
4734         if (a->op->ops.node_cmp_attr)
4735                 return a->op->ops.node_cmp_attr(a, b);
4736
4737         return 0;
4738 }  /* identities_cmp */
4739
4740 /*
4741  * Calculate a hash value of a node.
4742  */
4743 unsigned ir_node_hash(ir_node *node) {
4744         unsigned h;
4745         int i, irn_arity;
4746
4747         if (node->op == op_Const) {
4748                 /* special value for const, as they only differ in their tarval. */
4749                 h = HASH_PTR(node->attr.con.tv);
4750                 h = 9*h + HASH_PTR(get_irn_mode(node));
4751         } else if (node->op == op_SymConst) {
4752                 /* special value for const, as they only differ in their symbol. */
4753                 h = HASH_PTR(node->attr.symc.sym.type_p);
4754                 h = 9*h + HASH_PTR(get_irn_mode(node));
4755         } else {
4756
4757                 /* hash table value = 9*(9*(9*(9*(9*arity+in[0])+in[1])+ ...)+mode)+code */
4758                 h = irn_arity = get_irn_intra_arity(node);
4759
4760                 /* consider all in nodes... except the block if not a control flow. */
4761                 for (i = is_cfop(node) ? -1 : 0;  i < irn_arity;  i++) {
4762                         h = 9*h + HASH_PTR(get_irn_intra_n(node, i));
4763                 }
4764
4765                 /* ...mode,... */
4766                 h = 9*h + HASH_PTR(get_irn_mode(node));
4767                 /* ...and code */
4768                 h = 9*h + HASH_PTR(get_irn_op(node));
4769         }
4770
4771         return h;
4772 }  /* ir_node_hash */
4773
4774 pset *new_identities(void) {
4775         return new_pset(identities_cmp, N_IR_NODES);
4776 }  /* new_identities */
4777
4778 void del_identities(pset *value_table) {
4779         del_pset(value_table);
4780 }  /* del_identities */
4781
4782 /**
4783  * Normalize a node by putting constants (and operands with smaller
4784  * node index) on the right
4785  *
4786  * @param n   The node to normalize
4787  */
4788 static void normalize_node(ir_node *n) {
4789         if (get_opt_reassociation()) {
4790                 if (is_op_commutative(get_irn_op(n))) {
4791                         ir_node *l = get_binop_left(n);
4792                         ir_node *r = get_binop_right(n);
4793                         int l_idx = get_irn_idx(l);
4794                         int r_idx = get_irn_idx(r);
4795
4796                         /* For commutative operators perform  a OP b == b OP a but keep
4797                         constants on the RIGHT side. This helps greatly in some optimizations.
4798                         Moreover we use the idx number to make the form deterministic. */
4799                         if (is_irn_constlike(l))
4800                                 l_idx = -l_idx;
4801                         if (is_irn_constlike(r))
4802                                 r_idx = -r_idx;
4803                         if (l_idx < r_idx) {
4804                                 set_binop_left(n, r);
4805                                 set_binop_right(n, l);
4806                         }
4807                 }
4808         }
4809 }  /* normalize_node */
4810
4811 /**
4812  * Return the canonical node computing the same value as n.
4813  *
4814  * @param value_table  The value table
4815  * @param n            The node to lookup
4816  *
4817  * Looks up the node in a hash table.
4818  *
4819  * For Const nodes this is performed in the constructor, too.  Const
4820  * nodes are extremely time critical because of their frequent use in
4821  * constant string arrays.
4822  */
4823 static INLINE ir_node *identify(pset *value_table, ir_node *n) {
4824         ir_node *o = NULL;
4825
4826         if (!value_table) return n;
4827
4828         normalize_node(n);
4829
4830         o = pset_find(value_table, n, ir_node_hash(n));
4831         if (!o) return n;
4832
4833         DBG_OPT_CSE(n, o);
4834
4835         return o;
4836 }  /* identify */
4837
4838 /**
4839  * During construction we set the op_pin_state_pinned flag in the graph right when the
4840  * optimization is performed.  The flag turning on procedure global cse could
4841  * be changed between two allocations.  This way we are safe.
4842  */
4843 static INLINE ir_node *identify_cons(pset *value_table, ir_node *n) {
4844         ir_node *old = n;
4845
4846         n = identify(value_table, n);
4847         if (get_irn_n(old, -1) != get_irn_n(n, -1))
4848                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
4849         return n;
4850 }  /* identify_cons */
4851
4852 /*
4853  * Return the canonical node computing the same value as n.
4854  * Looks up the node in a hash table, enters it in the table
4855  * if it isn't there yet.
4856  */
4857 ir_node *identify_remember(pset *value_table, ir_node *n) {
4858         ir_node *o = NULL;
4859
4860         if (!value_table) return n;
4861
4862         normalize_node(n);
4863         /* lookup or insert in hash table with given hash key. */
4864         o = pset_insert(value_table, n, ir_node_hash(n));
4865
4866         if (o != n) {
4867                 DBG_OPT_CSE(n, o);
4868         }
4869
4870         return o;
4871 }  /* identify_remember */
4872
4873 /* Add a node to the identities value table. */
4874 void add_identities(pset *value_table, ir_node *node) {
4875         if (get_opt_cse() && is_no_Block(node))
4876                 identify_remember(value_table, node);
4877 }  /* add_identities */
4878
4879 /* Visit each node in the value table of a graph. */
4880 void visit_all_identities(ir_graph *irg, irg_walk_func visit, void *env) {
4881         ir_node *node;
4882         ir_graph *rem = current_ir_graph;
4883
4884         current_ir_graph = irg;
4885         foreach_pset(irg->value_table, node)
4886                 visit(node, env);
4887         current_ir_graph = rem;
4888 }  /* visit_all_identities */
4889
4890 /**
4891  * Garbage in, garbage out. If a node has a dead input, i.e., the
4892  * Bad node is input to the node, return the Bad node.
4893  */
4894 static ir_node *gigo(ir_node *node) {
4895         int i, irn_arity;
4896         ir_op *op = get_irn_op(node);
4897
4898         /* remove garbage blocks by looking at control flow that leaves the block
4899            and replacing the control flow by Bad. */
4900         if (get_irn_mode(node) == mode_X) {
4901                 ir_node *block = get_nodes_block(skip_Proj(node));
4902
4903                 /* Don't optimize nodes in immature blocks. */
4904                 if (!get_Block_matured(block)) return node;
4905                 /* Don't optimize End, may have Bads. */
4906                 if (op == op_End) return node;
4907
4908                 if (is_Block(block)) {
4909                         irn_arity = get_irn_arity(block);
4910                         for (i = 0; i < irn_arity; i++) {
4911                                 if (!is_Bad(get_irn_n(block, i)))
4912                                         break;
4913                         }
4914                         if (i == irn_arity) {
4915                                 ir_graph *irg = get_irn_irg(block);
4916                                 /* the start block is never dead */
4917                                 if (block != get_irg_start_block(irg)
4918                                         && block != get_irg_end_block(irg))
4919                                         return new_Bad();
4920                         }
4921                 }
4922         }
4923
4924         /* Blocks, Phis and Tuples may have dead inputs, e.g., if one of the
4925            blocks predecessors is dead. */
4926         if (op != op_Block && op != op_Phi && op != op_Tuple) {
4927                 irn_arity = get_irn_arity(node);
4928
4929                 /*
4930                  * Beware: we can only read the block of a non-floating node.
4931                  */
4932                 if (is_irn_pinned_in_irg(node) &&
4933                         is_Block_dead(get_nodes_block(node)))
4934                         return new_Bad();
4935
4936                 for (i = 0; i < irn_arity; i++) {
4937                         ir_node *pred = get_irn_n(node, i);
4938
4939                         if (is_Bad(pred))
4940                                 return new_Bad();
4941 #if 0
4942                         /* Propagating Unknowns here seems to be a bad idea, because
4943                            sometimes we need a node as a input and did not want that
4944                            it kills it's user.
4945                            However, it might be useful to move this into a later phase
4946                            (if you think that optimizing such code is useful). */
4947                         if (is_Unknown(pred) && mode_is_data(get_irn_mode(node)))
4948                                 return new_Unknown(get_irn_mode(node));
4949 #endif
4950                 }
4951         }
4952 #if 0
4953         /* With this code we violate the agreement that local_optimize
4954            only leaves Bads in Block, Phi and Tuple nodes. */
4955         /* If Block has only Bads as predecessors it's garbage. */
4956         /* If Phi has only Bads as predecessors it's garbage. */
4957         if ((op == op_Block && get_Block_matured(node)) || op == op_Phi)  {
4958                 irn_arity = get_irn_arity(node);
4959                 for (i = 0; i < irn_arity; i++) {
4960                         if (!is_Bad(get_irn_n(node, i))) break;
4961                 }
4962                 if (i == irn_arity) node = new_Bad();
4963         }
4964 #endif
4965         return node;
4966 }  /* gigo */
4967
4968 /**
4969  * These optimizations deallocate nodes from the obstack.
4970  * It can only be called if it is guaranteed that no other nodes
4971  * reference this one, i.e., right after construction of a node.
4972  *
4973  * @param n   The node to optimize
4974  *
4975  * current_ir_graph must be set to the graph of the node!
4976  */
4977 ir_node *optimize_node(ir_node *n) {
4978         tarval *tv;
4979         ir_node *oldn = n;
4980         ir_opcode iro = get_irn_opcode(n);
4981
4982         /* Always optimize Phi nodes: part of the construction. */
4983         if ((!get_opt_optimize()) && (iro != iro_Phi)) return n;
4984
4985         /* constant expression evaluation / constant folding */
4986         if (get_opt_constant_folding()) {
4987                 /* neither constants nor Tuple values can be evaluated */
4988                 if (iro != iro_Const && (get_irn_mode(n) != mode_T)) {
4989                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
4990                         int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
4991                         /* try to evaluate */
4992                         tv = computed_value(n);
4993                         if (tv != tarval_bad) {
4994                                 ir_node *nw;
4995                                 ir_type *old_tp = get_irn_type(n);
4996                                 int i, arity = get_irn_arity(n);
4997                                 int node_size;
4998
4999                                 /*
5000                                  * Try to recover the type of the new expression.
5001                                  */
5002                                 for (i = 0; i < arity && !old_tp; ++i)
5003                                         old_tp = get_irn_type(get_irn_n(n, i));
5004
5005                                 /*
5006                                  * we MUST copy the node here temporary, because it's still needed
5007                                  * for DBG_OPT_CSTEVAL
5008                                  */
5009                                 node_size = offsetof(ir_node, attr) +  n->op->attr_size;
5010                                 oldn = alloca(node_size);
5011
5012                                 memcpy(oldn, n, node_size);
5013                                 CLONE_ARR_A(ir_node *, oldn->in, n->in);
5014
5015                                 /* ARG, copy the in array, we need it for statistics */
5016                                 memcpy(oldn->in, n->in, ARR_LEN(n->in) * sizeof(n->in[0]));
5017
5018                                 /* note the inplace edges module */
5019                                 edges_node_deleted(n, current_ir_graph);
5020
5021                                 /* evaluation was successful -- replace the node. */
5022                                 irg_kill_node(current_ir_graph, n);
5023                                 nw = new_Const(get_tarval_mode(tv), tv);
5024
5025                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
5026                                         set_Const_type(nw, old_tp);
5027                                 DBG_OPT_CSTEVAL(oldn, nw);
5028                                 tarval_enable_fp_ops(old_fp_mode);
5029                                 return nw;
5030                         }
5031                         tarval_enable_fp_ops(old_fp_mode);
5032                 }
5033         }
5034
5035         /* remove unnecessary nodes */
5036         if (get_opt_constant_folding() ||
5037             (iro == iro_Phi)  ||   /* always optimize these nodes. */
5038             (iro == iro_Id)   ||
5039             (iro == iro_Proj) ||
5040             (iro == iro_Block)  )  /* Flags tested local. */
5041                 n = equivalent_node(n);
5042
5043         /* Common Subexpression Elimination.
5044          *
5045          * Checks whether n is already available.
5046          * The block input is used to distinguish different subexpressions. Right
5047          * now all nodes are op_pin_state_pinned to blocks, i.e., the CSE only finds common
5048          * subexpressions within a block.
5049          */
5050         if (get_opt_cse())
5051                 n = identify_cons(current_ir_graph->value_table, n);
5052
5053         if (n != oldn) {
5054                 edges_node_deleted(oldn, current_ir_graph);
5055
5056                 /* We found an existing, better node, so we can deallocate the old node. */
5057                 irg_kill_node(current_ir_graph, oldn);
5058                 return n;
5059         }
5060
5061         /* Some more constant expression evaluation that does not allow to
5062            free the node. */
5063         iro = get_irn_opcode(n);
5064         if (get_opt_constant_folding() ||
5065             (iro == iro_Cond) ||
5066             (iro == iro_Proj))     /* Flags tested local. */
5067                 n = transform_node(n);
5068
5069         /* Remove nodes with dead (Bad) input.
5070            Run always for transformation induced Bads. */
5071         n = gigo (n);
5072
5073         /* Now we have a legal, useful node. Enter it in hash table for CSE */
5074         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block)) {
5075                 n = identify_remember(current_ir_graph->value_table, n);
5076         }
5077
5078         return n;
5079 }  /* optimize_node */
5080
5081
5082 /**
5083  * These optimizations never deallocate nodes (in place).  This can cause dead
5084  * nodes lying on the obstack.  Remove these by a dead node elimination,
5085  * i.e., a copying garbage collection.
5086  */
5087 ir_node *optimize_in_place_2(ir_node *n) {
5088         tarval *tv;
5089         ir_node *oldn = n;
5090         ir_opcode iro = get_irn_opcode(n);
5091
5092         if (!get_opt_optimize() && !is_Phi(n)) return n;
5093
5094         /* constant expression evaluation / constant folding */
5095         if (get_opt_constant_folding()) {
5096                 /* neither constants nor Tuple values can be evaluated */
5097                 if (iro != iro_Const && get_irn_mode(n) != mode_T) {
5098                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
5099                         int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
5100                         /* try to evaluate */
5101                         tv = computed_value(n);
5102                         if (tv != tarval_bad) {
5103                                 /* evaluation was successful -- replace the node. */
5104                                 ir_type *old_tp = get_irn_type(n);
5105                                 int i, arity = get_irn_arity(n);
5106
5107                                 /*
5108                                  * Try to recover the type of the new expression.
5109                                  */
5110                                 for (i = 0; i < arity && !old_tp; ++i)
5111                                         old_tp = get_irn_type(get_irn_n(n, i));
5112
5113                                 n = new_Const(get_tarval_mode(tv), tv);
5114
5115                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
5116                                         set_Const_type(n, old_tp);
5117
5118                                 DBG_OPT_CSTEVAL(oldn, n);
5119                                 tarval_enable_fp_ops(old_fp_mode);
5120                                 return n;
5121                         }
5122                         tarval_enable_fp_ops(old_fp_mode);
5123                 }
5124         }
5125
5126         /* remove unnecessary nodes */
5127         if (get_opt_constant_folding() ||
5128             (iro == iro_Phi)  ||   /* always optimize these nodes. */
5129             (iro == iro_Id)   ||   /* ... */
5130             (iro == iro_Proj) ||   /* ... */
5131             (iro == iro_Block)  )  /* Flags tested local. */
5132                 n = equivalent_node(n);
5133
5134         /** common subexpression elimination **/
5135         /* Checks whether n is already available. */
5136         /* The block input is used to distinguish different subexpressions.  Right
5137            now all nodes are op_pin_state_pinned to blocks, i.e., the cse only finds common
5138            subexpressions within a block. */
5139         if (get_opt_cse()) {
5140                 n = identify(current_ir_graph->value_table, n);
5141         }
5142
5143         /* Some more constant expression evaluation. */
5144         iro = get_irn_opcode(n);
5145         if (get_opt_constant_folding() ||
5146                 (iro == iro_Cond) ||
5147                 (iro == iro_Proj))     /* Flags tested local. */
5148                 n = transform_node(n);
5149
5150         /* Remove nodes with dead (Bad) input.
5151            Run always for transformation induced Bads.  */
5152         n = gigo(n);
5153
5154         /* Now we can verify the node, as it has no dead inputs any more. */
5155         irn_vrfy(n);
5156
5157         /* Now we have a legal, useful node. Enter it in hash table for cse.
5158            Blocks should be unique anyways.  (Except the successor of start:
5159            is cse with the start block!) */
5160         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block))
5161                 n = identify_remember(current_ir_graph->value_table, n);
5162
5163         return n;
5164 }  /* optimize_in_place_2 */
5165
5166 /**
5167  * Wrapper for external use, set proper status bits after optimization.
5168  */
5169 ir_node *optimize_in_place(ir_node *n) {
5170         /* Handle graph state */
5171         assert(get_irg_phase_state(current_ir_graph) != phase_building);
5172
5173         if (get_opt_global_cse())
5174                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
5175         if (get_irg_outs_state(current_ir_graph) == outs_consistent)
5176                 set_irg_outs_inconsistent(current_ir_graph);
5177
5178         /* FIXME: Maybe we could also test whether optimizing the node can
5179            change the control graph. */
5180         set_irg_doms_inconsistent(current_ir_graph);
5181         return optimize_in_place_2(n);
5182 }  /* optimize_in_place */
5183
5184 /*
5185  * Sets the default operation for an ir_ops.
5186  */
5187 ir_op_ops *firm_set_default_operations(ir_opcode code, ir_op_ops *ops) {
5188         ops = firm_set_default_computed_value(code, ops);
5189         ops = firm_set_default_equivalent_node(code, ops);
5190         ops = firm_set_default_transform_node(code, ops);
5191         ops = firm_set_default_node_cmp_attr(code, ops);
5192         ops = firm_set_default_get_type(code, ops);
5193         ops = firm_set_default_get_type_attr(code, ops);
5194         ops = firm_set_default_get_entity_attr(code, ops);
5195
5196         return ops;
5197 }  /* firm_set_default_operations */