d209a415f205f1790c2c6a4154966657013e5136
[libfirm] / ir / ir / iropt.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   iropt --- optimizations intertwined with IR construction.
23  * @author  Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <string.h>
29
30 #include "irnode_t.h"
31 #include "irgraph_t.h"
32 #include "iredges_t.h"
33 #include "irmode_t.h"
34 #include "iropt_t.h"
35 #include "ircons_t.h"
36 #include "irgmod.h"
37 #include "irvrfy.h"
38 #include "tv_t.h"
39 #include "dbginfo_t.h"
40 #include "iropt_dbg.h"
41 #include "irflag_t.h"
42 #include "irhooks.h"
43 #include "irarch.h"
44 #include "hashptr.h"
45 #include "opt_confirms.h"
46 #include "opt_polymorphy.h"
47 #include "irtools.h"
48 #include "irhooks.h"
49 #include "array_t.h"
50 #include "vrp.h"
51 #include "firm_types.h"
52
53 /* Make types visible to allow most efficient access */
54 #include "entity_t.h"
55
56 /**
57  * Returns the tarval of a Const node or tarval_bad for all other nodes.
58  */
59 static tarval *default_value_of(const ir_node *n)
60 {
61         if (is_Const(n))
62                 return get_Const_tarval(n); /* might return tarval_bad */
63         else
64                 return tarval_bad;
65 }
66
67 value_of_func value_of_ptr = default_value_of;
68
69 /* * Set a new value_of function. */
70 void set_value_of_func(value_of_func func)
71 {
72         if (func != NULL)
73                 value_of_ptr = func;
74         else
75                 value_of_ptr = default_value_of;
76 }
77
78 /**
79  * Return the value of a Constant.
80  */
81 static tarval *computed_value_Const(const ir_node *n)
82 {
83         return get_Const_tarval(n);
84 }  /* computed_value_Const */
85
86 /**
87  * Return the value of a 'sizeof', 'alignof' or 'offsetof' SymConst.
88  */
89 static tarval *computed_value_SymConst(const ir_node *n)
90 {
91         ir_type   *type;
92         ir_entity *ent;
93
94         switch (get_SymConst_kind(n)) {
95         case symconst_type_size:
96                 type = get_SymConst_type(n);
97                 if (get_type_state(type) == layout_fixed)
98                         return new_tarval_from_long(get_type_size_bytes(type), get_irn_mode(n));
99                 break;
100         case symconst_type_align:
101                 type = get_SymConst_type(n);
102                 if (get_type_state(type) == layout_fixed)
103                         return new_tarval_from_long(get_type_alignment_bytes(type), get_irn_mode(n));
104                 break;
105         case symconst_ofs_ent:
106                 ent  = get_SymConst_entity(n);
107                 type = get_entity_owner(ent);
108                 if (get_type_state(type) == layout_fixed)
109                         return new_tarval_from_long(get_entity_offset(ent), get_irn_mode(n));
110                 break;
111         default:
112                 break;
113         }
114         return tarval_bad;
115 }  /* computed_value_SymConst */
116
117 /**
118  * Return the value of an Add.
119  */
120 static tarval *computed_value_Add(const ir_node *n)
121 {
122         ir_node *a = get_Add_left(n);
123         ir_node *b = get_Add_right(n);
124
125         tarval *ta = value_of(a);
126         tarval *tb = value_of(b);
127
128         if ((ta != tarval_bad) && (tb != tarval_bad))
129                 return tarval_add(ta, tb);
130
131         return tarval_bad;
132 }  /* computed_value_Add */
133
134 /**
135  * Return the value of a Sub.
136  * Special case: a - a
137  */
138 static tarval *computed_value_Sub(const ir_node *n)
139 {
140         ir_mode *mode = get_irn_mode(n);
141         ir_node *a    = get_Sub_left(n);
142         ir_node *b    = get_Sub_right(n);
143         tarval  *ta;
144         tarval  *tb;
145
146         /* NaN - NaN != 0 */
147         if (! mode_is_float(mode)) {
148                 /* a - a = 0 */
149                 if (a == b)
150                         return get_mode_null(mode);
151         }
152
153         ta = value_of(a);
154         tb = value_of(b);
155
156         if ((ta != tarval_bad) && (tb != tarval_bad))
157                 return tarval_sub(ta, tb, mode);
158
159         return tarval_bad;
160 }  /* computed_value_Sub */
161
162 /**
163  * Return the value of a Carry.
164  * Special : a op 0, 0 op b
165  */
166 static tarval *computed_value_Carry(const ir_node *n)
167 {
168         ir_node *a = get_binop_left(n);
169         ir_node *b = get_binop_right(n);
170         ir_mode *m = get_irn_mode(n);
171
172         tarval *ta = value_of(a);
173         tarval *tb = value_of(b);
174
175         if ((ta != tarval_bad) && (tb != tarval_bad)) {
176                 tarval_add(ta, tb);
177                 return tarval_carry() ? get_mode_one(m) : get_mode_null(m);
178         } else {
179                 if (tarval_is_null(ta) || tarval_is_null(tb))
180                         return get_mode_null(m);
181         }
182         return tarval_bad;
183 }  /* computed_value_Carry */
184
185 /**
186  * Return the value of a Borrow.
187  * Special : a op 0
188  */
189 static tarval *computed_value_Borrow(const ir_node *n)
190 {
191         ir_node *a = get_binop_left(n);
192         ir_node *b = get_binop_right(n);
193         ir_mode *m = get_irn_mode(n);
194
195         tarval *ta = value_of(a);
196         tarval *tb = value_of(b);
197
198         if ((ta != tarval_bad) && (tb != tarval_bad)) {
199                 return tarval_cmp(ta, tb) == pn_Cmp_Lt ? get_mode_one(m) : get_mode_null(m);
200         } else if (tarval_is_null(ta)) {
201                 return get_mode_null(m);
202         }
203         return tarval_bad;
204 }  /* computed_value_Borrow */
205
206 /**
207  * Return the value of an unary Minus.
208  */
209 static tarval *computed_value_Minus(const ir_node *n)
210 {
211         ir_node *a = get_Minus_op(n);
212         tarval *ta = value_of(a);
213
214         if (ta != tarval_bad)
215                 return tarval_neg(ta);
216
217         return tarval_bad;
218 }  /* computed_value_Minus */
219
220 /**
221  * Return the value of a Mul.
222  */
223 static tarval *computed_value_Mul(const ir_node *n)
224 {
225         ir_node *a = get_Mul_left(n);
226         ir_node *b = get_Mul_right(n);
227         ir_mode *mode;
228
229         tarval *ta = value_of(a);
230         tarval *tb = value_of(b);
231
232         mode = get_irn_mode(n);
233         if (mode != get_irn_mode(a)) {
234                 /* n * n = 2n bit multiplication */
235                 ta = tarval_convert_to(ta, mode);
236                 tb = tarval_convert_to(tb, mode);
237         }
238
239         if (ta != tarval_bad && tb != tarval_bad) {
240                 return tarval_mul(ta, tb);
241         } else {
242                 /* a * 0 != 0 if a == NaN or a == Inf */
243                 if (!mode_is_float(mode)) {
244                         /* a*0 = 0 or 0*b = 0 */
245                         if (ta == get_mode_null(mode))
246                                 return ta;
247                         if (tb == get_mode_null(mode))
248                                 return tb;
249                 }
250         }
251         return tarval_bad;
252 }  /* computed_value_Mul */
253
254 /**
255  * Return the value of an Abs.
256  */
257 static tarval *computed_value_Abs(const ir_node *n)
258 {
259         ir_node *a = get_Abs_op(n);
260         tarval *ta = value_of(a);
261
262         if (ta != tarval_bad)
263                 return tarval_abs(ta);
264
265         return tarval_bad;
266 }  /* computed_value_Abs */
267
268 /**
269  * Return the value of an And.
270  * Special case: a & 0, 0 & b
271  */
272 static tarval *computed_value_And(const ir_node *n)
273 {
274         ir_node *a = get_And_left(n);
275         ir_node *b = get_And_right(n);
276
277         tarval *ta = value_of(a);
278         tarval *tb = value_of(b);
279
280         if ((ta != tarval_bad) && (tb != tarval_bad)) {
281                 return tarval_and (ta, tb);
282         } else {
283                 if (tarval_is_null(ta)) return ta;
284                 if (tarval_is_null(tb)) return tb;
285         }
286         return tarval_bad;
287 }  /* computed_value_And */
288
289 /**
290  * Return the value of an Or.
291  * Special case: a | 1...1, 1...1 | b
292  */
293 static tarval *computed_value_Or(const ir_node *n)
294 {
295         ir_node *a = get_Or_left(n);
296         ir_node *b = get_Or_right(n);
297
298         tarval *ta = value_of(a);
299         tarval *tb = value_of(b);
300
301         if ((ta != tarval_bad) && (tb != tarval_bad)) {
302                 return tarval_or (ta, tb);
303         } else {
304                 if (tarval_is_all_one(ta)) return ta;
305                 if (tarval_is_all_one(tb)) return tb;
306         }
307         return tarval_bad;
308 }  /* computed_value_Or */
309
310 /**
311  * Return the value of an Eor.
312  */
313 static tarval *computed_value_Eor(const ir_node *n)
314 {
315         ir_node *a = get_Eor_left(n);
316         ir_node *b = get_Eor_right(n);
317
318         tarval *ta, *tb;
319
320         if (a == b)
321                 return get_mode_null(get_irn_mode(n));
322
323         ta = value_of(a);
324         tb = value_of(b);
325
326         if ((ta != tarval_bad) && (tb != tarval_bad)) {
327                 return tarval_eor(ta, tb);
328         }
329         return tarval_bad;
330 }  /* computed_value_Eor */
331
332 /**
333  * Return the value of a Not.
334  */
335 static tarval *computed_value_Not(const ir_node *n)
336 {
337         ir_node *a = get_Not_op(n);
338         tarval *ta = value_of(a);
339
340         if (ta != tarval_bad)
341                 return tarval_not(ta);
342
343         return tarval_bad;
344 }  /* computed_value_Not */
345
346 /**
347  * Return the value of a Shl.
348  */
349 static tarval *computed_value_Shl(const ir_node *n)
350 {
351         ir_node *a = get_Shl_left(n);
352         ir_node *b = get_Shl_right(n);
353
354         tarval *ta = value_of(a);
355         tarval *tb = value_of(b);
356
357         if ((ta != tarval_bad) && (tb != tarval_bad)) {
358                 return tarval_shl(ta, tb);
359         }
360         return tarval_bad;
361 }  /* computed_value_Shl */
362
363 /**
364  * Return the value of a Shr.
365  */
366 static tarval *computed_value_Shr(const ir_node *n)
367 {
368         ir_node *a = get_Shr_left(n);
369         ir_node *b = get_Shr_right(n);
370
371         tarval *ta = value_of(a);
372         tarval *tb = value_of(b);
373
374         if ((ta != tarval_bad) && (tb != tarval_bad)) {
375                 return tarval_shr(ta, tb);
376         }
377         return tarval_bad;
378 }  /* computed_value_Shr */
379
380 /**
381  * Return the value of a Shrs.
382  */
383 static tarval *computed_value_Shrs(const ir_node *n)
384 {
385         ir_node *a = get_Shrs_left(n);
386         ir_node *b = get_Shrs_right(n);
387
388         tarval *ta = value_of(a);
389         tarval *tb = value_of(b);
390
391         if ((ta != tarval_bad) && (tb != tarval_bad)) {
392                 return tarval_shrs(ta, tb);
393         }
394         return tarval_bad;
395 }  /* computed_value_Shrs */
396
397 /**
398  * Return the value of a Rotl.
399  */
400 static tarval *computed_value_Rotl(const ir_node *n)
401 {
402         ir_node *a = get_Rotl_left(n);
403         ir_node *b = get_Rotl_right(n);
404
405         tarval *ta = value_of(a);
406         tarval *tb = value_of(b);
407
408         if ((ta != tarval_bad) && (tb != tarval_bad)) {
409                 return tarval_rotl(ta, tb);
410         }
411         return tarval_bad;
412 }  /* computed_value_Rotl */
413
414 /**
415  * Return the value of a Conv.
416  */
417 static tarval *computed_value_Conv(const ir_node *n)
418 {
419         ir_node *a = get_Conv_op(n);
420         tarval *ta = value_of(a);
421
422         if (ta != tarval_bad)
423                 return tarval_convert_to(ta, get_irn_mode(n));
424
425         return tarval_bad;
426 }  /* computed_value_Conv */
427
428 /**
429  * Calculate the value of a Mux: can be evaluated, if the
430  * sel and the right input are known.
431  */
432 static tarval *computed_value_Mux(const ir_node *n)
433 {
434         ir_node *sel = get_Mux_sel(n);
435         tarval *ts = value_of(sel);
436
437         if (ts == get_tarval_b_true()) {
438                 ir_node *v = get_Mux_true(n);
439                 return value_of(v);
440         }
441         else if (ts == get_tarval_b_false()) {
442                 ir_node *v = get_Mux_false(n);
443                 return value_of(v);
444         }
445         return tarval_bad;
446 }  /* computed_value_Mux */
447
448 /**
449  * Calculate the value of a Confirm: can be evaluated,
450  * if it has the form Confirm(x, '=', Const).
451  */
452 static tarval *computed_value_Confirm(const ir_node *n)
453 {
454         /*
455          * Beware: we might produce Phi(Confirm(x == true), Confirm(x == false)).
456          * Do NOT optimize them away (jump threading wants them), so wait until
457          * remove_confirm is activated.
458          */
459         if (get_opt_remove_confirm()) {
460                 if (get_Confirm_cmp(n) == pn_Cmp_Eq) {
461                         tarval *tv = value_of(get_Confirm_bound(n));
462                         if (tv != tarval_bad)
463                                 return tv;
464                 }
465         }
466         return value_of(get_Confirm_value(n));
467 }  /* computed_value_Confirm */
468
469 /**
470  * Return the value of a Proj(Cmp).
471  *
472  * This performs a first step of unreachable code elimination.
473  * Proj can not be computed, but folding a Cmp above the Proj here is
474  * not as wasteful as folding a Cmp into a Tuple of 16 Consts of which
475  * only 1 is used.
476  * There are several case where we can evaluate a Cmp node, see later.
477  */
478 static tarval *computed_value_Proj_Cmp(const ir_node *n)
479 {
480         ir_node *cmp   = get_Proj_pred(n);
481         ir_node *left  = get_Cmp_left(cmp);
482         ir_node *right = get_Cmp_right(cmp);
483         long pn_cmp    = get_Proj_proj(n);
484         ir_mode *mode  = get_irn_mode(left);
485         tarval *tv_l, *tv_r;
486
487         /*
488          * BEWARE: a == a is NOT always True for floating Point values, as
489          * NaN != NaN is defined, so we must check this here.
490          */
491         if (left == right && (!mode_is_float(mode) || pn_cmp == pn_Cmp_Lt ||  pn_cmp == pn_Cmp_Gt)) {
492                 /* This is a trick with the bits used for encoding the Cmp
493                    Proj numbers, the following statement is not the same:
494                 return new_tarval_from_long(pn_cmp == pn_Cmp_Eq, mode_b) */
495                 return new_tarval_from_long(pn_cmp & pn_Cmp_Eq, mode_b);
496         }
497         tv_l = value_of(left);
498         tv_r = value_of(right);
499
500         if ((tv_l != tarval_bad) && (tv_r != tarval_bad)) {
501                 /*
502                  * The predecessors of Cmp are target values.  We can evaluate
503                  * the Cmp.
504                  */
505                 pn_Cmp flags = tarval_cmp(tv_l, tv_r);
506                 if (flags != pn_Cmp_False) {
507                         return new_tarval_from_long (pn_cmp & flags, mode_b);
508                 }
509         } else if (mode_is_int(mode)) {
510                 /* for integer values, we can check against MIN/MAX */
511                 pn_Cmp cmp_result;
512
513                 if (tv_l == get_mode_min(mode)) {
514                         /* MIN <=/> x.  This results in true/false. */
515                         if (pn_cmp == pn_Cmp_Le)
516                                 return tarval_b_true;
517                         else if (pn_cmp == pn_Cmp_Gt)
518                                 return tarval_b_false;
519                 } else if (tv_r == get_mode_min(mode)) {
520                         /* x >=/< MIN.  This results in true/false. */
521                         if (pn_cmp == pn_Cmp_Ge)
522                                 return tarval_b_true;
523                         else if (pn_cmp == pn_Cmp_Lt)
524                                 return tarval_b_false;
525                 } else if (tv_l == get_mode_max(mode)) {
526                         /* MAX >=/< x.  This results in true/false. */
527                         if (pn_cmp == pn_Cmp_Ge)
528                                 return tarval_b_true;
529                         else if (pn_cmp == pn_Cmp_Lt)
530                                 return tarval_b_false;
531                 } else if (tv_r == get_mode_max(mode)) {
532                         /* x <=/> MAX.  This results in true/false. */
533                         if (pn_cmp == pn_Cmp_Le)
534                                 return tarval_b_true;
535                         else if (pn_cmp == pn_Cmp_Gt)
536                                 return tarval_b_false;
537                 }
538
539                 cmp_result = vrp_cmp(left, right);
540                 if (cmp_result != pn_Cmp_False) {
541                         if (cmp_result == pn_Cmp_Lg) {
542                                 if (pn_cmp == pn_Cmp_Eq) {
543                                         return tarval_b_false;
544                                 } else if (pn_cmp == pn_Cmp_Lg) {
545                                         return tarval_b_true;
546                                 }
547                         } else {
548                                 return new_tarval_from_long(cmp_result & pn_cmp, mode_b);
549                         }
550                 }
551         } else if (mode_is_reference(mode)) {
552                 /* pointer compare */
553                 ir_node *s_l = skip_Proj(left);
554                 ir_node *s_r = skip_Proj(right);
555
556                 if ((is_Alloc(s_l) && tarval_is_null(tv_r)) ||
557                         (tarval_is_null(tv_l) && is_Alloc(s_r))) {
558                         /*
559                          * The predecessors are Allocs and (void*)(0) constants. In Firm Allocs never
560                          * return NULL, they raise an exception. Therefore we can predict
561                          * the Cmp result.
562                          */
563                         return new_tarval_from_long(pn_cmp & pn_Cmp_Lg, mode_b);
564                 }
565         }
566         return computed_value_Cmp_Confirm(cmp, left, right, pn_cmp);
567 }  /* computed_value_Proj_Cmp */
568
569 /**
570  * Return the value of a floating point Quot.
571  */
572 static tarval *do_computed_value_Quot(const ir_node *a, const ir_node *b)
573 {
574         tarval  *ta = value_of(a);
575         tarval  *tb = value_of(b);
576
577         /* cannot optimize 0 / b = 0 because of NaN */
578         if (ta != tarval_bad && tb != tarval_bad)
579                 return tarval_quo(ta, tb);
580         return tarval_bad;
581 }  /* do_computed_value_Quot */
582
583 /**
584  * Calculate the value of an integer Div of two nodes.
585  * Special case: 0 / b
586  */
587 static tarval *do_computed_value_Div(const ir_node *a, const ir_node *b)
588 {
589         tarval        *ta = value_of(a);
590         tarval        *tb;
591         const ir_node *dummy;
592
593         /* Compute c1 / c2 or 0 / a, a != 0 */
594         if (tarval_is_null(ta) && value_not_zero(b, &dummy))
595                 return ta;  /* 0 / b == 0 */
596         tb = value_of(b);
597         if (ta != tarval_bad && tb != tarval_bad)
598                 return tarval_div(ta, tb);
599         return tarval_bad;
600 }  /* do_computed_value_Div */
601
602 /**
603  * Calculate the value of an integer Mod of two nodes.
604  * Special case: a % 1
605  */
606 static tarval *do_computed_value_Mod(const ir_node *a, const ir_node *b)
607 {
608         tarval *ta = value_of(a);
609         tarval *tb = value_of(b);
610
611         /* Compute a % 1 or c1 % c2 */
612         if (tarval_is_one(tb))
613                 return get_mode_null(get_irn_mode(a));
614         if (ta != tarval_bad && tb != tarval_bad)
615                 return tarval_mod(ta, tb);
616         return tarval_bad;
617 }  /* do_computed_value_Mod */
618
619 /**
620  * Return the value of a Proj(DivMod).
621  */
622 static tarval *computed_value_Proj_DivMod(const ir_node *n)
623 {
624         long proj_nr = get_Proj_proj(n);
625
626         /* compute either the Div or the Mod part */
627         if (proj_nr == pn_DivMod_res_div) {
628                 const ir_node *a = get_Proj_pred(n);
629                 return do_computed_value_Div(get_DivMod_left(a), get_DivMod_right(a));
630         } else if (proj_nr == pn_DivMod_res_mod) {
631                 const ir_node *a = get_Proj_pred(n);
632                 return do_computed_value_Mod(get_DivMod_left(a), get_DivMod_right(a));
633         }
634         return tarval_bad;
635 }  /* computed_value_Proj_DivMod */
636
637 /**
638  * Return the value of a Proj(Div).
639  */
640 static tarval *computed_value_Proj_Div(const ir_node *n)
641 {
642         long proj_nr = get_Proj_proj(n);
643
644         if (proj_nr == pn_Div_res) {
645                 const ir_node *a = get_Proj_pred(n);
646                 return do_computed_value_Div(get_Div_left(a), get_Div_right(a));
647         }
648         return tarval_bad;
649 }  /* computed_value_Proj_Div */
650
651 /**
652  * Return the value of a Proj(Mod).
653  */
654 static tarval *computed_value_Proj_Mod(const ir_node *n)
655 {
656         long proj_nr = get_Proj_proj(n);
657
658         if (proj_nr == pn_Mod_res) {
659                 const ir_node *a = get_Proj_pred(n);
660                 return do_computed_value_Mod(get_Mod_left(a), get_Mod_right(a));
661         }
662         return tarval_bad;
663 }  /* computed_value_Proj_Mod */
664
665 /**
666  * Return the value of a Proj(Quot).
667  */
668 static tarval *computed_value_Proj_Quot(const ir_node *n)
669 {
670         long proj_nr = get_Proj_proj(n);
671
672         if (proj_nr == pn_Quot_res) {
673                 const ir_node *a = get_Proj_pred(n);
674                 return do_computed_value_Quot(get_Quot_left(a), get_Quot_right(a));
675         }
676         return tarval_bad;
677 }  /* computed_value_Proj_Quot */
678
679 /**
680  * Return the value of a Proj.
681  */
682 static tarval *computed_value_Proj(const ir_node *proj)
683 {
684         ir_node *n = get_Proj_pred(proj);
685
686         if (n->op->ops.computed_value_Proj != NULL)
687                 return n->op->ops.computed_value_Proj(proj);
688         return tarval_bad;
689 }  /* computed_value_Proj */
690
691 /**
692  * If the parameter n can be computed, return its value, else tarval_bad.
693  * Performs constant folding.
694  *
695  * @param n  The node this should be evaluated
696  */
697 tarval *computed_value(const ir_node *n)
698 {
699         vrp_attr *vrp = vrp_get_info(n);
700         if (vrp && vrp->valid && tarval_cmp(vrp->bits_set, vrp->bits_not_set) == pn_Cmp_Eq) {
701                 return vrp->bits_set;
702         }
703         if (n->op->ops.computed_value)
704                 return n->op->ops.computed_value(n);
705         return tarval_bad;
706 }  /* computed_value */
707
708 /**
709  * Set the default computed_value evaluator in an ir_op_ops.
710  *
711  * @param code   the opcode for the default operation
712  * @param ops    the operations initialized
713  *
714  * @return
715  *    The operations.
716  */
717 static ir_op_ops *firm_set_default_computed_value(ir_opcode code, ir_op_ops *ops)
718 {
719 #define CASE(a)                                        \
720         case iro_##a:                                      \
721                 ops->computed_value      = computed_value_##a; \
722                 break
723 #define CASE_PROJ(a)                                        \
724         case iro_##a:                                           \
725                 ops->computed_value_Proj = computed_value_Proj_##a; \
726                 break
727
728         switch (code) {
729         CASE(Const);
730         CASE(SymConst);
731         CASE(Add);
732         CASE(Sub);
733         CASE(Carry);
734         CASE(Borrow);
735         CASE(Minus);
736         CASE(Mul);
737         CASE(Abs);
738         CASE(And);
739         CASE(Or);
740         CASE(Eor);
741         CASE(Not);
742         CASE(Shl);
743         CASE(Shr);
744         CASE(Shrs);
745         CASE(Rotl);
746         CASE(Conv);
747         CASE(Mux);
748         CASE(Confirm);
749         CASE_PROJ(Cmp);
750         CASE_PROJ(DivMod);
751         CASE_PROJ(Div);
752         CASE_PROJ(Mod);
753         CASE_PROJ(Quot);
754         CASE(Proj);
755         default:
756                 /* leave NULL */
757                 break;
758         }
759
760         return ops;
761 #undef CASE_PROJ
762 #undef CASE
763 }  /* firm_set_default_computed_value */
764
765 /**
766  * Returns a equivalent block for another block.
767  * If the block has only one predecessor, this is
768  * the equivalent one. If the only predecessor of a block is
769  * the block itself, this is a dead block.
770  *
771  * If both predecessors of a block are the branches of a binary
772  * Cond, the equivalent block is Cond's block.
773  *
774  * If all predecessors of a block are bad or lies in a dead
775  * block, the current block is dead as well.
776  *
777  * Note, that blocks are NEVER turned into Bad's, instead
778  * the dead_block flag is set. So, never test for is_Bad(block),
779  * always use is_dead_Block(block).
780  */
781 static ir_node *equivalent_node_Block(ir_node *n)
782 {
783         ir_node *oldn = n;
784         int     n_preds;
785
786         /* don't optimize dead or labeled blocks */
787         if (is_Block_dead(n) || has_Block_entity(n))
788                 return n;
789
790         n_preds = get_Block_n_cfgpreds(n);
791
792         /* The Block constructor does not call optimize, but mature_immBlock()
793            calls the optimization. */
794         assert(get_Block_matured(n));
795
796         /* Straightening: a single entry Block following a single exit Block
797            can be merged, if it is not the Start block. */
798         /* !!! Beware, all Phi-nodes of n must have been optimized away.
799            This should be true, as the block is matured before optimize is called.
800            But what about Phi-cycles with the Phi0/Id that could not be resolved?
801            Remaining Phi nodes are just Ids. */
802         if (n_preds == 1) {
803                 ir_node *pred = skip_Proj(get_Block_cfgpred(n, 0));
804
805                 if (is_Jmp(pred)) {
806                         ir_node *predblock = get_nodes_block(pred);
807                         if (predblock == oldn) {
808                                 /* Jmp jumps into the block it is in -- deal self cycle. */
809                                 n = set_Block_dead(n);
810                                 DBG_OPT_DEAD_BLOCK(oldn, n);
811                         } else if (get_opt_control_flow_straightening()) {
812                                 n = predblock;
813                                 DBG_OPT_STG(oldn, n);
814                         }
815                 } else if (is_Cond(pred)) {
816                         ir_node *predblock = get_nodes_block(pred);
817                         if (predblock == oldn) {
818                                 /* Jmp jumps into the block it is in -- deal self cycle. */
819                                 n = set_Block_dead(n);
820                                 DBG_OPT_DEAD_BLOCK(oldn, n);
821                         }
822                 }
823         } else if ((n_preds == 2) &&
824                    (get_opt_control_flow_weak_simplification())) {
825                 /* Test whether Cond jumps twice to this block
826                  * The more general case which more than 2 predecessors is handles
827                  * in optimize_cf(), we handle only this special case for speed here.
828                  */
829                 ir_node *a = get_Block_cfgpred(n, 0);
830                 ir_node *b = get_Block_cfgpred(n, 1);
831
832                 if (is_Proj(a) && is_Proj(b)) {
833                         ir_node *cond = get_Proj_pred(a);
834
835                     if (cond == get_Proj_pred(b) && is_Cond(cond) &&
836                         get_irn_mode(get_Cond_selector(cond)) == mode_b) {
837                                 /* Also a single entry Block following a single exit Block.  Phis have
838                                    twice the same operand and will be optimized away. */
839                                 n = get_nodes_block(cond);
840                                 DBG_OPT_IFSIM1(oldn, a, b, n);
841                         }
842                 }
843         } else if (get_opt_unreachable_code() &&
844                    (n != get_irg_start_block(current_ir_graph)) &&
845                    (n != get_irg_end_block(current_ir_graph))    ) {
846                 int i;
847
848                 /* If all inputs are dead, this block is dead too, except if it is
849                    the start or end block.  This is one step of unreachable code
850                    elimination */
851                 for (i = get_Block_n_cfgpreds(n) - 1; i >= 0; --i) {
852                         ir_node *pred = get_Block_cfgpred(n, i);
853                         ir_node *pred_blk;
854
855                         if (is_Bad(pred)) continue;
856                         pred_blk = get_nodes_block(skip_Proj(pred));
857
858                         if (is_Block_dead(pred_blk)) continue;
859
860                         if (pred_blk != n) {
861                                 /* really found a living input */
862                                 break;
863                         }
864                 }
865                 if (i < 0) {
866                         n = set_Block_dead(n);
867                         DBG_OPT_DEAD_BLOCK(oldn, n);
868                 }
869         }
870
871         return n;
872 }  /* equivalent_node_Block */
873
874 /**
875  * Returns a equivalent node for a Jmp, a Bad :-)
876  * Of course this only happens if the Block of the Jmp is dead.
877  */
878 static ir_node *equivalent_node_Jmp(ir_node *n)
879 {
880         ir_node *oldn = n;
881
882         /* unreachable code elimination */
883         if (is_Block_dead(get_nodes_block(n))) {
884                 n = get_irg_bad(current_ir_graph);
885                 DBG_OPT_DEAD_BLOCK(oldn, n);
886         }
887         return n;
888 }  /* equivalent_node_Jmp */
889
890 /** Raise is handled in the same way as Jmp. */
891 #define equivalent_node_Raise   equivalent_node_Jmp
892
893
894 /* We do not evaluate Cond here as we replace it by a new node, a Jmp.
895    See transform_node_Proj_Cond(). */
896
897 /**
898  * Optimize operations that are commutative and have neutral 0,
899  * so a op 0 = 0 op a = a.
900  */
901 static ir_node *equivalent_node_neutral_zero(ir_node *n)
902 {
903         ir_node *oldn = n;
904
905         ir_node *a = get_binop_left(n);
906         ir_node *b = get_binop_right(n);
907
908         tarval *tv;
909         ir_node *on;
910
911         /* After running compute_node there is only one constant predecessor.
912            Find this predecessors value and remember the other node: */
913         if ((tv = value_of(a)) != tarval_bad) {
914                 on = b;
915         } else if ((tv = value_of(b)) != tarval_bad) {
916                 on = a;
917         } else
918                 return n;
919
920         /* If this predecessors constant value is zero, the operation is
921          * unnecessary. Remove it.
922          *
923          * Beware: If n is a Add, the mode of on and n might be different
924          * which happens in this rare construction: NULL + 3.
925          * Then, a Conv would be needed which we cannot include here.
926          */
927         if (tarval_is_null(tv) && get_irn_mode(on) == get_irn_mode(n)) {
928                 n = on;
929
930                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
931         }
932
933         return n;
934 }  /* equivalent_node_neutral_zero */
935
936 /**
937  * Eor is commutative and has neutral 0.
938  */
939 static ir_node *equivalent_node_Eor(ir_node *n)
940 {
941         ir_node *oldn = n;
942         ir_node *a;
943         ir_node *b;
944
945         n = equivalent_node_neutral_zero(n);
946         if (n != oldn) return n;
947
948         a = get_Eor_left(n);
949         b = get_Eor_right(n);
950
951         if (is_Eor(a)) {
952                 ir_node *aa = get_Eor_left(a);
953                 ir_node *ab = get_Eor_right(a);
954
955                 if (aa == b) {
956                         /* (a ^ b) ^ a -> b */
957                         n = ab;
958                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_EOR_A_B_A);
959                         return n;
960                 } else if (ab == b) {
961                         /* (a ^ b) ^ b -> a */
962                         n = aa;
963                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_EOR_A_B_A);
964                         return n;
965                 }
966         }
967         if (is_Eor(b)) {
968                 ir_node *ba = get_Eor_left(b);
969                 ir_node *bb = get_Eor_right(b);
970
971                 if (ba == a) {
972                         /* a ^ (a ^ b) -> b */
973                         n = bb;
974                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_EOR_A_B_A);
975                         return n;
976                 } else if (bb == a) {
977                         /* a ^ (b ^ a) -> b */
978                         n = ba;
979                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_EOR_A_B_A);
980                         return n;
981                 }
982         }
983         return n;
984 }
985
986 /*
987  * Optimize a - 0 and (a - x) + x (for modes with wrap-around).
988  *
989  * The second one looks strange, but this construct
990  * is used heavily in the LCC sources :-).
991  *
992  * Beware: The Mode of an Add may be different than the mode of its
993  * predecessors, so we could not return a predecessors in all cases.
994  */
995 static ir_node *equivalent_node_Add(ir_node *n)
996 {
997         ir_node *oldn = n;
998         ir_node *left, *right;
999         ir_mode *mode = get_irn_mode(n);
1000
1001         n = equivalent_node_neutral_zero(n);
1002         if (n != oldn)
1003                 return n;
1004
1005         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
1006         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
1007                 return n;
1008
1009         left  = get_Add_left(n);
1010         right = get_Add_right(n);
1011
1012         if (is_Sub(left)) {
1013                 if (get_Sub_right(left) == right) {
1014                         /* (a - x) + x */
1015
1016                         n = get_Sub_left(left);
1017                         if (mode == get_irn_mode(n)) {
1018                                 DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
1019                                 return n;
1020                         }
1021                 }
1022         }
1023         if (is_Sub(right)) {
1024                 if (get_Sub_right(right) == left) {
1025                         /* x + (a - x) */
1026
1027                         n = get_Sub_left(right);
1028                         if (mode == get_irn_mode(n)) {
1029                                 DBG_OPT_ALGSIM1(oldn, left, right, n, FS_OPT_ADD_SUB);
1030                                 return n;
1031                         }
1032                 }
1033         }
1034         return n;
1035 }  /* equivalent_node_Add */
1036
1037 /**
1038  * optimize operations that are not commutative but have neutral 0 on left,
1039  * so a op 0 = a.
1040  */
1041 static ir_node *equivalent_node_left_zero(ir_node *n)
1042 {
1043         ir_node *oldn = n;
1044
1045         ir_node *a  = get_binop_left(n);
1046         ir_node *b  = get_binop_right(n);
1047         tarval  *tb = value_of(b);
1048
1049         if (tarval_is_null(tb)) {
1050                 n = a;
1051
1052                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
1053         }
1054         return n;
1055 }  /* equivalent_node_left_zero */
1056
1057 #define equivalent_node_Shl   equivalent_node_left_zero
1058 #define equivalent_node_Shr   equivalent_node_left_zero
1059 #define equivalent_node_Shrs  equivalent_node_left_zero
1060 #define equivalent_node_Rotl  equivalent_node_left_zero
1061
1062 /**
1063  * Optimize a - 0 and (a + x) - x (for modes with wrap-around).
1064  *
1065  * The second one looks strange, but this construct
1066  * is used heavily in the LCC sources :-).
1067  *
1068  * Beware: The Mode of a Sub may be different than the mode of its
1069  * predecessors, so we could not return a predecessors in all cases.
1070  */
1071 static ir_node *equivalent_node_Sub(ir_node *n)
1072 {
1073         ir_node *oldn = n;
1074         ir_node *b;
1075         ir_mode *mode = get_irn_mode(n);
1076         tarval  *tb;
1077
1078         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
1079         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
1080                 return n;
1081
1082         b  = get_Sub_right(n);
1083         tb = value_of(b);
1084
1085         /* Beware: modes might be different */
1086         if (tarval_is_null(tb)) {
1087                 ir_node *a = get_Sub_left(n);
1088                 if (mode == get_irn_mode(a)) {
1089                         n = a;
1090
1091                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_0);
1092                 }
1093         }
1094         return n;
1095 }  /* equivalent_node_Sub */
1096
1097
1098 /**
1099  * Optimize an "self-inverse unary op", ie op(op(n)) = n.
1100  *
1101  * @todo
1102  *   -(-a) == a, but might overflow two times.
1103  *   We handle it anyway here but the better way would be a
1104  *   flag. This would be needed for Pascal for instance.
1105  */
1106 static ir_node *equivalent_node_idempotent_unop(ir_node *n)
1107 {
1108         ir_node *oldn = n;
1109         ir_node *pred = get_unop_op(n);
1110
1111         /* optimize symmetric unop */
1112         if (get_irn_op(pred) == get_irn_op(n)) {
1113                 n = get_unop_op(pred);
1114                 DBG_OPT_ALGSIM2(oldn, pred, n, FS_OPT_IDEM_UNARY);
1115         }
1116         return n;
1117 }  /* equivalent_node_idempotent_unop */
1118
1119 /** Optimize Not(Not(x)) == x. */
1120 #define equivalent_node_Not    equivalent_node_idempotent_unop
1121
1122 /** -(-x) == x       ??? Is this possible or can --x raise an
1123                        out of bounds exception if min =! max? */
1124 #define equivalent_node_Minus  equivalent_node_idempotent_unop
1125
1126 /**
1127  * Optimize a * 1 = 1 * a = a.
1128  */
1129 static ir_node *equivalent_node_Mul(ir_node *n)
1130 {
1131         ir_node *oldn = n;
1132         ir_node *a = get_Mul_left(n);
1133
1134         /* we can handle here only the n * n = n bit cases */
1135         if (get_irn_mode(n) == get_irn_mode(a)) {
1136                 ir_node *b = get_Mul_right(n);
1137                 tarval  *tv;
1138
1139                 /*
1140                  * Mul is commutative and has again an other neutral element.
1141                  * Constants are place right, so check this case first.
1142                  */
1143                 tv = value_of(b);
1144                 if (tarval_is_one(tv)) {
1145                         n = a;
1146                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
1147                 } else {
1148                         tv = value_of(a);
1149                         if (tarval_is_one(tv)) {
1150                                 n = b;
1151                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
1152                         }
1153                 }
1154         }
1155         return n;
1156 }  /* equivalent_node_Mul */
1157
1158 /**
1159  * Use algebraic simplification a | a = a | 0 = 0 | a = a.
1160  */
1161 static ir_node *equivalent_node_Or(ir_node *n)
1162 {
1163         ir_node *oldn = n;
1164
1165         ir_node *a = get_Or_left(n);
1166         ir_node *b = get_Or_right(n);
1167         tarval *tv;
1168
1169         if (a == b) {
1170                 n = a;    /* Or has it's own neutral element */
1171                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_OR);
1172                 return n;
1173         }
1174         /* constants are cormalized to right, check this site first */
1175         tv = value_of(b);
1176         if (tarval_is_null(tv)) {
1177                 n = a;
1178                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1179                 return n;
1180         }
1181         tv = value_of(a);
1182         if (tarval_is_null(tv)) {
1183                 n = b;
1184                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_OR);
1185                 return n;
1186         }
1187
1188         return n;
1189 }  /* equivalent_node_Or */
1190
1191 /**
1192  * Optimize a & 0b1...1 = 0b1...1 & a = a & a = (a|X) & a = a.
1193  */
1194 static ir_node *equivalent_node_And(ir_node *n)
1195 {
1196         ir_node *oldn = n;
1197
1198         ir_node *a = get_And_left(n);
1199         ir_node *b = get_And_right(n);
1200         tarval *tv;
1201
1202         if (a == b) {
1203                 n = a;    /* And has it's own neutral element */
1204                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_AND);
1205                 return n;
1206         }
1207         /* constants are normalized to right, check this site first */
1208         tv = value_of(b);
1209         if (tarval_is_all_one(tv)) {
1210                 n = a;
1211                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1212                 return n;
1213         }
1214         if (tv != get_tarval_bad()) {
1215                 ir_mode *mode = get_irn_mode(n);
1216                 if (!mode_is_signed(mode) && is_Conv(a)) {
1217                         ir_node *convop     = get_Conv_op(a);
1218                         ir_mode *convopmode = get_irn_mode(convop);
1219                         if (!mode_is_signed(convopmode)) {
1220                                 if (tarval_is_all_one(tarval_convert_to(tv, convopmode))) {
1221                                         /* Conv(X) & all_one(mode(X)) = Conv(X) */
1222                                         n = a;
1223                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1224                                         return n;
1225                                 }
1226                         }
1227                 }
1228         }
1229         tv = value_of(a);
1230         if (tarval_is_all_one(tv)) {
1231                 n = b;
1232                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1233                 return n;
1234         }
1235         if (is_Or(a)) {
1236                 if (b == get_Or_left(a) || b == get_Or_right(a)) {
1237                         /* (a|X) & a */
1238                         n = b;
1239                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1240                         return n;
1241                 }
1242         }
1243         if (is_Or(b)) {
1244                 if (a == get_Or_left(b) || a == get_Or_right(b)) {
1245                         /* a & (a|X) */
1246                         n = a;
1247                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_AND);
1248                         return n;
1249                 }
1250         }
1251         return n;
1252 }  /* equivalent_node_And */
1253
1254 /**
1255  * Try to remove useless Conv's:
1256  */
1257 static ir_node *equivalent_node_Conv(ir_node *n)
1258 {
1259         ir_node *oldn = n;
1260         ir_node *a = get_Conv_op(n);
1261
1262         ir_mode *n_mode = get_irn_mode(n);
1263         ir_mode *a_mode = get_irn_mode(a);
1264
1265 restart:
1266         if (n_mode == a_mode) { /* No Conv necessary */
1267                 if (get_Conv_strict(n)) {
1268                         ir_node *p = a;
1269
1270                         /* neither Minus nor Abs nor Confirm change the precision,
1271                            so we can "look-through" */
1272                         for (;;) {
1273                                 if (is_Minus(p)) {
1274                                         p = get_Minus_op(p);
1275                                 } else if (is_Abs(p)) {
1276                                         p = get_Abs_op(p);
1277                                 } else if (is_Confirm(p)) {
1278                                         p = get_Confirm_value(p);
1279                                 } else {
1280                                         /* stop here */
1281                                         break;
1282                                 }
1283                         }
1284                         if (is_Conv(p) && get_Conv_strict(p)) {
1285                                 /* we known already, that a_mode == n_mode, and neither
1286                                    Abs nor Minus change the mode, so the second Conv
1287                                    can be kicked */
1288                                 assert(get_irn_mode(p) == n_mode);
1289                                 n = a;
1290                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1291                                 return n;
1292                         }
1293                         if (is_Proj(p)) {
1294                                 ir_node *pred = get_Proj_pred(p);
1295                                 if (is_Load(pred)) {
1296                                         /* Loads always return with the exact precision of n_mode */
1297                                         assert(get_Load_mode(pred) == n_mode);
1298                                         n = a;
1299                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1300                                         return n;
1301                                 }
1302                                 if (is_Proj(pred) && get_Proj_proj(pred) == pn_Start_T_args) {
1303                                         pred = get_Proj_pred(pred);
1304                                         if (is_Start(pred)) {
1305                                                 /* Arguments always return with the exact precision,
1306                                                    as strictConv's are place before Call -- if the
1307                                                    caller was compiled with the same setting.
1308                                                    Otherwise, the semantics is probably still right. */
1309                                                 assert(get_irn_mode(p) == n_mode);
1310                                                 n = a;
1311                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1312                                                 return n;
1313                                         }
1314                                 }
1315                         }
1316                         if (is_Conv(a)) {
1317                                 /* special case: the immediate predecessor is also a Conv */
1318                                 if (! get_Conv_strict(a)) {
1319                                         /* first one is not strict, kick it */
1320                                         a = get_Conv_op(a);
1321                                         a_mode = get_irn_mode(a);
1322                                         set_Conv_op(n, a);
1323                                         goto restart;
1324                                 }
1325                                 /* else both are strict conv, second is superfluous */
1326                                 n = a;
1327                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1328                                 return n;
1329                         }
1330                 } else {
1331                         n = a;
1332                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CONV);
1333                         return n;
1334                 }
1335         } else if (is_Conv(a)) { /* Conv(Conv(b)) */
1336                 ir_node *b      = get_Conv_op(a);
1337                 ir_mode *b_mode = get_irn_mode(b);
1338
1339                 if (get_Conv_strict(n) && get_Conv_strict(a)) {
1340                         /* both are strict conv */
1341                         if (smaller_mode(a_mode, n_mode)) {
1342                                 /* both are strict, but the first is smaller, so
1343                                    the second cannot remove more precision, remove the
1344                                    strict bit */
1345                                 set_Conv_strict(n, 0);
1346                         }
1347                 }
1348                 if (n_mode == b_mode) {
1349                         if (! get_Conv_strict(n) && ! get_Conv_strict(a)) {
1350                                 if (n_mode == mode_b) {
1351                                         n = b; /* Convb(Conv*(xxxb(...))) == xxxb(...) */
1352                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1353                                         return n;
1354                                 } else if (get_mode_arithmetic(n_mode) == get_mode_arithmetic(a_mode)) {
1355                                         if (values_in_mode(b_mode, a_mode)) {
1356                                                 n = b;        /* ConvS(ConvL(xxxS(...))) == xxxS(...) */
1357                                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1358                                                 return n;
1359                                         }
1360                                 }
1361                         }
1362                         if (mode_is_int(n_mode) && get_mode_arithmetic(a_mode) == irma_ieee754) {
1363                                 /* ConvI(ConvF(I)) -> I, iff float mantissa >= int mode */
1364                                 unsigned int_mantissa   = get_mode_size_bits(n_mode) - (mode_is_signed(n_mode) ? 1 : 0);
1365                                 unsigned float_mantissa = tarval_ieee754_get_mantissa_size(a_mode);
1366
1367                                 if (float_mantissa >= int_mantissa) {
1368                                         n = b;
1369                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1370                                         return n;
1371                                 }
1372                         }
1373                         if (is_Conv(b)) {
1374                                 if (smaller_mode(b_mode, a_mode)) {
1375                                         if (get_Conv_strict(n))
1376                                                 set_Conv_strict(b, 1);
1377                                         n = b; /* ConvA(ConvB(ConvA(...))) == ConvA(...) */
1378                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
1379                                         return n;
1380                                 }
1381                         }
1382                 }
1383         }
1384         return n;
1385 }  /* equivalent_node_Conv */
1386
1387 /**
1388  * A Cast may be removed if the type of the previous node
1389  * is already the type of the Cast.
1390  */
1391 static ir_node *equivalent_node_Cast(ir_node *n)
1392 {
1393         ir_node *oldn = n;
1394         ir_node *pred = get_Cast_op(n);
1395
1396         if (get_irn_type(pred) == get_Cast_type(n)) {
1397                 n = pred;
1398                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CAST);
1399         }
1400         return n;
1401 }  /* equivalent_node_Cast */
1402
1403 /**
1404  * - fold Phi-nodes, iff they have only one predecessor except
1405  *   themselves.
1406  */
1407 static ir_node *equivalent_node_Phi(ir_node *n)
1408 {
1409         int i, n_preds;
1410
1411         ir_node *oldn = n;
1412         ir_node *block;
1413         ir_node *first_val = NULL; /* to shutup gcc */
1414
1415         if (!get_opt_normalize()) return n;
1416
1417         n_preds = get_Phi_n_preds(n);
1418
1419         block = get_nodes_block(n);
1420         if (is_Block_dead(block))                  /* Control dead */
1421                 return get_irg_bad(current_ir_graph);
1422
1423         if (n_preds == 0) return n;           /* Phi of dead Region without predecessors. */
1424
1425         /* Find first non-self-referencing input */
1426         for (i = 0; i < n_preds; ++i) {
1427                 first_val = get_Phi_pred(n, i);
1428                 if (   (first_val != n)                            /* not self pointer */
1429 #if 0
1430                     /* BEWARE: when the if is changed to 1, Phi's will ignore it's Bad
1431                      * predecessors. Then, Phi nodes in dead code might be removed, causing
1432                      * nodes pointing to themself (Add's for instance).
1433                      * This is really bad and causes endless recursions in several
1434                      * code pathes, so we do NOT optimize such a code.
1435                      * This is not that bad as it sounds, optimize_cf() removes bad control flow
1436                      * (and bad Phi predecessors), so live code is optimized later.
1437                      */
1438                         && (! is_Bad(get_Block_cfgpred(block, i)))
1439 #endif
1440                    ) {        /* value not dead */
1441                         break;          /* then found first value. */
1442                 }
1443         }
1444
1445         if (i >= n_preds) {
1446                 /* A totally Bad or self-referencing Phi (we didn't break the above loop) */
1447                 return get_irg_bad(current_ir_graph);
1448         }
1449
1450         /* search for rest of inputs, determine if any of these
1451         are non-self-referencing */
1452         while (++i < n_preds) {
1453                 ir_node *scnd_val = get_Phi_pred(n, i);
1454                 if (   (scnd_val != n)
1455                     && (scnd_val != first_val)
1456 #if 0
1457                     /* see above */
1458                     && (! is_Bad(get_Block_cfgpred(block, i)))
1459 #endif
1460                         ) {
1461                         break;
1462                 }
1463         }
1464
1465         if (i >= n_preds) {
1466                 /* Fold, if no multiple distinct non-self-referencing inputs */
1467                 n = first_val;
1468                 DBG_OPT_PHI(oldn, n);
1469         }
1470         return n;
1471 }  /* equivalent_node_Phi */
1472
1473 /**
1474  * Several optimizations:
1475  * - fold Sync-nodes, iff they have only one predecessor except
1476  *   themselves.
1477  */
1478 static ir_node *equivalent_node_Sync(ir_node *n)
1479 {
1480         int arity = get_Sync_n_preds(n);
1481         int i;
1482
1483         for (i = 0; i < arity;) {
1484                 ir_node *pred = get_Sync_pred(n, i);
1485                 int      j;
1486
1487                 /* Remove Bad predecessors */
1488                 if (is_Bad(pred)) {
1489                         del_Sync_n(n, i);
1490                         --arity;
1491                         continue;
1492                 }
1493
1494                 /* Remove duplicate predecessors */
1495                 for (j = 0;; ++j) {
1496                         if (j >= i) {
1497                                 ++i;
1498                                 break;
1499                         }
1500                         if (get_Sync_pred(n, j) == pred) {
1501                                 del_Sync_n(n, i);
1502                                 --arity;
1503                                 break;
1504                         }
1505                 }
1506         }
1507
1508         if (arity == 0) return get_irg_bad(current_ir_graph);
1509         if (arity == 1) return get_Sync_pred(n, 0);
1510         return n;
1511 }  /* equivalent_node_Sync */
1512
1513 /**
1514  * Optimize Proj(Tuple).
1515  */
1516 static ir_node *equivalent_node_Proj_Tuple(ir_node *proj)
1517 {
1518         ir_node *oldn  = proj;
1519         ir_node *tuple = get_Proj_pred(proj);
1520
1521         /* Remove the Tuple/Proj combination. */
1522         proj = get_Tuple_pred(tuple, get_Proj_proj(proj));
1523         DBG_OPT_TUPLE(oldn, tuple, proj);
1524
1525         return proj;
1526 }  /* equivalent_node_Proj_Tuple */
1527
1528 /**
1529  * Optimize a / 1 = a.
1530  */
1531 static ir_node *equivalent_node_Proj_Div(ir_node *proj)
1532 {
1533         ir_node *oldn = proj;
1534         ir_node *div  = get_Proj_pred(proj);
1535         ir_node *b    = get_Div_right(div);
1536         tarval  *tb   = value_of(b);
1537
1538         /* Div is not commutative. */
1539         if (tarval_is_one(tb)) { /* div(x, 1) == x */
1540                 switch (get_Proj_proj(proj)) {
1541                 case pn_Div_M:
1542                         proj = get_Div_mem(div);
1543                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1544                         return proj;
1545
1546                 case pn_Div_res:
1547                         proj = get_Div_left(div);
1548                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1549                         return proj;
1550
1551                 default:
1552                         /* we cannot replace the exception Proj's here, this is done in
1553                            transform_node_Proj_Div() */
1554                         return proj;
1555                 }
1556         }
1557         return proj;
1558 }  /* equivalent_node_Proj_Div */
1559
1560 /**
1561  * Optimize a / 1.0 = a.
1562  */
1563 static ir_node *equivalent_node_Proj_Quot(ir_node *proj)
1564 {
1565         ir_node *oldn = proj;
1566         ir_node *quot = get_Proj_pred(proj);
1567         ir_node *b    = get_Quot_right(quot);
1568         tarval  *tb   = value_of(b);
1569
1570         /* Div is not commutative. */
1571         if (tarval_is_one(tb)) { /* Quot(x, 1) == x */
1572                 switch (get_Proj_proj(proj)) {
1573                 case pn_Quot_M:
1574                         proj = get_Quot_mem(quot);
1575                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1576                         return proj;
1577
1578                 case pn_Quot_res:
1579                         proj = get_Quot_left(quot);
1580                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1581                         return proj;
1582
1583                 default:
1584                         /* we cannot replace the exception Proj's here, this is done in
1585                            transform_node_Proj_Quot() */
1586                         return proj;
1587                 }
1588         }
1589         return proj;
1590 }  /* equivalent_node_Proj_Quot */
1591
1592 /**
1593  * Optimize a / 1 = a.
1594  */
1595 static ir_node *equivalent_node_Proj_DivMod(ir_node *proj)
1596 {
1597         ir_node *oldn   = proj;
1598         ir_node *divmod = get_Proj_pred(proj);
1599         ir_node *b      = get_DivMod_right(divmod);
1600         tarval  *tb     = value_of(b);
1601
1602         /* Div is not commutative. */
1603         if (tarval_is_one(tb)) { /* div(x, 1) == x */
1604                 switch (get_Proj_proj(proj)) {
1605                 case pn_DivMod_M:
1606                         proj = get_DivMod_mem(divmod);
1607                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1608                         return proj;
1609
1610                 case pn_DivMod_res_div:
1611                         proj = get_DivMod_left(divmod);
1612                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NEUTRAL_1);
1613                         return proj;
1614
1615                 default:
1616                         /* we cannot replace the exception Proj's here, this is done in
1617                            transform_node_Proj_DivMod().
1618                            Note further that the pn_DivMod_res_div case is handled in
1619                            computed_value_Proj(). */
1620                         return proj;
1621                 }
1622         }
1623         return proj;
1624 }  /* equivalent_node_Proj_DivMod */
1625
1626 /**
1627  * Optimize CopyB(mem, x, x) into a Nop.
1628  */
1629 static ir_node *equivalent_node_Proj_CopyB(ir_node *proj)
1630 {
1631         ir_node *oldn  = proj;
1632         ir_node *copyb = get_Proj_pred(proj);
1633         ir_node *a     = get_CopyB_dst(copyb);
1634         ir_node *b     = get_CopyB_src(copyb);
1635
1636         if (a == b) {
1637                 /* Turn CopyB into a tuple (mem, jmp, bad, bad) */
1638                 switch (get_Proj_proj(proj)) {
1639                 case pn_CopyB_M_regular:
1640                         proj = get_CopyB_mem(copyb);
1641                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NOP);
1642                         break;
1643
1644                 case pn_CopyB_X_except:
1645                         DBG_OPT_EXC_REM(proj);
1646                         proj = get_irg_bad(current_ir_graph);
1647                         break;
1648                 }
1649         }
1650         return proj;
1651 }  /* equivalent_node_Proj_CopyB */
1652
1653 /**
1654  * Optimize Bounds(idx, idx, upper) into idx.
1655  */
1656 static ir_node *equivalent_node_Proj_Bound(ir_node *proj)
1657 {
1658         ir_node *oldn  = proj;
1659         ir_node *bound = get_Proj_pred(proj);
1660         ir_node *idx   = get_Bound_index(bound);
1661         ir_node *pred  = skip_Proj(idx);
1662         int ret_tuple  = 0;
1663
1664         if (idx == get_Bound_lower(bound))
1665                 ret_tuple = 1;
1666         else if (is_Bound(pred)) {
1667                 /*
1668                  * idx was Bounds checked in the same MacroBlock previously,
1669                  * it is still valid if lower <= pred_lower && pred_upper <= upper.
1670                  */
1671                 ir_node *lower = get_Bound_lower(bound);
1672                 ir_node *upper = get_Bound_upper(bound);
1673                 if (get_Bound_lower(pred) == lower &&
1674                         get_Bound_upper(pred) == upper &&
1675                         get_irn_MacroBlock(bound) == get_irn_MacroBlock(pred)) {
1676                         /*
1677                          * One could expect that we simply return the previous
1678                          * Bound here. However, this would be wrong, as we could
1679                          * add an exception Proj to a new location then.
1680                          * So, we must turn in into a tuple.
1681                          */
1682                         ret_tuple = 1;
1683                 }
1684         }
1685         if (ret_tuple) {
1686                 /* Turn Bound into a tuple (mem, jmp, bad, idx) */
1687                 switch (get_Proj_proj(proj)) {
1688                 case pn_Bound_M:
1689                         DBG_OPT_EXC_REM(proj);
1690                         proj = get_Bound_mem(bound);
1691                         break;
1692                 case pn_Bound_X_except:
1693                         DBG_OPT_EXC_REM(proj);
1694                         proj = get_irg_bad(current_ir_graph);
1695                         break;
1696                 case pn_Bound_res:
1697                         proj = idx;
1698                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NOP);
1699                         break;
1700                 default:
1701                         /* cannot optimize pn_Bound_X_regular, handled in transform ... */
1702                         break;
1703                 }
1704         }
1705         return proj;
1706 }  /* equivalent_node_Proj_Bound */
1707
1708 /**
1709  * Optimize an Exception Proj(Load) with a non-null address.
1710  */
1711 static ir_node *equivalent_node_Proj_Load(ir_node *proj)
1712 {
1713         if (get_opt_ldst_only_null_ptr_exceptions()) {
1714                 if (get_irn_mode(proj) == mode_X) {
1715                         ir_node *load = get_Proj_pred(proj);
1716
1717                         /* get the Load address */
1718                         const ir_node *addr = get_Load_ptr(load);
1719                         const ir_node *confirm;
1720
1721                         if (value_not_null(addr, &confirm)) {
1722                                 if (get_Proj_proj(proj) == pn_Load_X_except) {
1723                                         DBG_OPT_EXC_REM(proj);
1724                                         return get_irg_bad(current_ir_graph);
1725                                 }
1726                         }
1727                 }
1728         }
1729         return proj;
1730 }  /* equivalent_node_Proj_Load */
1731
1732 /**
1733  * Optimize an Exception Proj(Store) with a non-null address.
1734  */
1735 static ir_node *equivalent_node_Proj_Store(ir_node *proj)
1736 {
1737         if (get_opt_ldst_only_null_ptr_exceptions()) {
1738                 if (get_irn_mode(proj) == mode_X) {
1739                         ir_node *store = get_Proj_pred(proj);
1740
1741                         /* get the load/store address */
1742                         const ir_node *addr = get_Store_ptr(store);
1743                         const ir_node *confirm;
1744
1745                         if (value_not_null(addr, &confirm)) {
1746                                 if (get_Proj_proj(proj) == pn_Store_X_except) {
1747                                         DBG_OPT_EXC_REM(proj);
1748                                         return get_irg_bad(current_ir_graph);
1749                                 }
1750                         }
1751                 }
1752         }
1753         return proj;
1754 }  /* equivalent_node_Proj_Store */
1755
1756 /**
1757  * Does all optimizations on nodes that must be done on it's Proj's
1758  * because of creating new nodes.
1759  */
1760 static ir_node *equivalent_node_Proj(ir_node *proj)
1761 {
1762         ir_node *n = get_Proj_pred(proj);
1763
1764         if (get_irn_mode(proj) == mode_X) {
1765                 if (is_Block_dead(get_nodes_block(n))) {
1766                         /* Remove dead control flow -- early gigo(). */
1767                         return get_irg_bad(current_ir_graph);
1768                 }
1769         }
1770         if (n->op->ops.equivalent_node_Proj)
1771                 return n->op->ops.equivalent_node_Proj(proj);
1772         return proj;
1773 }  /* equivalent_node_Proj */
1774
1775 /**
1776  * Remove Id's.
1777  */
1778 static ir_node *equivalent_node_Id(ir_node *n)
1779 {
1780         ir_node *oldn = n;
1781
1782         do {
1783                 n = get_Id_pred(n);
1784         } while (is_Id(n));
1785
1786         DBG_OPT_ID(oldn, n);
1787         return n;
1788 }  /* equivalent_node_Id */
1789
1790 /**
1791  * Optimize a Mux.
1792  */
1793 static ir_node *equivalent_node_Mux(ir_node *n)
1794 {
1795         ir_node *oldn = n, *sel = get_Mux_sel(n);
1796         ir_node *n_t, *n_f;
1797         tarval *ts = value_of(sel);
1798
1799         /* Mux(true, f, t) == t */
1800         if (ts == tarval_b_true) {
1801                 n = get_Mux_true(n);
1802                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1803                 return n;
1804         }
1805         /* Mux(false, f, t) == f */
1806         if (ts == tarval_b_false) {
1807                 n = get_Mux_false(n);
1808                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_C);
1809                 return n;
1810         }
1811         n_t = get_Mux_true(n);
1812         n_f = get_Mux_false(n);
1813
1814         /* Mux(v, x, T) == x */
1815         if (is_Unknown(n_f)) {
1816                 n = n_t;
1817                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_EQ);
1818                 return n;
1819         }
1820         /* Mux(v, T, x) == x */
1821         if (is_Unknown(n_t)) {
1822                 n = n_f;
1823                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_EQ);
1824                 return n;
1825         }
1826
1827         /* Mux(v, x, x) == x */
1828         if (n_t == n_f) {
1829                 n = n_t;
1830                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_EQ);
1831                 return n;
1832         }
1833         if (is_Proj(sel) && !mode_honor_signed_zeros(get_irn_mode(n))) {
1834                 ir_node *cmp = get_Proj_pred(sel);
1835                 long proj_nr = get_Proj_proj(sel);
1836                 ir_node *f   = get_Mux_false(n);
1837                 ir_node *t   = get_Mux_true(n);
1838
1839                 /*
1840                  * Note further that these optimization work even for floating point
1841                  * with NaN's because -NaN == NaN.
1842                  * However, if +0 and -0 is handled differently, we cannot use the first one.
1843                  */
1844                 if (is_Cmp(cmp)) {
1845                         ir_node *const cmp_l = get_Cmp_left(cmp);
1846                         ir_node *const cmp_r = get_Cmp_right(cmp);
1847
1848                         switch (proj_nr) {
1849                                 case pn_Cmp_Eq:
1850                                         if ((cmp_l == t && cmp_r == f) || /* Mux(t == f, t, f) -> f */
1851                                                         (cmp_l == f && cmp_r == t)) { /* Mux(f == t, t, f) -> f */
1852                                                 n = f;
1853                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1854                                                 return n;
1855                                         }
1856                                         break;
1857
1858                                 case pn_Cmp_Lg:
1859                                 case pn_Cmp_Ne:
1860                                         if ((cmp_l == t && cmp_r == f) || /* Mux(t != f, t, f) -> t */
1861                                                         (cmp_l == f && cmp_r == t)) { /* Mux(f != t, t, f) -> t */
1862                                                 n = t;
1863                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1864                                                 return n;
1865                                         }
1866                                         break;
1867                         }
1868
1869                         /*
1870                          * Note: normalization puts the constant on the right side,
1871                          * so we check only one case.
1872                          */
1873                         if (cmp_l == t && tarval_is_null(value_of(cmp_r))) {
1874                                 /* Mux(t CMP 0, X, t) */
1875                                 if (is_Minus(f) && get_Minus_op(f) == t) {
1876                                         /* Mux(t CMP 0, -t, t) */
1877                                         if (proj_nr == pn_Cmp_Eq) {
1878                                                 /* Mux(t == 0, -t, t)  ==>  -t */
1879                                                 n = f;
1880                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1881                                         } else if (proj_nr == pn_Cmp_Lg || proj_nr == pn_Cmp_Ne) {
1882                                                 /* Mux(t != 0, -t, t)  ==> t */
1883                                                 n = t;
1884                                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_TRANSFORM);
1885                                         }
1886                                 }
1887                         }
1888                 }
1889         }
1890         return n;
1891 }  /* equivalent_node_Mux */
1892
1893 /**
1894  * Remove Confirm nodes if setting is on.
1895  * Replace Confirms(x, '=', Constlike) by Constlike.
1896  */
1897 static ir_node *equivalent_node_Confirm(ir_node *n)
1898 {
1899         ir_node *pred = get_Confirm_value(n);
1900         pn_Cmp  pnc   = get_Confirm_cmp(n);
1901
1902         while (is_Confirm(pred) && pnc == get_Confirm_cmp(pred)) {
1903                 /*
1904                  * rare case: two identical Confirms one after another,
1905                  * replace the second one with the first.
1906                  */
1907                 n    = pred;
1908                 pred = get_Confirm_value(n);
1909                 pnc  = get_Confirm_cmp(n);
1910         }
1911         if (get_opt_remove_confirm())
1912                 return get_Confirm_value(n);
1913         return n;
1914 }
1915
1916 /**
1917  * equivalent_node() returns a node equivalent to input n. It skips all nodes that
1918  * perform no actual computation, as, e.g., the Id nodes.  It does not create
1919  * new nodes.  It is therefore safe to free n if the node returned is not n.
1920  * If a node returns a Tuple we can not just skip it.  If the size of the
1921  * in array fits, we transform n into a tuple (e.g., Div).
1922  */
1923 ir_node *equivalent_node(ir_node *n)
1924 {
1925         if (n->op->ops.equivalent_node)
1926                 return n->op->ops.equivalent_node(n);
1927         return n;
1928 }  /* equivalent_node */
1929
1930 /**
1931  * Sets the default equivalent node operation for an ir_op_ops.
1932  *
1933  * @param code   the opcode for the default operation
1934  * @param ops    the operations initialized
1935  *
1936  * @return
1937  *    The operations.
1938  */
1939 static ir_op_ops *firm_set_default_equivalent_node(ir_opcode code, ir_op_ops *ops)
1940 {
1941 #define CASE(a)                                      \
1942         case iro_##a:                                    \
1943                 ops->equivalent_node  = equivalent_node_##a; \
1944                 break
1945 #define CASE_PROJ(a)                                          \
1946         case iro_##a:                                             \
1947                 ops->equivalent_node_Proj = equivalent_node_Proj_##a; \
1948                 break
1949
1950         switch (code) {
1951         CASE(Block);
1952         CASE(Jmp);
1953         CASE(Raise);
1954         CASE(Eor);
1955         CASE(Add);
1956         CASE(Shl);
1957         CASE(Shr);
1958         CASE(Shrs);
1959         CASE(Rotl);
1960         CASE(Sub);
1961         CASE(Not);
1962         CASE(Minus);
1963         CASE(Mul);
1964         CASE(Or);
1965         CASE(And);
1966         CASE(Conv);
1967         CASE(Cast);
1968         CASE(Phi);
1969         CASE(Sync);
1970         CASE_PROJ(Tuple);
1971         CASE_PROJ(Div);
1972         CASE_PROJ(Quot);
1973         CASE_PROJ(DivMod);
1974         CASE_PROJ(CopyB);
1975         CASE_PROJ(Bound);
1976         CASE_PROJ(Load);
1977         CASE_PROJ(Store);
1978         CASE(Proj);
1979         CASE(Id);
1980         CASE(Mux);
1981         CASE(Confirm);
1982         default:
1983                 /* leave NULL */
1984                 break;
1985         }
1986
1987         return ops;
1988 #undef CASE
1989 #undef CASE_PROJ
1990 }  /* firm_set_default_equivalent_node */
1991
1992 /**
1993  * Returns non-zero if a node is a Phi node
1994  * with all predecessors constant.
1995  */
1996 static int is_const_Phi(ir_node *n)
1997 {
1998         int i;
1999
2000         if (! is_Phi(n) || get_irn_arity(n) == 0)
2001                 return 0;
2002         for (i = get_irn_arity(n) - 1; i >= 0; --i) {
2003                 if (! is_Const(get_irn_n(n, i)))
2004                         return 0;
2005         }
2006         return 1;
2007 }  /* is_const_Phi */
2008
2009 typedef tarval *(*tarval_sub_type)(tarval *a, tarval *b, ir_mode *mode);
2010 typedef tarval *(*tarval_binop_type)(tarval *a, tarval *b);
2011
2012 /**
2013  * in reality eval_func should be tarval (*eval_func)() but incomplete
2014  * declarations are bad style and generate noisy warnings
2015  */
2016 typedef void (*eval_func)(void);
2017
2018 /**
2019  * Wrapper for the tarval binop evaluation, tarval_sub has one more parameter.
2020  */
2021 static tarval *do_eval(eval_func eval, tarval *a, tarval *b, ir_mode *mode)
2022 {
2023         if (eval == (eval_func) tarval_sub) {
2024                 tarval_sub_type func = (tarval_sub_type)eval;
2025
2026                 return func(a, b, mode);
2027         } else {
2028                 tarval_binop_type func = (tarval_binop_type)eval;
2029
2030                 return func(a, b);
2031         }
2032 }
2033
2034 /**
2035  * Apply an evaluator on a binop with a constant operators (and one Phi).
2036  *
2037  * @param phi    the Phi node
2038  * @param other  the other operand
2039  * @param eval   an evaluator function
2040  * @param mode   the mode of the result, may be different from the mode of the Phi!
2041  * @param left   if non-zero, other is the left operand, else the right
2042  *
2043  * @return a new Phi node if the conversion was successful, NULL else
2044  */
2045 static ir_node *apply_binop_on_phi(ir_node *phi, tarval *other, eval_func eval, ir_mode *mode, int left)
2046 {
2047         tarval   *tv;
2048         void     **res;
2049         ir_node  *pred;
2050         ir_graph *irg;
2051         int      i, n = get_irn_arity(phi);
2052
2053         NEW_ARR_A(void *, res, n);
2054         if (left) {
2055                 for (i = 0; i < n; ++i) {
2056                         pred = get_irn_n(phi, i);
2057                         tv   = get_Const_tarval(pred);
2058                         tv   = do_eval(eval, other, tv, mode);
2059
2060                         if (tv == tarval_bad) {
2061                                 /* folding failed, bad */
2062                                 return NULL;
2063                         }
2064                         res[i] = tv;
2065                 }
2066         } else {
2067                 for (i = 0; i < n; ++i) {
2068                         pred = get_irn_n(phi, i);
2069                         tv   = get_Const_tarval(pred);
2070                         tv   = do_eval(eval, tv, other, mode);
2071
2072                         if (tv == tarval_bad) {
2073                                 /* folding failed, bad */
2074                                 return 0;
2075                         }
2076                         res[i] = tv;
2077                 }
2078         }
2079         irg  = current_ir_graph;
2080         for (i = 0; i < n; ++i) {
2081                 pred = get_irn_n(phi, i);
2082                 res[i] = new_r_Const_type(irg, res[i], get_Const_type(pred));
2083         }
2084         return new_r_Phi(get_nodes_block(phi), n, (ir_node **)res, mode);
2085 }  /* apply_binop_on_phi */
2086
2087 /**
2088  * Apply an evaluator on a binop with two constant Phi.
2089  *
2090  * @param a      the left Phi node
2091  * @param b      the right Phi node
2092  * @param eval   an evaluator function
2093  * @param mode   the mode of the result, may be different from the mode of the Phi!
2094  *
2095  * @return a new Phi node if the conversion was successful, NULL else
2096  */
2097 static ir_node *apply_binop_on_2_phis(ir_node *a, ir_node *b, eval_func eval, ir_mode *mode)
2098 {
2099         tarval   *tv_l, *tv_r, *tv;
2100         void     **res;
2101         ir_node  *pred;
2102         ir_graph *irg;
2103         int      i, n;
2104
2105         if (get_nodes_block(a) != get_nodes_block(b))
2106                 return NULL;
2107
2108         n = get_irn_arity(a);
2109         NEW_ARR_A(void *, res, n);
2110
2111         for (i = 0; i < n; ++i) {
2112                 pred = get_irn_n(a, i);
2113                 tv_l = get_Const_tarval(pred);
2114                 pred = get_irn_n(b, i);
2115                 tv_r = get_Const_tarval(pred);
2116                 tv   = do_eval(eval, tv_l, tv_r, mode);
2117
2118                 if (tv == tarval_bad) {
2119                         /* folding failed, bad */
2120                         return NULL;
2121                 }
2122                 res[i] = tv;
2123         }
2124         irg  = current_ir_graph;
2125         for (i = 0; i < n; ++i) {
2126                 pred = get_irn_n(a, i);
2127                 res[i] = new_r_Const_type(irg, res[i], get_Const_type(pred));
2128         }
2129         return new_r_Phi(get_nodes_block(a), n, (ir_node **)res, mode);
2130 }  /* apply_binop_on_2_phis */
2131
2132 /**
2133  * Apply an evaluator on a unop with a constant operator (a Phi).
2134  *
2135  * @param phi    the Phi node
2136  * @param eval   an evaluator function
2137  *
2138  * @return a new Phi node if the conversion was successful, NULL else
2139  */
2140 static ir_node *apply_unop_on_phi(ir_node *phi, tarval *(*eval)(tarval *))
2141 {
2142         tarval   *tv;
2143         void     **res;
2144         ir_node  *pred;
2145         ir_mode  *mode;
2146         ir_graph *irg;
2147         int      i, n = get_irn_arity(phi);
2148
2149         NEW_ARR_A(void *, res, n);
2150         for (i = 0; i < n; ++i) {
2151                 pred = get_irn_n(phi, i);
2152                 tv   = get_Const_tarval(pred);
2153                 tv   = eval(tv);
2154
2155                 if (tv == tarval_bad) {
2156                         /* folding failed, bad */
2157                         return 0;
2158                 }
2159                 res[i] = tv;
2160         }
2161         mode = get_irn_mode(phi);
2162         irg  = current_ir_graph;
2163         for (i = 0; i < n; ++i) {
2164                 pred = get_irn_n(phi, i);
2165                 res[i] = new_r_Const_type(irg, res[i], get_Const_type(pred));
2166         }
2167         return new_r_Phi(get_nodes_block(phi), n, (ir_node **)res, mode);
2168 }  /* apply_unop_on_phi */
2169
2170 /**
2171  * Apply a conversion on a constant operator (a Phi).
2172  *
2173  * @param phi    the Phi node
2174  *
2175  * @return a new Phi node if the conversion was successful, NULL else
2176  */
2177 static ir_node *apply_conv_on_phi(ir_node *phi, ir_mode *mode)
2178 {
2179         tarval   *tv;
2180         void     **res;
2181         ir_node  *pred;
2182         ir_graph *irg;
2183         int      i, n = get_irn_arity(phi);
2184
2185         NEW_ARR_A(void *, res, n);
2186         for (i = 0; i < n; ++i) {
2187                 pred = get_irn_n(phi, i);
2188                 tv   = get_Const_tarval(pred);
2189                 tv   = tarval_convert_to(tv, mode);
2190
2191                 if (tv == tarval_bad) {
2192                         /* folding failed, bad */
2193                         return 0;
2194                 }
2195                 res[i] = tv;
2196         }
2197         irg  = current_ir_graph;
2198         for (i = 0; i < n; ++i) {
2199                 pred = get_irn_n(phi, i);
2200                 res[i] = new_r_Const_type(irg, res[i], get_Const_type(pred));
2201         }
2202         return new_r_Phi(get_nodes_block(phi), n, (ir_node **)res, mode);
2203 }  /* apply_conv_on_phi */
2204
2205 /**
2206  * Transform AddP(P, ConvIs(Iu)), AddP(P, ConvIu(Is)) and
2207  * SubP(P, ConvIs(Iu)), SubP(P, ConvIu(Is)).
2208  * If possible, remove the Conv's.
2209  */
2210 static ir_node *transform_node_AddSub(ir_node *n)
2211 {
2212         ir_mode *mode = get_irn_mode(n);
2213
2214         if (mode_is_reference(mode)) {
2215                 ir_node *left     = get_binop_left(n);
2216                 ir_node *right    = get_binop_right(n);
2217                 unsigned ref_bits = get_mode_size_bits(mode);
2218
2219                 if (is_Conv(left)) {
2220                         ir_mode *lmode = get_irn_mode(left);
2221                         unsigned bits = get_mode_size_bits(lmode);
2222
2223                         if (ref_bits == bits &&
2224                             mode_is_int(lmode) &&
2225                             get_mode_arithmetic(lmode) == irma_twos_complement) {
2226                                 ir_node *pre      = get_Conv_op(left);
2227                                 ir_mode *pre_mode = get_irn_mode(pre);
2228
2229                                 if (mode_is_int(pre_mode) &&
2230                                     get_mode_size_bits(pre_mode) == bits &&
2231                                     get_mode_arithmetic(pre_mode) == irma_twos_complement) {
2232                                         /* ok, this conv just changes to sign, moreover the calculation
2233                                          * is done with same number of bits as our address mode, so
2234                                          * we can ignore the conv as address calculation can be viewed
2235                                          * as either signed or unsigned
2236                                          */
2237                                         set_binop_left(n, pre);
2238                                 }
2239                         }
2240                 }
2241
2242                 if (is_Conv(right)) {
2243                         ir_mode *rmode = get_irn_mode(right);
2244                         unsigned bits = get_mode_size_bits(rmode);
2245
2246                         if (ref_bits == bits &&
2247                             mode_is_int(rmode) &&
2248                             get_mode_arithmetic(rmode) == irma_twos_complement) {
2249                                 ir_node *pre      = get_Conv_op(right);
2250                                 ir_mode *pre_mode = get_irn_mode(pre);
2251
2252                                 if (mode_is_int(pre_mode) &&
2253                                     get_mode_size_bits(pre_mode) == bits &&
2254                                     get_mode_arithmetic(pre_mode) == irma_twos_complement) {
2255                                         /* ok, this conv just changes to sign, moreover the calculation
2256                                          * is done with same number of bits as our address mode, so
2257                                          * we can ignore the conv as address calculation can be viewed
2258                                          * as either signed or unsigned
2259                                          */
2260                                         set_binop_right(n, pre);
2261                                 }
2262                         }
2263                 }
2264
2265                 /* let address arithmetic use unsigned modes */
2266                 if (is_Const(right)) {
2267                         ir_mode *rmode = get_irn_mode(right);
2268
2269                         if (mode_is_signed(rmode) && get_mode_arithmetic(rmode) == irma_twos_complement) {
2270                                 /* convert a AddP(P, *s) into AddP(P, *u) */
2271                                 ir_mode *nm = get_reference_mode_unsigned_eq(mode);
2272
2273                                 ir_node *pre = new_r_Conv(get_nodes_block(n), right, nm);
2274                                 set_binop_right(n, pre);
2275                         }
2276                 }
2277         }
2278
2279         return n;
2280 }  /* transform_node_AddSub */
2281
2282 #define HANDLE_BINOP_PHI(eval, a, b, c, mode)                     \
2283   do {                                                            \
2284   c = NULL;                                                       \
2285   if (is_Const(b) && is_const_Phi(a)) {                           \
2286     /* check for Op(Phi, Const) */                                \
2287     c = apply_binop_on_phi(a, get_Const_tarval(b), eval, mode, 0);\
2288   }                                                               \
2289   else if (is_Const(a) && is_const_Phi(b)) {                      \
2290     /* check for Op(Const, Phi) */                                \
2291     c = apply_binop_on_phi(b, get_Const_tarval(a), eval, mode, 1);\
2292   }                                                               \
2293   else if (is_const_Phi(a) && is_const_Phi(b)) {                  \
2294     /* check for Op(Phi, Phi) */                                  \
2295     c = apply_binop_on_2_phis(a, b, eval, mode);                  \
2296   }                                                               \
2297   if (c) {                                                        \
2298     DBG_OPT_ALGSIM0(oldn, c, FS_OPT_CONST_PHI);                   \
2299     return c;                                                     \
2300   }                                                               \
2301   } while(0)
2302
2303 #define HANDLE_UNOP_PHI(eval, a, c)               \
2304   do {                                            \
2305   c = NULL;                                       \
2306   if (is_const_Phi(a)) {                          \
2307     /* check for Op(Phi) */                       \
2308     c = apply_unop_on_phi(a, eval);               \
2309     if (c) {                                      \
2310       DBG_OPT_ALGSIM0(oldn, c, FS_OPT_CONST_PHI); \
2311       return c;                                   \
2312     }                                             \
2313   }                                               \
2314   } while(0)
2315
2316 /**
2317  * Do the AddSub optimization, then Transform
2318  *   Constant folding on Phi
2319  *   Add(a,a)          -> Mul(a, 2)
2320  *   Add(Mul(a, x), a) -> Mul(a, x+1)
2321  * if the mode is integer or float.
2322  * Transform Add(a,-b) into Sub(a,b).
2323  * Reassociation might fold this further.
2324  */
2325 static ir_node *transform_node_Add(ir_node *n)
2326 {
2327         ir_mode *mode;
2328         ir_node *a, *b, *c, *oldn = n;
2329         vrp_attr *a_vrp, *b_vrp;
2330
2331         n = transform_node_AddSub(n);
2332
2333         a = get_Add_left(n);
2334         b = get_Add_right(n);
2335
2336         mode = get_irn_mode(n);
2337
2338         if (mode_is_reference(mode)) {
2339                 ir_mode *lmode = get_irn_mode(a);
2340
2341                 if (is_Const(b) && is_Const_null(b) && mode_is_int(lmode)) {
2342                         /* an Add(a, NULL) is a hidden Conv */
2343                         dbg_info *dbg = get_irn_dbg_info(n);
2344                         return new_rd_Conv(dbg, get_nodes_block(n), a, mode);
2345                 }
2346         }
2347
2348         HANDLE_BINOP_PHI((eval_func) tarval_add, a, b, c, mode);
2349
2350         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2351         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2352                 return n;
2353
2354         if (mode_is_num(mode)) {
2355                 /* the following code leads to endless recursion when Mul are replaced by a simple instruction chain */
2356                 if (!is_irg_state(current_ir_graph, IR_GRAPH_STATE_ARCH_DEP)
2357                                 && a == b && mode_is_int(mode)) {
2358                         ir_node *block = get_nodes_block(n);
2359
2360                         n = new_rd_Mul(
2361                                 get_irn_dbg_info(n),
2362                                 block,
2363                                 a,
2364                                 new_Const_long(mode, 2),
2365                                 mode);
2366                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_A);
2367                         return n;
2368                 }
2369                 if (is_Minus(a)) {
2370                         n = new_rd_Sub(
2371                                         get_irn_dbg_info(n),
2372                                         get_nodes_block(n),
2373                                         b,
2374                                         get_Minus_op(a),
2375                                         mode);
2376                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
2377                         return n;
2378                 }
2379                 if (is_Minus(b)) {
2380                         n = new_rd_Sub(
2381                                         get_irn_dbg_info(n),
2382                                         get_nodes_block(n),
2383                                         a,
2384                                         get_Minus_op(b),
2385                                         mode);
2386                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
2387                         return n;
2388                 }
2389                 if (get_mode_arithmetic(mode) == irma_twos_complement) {
2390                         /* Here we rely on constants be on the RIGHT side */
2391                         if (is_Not(a)) {
2392                                 ir_node *op = get_Not_op(a);
2393
2394                                 if (is_Const(b) && is_Const_one(b)) {
2395                                         /* ~x + 1 = -x */
2396                                         ir_node *blk = get_nodes_block(n);
2397                                         n = new_rd_Minus(get_irn_dbg_info(n), blk, op, mode);
2398                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_PLUS_1);
2399                                         return n;
2400                                 }
2401                                 if (op == b) {
2402                                         /* ~x + x = -1 */
2403                                         n = new_Const(get_mode_minus_one(mode));
2404                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_X_NOT_X);
2405                                         return n;
2406                                 }
2407                         }
2408                         if (is_Not(b)) {
2409                                 ir_node *op = get_Not_op(b);
2410
2411                                 if (op == a) {
2412                                         /* x + ~x = -1 */
2413                                         n = new_Const(get_mode_minus_one(mode));
2414                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_X_NOT_X);
2415                                         return n;
2416                                 }
2417                         }
2418                 }
2419         }
2420
2421         a_vrp = vrp_get_info(a);
2422         b_vrp = vrp_get_info(b);
2423
2424         if (a_vrp && b_vrp) {
2425                 tarval *c = tarval_and(
2426                                         a_vrp->bits_not_set,
2427                                         b_vrp->bits_not_set
2428                                         );
2429
2430                 if (tarval_is_null(c)) {
2431                                 dbg_info *dbgi  = get_irn_dbg_info(n);
2432                                 return new_rd_Or(dbgi, get_nodes_block(n),
2433                                                         a, b, mode);
2434                 }
2435         }
2436         return n;
2437 }  /* transform_node_Add */
2438
2439 /**
2440  * returns -cnst or NULL if impossible
2441  */
2442 static ir_node *const_negate(ir_node *cnst)
2443 {
2444         tarval   *tv    = tarval_neg(get_Const_tarval(cnst));
2445         dbg_info *dbgi  = get_irn_dbg_info(cnst);
2446         ir_graph *irg   = get_irn_irg(cnst);
2447         if (tv == tarval_bad) return NULL;
2448         return new_rd_Const(dbgi, irg, tv);
2449 }
2450
2451 /**
2452  * Do the AddSub optimization, then Transform
2453  *   Constant folding on Phi
2454  *   Sub(0,a)          -> Minus(a)
2455  *   Sub(Mul(a, x), a) -> Mul(a, x-1)
2456  *   Sub(Sub(x, y), b) -> Sub(x, Add(y,b))
2457  *   Sub(Add(a, x), x) -> a
2458  *   Sub(x, Add(x, a)) -> -a
2459  *   Sub(x, Const)     -> Add(x, -Const)
2460  */
2461 static ir_node *transform_node_Sub(ir_node *n)
2462 {
2463         ir_mode *mode;
2464         ir_node *oldn = n;
2465         ir_node *a, *b, *c;
2466
2467         n = transform_node_AddSub(n);
2468
2469         a = get_Sub_left(n);
2470         b = get_Sub_right(n);
2471
2472         mode = get_irn_mode(n);
2473
2474         if (mode_is_int(mode)) {
2475                 ir_mode *lmode = get_irn_mode(a);
2476
2477                 if (is_Const(b) && is_Const_null(b) && mode_is_reference(lmode)) {
2478                         /* a Sub(a, NULL) is a hidden Conv */
2479                         dbg_info *dbg = get_irn_dbg_info(n);
2480                         n = new_rd_Conv(dbg, get_nodes_block(n), a, mode);
2481                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_CONV);
2482                         return n;
2483                 }
2484
2485                 if (mode == lmode                                     &&
2486                     get_mode_arithmetic(mode) == irma_twos_complement &&
2487                     is_Const(a)                                       &&
2488                     get_Const_tarval(a) == get_mode_minus_one(mode)) {
2489                         /* -1 - x -> ~x */
2490                         dbg_info *dbg = get_irn_dbg_info(n);
2491                         n = new_rd_Not(dbg, get_nodes_block(n), b, mode);
2492                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_NOT);
2493                         return n;
2494                 }
2495         }
2496
2497 restart:
2498         HANDLE_BINOP_PHI((eval_func) tarval_sub, a, b, c, mode);
2499
2500         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2501         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2502                 return n;
2503
2504         if (is_Const(b) && !mode_is_reference(get_irn_mode(b))) {
2505                 /* a - C -> a + (-C) */
2506                 ir_node *cnst = const_negate(b);
2507                 if (cnst != NULL) {
2508                         ir_node  *block = get_nodes_block(n);
2509                         dbg_info *dbgi  = get_irn_dbg_info(n);
2510
2511                         n = new_rd_Add(dbgi, block, a, cnst, mode);
2512                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2513                         return n;
2514                 }
2515         }
2516
2517         if (is_Minus(a)) { /* (-a) - b -> -(a + b) */
2518                 dbg_info *dbg   = get_irn_dbg_info(n);
2519                 ir_node  *block = get_nodes_block(n);
2520                 ir_node  *left  = get_Minus_op(a);
2521                 ir_node  *add   = new_rd_Add(dbg, block, left, b, mode);
2522
2523                 n = new_rd_Minus(dbg, block, add, mode);
2524                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2525                 return n;
2526         } else if (is_Minus(b)) { /* a - (-b) -> a + b */
2527                 dbg_info *dbg   = get_irn_dbg_info(n);
2528                 ir_node  *block = get_nodes_block(n);
2529                 ir_node  *right = get_Minus_op(b);
2530
2531                 n = new_rd_Add(dbg, block, a, right, mode);
2532                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MINUS);
2533                 return n;
2534         } else if (is_Sub(b)) {
2535                 /* a - (b - c) -> a + (c - b)
2536                  *             -> (a - b) + c iff (b - c) is a pointer */
2537                 dbg_info *s_dbg   = get_irn_dbg_info(b);
2538                 ir_node  *s_block = get_nodes_block(b);
2539                 ir_node  *s_left  = get_Sub_left(b);
2540                 ir_node  *s_right = get_Sub_right(b);
2541                 ir_mode  *s_mode  = get_irn_mode(b);
2542                 if (mode_is_reference(s_mode)) {
2543                         ir_node  *sub     = new_rd_Sub(s_dbg, s_block, a, s_left, mode);
2544                         dbg_info *a_dbg   = get_irn_dbg_info(n);
2545                         ir_node  *a_block = get_nodes_block(n);
2546
2547                         if (s_mode != mode)
2548                                 s_right = new_r_Conv(a_block, s_right, mode);
2549                         n = new_rd_Add(a_dbg, a_block, sub, s_right, mode);
2550                 } else {
2551                         ir_node  *sub     = new_rd_Sub(s_dbg, s_block, s_right, s_left, s_mode);
2552                         dbg_info *a_dbg   = get_irn_dbg_info(n);
2553                         ir_node  *a_block = get_nodes_block(n);
2554
2555                         n = new_rd_Add(a_dbg, a_block, a, sub, mode);
2556                 }
2557                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2558                 return n;
2559         } else if (is_Mul(b)) { /* a - (b * C) -> a + (b * -C) */
2560                 ir_node *m_right = get_Mul_right(b);
2561                 if (is_Const(m_right)) {
2562                         ir_node *cnst2 = const_negate(m_right);
2563                         if (cnst2 != NULL) {
2564                                 dbg_info *m_dbg   = get_irn_dbg_info(b);
2565                                 ir_node  *m_block = get_nodes_block(b);
2566                                 ir_node  *m_left  = get_Mul_left(b);
2567                                 ir_mode  *m_mode  = get_irn_mode(b);
2568                                 ir_node  *mul     = new_rd_Mul(m_dbg, m_block, m_left, cnst2, m_mode);
2569                                 dbg_info *a_dbg   = get_irn_dbg_info(n);
2570                                 ir_node  *a_block = get_nodes_block(n);
2571
2572                                 n = new_rd_Add(a_dbg, a_block, a, mul, mode);
2573                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_TO_ADD);
2574                                 return n;
2575                         }
2576                 }
2577         }
2578
2579         /* Beware of Sub(P, P) which cannot be optimized into a simple Minus ... */
2580         if (mode_is_num(mode) && mode == get_irn_mode(a) && is_Const(a) && is_Const_null(a)) {
2581                 n = new_rd_Minus(
2582                                 get_irn_dbg_info(n),
2583                                 get_nodes_block(n),
2584                                 b,
2585                                 mode);
2586                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
2587                 return n;
2588         }
2589         if (is_Add(a)) {
2590                 if (mode_wrap_around(mode)) {
2591                         ir_node *left  = get_Add_left(a);
2592                         ir_node *right = get_Add_right(a);
2593
2594                         /* FIXME: Does the Conv's work only for two complement or generally? */
2595                         if (left == b) {
2596                                 if (mode != get_irn_mode(right)) {
2597                                         /* This Sub is an effective Cast */
2598                                         right = new_r_Conv(get_nodes_block(n), right, mode);
2599                                 }
2600                                 n = right;
2601                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2602                                 return n;
2603                         } else if (right == b) {
2604                                 if (mode != get_irn_mode(left)) {
2605                                         /* This Sub is an effective Cast */
2606                                         left = new_r_Conv(get_nodes_block(n), left, mode);
2607                                 }
2608                                 n = left;
2609                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2610                                 return n;
2611                         }
2612                 }
2613         }
2614         if (is_Add(b)) {
2615                 if (mode_wrap_around(mode)) {
2616                         ir_node *left  = get_Add_left(b);
2617                         ir_node *right = get_Add_right(b);
2618
2619                         /* FIXME: Does the Conv's work only for two complement or generally? */
2620                         if (left == a) {
2621                                 ir_mode *r_mode = get_irn_mode(right);
2622
2623                                 n = new_r_Minus(get_nodes_block(n), right, r_mode);
2624                                 if (mode != r_mode) {
2625                                         /* This Sub is an effective Cast */
2626                                         n = new_r_Conv(get_nodes_block(n), n, mode);
2627                                 }
2628                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2629                                 return n;
2630                         } else if (right == a) {
2631                                 ir_mode *l_mode = get_irn_mode(left);
2632
2633                                 n = new_r_Minus(get_nodes_block(n), left, l_mode);
2634                                 if (mode != l_mode) {
2635                                         /* This Sub is an effective Cast */
2636                                         n = new_r_Conv(get_nodes_block(n), n, mode);
2637                                 }
2638                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2639                                 return n;
2640                         }
2641                 }
2642         }
2643         if (mode_is_int(mode) && is_Conv(a) && is_Conv(b)) {
2644                 ir_mode *mode = get_irn_mode(a);
2645
2646                 if (mode == get_irn_mode(b)) {
2647                         ir_mode *ma, *mb;
2648                         ir_node *op_a = get_Conv_op(a);
2649                         ir_node *op_b = get_Conv_op(b);
2650
2651                         /* check if it's allowed to skip the conv */
2652                         ma = get_irn_mode(op_a);
2653                         mb = get_irn_mode(op_b);
2654
2655                         if (mode_is_reference(ma) && mode_is_reference(mb)) {
2656                                 /* SubInt(ConvInt(aP), ConvInt(bP)) -> SubInt(aP,bP) */
2657                                 a = op_a; b = op_b;
2658                                 set_Sub_left(n, a);
2659                                 set_Sub_right(n, b);
2660
2661                                 goto restart;
2662                         }
2663                 }
2664         }
2665         /* do NOT execute this code if reassociation is enabled, it does the inverse! */
2666         if (!is_reassoc_running() && is_Mul(a)) {
2667                 ir_node *ma = get_Mul_left(a);
2668                 ir_node *mb = get_Mul_right(a);
2669
2670                 if (ma == b) {
2671                         ir_node *blk = get_nodes_block(n);
2672                         n = new_rd_Mul(
2673                                         get_irn_dbg_info(n),
2674                                         blk,
2675                                         ma,
2676                                         new_rd_Sub(
2677                                                 get_irn_dbg_info(n),
2678                                                 blk,
2679                                                 mb,
2680                                                 new_Const(get_mode_one(mode)),
2681                                                 mode),
2682                                         mode);
2683                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2684                         return n;
2685                 } else if (mb == b) {
2686                         ir_node *blk = get_nodes_block(n);
2687                         n = new_rd_Mul(
2688                                         get_irn_dbg_info(n),
2689                                         blk,
2690                                         mb,
2691                                         new_rd_Sub(
2692                                                 get_irn_dbg_info(n),
2693                                                 blk,
2694                                                 ma,
2695                                                 new_Const(get_mode_one(mode)),
2696                                                 mode),
2697                                         mode);
2698                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2699                         return n;
2700                 }
2701         }
2702         if (is_Sub(a)) { /* (x - y) - b -> x - (y + b) */
2703                 ir_node *x        = get_Sub_left(a);
2704                 ir_node *y        = get_Sub_right(a);
2705                 ir_node *blk      = get_nodes_block(n);
2706                 ir_mode *m_b      = get_irn_mode(b);
2707                 ir_mode *m_y      = get_irn_mode(y);
2708                 ir_mode *add_mode;
2709                 ir_node *add;
2710
2711                 /* Determine the right mode for the Add. */
2712                 if (m_b == m_y)
2713                         add_mode = m_b;
2714                 else if (mode_is_reference(m_b))
2715                         add_mode = m_b;
2716                 else if (mode_is_reference(m_y))
2717                         add_mode = m_y;
2718                 else {
2719                         /*
2720                          * Both modes are different but none is reference,
2721                          * happens for instance in SubP(SubP(P, Iu), Is).
2722                          * We have two possibilities here: Cast or ignore.
2723                          * Currently we ignore this case.
2724                          */
2725                         return n;
2726                 }
2727
2728                 add = new_r_Add(blk, y, b, add_mode);
2729
2730                 n = new_rd_Sub(get_irn_dbg_info(n), blk, x, add, mode);
2731                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_SUB_X_Y_Z);
2732                 return n;
2733         }
2734
2735         if (get_mode_arithmetic(mode) == irma_twos_complement) {
2736                 if (is_Const(a) && is_Not(b)) {
2737                         /* c - ~X = X + (c+1) */
2738                         tarval *tv = get_Const_tarval(a);
2739
2740                         tv = tarval_add(tv, get_mode_one(mode));
2741                         if (tv != tarval_bad) {
2742                                 ir_node *blk = get_nodes_block(n);
2743                                 ir_node *c = new_Const(tv);
2744                                 n = new_rd_Add(get_irn_dbg_info(n), blk, get_Not_op(b), c, mode);
2745                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_C_NOT_X);
2746                                 return n;
2747                         }
2748                 }
2749         }
2750         return n;
2751 }  /* transform_node_Sub */
2752
2753 /**
2754  * Several transformation done on n*n=2n bits mul.
2755  * These transformations must be done here because new nodes may be produced.
2756  */
2757 static ir_node *transform_node_Mul2n(ir_node *n, ir_mode *mode)
2758 {
2759         ir_node *oldn = n;
2760         ir_node *a = get_Mul_left(n);
2761         ir_node *b = get_Mul_right(n);
2762         tarval *ta = value_of(a);
2763         tarval *tb = value_of(b);
2764         ir_mode *smode = get_irn_mode(a);
2765
2766         if (ta == get_mode_one(smode)) {
2767                 /* (L)1 * (L)b = (L)b */
2768                 ir_node *blk = get_nodes_block(n);
2769                 n = new_rd_Conv(get_irn_dbg_info(n), blk, b, mode);
2770                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2771                 return n;
2772         }
2773         else if (ta == get_mode_minus_one(smode)) {
2774                 /* (L)-1 * (L)b = (L)b */
2775                 ir_node *blk = get_nodes_block(n);
2776                 n = new_rd_Minus(get_irn_dbg_info(n), blk, b, smode);
2777                 n = new_rd_Conv(get_irn_dbg_info(n), blk, n, mode);
2778                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2779                 return n;
2780         }
2781         if (tb == get_mode_one(smode)) {
2782                 /* (L)a * (L)1 = (L)a */
2783                 ir_node *blk = get_irn_n(a, -1);
2784                 n = new_rd_Conv(get_irn_dbg_info(n), blk, a, mode);
2785                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2786                 return n;
2787         }
2788         else if (tb == get_mode_minus_one(smode)) {
2789                 /* (L)a * (L)-1 = (L)-a */
2790                 ir_node *blk = get_nodes_block(n);
2791                 n = new_rd_Minus(get_irn_dbg_info(n), blk, a, smode);
2792                 n = new_rd_Conv(get_irn_dbg_info(n), blk, n, mode);
2793                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2794                 return n;
2795         }
2796         return n;
2797 }
2798
2799 /**
2800  * Transform Mul(a,-1) into -a.
2801  * Do constant evaluation of Phi nodes.
2802  * Do architecture dependent optimizations on Mul nodes
2803  */
2804 static ir_node *transform_node_Mul(ir_node *n)
2805 {
2806         ir_node *c, *oldn = n;
2807         ir_mode *mode = get_irn_mode(n);
2808         ir_node *a = get_Mul_left(n);
2809         ir_node *b = get_Mul_right(n);
2810
2811         if (is_Bad(a) || is_Bad(b))
2812                 return n;
2813
2814         if (mode != get_irn_mode(a))
2815                 return transform_node_Mul2n(n, mode);
2816
2817         HANDLE_BINOP_PHI((eval_func) tarval_mul, a, b, c, mode);
2818
2819         if (mode_is_signed(mode)) {
2820                 ir_node *r = NULL;
2821
2822                 if (value_of(a) == get_mode_minus_one(mode))
2823                         r = b;
2824                 else if (value_of(b) == get_mode_minus_one(mode))
2825                         r = a;
2826                 if (r) {
2827                         n = new_rd_Minus(get_irn_dbg_info(n), get_nodes_block(n), r, mode);
2828                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2829                         return n;
2830                 }
2831         }
2832         if (is_Minus(a)) {
2833                 if (is_Const(b)) { /* (-a) * const -> a * -const */
2834                         ir_node *cnst = const_negate(b);
2835                         if (cnst != NULL) {
2836                                 dbg_info *dbgi  = get_irn_dbg_info(n);
2837                                 ir_node  *block = get_nodes_block(n);
2838                                 n = new_rd_Mul(dbgi, block, get_Minus_op(a), cnst, mode);
2839                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2840                                 return n;
2841                         }
2842                 } else if (is_Minus(b)) { /* (-a) * (-b) -> a * b */
2843                         dbg_info *dbgi  = get_irn_dbg_info(n);
2844                         ir_node  *block = get_nodes_block(n);
2845                         n = new_rd_Mul(dbgi, block, get_Minus_op(a), get_Minus_op(b), mode);
2846                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_MINUS);
2847                         return n;
2848                 } else if (is_Sub(b)) { /* (-a) * (b - c) -> a * (c - b) */
2849                         ir_node  *sub_l = get_Sub_left(b);
2850                         ir_node  *sub_r = get_Sub_right(b);
2851                         dbg_info *dbgi  = get_irn_dbg_info(n);
2852                         ir_node  *block = get_nodes_block(n);
2853                         ir_node  *new_b = new_rd_Sub(dbgi, block, sub_r, sub_l, mode);
2854                         n = new_rd_Mul(dbgi, block, get_Minus_op(a), new_b, mode);
2855                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS);
2856                         return n;
2857                 }
2858         } else if (is_Minus(b)) {
2859                 if (is_Sub(a)) { /* (a - b) * (-c) -> (b - a) * c */
2860                         ir_node  *sub_l = get_Sub_left(a);
2861                         ir_node  *sub_r = get_Sub_right(a);
2862                         dbg_info *dbgi  = get_irn_dbg_info(n);
2863                         ir_node  *block = get_nodes_block(n);
2864                         ir_node  *new_a = new_rd_Sub(dbgi, block, sub_r, sub_l, mode);
2865                         n = new_rd_Mul(dbgi, block, new_a, get_Minus_op(b), mode);
2866                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS);
2867                         return n;
2868                 }
2869         } else if (is_Shl(a)) {
2870                 ir_node *const shl_l = get_Shl_left(a);
2871                 if (is_Const(shl_l) && is_Const_one(shl_l)) {
2872                         /* (1 << x) * b -> b << x */
2873                         dbg_info *const dbgi  = get_irn_dbg_info(n);
2874                         ir_node  *const block = get_nodes_block(n);
2875                         ir_node  *const shl_r = get_Shl_right(a);
2876                         n = new_rd_Shl(dbgi, block, b, shl_r, mode);
2877                         // TODO add me DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_SHIFT);
2878                         return n;
2879                 }
2880         } else if (is_Shl(b)) {
2881                 ir_node *const shl_l = get_Shl_left(b);
2882                 if (is_Const(shl_l) && is_Const_one(shl_l)) {
2883                         /* a * (1 << x) -> a << x */
2884                         dbg_info *const dbgi  = get_irn_dbg_info(n);
2885                         ir_node  *const block = get_nodes_block(n);
2886                         ir_node  *const shl_r = get_Shl_right(b);
2887                         n = new_rd_Shl(dbgi, block, a, shl_r, mode);
2888                         // TODO add me DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_SHIFT);
2889                         return n;
2890                 }
2891         }
2892         if (get_mode_arithmetic(mode) == irma_ieee754) {
2893                 if (is_Const(a)) {
2894                         tarval *tv = get_Const_tarval(a);
2895                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)
2896                                         && !tarval_is_negative(tv)) {
2897                                 /* 2.0 * b = b + b */
2898                                 n = new_rd_Add(get_irn_dbg_info(n), get_nodes_block(n), b, b, mode);
2899                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2900                                 return n;
2901                         }
2902                 }
2903                 else if (is_Const(b)) {
2904                         tarval *tv = get_Const_tarval(b);
2905                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)
2906                                         && !tarval_is_negative(tv)) {
2907                                 /* a * 2.0 = a + a */
2908                                 n = new_rd_Add(get_irn_dbg_info(n), get_nodes_block(n), a, a, mode);
2909                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2910                                 return n;
2911                         }
2912                 }
2913         }
2914         return arch_dep_replace_mul_with_shifts(n);
2915 }  /* transform_node_Mul */
2916
2917 /**
2918  * Transform a Div Node.
2919  */
2920 static ir_node *transform_node_Div(ir_node *n)
2921 {
2922         ir_mode *mode = get_Div_resmode(n);
2923         ir_node *a = get_Div_left(n);
2924         ir_node *b = get_Div_right(n);
2925         ir_node *value;
2926         const ir_node *dummy;
2927
2928         if (is_Const(b) && is_const_Phi(a)) {
2929                 /* check for Div(Phi, Const) */
2930                 value = apply_binop_on_phi(a, get_Const_tarval(b), (eval_func) tarval_div, mode, 0);
2931                 if (value) {
2932                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
2933                         goto make_tuple;
2934                 }
2935         }
2936         else if (is_Const(a) && is_const_Phi(b)) {
2937                 /* check for Div(Const, Phi) */
2938                 value = apply_binop_on_phi(b, get_Const_tarval(a), (eval_func) tarval_div, mode, 1);
2939                 if (value) {
2940                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
2941                         goto make_tuple;
2942                 }
2943         }
2944         else if (is_const_Phi(a) && is_const_Phi(b)) {
2945                 /* check for Div(Phi, Phi) */
2946                 value = apply_binop_on_2_phis(a, b, (eval_func) tarval_div, mode);
2947                 if (value) {
2948                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
2949                         goto make_tuple;
2950                 }
2951         }
2952
2953         value = n;
2954
2955         if (a == b && value_not_zero(a, &dummy)) {
2956                 /* BEWARE: we can optimize a/a to 1 only if this cannot cause a exception */
2957                 value = new_Const(get_mode_one(mode));
2958                 DBG_OPT_CSTEVAL(n, value);
2959                 goto make_tuple;
2960         } else {
2961                 if (mode_is_signed(mode) && is_Const(b)) {
2962                         tarval *tv = get_Const_tarval(b);
2963
2964                         if (tv == get_mode_minus_one(mode)) {
2965                                 /* a / -1 */
2966                                 value = new_rd_Minus(get_irn_dbg_info(n), get_nodes_block(n), a, mode);
2967                                 DBG_OPT_CSTEVAL(n, value);
2968                                 goto make_tuple;
2969                         }
2970                 }
2971                 /* Try architecture dependent optimization */
2972                 value = arch_dep_replace_div_by_const(n);
2973         }
2974
2975         if (value != n) {
2976                 ir_node *mem, *blk;
2977
2978 make_tuple:
2979                 /* Turn Div into a tuple (mem, jmp, bad, value) */
2980                 mem = get_Div_mem(n);
2981                 blk = get_nodes_block(n);
2982
2983                 /* skip a potential Pin */
2984                 mem = skip_Pin(mem);
2985                 turn_into_tuple(n, pn_Div_max);
2986                 set_Tuple_pred(n, pn_Div_M,         mem);
2987                 set_Tuple_pred(n, pn_Div_X_regular, new_r_Jmp(blk));
2988                 set_Tuple_pred(n, pn_Div_X_except,  new_Bad());
2989                 set_Tuple_pred(n, pn_Div_res,       value);
2990         }
2991         return n;
2992 }  /* transform_node_Div */
2993
2994 /**
2995  * Transform a Mod node.
2996  */
2997 static ir_node *transform_node_Mod(ir_node *n)
2998 {
2999         ir_mode *mode = get_Mod_resmode(n);
3000         ir_node *a = get_Mod_left(n);
3001         ir_node *b = get_Mod_right(n);
3002         ir_node *value;
3003         tarval  *tv;
3004
3005         if (is_Const(b) && is_const_Phi(a)) {
3006                 /* check for Div(Phi, Const) */
3007                 value = apply_binop_on_phi(a, get_Const_tarval(b), (eval_func) tarval_mod, mode, 0);
3008                 if (value) {
3009                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
3010                         goto make_tuple;
3011                 }
3012         }
3013         else if (is_Const(a) && is_const_Phi(b)) {
3014                 /* check for Div(Const, Phi) */
3015                 value = apply_binop_on_phi(b, get_Const_tarval(a), (eval_func) tarval_mod, mode, 1);
3016                 if (value) {
3017                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
3018                         goto make_tuple;
3019                 }
3020         }
3021         else if (is_const_Phi(a) && is_const_Phi(b)) {
3022                 /* check for Div(Phi, Phi) */
3023                 value = apply_binop_on_2_phis(a, b, (eval_func) tarval_mod, mode);
3024                 if (value) {
3025                         DBG_OPT_ALGSIM0(n, value, FS_OPT_CONST_PHI);
3026                         goto make_tuple;
3027                 }
3028         }
3029
3030         value = n;
3031         tv = value_of(n);
3032         if (tv != tarval_bad) {
3033                 value = new_Const(tv);
3034
3035                 DBG_OPT_CSTEVAL(n, value);
3036                 goto make_tuple;
3037         } else {
3038                 ir_node       *a = get_Mod_left(n);
3039                 ir_node       *b = get_Mod_right(n);
3040                 const ir_node *dummy;
3041
3042                 if (a == b && value_not_zero(a, &dummy)) {
3043                         /* BEWARE: we can optimize a%a to 0 only if this cannot cause a exception */
3044                         value = new_Const(get_mode_null(mode));
3045                         DBG_OPT_CSTEVAL(n, value);
3046                         goto make_tuple;
3047                 } else {
3048                         if (mode_is_signed(mode) && is_Const(b)) {
3049                                 tarval *tv = get_Const_tarval(b);
3050
3051                                 if (tv == get_mode_minus_one(mode)) {
3052                                         /* a % -1 = 0 */
3053                                         value = new_Const(get_mode_null(mode));
3054                                         DBG_OPT_CSTEVAL(n, value);
3055                                         goto make_tuple;
3056                                 }
3057                         }
3058                         /* Try architecture dependent optimization */
3059                         value = arch_dep_replace_mod_by_const(n);
3060                 }
3061         }
3062
3063         if (value != n) {
3064                 ir_node *mem, *blk;
3065
3066 make_tuple:
3067                 /* Turn Mod into a tuple (mem, jmp, bad, value) */
3068                 mem = get_Mod_mem(n);
3069                 blk = get_nodes_block(n);
3070
3071                 /* skip a potential Pin */
3072                 mem = skip_Pin(mem);
3073                 turn_into_tuple(n, pn_Mod_max);
3074                 set_Tuple_pred(n, pn_Mod_M,         mem);
3075                 set_Tuple_pred(n, pn_Mod_X_regular, new_r_Jmp(blk));
3076                 set_Tuple_pred(n, pn_Mod_X_except,  new_Bad());
3077                 set_Tuple_pred(n, pn_Mod_res,       value);
3078         }
3079         return n;
3080 }  /* transform_node_Mod */
3081
3082 /**
3083  * Transform a DivMod node.
3084  */
3085 static ir_node *transform_node_DivMod(ir_node *n)
3086 {
3087         const ir_node *dummy;
3088         ir_node       *a = get_DivMod_left(n);
3089         ir_node       *b = get_DivMod_right(n);
3090         ir_mode       *mode = get_DivMod_resmode(n);
3091         ir_node       *va, *vb;
3092         tarval        *ta, *tb;
3093         int           evaluated = 0;
3094
3095         if (is_Const(b) && is_const_Phi(a)) {
3096                 /* check for Div(Phi, Const) */
3097                 va = apply_binop_on_phi(a, get_Const_tarval(b), (eval_func) tarval_div, mode, 0);
3098                 vb = apply_binop_on_phi(a, get_Const_tarval(b), (eval_func) tarval_mod, mode, 0);
3099                 if (va && vb) {
3100                         DBG_OPT_ALGSIM0(n, va, FS_OPT_CONST_PHI);
3101                         DBG_OPT_ALGSIM0(n, vb, FS_OPT_CONST_PHI);
3102                         goto make_tuple;
3103                 }
3104         }
3105         else if (is_Const(a) && is_const_Phi(b)) {
3106                 /* check for Div(Const, Phi) */
3107                 va = apply_binop_on_phi(b, get_Const_tarval(a), (eval_func) tarval_div, mode, 1);
3108                 vb = apply_binop_on_phi(b, get_Const_tarval(a), (eval_func) tarval_mod, mode, 1);
3109                 if (va && vb) {
3110                         DBG_OPT_ALGSIM0(n, va, FS_OPT_CONST_PHI);
3111                         DBG_OPT_ALGSIM0(n, vb, FS_OPT_CONST_PHI);
3112                         goto make_tuple;
3113                 }
3114         }
3115         else if (is_const_Phi(a) && is_const_Phi(b)) {
3116                 /* check for Div(Phi, Phi) */
3117                 va = apply_binop_on_2_phis(a, b, (eval_func) tarval_div, mode);
3118                 vb = apply_binop_on_2_phis(a, b, (eval_func) tarval_mod, mode);
3119                 if (va && vb) {
3120                         DBG_OPT_ALGSIM0(n, va, FS_OPT_CONST_PHI);
3121                         DBG_OPT_ALGSIM0(n, vb, FS_OPT_CONST_PHI);
3122                         goto make_tuple;
3123                 }
3124         }
3125
3126         ta = value_of(a);
3127         tb = value_of(b);
3128         if (tb != tarval_bad) {
3129                 if (tb == get_mode_one(get_tarval_mode(tb))) {
3130                         va = a;
3131                         vb = new_Const(get_mode_null(mode));
3132                         DBG_OPT_CSTEVAL(n, vb);
3133                         goto make_tuple;
3134                 } else if (ta != tarval_bad) {
3135                         tarval *resa, *resb;
3136                         resa = tarval_div(ta, tb);
3137                         if (resa == tarval_bad) return n; /* Causes exception!!! Model by replacing through
3138                                                              Jmp for X result!? */
3139                         resb = tarval_mod(ta, tb);
3140                         if (resb == tarval_bad) return n; /* Causes exception! */
3141                         va = new_Const(resa);
3142                         vb = new_Const(resb);
3143                         DBG_OPT_CSTEVAL(n, va);
3144                         DBG_OPT_CSTEVAL(n, vb);
3145                         goto make_tuple;
3146                 } else if (mode_is_signed(mode) && tb == get_mode_minus_one(mode)) {
3147                         va = new_rd_Minus(get_irn_dbg_info(n), get_nodes_block(n), a, mode);
3148                         vb = new_Const(get_mode_null(mode));
3149                         DBG_OPT_CSTEVAL(n, va);
3150                         DBG_OPT_CSTEVAL(n, vb);
3151                         goto make_tuple;
3152                 } else { /* Try architecture dependent optimization */
3153                         va = a;
3154                         vb = b;
3155                         arch_dep_replace_divmod_by_const(&va, &vb, n);
3156                         evaluated = va != NULL;
3157                 }
3158         } else if (a == b) {
3159                 if (value_not_zero(a, &dummy)) {
3160                         /* a/a && a != 0 */
3161                         va = new_Const(get_mode_one(mode));
3162                         vb = new_Const(get_mode_null(mode));
3163                         DBG_OPT_CSTEVAL(n, va);
3164                         DBG_OPT_CSTEVAL(n, vb);
3165                         goto make_tuple;
3166                 } else {
3167                         /* BEWARE: it is NOT possible to optimize a/a to 1, as this may cause a exception */
3168                         return n;
3169                 }
3170         } else if (ta == get_mode_null(mode) && value_not_zero(b, &dummy)) {
3171                 /* 0 / non-Const = 0 */
3172                 vb = va = a;
3173                 goto make_tuple;
3174         }
3175
3176         if (evaluated) { /* replace by tuple */
3177                 ir_node *mem, *blk;
3178
3179 make_tuple:
3180                 mem = get_DivMod_mem(n);
3181                 /* skip a potential Pin */
3182                 mem = skip_Pin(mem);
3183
3184                 blk = get_nodes_block(n);
3185                 turn_into_tuple(n, pn_DivMod_max);
3186                 set_Tuple_pred(n, pn_DivMod_M,         mem);
3187                 set_Tuple_pred(n, pn_DivMod_X_regular, new_r_Jmp(blk));
3188                 set_Tuple_pred(n, pn_DivMod_X_except,  new_Bad());  /* no exception */
3189                 set_Tuple_pred(n, pn_DivMod_res_div,   va);
3190                 set_Tuple_pred(n, pn_DivMod_res_mod,   vb);
3191         }
3192
3193         return n;
3194 }  /* transform_node_DivMod */
3195
3196 /**
3197  * Optimize x / c to x * (1/c)
3198  */
3199 static ir_node *transform_node_Quot(ir_node *n)
3200 {
3201         ir_mode *mode = get_Quot_resmode(n);
3202         ir_node *oldn = n;
3203
3204         if (get_mode_arithmetic(mode) == irma_ieee754) {
3205                 ir_node *b = get_Quot_right(n);
3206                 tarval *tv = value_of(b);
3207
3208                 if (tv != tarval_bad) {
3209                         int rem = tarval_fp_ops_enabled();
3210
3211                         /*
3212                          * Floating point constant folding might be disabled here to
3213                          * prevent rounding.
3214                          * However, as we check for exact result, doing it is safe.
3215                          * Switch it on.
3216                          */
3217                         tarval_enable_fp_ops(1);
3218                         tv = tarval_quo(get_mode_one(mode), tv);
3219                         tarval_enable_fp_ops(rem);
3220
3221                         /* Do the transformation if the result is either exact or we are not
3222                            using strict rules. */
3223                         if (tv != tarval_bad &&
3224                             (tarval_ieee754_get_exact() || (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic) == 0)) {
3225                                 ir_node *blk = get_nodes_block(n);
3226                                 ir_node *c = new_Const(tv);
3227                                 ir_node *a = get_Quot_left(n);
3228                                 ir_node *m = new_rd_Mul(get_irn_dbg_info(n), blk, a, c, mode);
3229                                 ir_node *mem = get_Quot_mem(n);
3230
3231                                 /* skip a potential Pin */
3232                                 mem = skip_Pin(mem);
3233                                 turn_into_tuple(n, pn_Quot_max);
3234                                 set_Tuple_pred(n, pn_Quot_M, mem);
3235                                 set_Tuple_pred(n, pn_Quot_X_regular, new_r_Jmp(blk));
3236                                 set_Tuple_pred(n, pn_Quot_X_except,  new_Bad());
3237                                 set_Tuple_pred(n, pn_Quot_res, m);
3238                                 DBG_OPT_ALGSIM1(oldn, a, b, m, FS_OPT_FP_INV_MUL);
3239                         }
3240                 }
3241         }
3242         return n;
3243 }  /* transform_node_Quot */
3244
3245 /**
3246  * Optimize Abs(x) into  x if x is Confirmed >= 0
3247  * Optimize Abs(x) into -x if x is Confirmed <= 0
3248  * Optimize Abs(-x) int Abs(x)
3249  */
3250 static ir_node *transform_node_Abs(ir_node *n)
3251 {
3252         ir_node *c, *oldn = n;
3253         ir_node *a = get_Abs_op(n);
3254         ir_mode *mode;
3255
3256         HANDLE_UNOP_PHI(tarval_abs, a, c);
3257
3258         switch (classify_value_sign(a)) {
3259         case value_classified_negative:
3260                 mode = get_irn_mode(n);
3261
3262                 /*
3263                  * We can replace the Abs by -x here.
3264                  * We even could add a new Confirm here
3265                  * (if not twos complement)
3266                  *
3267                  * Note that -x would create a new node, so we could
3268                  * not run it in the equivalent_node() context.
3269                  */
3270                 n = new_rd_Minus(get_irn_dbg_info(n), get_nodes_block(n), a, mode);
3271
3272                 DBG_OPT_CONFIRM(oldn, n);
3273                 return n;
3274         case value_classified_positive:
3275                 /* n is positive, Abs is not needed */
3276                 n = a;
3277
3278                 DBG_OPT_CONFIRM(oldn, n);
3279                 return n;
3280         default:
3281                 break;
3282         }
3283         if (is_Minus(a)) {
3284                 /* Abs(-x) = Abs(x) */
3285                 mode = get_irn_mode(n);
3286                 n = new_rd_Abs(get_irn_dbg_info(n), get_nodes_block(n), get_Minus_op(a), mode);
3287                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ABS_MINUS_X);
3288                 return n;
3289         }
3290         return n;
3291 }  /* transform_node_Abs */
3292
3293 /**
3294  * Optimize -a CMP -b into b CMP a.
3295  * This works only for for modes where unary Minus
3296  * cannot Overflow.
3297  * Note that two-complement integers can Overflow
3298  * so it will NOT work.
3299  *
3300  * For == and != can be handled in Proj(Cmp)
3301  */
3302 static ir_node *transform_node_Cmp(ir_node *n)
3303 {
3304         ir_node *oldn = n;
3305         ir_node *left  = get_Cmp_left(n);
3306         ir_node *right = get_Cmp_right(n);
3307
3308         if (is_Minus(left) && is_Minus(right) &&
3309                 !mode_overflow_on_unary_Minus(get_irn_mode(left))) {
3310                 ir_node *const new_left  = get_Minus_op(right);
3311                 ir_node *const new_right = get_Minus_op(left);
3312                 n = new_rd_Cmp(get_irn_dbg_info(n), get_nodes_block(n), new_left, new_right);
3313                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_CMP_OP_OP);
3314         }
3315         return n;
3316 }  /* transform_node_Cmp */
3317
3318
3319 /**
3320  * Transform a Cond node.
3321  *
3322  * Replace the Cond by a Jmp if it branches on a constant
3323  * condition.
3324  */
3325 static ir_node *transform_node_Cond(ir_node *n)
3326 {
3327
3328         ir_node *jmp;
3329         ir_node *a = get_Cond_selector(n);
3330         tarval *ta = value_of(a);
3331
3332         /* we need block info which is not available in floating irgs */
3333         if (get_irg_pinned(current_ir_graph) == op_pin_state_floats)
3334                 return n;
3335
3336         if ((ta != tarval_bad) &&
3337             (get_irn_mode(a) == mode_b) &&
3338             (get_opt_unreachable_code())) {
3339                 /* It's a boolean Cond, branching on a boolean constant.
3340                    Replace it by a tuple (Bad, Jmp) or (Jmp, Bad) */
3341                 ir_node *blk = get_nodes_block(n);
3342                 jmp = new_r_Jmp(blk);
3343                 turn_into_tuple(n, pn_Cond_max);
3344                 if (ta == tarval_b_true) {
3345                         set_Tuple_pred(n, pn_Cond_false, new_Bad());
3346                         set_Tuple_pred(n, pn_Cond_true, jmp);
3347                 } else {
3348                         set_Tuple_pred(n, pn_Cond_false, jmp);
3349                         set_Tuple_pred(n, pn_Cond_true, new_Bad());
3350                 }
3351                 /* We might generate an endless loop, so keep it alive. */
3352                 add_End_keepalive(get_irg_end(current_ir_graph), blk);
3353         }
3354         return n;
3355 }  /* transform_node_Cond */
3356
3357 /**
3358  * Prototype of a recursive transform function
3359  * for bitwise distributive transformations.
3360  */
3361 typedef ir_node* (*recursive_transform)(ir_node *n);
3362
3363 /**
3364  * makes use of distributive laws for and, or, eor
3365  *     and(a OP c, b OP c) -> and(a, b) OP c
3366  * note, might return a different op than n
3367  */
3368 static ir_node *transform_bitwise_distributive(ir_node *n,
3369                                                recursive_transform trans_func)
3370 {
3371         ir_node *oldn    = n;
3372         ir_node *a       = get_binop_left(n);
3373         ir_node *b       = get_binop_right(n);
3374         ir_op   *op      = get_irn_op(a);
3375         ir_op   *op_root = get_irn_op(n);
3376
3377         if (op != get_irn_op(b))
3378                 return n;
3379
3380         /* and(conv(a), conv(b)) -> conv(and(a,b)) */
3381         if (op == op_Conv) {
3382                 ir_node *a_op   = get_Conv_op(a);
3383                 ir_node *b_op   = get_Conv_op(b);
3384                 ir_mode *a_mode = get_irn_mode(a_op);
3385                 ir_mode *b_mode = get_irn_mode(b_op);
3386                 if (a_mode == b_mode && (mode_is_int(a_mode) || a_mode == mode_b)) {
3387                         ir_node *blk = get_nodes_block(n);
3388
3389                         n = exact_copy(n);
3390                         set_binop_left(n, a_op);
3391                         set_binop_right(n, b_op);
3392                         set_irn_mode(n, a_mode);
3393                         n = trans_func(n);
3394                         n = new_r_Conv(blk, n, get_irn_mode(oldn));
3395
3396                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_CONV);
3397                         return n;
3398                 }
3399         }
3400
3401         if (op == op_Eor) {
3402                 /* nothing to gain here */
3403                 return n;
3404         }
3405
3406         if (op == op_Shrs || op == op_Shr || op == op_Shl
3407                         || op == op_And || op == op_Or || op == op_Eor) {
3408                 ir_node *a_left  = get_binop_left(a);
3409                 ir_node *a_right = get_binop_right(a);
3410                 ir_node *b_left  = get_binop_left(b);
3411                 ir_node *b_right = get_binop_right(b);
3412                 ir_node *c       = NULL;
3413                 ir_node *op1     = NULL;
3414                 ir_node *op2     = NULL;
3415
3416                 if (is_op_commutative(op)) {
3417                         if (a_left == b_left) {
3418                                 c   = a_left;
3419                                 op1 = a_right;
3420                                 op2 = b_right;
3421                         } else if (a_left == b_right) {
3422                                 c   = a_left;
3423                                 op1 = a_right;
3424                                 op2 = b_left;
3425                         } else if (a_right == b_left) {
3426                                 c   = a_right;
3427                                 op1 = a_left;
3428                                 op2 = b_right;
3429                         }
3430                 }
3431                 if (a_right == b_right) {
3432                         c   = a_right;
3433                         op1 = a_left;
3434                         op2 = b_left;
3435                 }
3436
3437                 if (c != NULL) {
3438                         /* (a sop c) & (b sop c) => (a & b) sop c */
3439                         ir_node *blk = get_nodes_block(n);
3440
3441                         ir_node *new_n = exact_copy(n);
3442                         set_binop_left(new_n, op1);
3443                         set_binop_right(new_n, op2);
3444                         new_n = trans_func(new_n);
3445
3446                         if (op_root == op_Eor && op == op_Or) {
3447                                 dbg_info  *dbgi = get_irn_dbg_info(n);
3448                                 ir_mode   *mode = get_irn_mode(c);
3449
3450                                 c = new_rd_Not(dbgi, blk, c, mode);
3451                                 n = new_rd_And(dbgi, blk, new_n, c, mode);
3452                         } else {
3453                                 n = exact_copy(a);
3454                                 set_nodes_block(n, blk);
3455                                 set_binop_left(n, new_n);
3456                                 set_binop_right(n, c);
3457                                 add_identities(current_ir_graph->value_table, n);
3458                         }
3459
3460                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_SHIFT_AND);
3461                         return n;
3462                 }
3463         }
3464
3465         return n;
3466 }
3467
3468 /**
3469  * Transform an And.
3470  */
3471 static ir_node *transform_node_And(ir_node *n)
3472 {
3473         ir_node *c, *oldn = n;
3474         ir_node *a = get_And_left(n);
3475         ir_node *b = get_And_right(n);
3476         ir_mode *mode;
3477         vrp_attr *a_vrp, *b_vrp;
3478
3479         mode = get_irn_mode(n);
3480         HANDLE_BINOP_PHI((eval_func) tarval_and, a, b, c, mode);
3481
3482         /* we can evaluate 2 Projs of the same Cmp */
3483         if (mode == mode_b && is_Proj(a) && is_Proj(b)) {
3484                 ir_node *pred_a = get_Proj_pred(a);
3485                 ir_node *pred_b = get_Proj_pred(b);
3486                 if (pred_a == pred_b) {
3487                         dbg_info *dbgi  = get_irn_dbg_info(n);
3488                         pn_Cmp pn_a     = get_Proj_proj(a);
3489                         pn_Cmp pn_b     = get_Proj_proj(b);
3490                         /* yes, we can simply calculate with pncs */
3491                         pn_Cmp new_pnc  = pn_a & pn_b;
3492
3493                         return new_rd_Proj(dbgi, pred_a, mode_b, new_pnc);
3494                 }
3495         }
3496         if (is_Or(a)) {
3497                 if (is_Not(b)) {
3498                         ir_node *op = get_Not_op(b);
3499                         if (is_And(op)) {
3500                                 ir_node *ba = get_And_left(op);
3501                                 ir_node *bb = get_And_right(op);
3502
3503                                 /* it's enough to test the following cases due to normalization! */
3504                                 if (get_Or_left(a) == ba && get_Or_right(a) == bb) {
3505                                         /* (a|b) & ~(a&b) = a^b */
3506                                         ir_node *block = get_nodes_block(n);
3507
3508                                         n = new_rd_Eor(get_irn_dbg_info(n), block, ba, bb, mode);
3509                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_TO_EOR);
3510                                         return n;
3511                                 }
3512                         }
3513                 }
3514         }
3515         if (is_Or(b)) {
3516                 if (is_Not(a)) {
3517                         ir_node *op = get_Not_op(a);
3518                         if (is_And(op)) {
3519                                 ir_node *aa = get_And_left(op);
3520                                 ir_node *ab = get_And_right(op);
3521
3522                                 /* it's enough to test the following cases due to normalization! */
3523                                 if (get_Or_left(b) == aa && get_Or_right(b) == ab) {
3524                                         /* (a|b) & ~(a&b) = a^b */
3525                                         ir_node *block = get_nodes_block(n);
3526
3527                                         n = new_rd_Eor(get_irn_dbg_info(n), block, aa, ab, mode);
3528                                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_TO_EOR);
3529                                         return n;
3530                                 }
3531                         }
3532                 }
3533         }
3534         if (is_Eor(a)) {
3535                 ir_node *al = get_Eor_left(a);
3536                 ir_node *ar = get_Eor_right(a);
3537
3538                 if (al == b) {
3539                         /* (b ^ a) & b -> ~a & b */
3540                         dbg_info *dbg  = get_irn_dbg_info(n);
3541                         ir_node *block = get_nodes_block(n);
3542
3543                         ar = new_rd_Not(dbg, block, ar, mode);
3544                         n  = new_rd_And(dbg, block, ar, b, mode);
3545                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3546                         return n;
3547                 }
3548                 if (ar == b) {
3549                         /* (a ^ b) & b -> ~a & b */
3550                         dbg_info *dbg  = get_irn_dbg_info(n);
3551                         ir_node *block = get_nodes_block(n);
3552
3553                         al = new_rd_Not(dbg, block, al, mode);
3554                         n  = new_rd_And(dbg, block, al, b, mode);
3555                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3556                         return n;
3557                 }
3558         }
3559         if (is_Eor(b)) {
3560                 ir_node *bl = get_Eor_left(b);
3561                 ir_node *br = get_Eor_right(b);
3562
3563                 if (bl == a) {
3564                         /* a & (a ^ b) -> a & ~b */
3565                         dbg_info *dbg  = get_irn_dbg_info(n);
3566                         ir_node *block = get_nodes_block(n);
3567
3568                         br = new_rd_Not(dbg, block, br, mode);
3569                         n  = new_rd_And(dbg, block, br, a, mode);
3570                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3571                         return n;
3572                 }
3573                 if (br == a) {
3574                         /* a & (b ^ a) -> a & ~b */
3575                         dbg_info *dbg  = get_irn_dbg_info(n);
3576                         ir_node *block = get_nodes_block(n);
3577
3578                         bl = new_rd_Not(dbg, block, bl, mode);
3579                         n  = new_rd_And(dbg, block, bl, a, mode);
3580                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3581                         return n;
3582                 }
3583         }
3584         if (is_Not(a) && is_Not(b)) {
3585                 /* ~a & ~b = ~(a|b) */
3586                 ir_node *block = get_nodes_block(n);
3587                 ir_mode *mode = get_irn_mode(n);
3588
3589                 a = get_Not_op(a);
3590                 b = get_Not_op(b);
3591                 n = new_rd_Or(get_irn_dbg_info(n), block, a, b, mode);
3592                 n = new_rd_Not(get_irn_dbg_info(n), block, n, mode);
3593                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_DEMORGAN);
3594                 return n;
3595         }
3596
3597         b_vrp = vrp_get_info(b);
3598         if (is_Const(a) && b_vrp && (tarval_cmp(tarval_or(get_Const_tarval(a),
3599                                                 b_vrp->bits_not_set), get_Const_tarval(a)) == pn_Cmp_Eq)) {
3600
3601                 return b;
3602
3603         }
3604
3605         a_vrp = vrp_get_info(a);
3606         if (is_Const(b) && a_vrp && (tarval_cmp(tarval_or(get_Const_tarval(b),
3607                                                 a_vrp->bits_not_set), get_Const_tarval(b)) == pn_Cmp_Eq)) {
3608                 return a;
3609         }
3610
3611         n = transform_bitwise_distributive(n, transform_node_And);
3612
3613         return n;
3614 }  /* transform_node_And */
3615
3616 /**
3617  * Transform an Eor.
3618  */
3619 static ir_node *transform_node_Eor(ir_node *n)
3620 {
3621         ir_node *c, *oldn = n;
3622         ir_node *a = get_Eor_left(n);
3623         ir_node *b = get_Eor_right(n);
3624         ir_mode *mode = get_irn_mode(n);
3625
3626         HANDLE_BINOP_PHI((eval_func) tarval_eor, a, b, c, mode);
3627
3628         /* we can evaluate 2 Projs of the same Cmp */
3629         if (mode == mode_b && is_Proj(a) && is_Proj(b)) {
3630                 ir_node *pred_a = get_Proj_pred(a);
3631                 ir_node *pred_b = get_Proj_pred(b);
3632                 if (pred_a == pred_b) {
3633                         dbg_info *dbgi  = get_irn_dbg_info(n);
3634                         pn_Cmp pn_a     = get_Proj_proj(a);
3635                         pn_Cmp pn_b     = get_Proj_proj(b);
3636                         /* yes, we can simply calculate with pncs */
3637                         pn_Cmp new_pnc  = pn_a ^ pn_b;
3638
3639                         return new_rd_Proj(dbgi, pred_a, mode_b, new_pnc);
3640                 }
3641         }
3642
3643         if (a == b) {
3644                 /* a ^ a = 0 */
3645                 n = new_rd_Const(get_irn_dbg_info(n), current_ir_graph,
3646                                  get_mode_null(mode));
3647                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_A_A);
3648         } else if (is_Const(b)) {
3649                 if (is_Not(a)) { /* ~x ^ const -> x ^ ~const */
3650                         ir_node  *cnst   = new_Const(tarval_not(get_Const_tarval(b)));
3651                         ir_node  *not_op = get_Not_op(a);
3652                         dbg_info *dbg    = get_irn_dbg_info(n);
3653                         ir_node  *block  = get_nodes_block(n);
3654                         ir_mode  *mode   = get_irn_mode(n);
3655                         n = new_rd_Eor(dbg, block, not_op, cnst, mode);
3656                         return n;
3657                 } else if (is_Const_all_one(b)) { /* x ^ 1...1 -> ~1 */
3658                         n = new_r_Not(get_nodes_block(n), a, mode);
3659                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
3660                 }
3661         } else {
3662                 n = transform_bitwise_distributive(n, transform_node_Eor);
3663         }
3664
3665         return n;
3666 }  /* transform_node_Eor */
3667
3668 /**
3669  * Transform a Not.
3670  */
3671 static ir_node *transform_node_Not(ir_node *n)
3672 {
3673         ir_node *c, *oldn = n;
3674         ir_node *a    = get_Not_op(n);
3675         ir_mode *mode = get_irn_mode(n);
3676
3677         HANDLE_UNOP_PHI(tarval_not,a,c);
3678
3679         /* check for a boolean Not */
3680         if (mode == mode_b && is_Proj(a)) {
3681                 ir_node *a_pred = get_Proj_pred(a);
3682                 if (is_Cmp(a_pred)) {
3683                         /* We negate a Cmp. The Cmp has the negated result anyways! */
3684                         n = new_r_Proj(get_Proj_pred(a),
3685                                        mode_b, get_negated_pnc(get_Proj_proj(a), mode_b));
3686                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_CMP);
3687                         return n;
3688                 }
3689         }
3690         if (is_Eor(a)) {
3691                 ir_node *eor_b = get_Eor_right(a);
3692                 if (is_Const(eor_b)) { /* ~(x ^ const) -> x ^ ~const */
3693                         ir_node  *cnst  = new_Const(tarval_not(get_Const_tarval(eor_b)));
3694                         ir_node  *eor_a = get_Eor_left(a);
3695                         dbg_info *dbg   = get_irn_dbg_info(n);
3696                         ir_node  *block = get_nodes_block(n);
3697                         ir_mode  *mode  = get_irn_mode(n);
3698                         n = new_rd_Eor(dbg, block, eor_a, cnst, mode);
3699                         return n;
3700                 }
3701         }
3702         if (get_mode_arithmetic(mode) == irma_twos_complement) {
3703                 if (is_Minus(a)) { /* ~-x -> x + -1 */
3704                         dbg_info *dbg   = get_irn_dbg_info(n);
3705                         ir_graph *irg   = current_ir_graph;
3706                         ir_node  *block = get_nodes_block(n);
3707                         ir_node  *add_l = get_Minus_op(a);
3708                         ir_node  *add_r = new_rd_Const(dbg, irg, get_mode_minus_one(mode));
3709                         n = new_rd_Add(dbg, block, add_l, add_r, mode);
3710                 } else if (is_Add(a)) {
3711                         ir_node *add_r = get_Add_right(a);
3712                         if (is_Const(add_r) && is_Const_all_one(add_r)) {
3713                                 /* ~(x + -1) = -x */
3714                                 ir_node *op = get_Add_left(a);
3715                                 ir_node *blk = get_nodes_block(n);
3716                                 n = new_rd_Minus(get_irn_dbg_info(n), blk, op, get_irn_mode(n));
3717                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_MINUS_1);
3718                         }
3719                 }
3720         }
3721         return n;
3722 }  /* transform_node_Not */
3723
3724 /**
3725  * Transform a Minus.
3726  * Optimize:
3727  *   -(~x) = x + 1
3728  *   -(a-b) = b - a
3729  *   -(a >>u (size-1)) = a >>s (size-1)
3730  *   -(a >>s (size-1)) = a >>u (size-1)
3731  *   -(a * const) -> a * -const
3732  */
3733 static ir_node *transform_node_Minus(ir_node *n)
3734 {
3735         ir_node *c, *oldn = n;
3736         ir_node *a = get_Minus_op(n);
3737         ir_mode *mode;
3738
3739         HANDLE_UNOP_PHI(tarval_neg,a,c);
3740
3741         mode = get_irn_mode(a);
3742         if (get_mode_arithmetic(mode) == irma_twos_complement) {
3743                 /* the following rules are only to twos-complement */
3744                 if (is_Not(a)) {
3745                         /* -(~x) = x + 1 */
3746                         ir_node *op   = get_Not_op(a);
3747                         tarval *tv    = get_mode_one(mode);
3748                         ir_node *blk  = get_nodes_block(n);
3749                         ir_node *c    = new_Const(tv);
3750                         n = new_rd_Add(get_irn_dbg_info(n), blk, op, c, mode);
3751                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_NOT);
3752                         return n;
3753                 }
3754                 if (is_Shr(a)) {
3755                         ir_node *c = get_Shr_right(a);
3756
3757                         if (is_Const(c)) {
3758                                 tarval *tv = get_Const_tarval(c);
3759
3760                                 if (tarval_is_long(tv) && get_tarval_long(tv) == (int) get_mode_size_bits(mode) - 1) {
3761                                         /* -(a >>u (size-1)) = a >>s (size-1) */
3762                                         ir_node *v = get_Shr_left(a);
3763
3764                                         n = new_rd_Shrs(get_irn_dbg_info(n), get_nodes_block(n), v, c, mode);
3765                                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_PREDICATE);
3766                                         return n;
3767                                 }
3768                         }
3769                 }
3770                 if (is_Shrs(a)) {
3771                         ir_node *c = get_Shrs_right(a);
3772
3773                         if (is_Const(c)) {
3774                                 tarval *tv = get_Const_tarval(c);
3775
3776                                 if (tarval_is_long(tv) && get_tarval_long(tv) == (int) get_mode_size_bits(mode) - 1) {
3777                                         /* -(a >>s (size-1)) = a >>u (size-1) */
3778                                         ir_node *v = get_Shrs_left(a);
3779
3780                                         n = new_rd_Shr(get_irn_dbg_info(n), get_nodes_block(n), v, c, mode);
3781                                         DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_PREDICATE);
3782                                         return n;
3783                                 }
3784                         }
3785                 }
3786         }
3787         if (is_Sub(a)) {
3788                 /* - (a-b) = b - a */
3789                 ir_node *la  = get_Sub_left(a);
3790                 ir_node *ra  = get_Sub_right(a);
3791                 ir_node *blk = get_nodes_block(n);
3792
3793                 n = new_rd_Sub(get_irn_dbg_info(n), blk, ra, la, mode);
3794                 DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_SUB);
3795                 return n;
3796         }
3797
3798         if (is_Mul(a)) { /* -(a * const) -> a * -const */
3799                 ir_node *mul_l = get_Mul_left(a);
3800                 ir_node *mul_r = get_Mul_right(a);
3801                 tarval  *tv    = value_of(mul_r);
3802                 if (tv != tarval_bad) {
3803                         tv = tarval_neg(tv);
3804                         if (tv != tarval_bad) {
3805                                 ir_node  *cnst  = new_Const(tv);
3806                                 dbg_info *dbg   = get_irn_dbg_info(a);
3807                                 ir_node  *block = get_nodes_block(a);
3808                                 n = new_rd_Mul(dbg, block, mul_l, cnst, mode);
3809                                 DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_MUL_C);
3810                                 return n;
3811                         }
3812                 }
3813         }
3814
3815         return n;
3816 }  /* transform_node_Minus */
3817
3818 /**
3819  * Transform a Cast_type(Const) into a new Const_type
3820  */
3821 static ir_node *transform_node_Cast(ir_node *n)
3822 {
3823         ir_node *oldn = n;
3824         ir_node *pred = get_Cast_op(n);
3825         ir_type *tp = get_irn_type(n);
3826
3827         if (is_Const(pred) && get_Const_type(pred) != tp) {
3828                 n = new_rd_Const_type(NULL, current_ir_graph, get_Const_tarval(pred), tp);
3829                 DBG_OPT_CSTEVAL(oldn, n);
3830         } else if (is_SymConst(pred) && get_SymConst_value_type(pred) != tp) {
3831                 n = new_rd_SymConst_type(NULL, current_ir_graph, get_irn_mode(pred),
3832                         get_SymConst_symbol(pred), get_SymConst_kind(pred), tp);
3833                 DBG_OPT_CSTEVAL(oldn, n);
3834         }
3835
3836         return n;
3837 }  /* transform_node_Cast */
3838
3839 /**
3840  * Transform a Proj(Load) with a non-null address.
3841  */
3842 static ir_node *transform_node_Proj_Load(ir_node *proj)
3843 {
3844         if (get_opt_ldst_only_null_ptr_exceptions()) {
3845                 if (get_irn_mode(proj) == mode_X) {
3846                         ir_node *load = get_Proj_pred(proj);
3847
3848                         /* get the Load address */
3849                         const ir_node *addr = get_Load_ptr(load);
3850                         const ir_node *confirm;
3851
3852                         if (value_not_null(addr, &confirm)) {
3853                                 if (confirm == NULL) {
3854                                         /* this node may float if it did not depend on a Confirm */
3855                                         set_irn_pinned(load, op_pin_state_floats);
3856                                 }
3857                                 if (get_Proj_proj(proj) == pn_Load_X_except) {
3858                                         DBG_OPT_EXC_REM(proj);
3859                                         return get_irg_bad(current_ir_graph);
3860                                 } else {
3861                                         ir_node *blk = get_nodes_block(load);
3862                                         return new_r_Jmp(blk);
3863                                 }
3864                         }
3865                 }
3866         }
3867         return proj;
3868 }  /* transform_node_Proj_Load */
3869
3870 /**
3871  * Transform a Proj(Store) with a non-null address.
3872  */
3873 static ir_node *transform_node_Proj_Store(ir_node *proj)
3874 {
3875         if (get_opt_ldst_only_null_ptr_exceptions()) {
3876                 if (get_irn_mode(proj) == mode_X) {
3877                         ir_node *store = get_Proj_pred(proj);
3878
3879                         /* get the load/store address */
3880                         const ir_node *addr = get_Store_ptr(store);
3881                         const ir_node *confirm;
3882
3883                         if (value_not_null(addr, &confirm)) {
3884                                 if (confirm == NULL) {
3885                                         /* this node may float if it did not depend on a Confirm */
3886                                         set_irn_pinned(store, op_pin_state_floats);
3887                                 }
3888                                 if (get_Proj_proj(proj) == pn_Store_X_except) {
3889                                         DBG_OPT_EXC_REM(proj);
3890                                         return get_irg_bad(current_ir_graph);
3891                                 } else {
3892                                         ir_node *blk = get_nodes_block(store);
3893                                         return new_r_Jmp(blk);
3894                                 }
3895                         }
3896                 }
3897         }
3898         return proj;
3899 }  /* transform_node_Proj_Store */
3900
3901 /**
3902  * Transform a Proj(Div) with a non-zero value.
3903  * Removes the exceptions and routes the memory to the NoMem node.
3904  */
3905 static ir_node *transform_node_Proj_Div(ir_node *proj)
3906 {
3907         ir_node *div = get_Proj_pred(proj);
3908         ir_node *b   = get_Div_right(div);
3909         ir_node *res, *new_mem;
3910         const ir_node *confirm;
3911         long proj_nr;
3912
3913         if (value_not_zero(b, &confirm)) {
3914                 /* div(x, y) && y != 0 */
3915                 if (confirm == NULL) {
3916                         /* we are sure we have a Const != 0 */
3917                         new_mem = get_Div_mem(div);
3918                         new_mem = skip_Pin(new_mem);
3919                         set_Div_mem(div, new_mem);
3920                         set_irn_pinned(div, op_pin_state_floats);
3921                 }
3922
3923                 proj_nr = get_Proj_proj(proj);
3924                 switch (proj_nr) {
3925                 case pn_Div_X_regular:
3926                         return new_r_Jmp(get_nodes_block(div));
3927
3928                 case pn_Div_X_except:
3929                         /* we found an exception handler, remove it */
3930                         DBG_OPT_EXC_REM(proj);
3931                         return new_Bad();
3932
3933                 case pn_Div_M:
3934                         res = get_Div_mem(div);
3935                         new_mem = get_irg_no_mem(current_ir_graph);
3936
3937                         if (confirm) {
3938                                 /* This node can only float up to the Confirm block */
3939                                 new_mem = new_r_Pin(get_nodes_block(confirm), new_mem);
3940                         }
3941                         set_irn_pinned(div, op_pin_state_floats);
3942                         /* this is a Div without exception, we can remove the memory edge */
3943                         set_Div_mem(div, new_mem);
3944                         return res;
3945                 }
3946         }
3947         return proj;
3948 }  /* transform_node_Proj_Div */
3949
3950 /**
3951  * Transform a Proj(Mod) with a non-zero value.
3952  * Removes the exceptions and routes the memory to the NoMem node.
3953  */
3954 static ir_node *transform_node_Proj_Mod(ir_node *proj)
3955 {
3956         ir_node *mod = get_Proj_pred(proj);
3957         ir_node *b   = get_Mod_right(mod);
3958         ir_node *res, *new_mem;
3959         const ir_node *confirm;
3960         long proj_nr;
3961
3962         if (value_not_zero(b, &confirm)) {
3963                 /* mod(x, y) && y != 0 */
3964                 proj_nr = get_Proj_proj(proj);
3965
3966                 if (confirm == NULL) {
3967                         /* we are sure we have a Const != 0 */
3968                         new_mem = get_Mod_mem(mod);
3969                         new_mem = skip_Pin(new_mem);
3970                         set_Mod_mem(mod, new_mem);
3971                         set_irn_pinned(mod, op_pin_state_floats);
3972                 }
3973
3974                 switch (proj_nr) {
3975
3976                 case pn_Mod_X_regular:
3977                         return new_r_Jmp(get_irn_n(mod, -1));
3978
3979                 case pn_Mod_X_except:
3980                         /* we found an exception handler, remove it */
3981                         DBG_OPT_EXC_REM(proj);
3982                         return new_Bad();
3983
3984                 case pn_Mod_M:
3985                         res = get_Mod_mem(mod);
3986                         new_mem = get_irg_no_mem(current_ir_graph);
3987
3988                         if (confirm) {
3989                                 /* This node can only float up to the Confirm block */
3990                                 new_mem = new_r_Pin(get_nodes_block(confirm), new_mem);
3991                         }
3992                         /* this is a Mod without exception, we can remove the memory edge */
3993                         set_Mod_mem(mod, new_mem);
3994                         return res;
3995                 case pn_Mod_res:
3996                         if (get_Mod_left(mod) == b) {
3997                                 /* a % a = 0 if a != 0 */
3998                                 ir_mode *mode = get_irn_mode(proj);
3999                                 ir_node *res  = new_Const(get_mode_null(mode));
4000
4001                                 DBG_OPT_CSTEVAL(mod, res);
4002                                 return res;
4003                         }
4004                 }
4005         }
4006         return proj;
4007 }  /* transform_node_Proj_Mod */
4008
4009 /**
4010  * Transform a Proj(DivMod) with a non-zero value.
4011  * Removes the exceptions and routes the memory to the NoMem node.
4012  */
4013 static ir_node *transform_node_Proj_DivMod(ir_node *proj)
4014 {
4015         ir_node *divmod = get_Proj_pred(proj);
4016         ir_node *b      = get_DivMod_right(divmod);
4017         ir_node *res, *new_mem;
4018         const ir_node *confirm;
4019         long proj_nr;
4020
4021         if (value_not_zero(b, &confirm)) {
4022                 /* DivMod(x, y) && y != 0 */
4023                 proj_nr = get_Proj_proj(proj);
4024
4025                 if (confirm == NULL) {
4026                         /* we are sure we have a Const != 0 */
4027                         new_mem = get_DivMod_mem(divmod);
4028                         new_mem = skip_Pin(new_mem);
4029                         set_DivMod_mem(divmod, new_mem);
4030                         set_irn_pinned(divmod, op_pin_state_floats);
4031                 }
4032
4033                 switch (proj_nr) {
4034
4035                 case pn_DivMod_X_regular:
4036                         return new_r_Jmp(get_nodes_block(divmod));
4037
4038                 case pn_DivMod_X_except:
4039                         /* we found an exception handler, remove it */
4040                         DBG_OPT_EXC_REM(proj);
4041                         return new_Bad();
4042
4043                 case pn_DivMod_M:
4044                         res = get_DivMod_mem(divmod);
4045                         new_mem = get_irg_no_mem(current_ir_graph);
4046
4047                         if (confirm) {
4048                                 /* This node can only float up to the Confirm block */
4049                                 new_mem = new_r_Pin(get_nodes_block(confirm), new_mem);
4050                         }
4051                         /* this is a DivMod without exception, we can remove the memory edge */
4052                         set_DivMod_mem(divmod, new_mem);
4053                         return res;
4054
4055                 case pn_DivMod_res_mod:
4056                         if (get_DivMod_left(divmod) == b) {
4057                                 /* a % a = 0 if a != 0 */
4058                                 ir_mode *mode = get_irn_mode(proj);
4059                                 ir_node *res  = new_Const(get_mode_null(mode));
4060
4061                                 DBG_OPT_CSTEVAL(divmod, res);
4062                                 return res;
4063                         }
4064                 }
4065         }
4066         return proj;
4067 }  /* transform_node_Proj_DivMod */
4068
4069 /**
4070  * Optimizes jump tables (CondIs or CondIu) by removing all impossible cases.
4071  */
4072 static ir_node *transform_node_Proj_Cond(ir_node *proj)
4073 {
4074         if (get_opt_unreachable_code()) {
4075                 ir_node *n = get_Proj_pred(proj);
4076                 ir_node *b = get_Cond_selector(n);
4077
4078                 if (mode_is_int(get_irn_mode(b))) {
4079                         tarval *tb = value_of(b);
4080
4081                         if (tb != tarval_bad) {
4082                                 /* we have a constant switch */
4083                                 long num = get_Proj_proj(proj);
4084
4085                                 if (num != get_Cond_default_proj(n)) { /* we cannot optimize default Proj's yet */
4086                                         if (get_tarval_long(tb) == num) {
4087                                                 /* Do NOT create a jump here, or we will have 2 control flow ops
4088                                                  * in a block. This case is optimized away in optimize_cf(). */
4089                                                 return proj;
4090                                         } else {
4091                                                 /* this case will NEVER be taken, kill it */
4092                                                 return get_irg_bad(current_ir_graph);
4093                                         }
4094                                 }
4095                         } else {
4096                                 long num = get_Proj_proj(proj);
4097                                 vrp_attr *b_vrp = vrp_get_info(b);
4098                                 if (num != get_Cond_default_proj(n) && b_vrp) {
4099                                         /* Try handling with vrp data. We only remove dead parts. */
4100                                         tarval *tp = new_tarval_from_long(num, get_irn_mode(b));
4101
4102                                         if (b_vrp->range_type == VRP_RANGE) {
4103                                                 pn_Cmp cmp_result = tarval_cmp(b_vrp->range_bottom, tp);
4104                                                 pn_Cmp cmp_result2 = tarval_cmp(b_vrp->range_top, tp);
4105
4106                                                 if ((cmp_result & pn_Cmp_Gt) == cmp_result && (cmp_result2
4107                                                                         & pn_Cmp_Lt) == cmp_result2) {
4108                                                         return get_irg_bad(current_ir_graph);
4109                                                 }
4110                                         } else if (b_vrp->range_type == VRP_ANTIRANGE) {
4111                                                 pn_Cmp cmp_result = tarval_cmp(b_vrp->range_bottom, tp);
4112                                                 pn_Cmp cmp_result2 = tarval_cmp(b_vrp->range_top, tp);
4113
4114                                                 if ((cmp_result & pn_Cmp_Le) == cmp_result && (cmp_result2
4115                                                                         & pn_Cmp_Ge) == cmp_result2) {
4116                                                         return get_irg_bad(current_ir_graph);
4117                                                 }
4118                                         }
4119
4120                                         if (!(tarval_cmp(
4121                                                                         tarval_and( b_vrp->bits_set, tp),
4122                                                                         b_vrp->bits_set
4123                                                                         ) == pn_Cmp_Eq)) {
4124
4125                                                 return get_irg_bad(current_ir_graph);
4126                                         }
4127
4128                                         if (!(tarval_cmp(
4129                                                                         tarval_and(
4130                                                                                 tarval_not(tp),
4131                                                                                 tarval_not(b_vrp->bits_not_set)),
4132                                                                         tarval_not(b_vrp->bits_not_set))
4133                                                                          == pn_Cmp_Eq)) {
4134
4135                                                 return get_irg_bad(current_ir_graph);
4136                                         }
4137
4138
4139                                 }
4140                         }
4141                 }
4142         }
4143         return proj;
4144 }  /* transform_node_Proj_Cond */
4145
4146 /**
4147  * Create a 0 constant of given mode.
4148  */
4149 static ir_node *create_zero_const(ir_mode *mode)
4150 {
4151         tarval   *tv    = get_mode_null(mode);
4152         ir_node  *cnst  = new_Const(tv);
4153
4154         return cnst;
4155 }
4156
4157 /* the order of the values is important! */
4158 typedef enum const_class {
4159         const_const = 0,
4160         const_like  = 1,
4161         const_other = 2
4162 } const_class;
4163
4164 static const_class classify_const(const ir_node* n)
4165 {
4166         if (is_Const(n))         return const_const;
4167         if (is_irn_constlike(n)) return const_like;
4168         return const_other;
4169 }
4170
4171 /**
4172  * Determines whether r is more constlike or has a larger index (in that order)
4173  * than l.
4174  */
4175 static int operands_are_normalized(const ir_node *l, const ir_node *r)
4176 {
4177         const const_class l_order = classify_const(l);
4178         const const_class r_order = classify_const(r);
4179         return
4180                 l_order > r_order ||
4181                 (l_order == r_order && get_irn_idx(l) <= get_irn_idx(r));
4182 }
4183
4184 /**
4185  * Normalizes and optimizes Cmp nodes.
4186  */
4187 static ir_node *transform_node_Proj_Cmp(ir_node *proj)
4188 {
4189         ir_node      *n      = get_Proj_pred(proj);
4190         ir_node      *left   = get_Cmp_left(n);
4191         ir_node      *right  = get_Cmp_right(n);
4192         tarval      *tv      = NULL;
4193         int          changed = 0;
4194         ir_mode     *mode    = NULL;
4195         long         proj_nr = get_Proj_proj(proj);
4196
4197         /* we can evaluate some cases directly */
4198         switch (proj_nr) {
4199         case pn_Cmp_False:
4200                 return new_Const(get_tarval_b_false());
4201         case pn_Cmp_True:
4202                 return new_Const(get_tarval_b_true());
4203         case pn_Cmp_Leg:
4204                 if (!mode_is_float(get_irn_mode(left)))
4205                         return new_Const(get_tarval_b_true());
4206                 break;
4207         default:
4208                 break;
4209         }
4210
4211         /* remove Casts of both sides */
4212         left  = skip_Cast(left);
4213         right = skip_Cast(right);
4214
4215         /* Remove unnecessary conversions */
4216         /* TODO handle constants */
4217         if (is_Conv(left) && is_Conv(right)) {
4218                 ir_mode *mode        = get_irn_mode(left);
4219                 ir_node *op_left     = get_Conv_op(left);
4220                 ir_node *op_right    = get_Conv_op(right);
4221                 ir_mode *mode_left   = get_irn_mode(op_left);
4222                 ir_mode *mode_right  = get_irn_mode(op_right);
4223
4224                 if (smaller_mode(mode_left, mode) && smaller_mode(mode_right, mode)
4225                                 && mode_left != mode_b && mode_right != mode_b) {
4226                         ir_node  *block = get_nodes_block(n);
4227
4228                         if (mode_left == mode_right) {
4229                                 left  = op_left;
4230                                 right = op_right;
4231                                 changed |= 1;
4232                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CONV_CONV);
4233                         } else if (smaller_mode(mode_left, mode_right)) {
4234                                 left  = new_r_Conv(block, op_left, mode_right);
4235                                 right = op_right;
4236                                 changed |= 1;
4237                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CONV);
4238                         } else if (smaller_mode(mode_right, mode_left)) {
4239                                 left  = op_left;
4240                                 right = new_r_Conv(block, op_right, mode_left);
4241                                 changed |= 1;
4242                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CONV);
4243                         }
4244                 }
4245         }
4246
4247         /* remove operation on both sides if possible */
4248         if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
4249                 /*
4250                  * The following operations are NOT safe for floating point operations, for instance
4251                  * 1.0 + inf == 2.0 + inf, =/=> x == y
4252                  */
4253                 if (mode_is_int(get_irn_mode(left))) {
4254                         unsigned lop = get_irn_opcode(left);
4255
4256                         if (lop == get_irn_opcode(right)) {
4257                                 ir_node *ll, *lr, *rl, *rr;
4258
4259                                 /* same operation on both sides, try to remove */
4260                                 switch (lop) {
4261                                 case iro_Not:
4262                                 case iro_Minus:
4263                                         /* ~a CMP ~b => a CMP b, -a CMP -b ==> a CMP b */
4264                                         left  = get_unop_op(left);
4265                                         right = get_unop_op(right);
4266                                         changed |= 1;
4267                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4268                                         break;
4269                                 case iro_Add:
4270                                         ll = get_Add_left(left);
4271                                         lr = get_Add_right(left);
4272                                         rl = get_Add_left(right);
4273                                         rr = get_Add_right(right);
4274
4275                                         if (ll == rl) {
4276                                                 /* X + a CMP X + b ==> a CMP b */
4277                                                 left  = lr;
4278                                                 right = rr;
4279                                                 changed |= 1;
4280                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4281                                         } else if (ll == rr) {
4282                                                 /* X + a CMP b + X ==> a CMP b */
4283                                                 left  = lr;
4284                                                 right = rl;
4285                                                 changed |= 1;
4286                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4287                                         } else if (lr == rl) {
4288                                                 /* a + X CMP X + b ==> a CMP b */
4289                                                 left  = ll;
4290                                                 right = rr;
4291                                                 changed |= 1;
4292                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4293                                         } else if (lr == rr) {
4294                                                 /* a + X CMP b + X ==> a CMP b */
4295                                                 left  = ll;
4296                                                 right = rl;
4297                                                 changed |= 1;
4298                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4299                                         }
4300                                         break;
4301                                 case iro_Sub:
4302                                         ll = get_Sub_left(left);
4303                                         lr = get_Sub_right(left);
4304                                         rl = get_Sub_left(right);
4305                                         rr = get_Sub_right(right);
4306
4307                                         if (ll == rl) {
4308                                                 /* X - a CMP X - b ==> a CMP b */
4309                                                 left  = lr;
4310                                                 right = rr;
4311                                                 changed |= 1;
4312                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4313                                         } else if (lr == rr) {
4314                                                 /* a - X CMP b - X ==> a CMP b */
4315                                                 left  = ll;
4316                                                 right = rl;
4317                                                 changed |= 1;
4318                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4319                                         }
4320                                         break;
4321                                 case iro_Rotl:
4322                                         if (get_Rotl_right(left) == get_Rotl_right(right)) {
4323                                                 /* a ROTL X CMP b ROTL X ==> a CMP b */
4324                                                 left  = get_Rotl_left(left);
4325                                                 right = get_Rotl_left(right);
4326                                                 changed |= 1;
4327                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4328                                         }
4329                                         break;
4330                                 default:
4331                                         break;
4332                                 }
4333                         }
4334
4335                         /* X+A == A, A+X == A, A-X == A -> X == 0 */
4336                         if (is_Add(left) || is_Sub(left)) {
4337                                 ir_node *ll = get_binop_left(left);
4338                                 ir_node *lr = get_binop_right(left);
4339
4340                                 if (lr == right && is_Add(left)) {
4341                                         ir_node *tmp = ll;
4342                                         ll = lr;
4343                                         lr = tmp;
4344                                 }
4345                                 if (ll == right) {
4346                                         left     = lr;
4347                                         right    = create_zero_const(get_irn_mode(left));
4348                                         changed |= 1;
4349                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4350                                 }
4351                         }
4352                         if (is_Add(right) || is_Sub(right)) {
4353                                 ir_node *rl = get_binop_left(right);
4354                                 ir_node *rr = get_binop_right(right);
4355
4356                                 if (rr == left && is_Add(right)) {
4357                                         ir_node *tmp = rl;
4358                                         rl = rr;
4359                                         rr = tmp;
4360                                 }
4361                                 if (rl == left) {
4362                                         left     = rr;
4363                                         right    = create_zero_const(get_irn_mode(left));
4364                                         changed |= 1;
4365                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_OP);
4366                                 }
4367                         }
4368                         if (is_And(left) && is_Const(right)) {
4369                                 ir_node *ll = get_binop_left(left);
4370                                 ir_node *lr = get_binop_right(left);
4371                                 if (is_Shr(ll) && is_Const(lr)) {
4372                                         /* Cmp((x >>u c1) & c2, c3) = Cmp(x & (c2 << c1), c3 << c1) */
4373                                         ir_node *block = get_nodes_block(n);
4374                                         ir_mode *mode = get_irn_mode(left);
4375
4376                                         ir_node *llr = get_Shr_right(ll);
4377                                         if (is_Const(llr)) {
4378                                                 dbg_info *dbg = get_irn_dbg_info(left);
4379
4380                                                 tarval *c1    = get_Const_tarval(llr);
4381                                                 tarval *c2    = get_Const_tarval(lr);
4382                                                 tarval *c3    = get_Const_tarval(right);
4383                                                 tarval *mask  = tarval_shl(c2, c1);
4384                                                 tarval *value = tarval_shl(c3, c1);
4385
4386                                                 left  = new_rd_And(dbg, block, get_Shr_left(ll), new_Const(mask), mode);
4387                                                 right = new_Const(value);
4388                                                 changed |= 1;
4389                                         }
4390                                 }
4391                         }
4392                 }  /* mode_is_int(...) */
4393         }  /* proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg */
4394
4395         /* replace mode_b compares with ands/ors */
4396         if (get_irn_mode(left) == mode_b) {
4397                 ir_node  *block = get_nodes_block(n);
4398                 ir_node  *bres;
4399
4400                 switch (proj_nr) {
4401                         case pn_Cmp_Le: bres = new_r_Or( block, new_r_Not(block, left, mode_b), right, mode_b); break;
4402                         case pn_Cmp_Lt: bres = new_r_And(block, new_r_Not(block, left, mode_b), right, mode_b); break;
4403                         case pn_Cmp_Ge: bres = new_r_Or( block, left, new_r_Not(block, right, mode_b), mode_b); break;
4404                         case pn_Cmp_Gt: bres = new_r_And(block, left, new_r_Not(block, right, mode_b), mode_b); break;
4405                         case pn_Cmp_Lg: bres = new_r_Eor(block, left, right, mode_b); break;
4406                         case pn_Cmp_Eq: bres = new_r_Not(block, new_r_Eor(block, left, right, mode_b), mode_b); break;
4407                         default: bres = NULL;
4408                 }
4409                 if (bres) {
4410                         DBG_OPT_ALGSIM0(n, bres, FS_OPT_CMP_TO_BOOL);
4411                         return bres;
4412                 }
4413         }
4414
4415         /*
4416          * First step: normalize the compare op
4417          * by placing the constant on the right side
4418          * or moving the lower address node to the left.
4419          */
4420         if (!operands_are_normalized(left, right)) {
4421                 ir_node *t = left;
4422
4423                 left  = right;
4424                 right = t;
4425
4426                 proj_nr = get_inversed_pnc(proj_nr);
4427                 changed |= 1;
4428         }
4429
4430         /*
4431          * Second step: Try to reduce the magnitude
4432          * of a constant. This may help to generate better code
4433          * later and may help to normalize more compares.
4434          * Of course this is only possible for integer values.
4435          */
4436         tv = value_of(right);
4437         if (tv != tarval_bad) {
4438                 mode = get_irn_mode(right);
4439
4440                 /* TODO extend to arbitrary constants */
4441                 if (is_Conv(left) && tarval_is_null(tv)) {
4442                         ir_node *op      = get_Conv_op(left);
4443                         ir_mode *op_mode = get_irn_mode(op);
4444
4445                         /*
4446                          * UpConv(x) REL 0  ==> x REL 0
4447                          * Don't do this for float values as it's unclear whether it is a
4448                          * win. (on the other side it makes detection/creation of fabs hard)
4449                          */
4450                         if (get_mode_size_bits(mode) > get_mode_size_bits(op_mode) &&
4451                             ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) ||
4452                                  mode_is_signed(mode) || !mode_is_signed(op_mode)) &&
4453                                 !mode_is_float(mode)) {
4454                                 tv   = get_mode_null(op_mode);
4455                                 left = op;
4456                                 mode = op_mode;
4457                                 changed |= 2;
4458                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CONV);
4459                         }
4460                 }
4461
4462                 if (tv != tarval_bad) {
4463                         /* the following optimization is possible on modes without Overflow
4464                          * on Unary Minus or on == and !=:
4465                          * -a CMP c  ==>  a swap(CMP) -c
4466                          *
4467                          * Beware: for two-complement Overflow may occur, so only == and != can
4468                          * be optimized, see this:
4469                          * -MININT < 0 =/=> MININT > 0 !!!
4470                          */
4471                         if (is_Minus(left) &&
4472                                 (!mode_overflow_on_unary_Minus(mode) ||
4473                                 (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
4474                                 tv = tarval_neg(tv);
4475
4476                                 if (tv != tarval_bad) {
4477                                         left = get_Minus_op(left);
4478                                         proj_nr = get_inversed_pnc(proj_nr);
4479                                         changed |= 2;
4480                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4481                                 }
4482                         } else if (is_Not(left) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)) {
4483                                 /* Not(a) ==/!= c  ==>  a ==/!= Not(c) */
4484                                 tv = tarval_not(tv);
4485
4486                                 if (tv != tarval_bad) {
4487                                         left = get_Not_op(left);
4488                                         changed |= 2;
4489                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4490                                 }
4491                         }
4492
4493                         /* for integer modes, we have more */
4494                         if (mode_is_int(mode)) {
4495                                 /* Ne includes Unordered which is not possible on integers.
4496                                  * However, frontends often use this wrong, so fix it here */
4497                                 if (proj_nr & pn_Cmp_Uo) {
4498                                         proj_nr &= ~pn_Cmp_Uo;
4499                                         set_Proj_proj(proj, proj_nr);
4500                                 }
4501
4502                                 /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
4503                                 if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
4504                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
4505                                         tv = tarval_sub(tv, get_mode_one(mode), NULL);
4506
4507                                         if (tv != tarval_bad) {
4508                                                 proj_nr ^= pn_Cmp_Eq;
4509                                                 changed |= 2;
4510                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CNST_MAGN);
4511                                         }
4512                                 }
4513                                 /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
4514                                 else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
4515                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
4516                                         tv = tarval_add(tv, get_mode_one(mode));
4517
4518                                         if (tv != tarval_bad) {
4519                                                 proj_nr ^= pn_Cmp_Eq;
4520                                                 changed |= 2;
4521                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CNST_MAGN);
4522                                         }
4523                                 }
4524
4525                                 /* the following reassociations work only for == and != */
4526                                 if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
4527
4528 #if 0 /* Might be not that good in general */
4529                                         /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
4530                                         if (tarval_is_null(tv) && is_Sub(left)) {
4531                                                 right = get_Sub_right(left);
4532                                                 left  = get_Sub_left(left);
4533
4534                                                 tv = value_of(right);
4535                                                 changed = 1;
4536                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4537                                         }
4538 #endif
4539
4540                                         if (tv != tarval_bad) {
4541                                                 /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
4542                                                 if (is_Sub(left)) {
4543                                                         ir_node *c1 = get_Sub_right(left);
4544                                                         tarval *tv2 = value_of(c1);
4545
4546                                                         if (tv2 != tarval_bad) {
4547                                                                 tv2 = tarval_add(tv, value_of(c1));
4548
4549                                                                 if (tv2 != tarval_bad) {
4550                                                                         left    = get_Sub_left(left);
4551                                                                         tv      = tv2;
4552                                                                         changed |= 2;
4553                                                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4554                                                                 }
4555                                                         }
4556                                                 }
4557                                                 /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
4558                                                 else if (is_Add(left)) {
4559                                                         ir_node *a_l = get_Add_left(left);
4560                                                         ir_node *a_r = get_Add_right(left);
4561                                                         ir_node *a;
4562                                                         tarval *tv2;
4563
4564                                                         if (is_Const(a_l)) {
4565                                                                 a = a_r;
4566                                                                 tv2 = value_of(a_l);
4567                                                         } else {
4568                                                                 a = a_l;
4569                                                                 tv2 = value_of(a_r);
4570                                                         }
4571
4572                                                         if (tv2 != tarval_bad) {
4573                                                                 tv2 = tarval_sub(tv, tv2, NULL);
4574
4575                                                                 if (tv2 != tarval_bad) {
4576                                                                         left    = a;
4577                                                                         tv      = tv2;
4578                                                                         changed |= 2;
4579                                                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4580                                                                 }
4581                                                         }
4582                                                 }
4583                                                 /* -a == c ==> a == -c, -a != c ==> a != -c */
4584                                                 else if (is_Minus(left)) {
4585                                                         tarval *tv2 = tarval_sub(get_mode_null(mode), tv, NULL);
4586
4587                                                         if (tv2 != tarval_bad) {
4588                                                                 left    = get_Minus_op(left);
4589                                                                 tv      = tv2;
4590                                                                 changed |= 2;
4591                                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_OP_C);
4592                                                         }
4593                                                 }
4594                                         }
4595                                 } /* == or != */
4596                                 /* the following reassociations work only for <= */
4597                                 else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
4598                                         if (tv != tarval_bad) {
4599                                                 /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
4600                                                 if (is_Abs(left)) { // TODO something is missing here
4601                                                 }
4602                                         }
4603                                 }
4604                         } /* mode_is_int */
4605
4606                         if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
4607                                 switch (get_irn_opcode(left)) {
4608                                         ir_node *c1;
4609
4610                                 case iro_And:
4611                                         c1 = get_And_right(left);
4612                                         if (is_Const(c1)) {
4613                                                 /*
4614                                                  * And(x, C1) == C2 ==> FALSE if C2 & C1 != C2
4615                                                  * And(x, C1) != C2 ==> TRUE if C2 & C1 != C2
4616                                                  */
4617                                                 tarval *mask = tarval_and(get_Const_tarval(c1), tv);
4618                                                 if (mask != tv) {
4619                                                         /* TODO: move to constant evaluation */
4620                                                         tv = proj_nr == pn_Cmp_Eq ? get_tarval_b_false() : get_tarval_b_true();
4621                                                         c1 = new_Const(tv);
4622                                                         DBG_OPT_CSTEVAL(proj, c1);
4623                                                         return c1;
4624                                                 }
4625
4626                                                 if (tarval_is_single_bit(tv)) {
4627                                                         /*
4628                                                          * optimization for AND:
4629                                                          * Optimize:
4630                                                          *   And(x, C) == C  ==>  And(x, C) != 0
4631                                                          *   And(x, C) != C  ==>  And(X, C) == 0
4632                                                          *
4633                                                          * if C is a single Bit constant.
4634                                                          */
4635
4636                                                         /* check for Constant's match. We have check hare the tarvals,
4637                                                            because our const might be changed */
4638                                                         if (get_Const_tarval(c1) == tv) {
4639                                                                 /* fine: do the transformation */
4640                                                                 tv = get_mode_null(get_tarval_mode(tv));
4641                                                                 proj_nr ^= pn_Cmp_Leg;
4642                                                                 changed |= 2;
4643                                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_CNST_MAGN);
4644                                                         }
4645                                                 }
4646                                         }
4647                                         break;
4648                                 case iro_Or:
4649                                         c1 = get_Or_right(left);
4650                                         if (is_Const(c1) && tarval_is_null(tv)) {
4651                                                 /*
4652                                                  * Or(x, C) == 0  && C != 0 ==> FALSE
4653                                                  * Or(x, C) != 0  && C != 0 ==> TRUE
4654                                                  */
4655                                                 if (! tarval_is_null(get_Const_tarval(c1))) {
4656                                                         /* TODO: move to constant evaluation */
4657                                                         tv = proj_nr == pn_Cmp_Eq ? get_tarval_b_false() : get_tarval_b_true();
4658                                                         c1 = new_Const(tv);
4659                                                         DBG_OPT_CSTEVAL(proj, c1);
4660                                                         return c1;
4661                                                 }
4662                                         }
4663                                         break;
4664                                 case iro_Shl:
4665                                         /*
4666                                          * optimize x << c1 == c into x & (-1 >>u c1) == c >> c1  if  c & (-1 << c1) == c
4667                                          *                             FALSE                       else
4668                                          * optimize x << c1 != c into x & (-1 >>u c1) != c >> c1  if  c & (-1 << c1) == c
4669                                          *                             TRUE                        else
4670                                          */
4671                                         c1 = get_Shl_right(left);
4672                                         if (is_Const(c1)) {
4673                                                 tarval  *tv1    = get_Const_tarval(c1);
4674                                                 ir_mode *mode   = get_irn_mode(left);
4675                                                 tarval  *minus1 = get_mode_all_one(mode);
4676                                                 tarval  *amask  = tarval_shr(minus1, tv1);
4677                                                 tarval  *cmask  = tarval_shl(minus1, tv1);
4678                                                 ir_node *sl, *blk;
4679
4680                                                 if (tarval_and(tv, cmask) != tv) {
4681                                                         /* condition not met */
4682                                                         tv = proj_nr == pn_Cmp_Eq ? get_tarval_b_false() : get_tarval_b_true();
4683                                                         c1 = new_Const(tv);
4684                                                         DBG_OPT_CSTEVAL(proj, c1);
4685                                                         return c1;
4686                                                 }
4687                                                 sl   = get_Shl_left(left);
4688                                                 blk  = get_nodes_block(n);
4689                                                 left = new_rd_And(get_irn_dbg_info(left), blk, sl, new_Const(amask), mode);
4690                                                 tv   = tarval_shr(tv, tv1);
4691                                                 changed |= 2;
4692                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_SHF_TO_AND);
4693                                         }
4694                                         break;
4695                                 case iro_Shr:
4696                                         /*
4697                                          * optimize x >>u c1 == c into x & (-1 << c1) == c << c1  if  c & (-1 >>u c1) == c
4698                                          *                             FALSE                       else
4699                                          * optimize x >>u c1 != c into x & (-1 << c1) != c << c1  if  c & (-1 >>u c1) == c
4700                                          *                             TRUE                        else
4701                                          */
4702                                         c1 = get_Shr_right(left);
4703                                         if (is_Const(c1)) {
4704                                                 tarval  *tv1    = get_Const_tarval(c1);
4705                                                 ir_mode *mode   = get_irn_mode(left);
4706                                                 tarval  *minus1 = get_mode_all_one(mode);
4707                                                 tarval  *amask  = tarval_shl(minus1, tv1);
4708                                                 tarval  *cmask  = tarval_shr(minus1, tv1);
4709                                                 ir_node *sl, *blk;
4710
4711                                                 if (tarval_and(tv, cmask) != tv) {
4712                                                         /* condition not met */
4713                                                         tv = proj_nr == pn_Cmp_Eq ? get_tarval_b_false() : get_tarval_b_true();
4714                                                         c1 = new_Const(tv);
4715                                                         DBG_OPT_CSTEVAL(proj, c1);
4716                                                         return c1;
4717                                                 }
4718                                                 sl   = get_Shr_left(left);
4719                                                 blk  = get_nodes_block(n);
4720                                                 left = new_rd_And(get_irn_dbg_info(left), blk, sl, new_Const(amask), mode);
4721                                                 tv   = tarval_shl(tv, tv1);
4722                                                 changed |= 2;
4723                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_SHF_TO_AND);
4724                                         }
4725                                         break;
4726                                 case iro_Shrs:
4727                                         /*
4728                                          * optimize x >>s c1 == c into x & (-1 << c1) == c << c1  if  (c >>s (BITS - c1)) \in {0,-1}
4729                                          *                             FALSE                       else
4730                                          * optimize x >>s c1 != c into x & (-1 << c1) != c << c1  if  (c >>s (BITS - c1)) \in {0,-1}
4731                                          *                             TRUE                        else
4732                                          */
4733                                         c1 = get_Shrs_right(left);
4734                                         if (is_Const(c1)) {
4735                                                 tarval  *tv1    = get_Const_tarval(c1);
4736                                                 ir_mode *mode   = get_irn_mode(left);
4737                                                 tarval  *minus1 = get_mode_all_one(mode);
4738                                                 tarval  *amask  = tarval_shl(minus1, tv1);
4739                                                 tarval  *cond   = new_tarval_from_long(get_mode_size_bits(mode), get_tarval_mode(tv1));
4740                                                 ir_node *sl, *blk;
4741
4742                                                 cond = tarval_sub(cond, tv1, NULL);
4743                                                 cond = tarval_shrs(tv, cond);
4744
4745                                                 if (!tarval_is_all_one(cond) && !tarval_is_null(cond)) {
4746                                                         /* condition not met */
4747                                                         tv = proj_nr == pn_Cmp_Eq ? get_tarval_b_false() : get_tarval_b_true();
4748                                                         c1 = new_Const(tv);
4749                                                         DBG_OPT_CSTEVAL(proj, c1);
4750                                                         return c1;
4751                                                 }
4752                                                 sl   = get_Shrs_left(left);
4753                                                 blk  = get_nodes_block(n);
4754                                                 left = new_rd_And(get_irn_dbg_info(left), blk, sl, new_Const(amask), mode);
4755                                                 tv   = tarval_shl(tv, tv1);
4756                                                 changed |= 2;
4757                                                 DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_SHF_TO_AND);
4758                                         }
4759                                         break;
4760                                 }  /* switch */
4761                         }
4762                 } /* tarval != bad */
4763         }
4764
4765         if (changed & 2)      /* need a new Const */
4766                 right = new_Const(tv);
4767
4768         if ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) && is_Const(right) && is_Const_null(right) && is_Proj(left)) {
4769                 ir_node *op = get_Proj_pred(left);
4770
4771                 if ((is_Mod(op) && get_Proj_proj(left) == pn_Mod_res) ||
4772                     (is_DivMod(op) && get_Proj_proj(left) == pn_DivMod_res_mod)) {
4773                         ir_node *c = get_binop_right(op);
4774
4775                         if (is_Const(c)) {
4776                                 tarval *tv = get_Const_tarval(c);
4777
4778                                 if (tarval_is_single_bit(tv)) {
4779                                         /* special case: (x % 2^n) CMP 0 ==> x & (2^n-1) CMP 0 */
4780                                         ir_node *v    = get_binop_left(op);
4781                                         ir_node *blk  = get_irn_n(op, -1);
4782                                         ir_mode *mode = get_irn_mode(v);
4783
4784                                         tv = tarval_sub(tv, get_mode_one(mode), NULL);
4785                                         left = new_rd_And(get_irn_dbg_info(op), blk, v, new_Const(tv), mode);
4786                                         changed |= 1;
4787                                         DBG_OPT_ALGSIM0(n, n, FS_OPT_CMP_MOD_TO_AND);
4788                                 }
4789                         }
4790                 }
4791         }
4792
4793         if (changed) {
4794                 ir_node *block = get_nodes_block(n);
4795
4796                 /* create a new compare */
4797                 n = new_rd_Cmp(get_irn_dbg_info(n), block, left, right);
4798                 proj = new_rd_Proj(get_irn_dbg_info(proj), n, get_irn_mode(proj), proj_nr);
4799         }
4800
4801         return proj;
4802 }  /* transform_node_Proj_Cmp */
4803
4804 /**
4805  * Optimize CopyB(mem, x, x) into a Nop.
4806  */
4807 static ir_node *transform_node_Proj_CopyB(ir_node *proj)
4808 {
4809         ir_node *copyb = get_Proj_pred(proj);
4810         ir_node *a     = get_CopyB_dst(copyb);
4811         ir_node *b     = get_CopyB_src(copyb);
4812
4813         if (a == b) {
4814                 switch (get_Proj_proj(proj)) {
4815                 case pn_CopyB_X_regular:
4816                         /* Turn CopyB into a tuple (mem, jmp, bad, bad) */
4817                         DBG_OPT_EXC_REM(proj);
4818                         proj = new_r_Jmp(get_nodes_block(copyb));
4819                         break;
4820                 case pn_CopyB_X_except:
4821                         DBG_OPT_EXC_REM(proj);
4822                         proj = get_irg_bad(get_irn_irg(proj));
4823                         break;
4824                 default:
4825                         break;
4826                 }
4827         }
4828         return proj;
4829 }  /* transform_node_Proj_CopyB */
4830
4831 /**
4832  * Optimize Bounds(idx, idx, upper) into idx.
4833  */
4834 static ir_node *transform_node_Proj_Bound(ir_node *proj)
4835 {
4836         ir_node *oldn  = proj;
4837         ir_node *bound = get_Proj_pred(proj);
4838         ir_node *idx   = get_Bound_index(bound);
4839         ir_node *pred  = skip_Proj(idx);
4840         int ret_tuple  = 0;
4841
4842         if (idx == get_Bound_lower(bound))
4843                 ret_tuple = 1;
4844         else if (is_Bound(pred)) {
4845                 /*
4846                 * idx was Bounds checked in the same MacroBlock previously,
4847                 * it is still valid if lower <= pred_lower && pred_upper <= upper.
4848                 */
4849                 ir_node *lower = get_Bound_lower(bound);
4850                 ir_node *upper = get_Bound_upper(bound);
4851                 if (get_Bound_lower(pred) == lower &&
4852                         get_Bound_upper(pred) == upper &&
4853                         get_irn_MacroBlock(bound) == get_irn_MacroBlock(pred)) {
4854                         /*
4855                          * One could expect that we simply return the previous
4856                          * Bound here. However, this would be wrong, as we could
4857                          * add an exception Proj to a new location then.
4858                          * So, we must turn in into a tuple.
4859                          */
4860                         ret_tuple = 1;
4861                 }
4862         }
4863         if (ret_tuple) {
4864                 /* Turn Bound into a tuple (mem, jmp, bad, idx) */
4865                 switch (get_Proj_proj(proj)) {
4866                 case pn_Bound_M:
4867                         DBG_OPT_EXC_REM(proj);
4868                         proj = get_Bound_mem(bound);
4869                         break;
4870                 case pn_Bound_X_except:
4871                         DBG_OPT_EXC_REM(proj);
4872                         proj = get_irg_bad(get_irn_irg(proj));
4873                         break;
4874                 case pn_Bound_res:
4875                         proj = idx;
4876                         DBG_OPT_ALGSIM0(oldn, proj, FS_OPT_NOP);
4877                         break;
4878                 case pn_Bound_X_regular:
4879                         DBG_OPT_EXC_REM(proj);
4880                         proj = new_r_Jmp(get_nodes_block(bound));
4881                         break;
4882                 default:
4883                         break;
4884                 }
4885         }
4886         return proj;
4887 }  /* transform_node_Proj_Bound */
4888
4889 /**
4890  * Does all optimizations on nodes that must be done on it's Proj's
4891  * because of creating new nodes.
4892  */
4893 static ir_node *transform_node_Proj(ir_node *proj)
4894 {
4895         ir_node *n = get_Proj_pred(proj);
4896
4897         if (n->op->ops.transform_node_Proj)
4898                 return n->op->ops.transform_node_Proj(proj);
4899         return proj;
4900 }  /* transform_node_Proj */
4901
4902 /**
4903  * Move Confirms down through Phi nodes.
4904  */
4905 static ir_node *transform_node_Phi(ir_node *phi)
4906 {
4907         int i, n;
4908         ir_mode *mode = get_irn_mode(phi);
4909
4910         if (mode_is_reference(mode)) {
4911                 n = get_irn_arity(phi);
4912
4913                 /* Beware of Phi0 */
4914                 if (n > 0) {
4915                         ir_node *pred = get_irn_n(phi, 0);
4916                         ir_node *bound, *new_Phi, *block, **in;
4917                         pn_Cmp  pnc;
4918
4919                         if (! is_Confirm(pred))
4920                                 return phi;
4921
4922                         bound = get_Confirm_bound(pred);
4923                         pnc   = get_Confirm_cmp(pred);
4924
4925                         NEW_ARR_A(ir_node *, in, n);
4926                         in[0] = get_Confirm_value(pred);
4927
4928                         for (i = 1; i < n; ++i) {
4929                                 pred = get_irn_n(phi, i);
4930
4931                                 if (! is_Confirm(pred) ||
4932                                         get_Confirm_bound(pred) != bound ||
4933                                         get_Confirm_cmp(pred) != pnc)
4934                                         return phi;
4935                                 in[i] = get_Confirm_value(pred);
4936                         }
4937                         /* move the Confirm nodes "behind" the Phi */
4938                         block = get_irn_n(phi, -1);
4939                         new_Phi = new_r_Phi(block, n, in, get_irn_mode(phi));
4940                         return new_r_Confirm(block, new_Phi, bound, pnc);
4941                 }
4942         }
4943         return phi;
4944 }  /* transform_node_Phi */
4945
4946 /**
4947  * Returns the operands of a commutative bin-op, if one operand is
4948  * a const, it is returned as the second one.
4949  */
4950 static void get_comm_Binop_Ops(ir_node *binop, ir_node **a, ir_node **c)
4951 {
4952         ir_node *op_a = get_binop_left(binop);
4953         ir_node *op_b = get_binop_right(binop);
4954
4955         assert(is_op_commutative(get_irn_op(binop)));
4956
4957         if (is_Const(op_a)) {
4958                 *a = op_b;
4959                 *c = op_a;
4960         } else {
4961                 *a = op_a;
4962                 *c = op_b;
4963         }
4964 }  /* get_comm_Binop_Ops */
4965
4966 /**
4967  * Optimize a Or(And(Or(And(v,c4),c3),c2),c1) pattern if possible.
4968  * Such pattern may arise in bitfield stores.
4969  *
4970  * value  c4                  value      c4 & c2
4971  *    AND     c3                    AND           c1 | c3
4972  *        OR     c2      ===>               OR
4973  *           AND    c1
4974  *               OR
4975  *
4976  *
4977  * value  c2                 value  c1
4978  *     AND   c1    ===>           OR     if (c1 | c2) == 0x111..11
4979  *        OR
4980  */
4981 static ir_node *transform_node_Or_bf_store(ir_node *or)
4982 {
4983         ir_node *and, *c1;
4984         ir_node *or_l, *c2;
4985         ir_node *and_l, *c3;
4986         ir_node *value, *c4;
4987         ir_node *new_and, *new_const, *block;
4988         ir_mode *mode = get_irn_mode(or);
4989
4990         tarval *tv1, *tv2, *tv3, *tv4, *tv;
4991
4992         for (;;) {
4993                 get_comm_Binop_Ops(or, &and, &c1);
4994                 if (!is_Const(c1) || !is_And(and))
4995                         return or;
4996
4997                 get_comm_Binop_Ops(and, &or_l, &c2);
4998                 if (!is_Const(c2))
4999                         return or;
5000
5001                 tv1 = get_Const_tarval(c1);
5002                 tv2 = get_Const_tarval(c2);
5003
5004                 tv = tarval_or(tv1, tv2);
5005                 if (tarval_is_all_one(tv)) {
5006                         /* the AND does NOT clear a bit with isn't set by the OR */
5007                         set_Or_left(or, or_l);
5008                         set_Or_right(or, c1);
5009
5010                         /* check for more */
5011                         continue;
5012                 }
5013
5014                 if (!is_Or(or_l))
5015                         return or;
5016
5017                 get_comm_Binop_Ops(or_l, &and_l, &c3);
5018                 if (!is_Const(c3) || !is_And(and_l))
5019                         return or;
5020
5021                 get_comm_Binop_Ops(and_l, &value, &c4);
5022                 if (!is_Const(c4))
5023                         return or;
5024
5025                 /* ok, found the pattern, check for conditions */
5026                 assert(mode == get_irn_mode(and));
5027                 assert(mode == get_irn_mode(or_l));
5028                 assert(mode == get_irn_mode(and_l));
5029
5030                 tv3 = get_Const_tarval(c3);
5031                 tv4 = get_Const_tarval(c4);
5032
5033                 tv = tarval_or(tv4, tv2);
5034                 if (!tarval_is_all_one(tv)) {
5035                         /* have at least one 0 at the same bit position */
5036                         return or;
5037                 }
5038
5039                 if (tv3 != tarval_andnot(tv3, tv4)) {
5040                         /* bit in the or_mask is outside the and_mask */
5041                         return or;
5042                 }
5043
5044                 if (tv1 != tarval_andnot(tv1, tv2)) {
5045                         /* bit in the or_mask is outside the and_mask */
5046                         return or;
5047                 }
5048
5049                 /* ok, all conditions met */
5050                 block = get_irn_n(or, -1);
5051
5052                 new_and = new_r_And(block, value, new_Const(tarval_and(tv4, tv2)), mode);
5053
5054                 new_const = new_Const(tarval_or(tv3, tv1));
5055
5056                 set_Or_left(or, new_and);
5057                 set_Or_right(or, new_const);
5058
5059                 /* check for more */
5060         }
5061 }  /* transform_node_Or_bf_store */
5062
5063 /**
5064  * Optimize an Or(shl(x, c), shr(x, bits - c)) into a Rotl
5065  */
5066 static ir_node *transform_node_Or_Rotl(ir_node *or)
5067 {
5068         ir_mode *mode = get_irn_mode(or);
5069         ir_node *shl, *shr, *block;
5070         ir_node *irn, *x, *c1, *c2, *v, *sub, *n, *rotval;
5071         tarval *tv1, *tv2;
5072
5073         if (! mode_is_int(mode))
5074                 return or;
5075
5076         shl = get_binop_left(or);
5077         shr = get_binop_right(or);
5078
5079         if (is_Shr(shl)) {
5080                 if (!is_Shl(shr))
5081                         return or;
5082
5083                 irn = shl;
5084                 shl = shr;
5085                 shr = irn;
5086         } else if (!is_Shl(shl)) {
5087                 return or;
5088         } else if (!is_Shr(shr)) {
5089                 return or;
5090         }
5091         x = get_Shl_left(shl);
5092         if (x != get_Shr_left(shr))
5093                 return or;
5094
5095         c1 = get_Shl_right(shl);
5096         c2 = get_Shr_right(shr);
5097         if (is_Const(c1) && is_Const(c2)) {
5098                 tv1 = get_Const_tarval(c1);
5099                 if (! tarval_is_long(tv1))
5100                         return or;
5101
5102                 tv2 = get_Const_tarval(c2);
5103                 if (! tarval_is_long(tv2))
5104                         return or;
5105
5106                 if (get_tarval_long(tv1) + get_tarval_long(tv2)
5107                                 != (int) get_mode_size_bits(mode))
5108                         return or;
5109
5110                 /* yet, condition met */
5111                 block = get_nodes_block(or);
5112
5113                 n = new_r_Rotl(block, x, c1, mode);
5114
5115                 DBG_OPT_ALGSIM1(or, shl, shr, n, FS_OPT_OR_SHFT_TO_ROTL);
5116                 return n;
5117         }
5118
5119     if (is_Sub(c1)) {
5120             v      = c2;
5121                 sub    = c1;
5122         rotval = sub; /* a Rot right is not supported, so use a rot left */
5123     } else if (is_Sub(c2)) {
5124                 v      = c1;
5125         sub    = c2;
5126         rotval = v;
5127     } else return or;
5128
5129         if (get_Sub_right(sub) != v)
5130                 return or;
5131
5132         c1 = get_Sub_left(sub);
5133         if (!is_Const(c1))
5134                 return or;
5135
5136         tv1 = get_Const_tarval(c1);
5137         if (! tarval_is_long(tv1))
5138                 return or;
5139
5140         if (get_tarval_long(tv1) != (int) get_mode_size_bits(mode))
5141                 return or;
5142
5143         /* yet, condition met */
5144         block = get_nodes_block(or);
5145
5146         n = new_r_Rotl(block, x, rotval, mode);
5147
5148         DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROTL);
5149         return n;
5150 }  /* transform_node_Or_Rotl */
5151
5152 /**
5153  * Transform an Or.
5154  */
5155 static ir_node *transform_node_Or(ir_node *n)
5156 {
5157         ir_node *c, *oldn = n;
5158         ir_node *a = get_Or_left(n);
5159         ir_node *b = get_Or_right(n);
5160         ir_mode *mode;
5161
5162         if (is_Not(a) && is_Not(b)) {
5163                 /* ~a | ~b = ~(a&b) */
5164                 ir_node *block = get_nodes_block(n);
5165
5166                 mode = get_irn_mode(n);
5167                 a = get_Not_op(a);
5168                 b = get_Not_op(b);
5169                 n = new_rd_And(get_irn_dbg_info(n), block, a, b, mode);
5170                 n = new_rd_Not(get_irn_dbg_info(n), block, n, mode);
5171                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_DEMORGAN);
5172                 return n;
5173         }
5174
5175         /* we can evaluate 2 Projs of the same Cmp */
5176         if (get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
5177                 ir_node *pred_a = get_Proj_pred(a);
5178                 ir_node *pred_b = get_Proj_pred(b);
5179                 if (pred_a == pred_b) {
5180                         dbg_info *dbgi  = get_irn_dbg_info(n);
5181                         pn_Cmp pn_a     = get_Proj_proj(a);
5182                         pn_Cmp pn_b     = get_Proj_proj(b);
5183                         /* yes, we can simply calculate with pncs */
5184                         pn_Cmp new_pnc  = pn_a | pn_b;
5185
5186                         return new_rd_Proj(dbgi, pred_a, mode_b, new_pnc);
5187                 }
5188         }
5189
5190         mode = get_irn_mode(n);
5191         HANDLE_BINOP_PHI((eval_func) tarval_or, a, b, c, mode);
5192
5193         n = transform_node_Or_bf_store(n);
5194         n = transform_node_Or_Rotl(n);
5195         if (n != oldn)
5196                 return n;
5197
5198         n = transform_bitwise_distributive(n, transform_node_Or);
5199
5200         return n;
5201 }  /* transform_node_Or */
5202
5203
5204 /* forward */
5205 static ir_node *transform_node(ir_node *n);
5206
5207 /**
5208  * Optimize (a >> c1) >> c2), works for Shr, Shrs, Shl, Rotl.
5209  *
5210  * Should be moved to reassociation?
5211  */
5212 static ir_node *transform_node_shift(ir_node *n)
5213 {
5214         ir_node *left, *right;
5215         ir_mode *mode;
5216         tarval *tv1, *tv2, *res;
5217         ir_node *in[2], *irn, *block;
5218
5219         left = get_binop_left(n);
5220
5221         /* different operations */
5222         if (get_irn_op(left) != get_irn_op(n))
5223                 return n;
5224
5225         right = get_binop_right(n);
5226         tv1 = value_of(right);
5227         if (tv1 == tarval_bad)
5228                 return n;
5229
5230         tv2 = value_of(get_binop_right(left));
5231         if (tv2 == tarval_bad)
5232                 return n;
5233
5234         res  = tarval_add(tv1, tv2);
5235         mode = get_irn_mode(n);
5236
5237         /* beware: a simple replacement works only, if res < modulo shift */
5238         if (!is_Rotl(n)) {
5239                 int modulo_shf = get_mode_modulo_shift(mode);
5240                 if (modulo_shf > 0) {
5241                         tarval *modulo = new_tarval_from_long(modulo_shf,
5242                                                               get_tarval_mode(res));
5243
5244                         assert(modulo_shf >= (int) get_mode_size_bits(mode));
5245
5246                         /* shifting too much */
5247                         if (!(tarval_cmp(res, modulo) & pn_Cmp_Lt)) {
5248                                 if (is_Shrs(n)) {
5249                                         ir_node  *block = get_nodes_block(n);
5250                                         dbg_info *dbgi  = get_irn_dbg_info(n);
5251                                         ir_mode  *smode  = get_irn_mode(right);
5252                                         ir_node  *cnst  = new_Const_long(smode, get_mode_size_bits(mode) - 1);
5253                                         return new_rd_Shrs(dbgi, block, get_binop_left(left), cnst, mode);
5254                                 }
5255
5256                                 return new_Const(get_mode_null(mode));
5257                         }
5258                 }
5259         } else {
5260                 res = tarval_mod(res, new_tarval_from_long(get_mode_size_bits(mode), get_tarval_mode(res)));
5261         }
5262
5263         /* ok, we can replace it */
5264         block = get_nodes_block(n);
5265
5266         in[0] = get_binop_left(left);
5267         in[1] = new_Const(res);
5268
5269         irn = new_ir_node(NULL, get_Block_irg(block), block, get_irn_op(n), mode, 2, in);
5270
5271         DBG_OPT_ALGSIM0(n, irn, FS_OPT_REASSOC_SHIFT);
5272
5273         return transform_node(irn);
5274 }  /* transform_node_shift */
5275
5276 /**
5277  * normalisation: (x & c1) >> c2   to   (x >> c2) & (c1 >> c2)
5278  *  (we can use:
5279  *    - and, or, xor          instead of &
5280  *    - Shl, Shr, Shrs, rotl  instead of >>
5281  *    (with a special case for Or/Xor + Shrs)
5282  */
5283 static ir_node *transform_node_bitop_shift(ir_node *n)
5284 {
5285         ir_node  *left;
5286         ir_node  *right = get_binop_right(n);
5287         ir_mode  *mode  = get_irn_mode(n);
5288         ir_node  *bitop_left;
5289         ir_node  *bitop_right;
5290         ir_op    *op_left;
5291         ir_node  *block;
5292         dbg_info *dbgi;
5293         ir_node  *new_shift;
5294         ir_node  *new_bitop;
5295         ir_node  *new_const;
5296         tarval   *tv1;
5297         tarval   *tv2;
5298         tarval   *tv_shift;
5299
5300         assert(is_Shrs(n) || is_Shr(n) || is_Shl(n) || is_Rotl(n));
5301
5302         if (!is_Const(right))
5303                 return n;
5304
5305         left    = get_binop_left(n);
5306         op_left = get_irn_op(left);
5307         if (op_left != op_And && op_left != op_Or && op_left != op_Eor)
5308                 return n;
5309
5310         /* doing it with Shrs is not legal if the Or/Eor affects the topmost bit */
5311         if (is_Shrs(n) && (op_left == op_Or || op_left == op_Eor)) {
5312                 /* TODO: test if sign bit is affectes */
5313                 return n;
5314         }
5315
5316         bitop_right = get_binop_right(left);
5317         if (!is_Const(bitop_right))
5318                 return n;
5319
5320         bitop_left = get_binop_left(left);
5321
5322         block = get_nodes_block(n);
5323         dbgi  = get_irn_dbg_info(n);
5324         tv1   = get_Const_tarval(bitop_right);
5325         tv2   = get_Const_tarval(right);
5326
5327         assert(get_tarval_mode(tv1) == mode);
5328
5329         if (is_Shl(n)) {
5330                 new_shift = new_rd_Shl(dbgi, block, bitop_left, right, mode);
5331                 tv_shift  = tarval_shl(tv1, tv2);
5332         } else if (is_Shr(n)) {
5333                 new_shift = new_rd_Shr(dbgi, block, bitop_left, right, mode);
5334                 tv_shift  = tarval_shr(tv1, tv2);
5335         } else if (is_Shrs(n)) {
5336                 new_shift = new_rd_Shrs(dbgi, block, bitop_left, right, mode);
5337                 tv_shift  = tarval_shrs(tv1, tv2);
5338         } else {
5339                 assert(is_Rotl(n));
5340                 new_shift = new_rd_Rotl(dbgi, block, bitop_left, right, mode);
5341                 tv_shift  = tarval_rotl(tv1, tv2);
5342         }
5343
5344         assert(get_tarval_mode(tv_shift) == mode);
5345         new_const = new_Const(tv_shift);
5346
5347         if (op_left == op_And) {
5348                 new_bitop = new_rd_And(dbgi, block, new_shift, new_const, mode);
5349         } else if (op_left == op_Or) {
5350                 new_bitop = new_rd_Or(dbgi, block, new_shift, new_const, mode);
5351         } else {
5352                 assert(op_left == op_Eor);
5353                 new_bitop = new_rd_Eor(dbgi, block, new_shift, new_const, mode);
5354         }
5355
5356         return new_bitop;
5357 }
5358
5359 /**
5360  * normalisation:
5361  *    (x << c1) >> c2  <=>  x OP (c2-c1) & ((-1 << c1) >> c2)
5362  *    also:
5363  *    (x >> c1) << c2  <=>  x OP (c2-c1) & ((-1 >> c1) << c2)
5364  *      (also with x >>s c1  when c1>=c2)
5365  */
5366 static ir_node *transform_node_shl_shr(ir_node *n)
5367 {
5368         ir_node  *left;
5369         ir_node  *right = get_binop_right(n);
5370         ir_node  *x;
5371         ir_node  *block;
5372         ir_mode  *mode;
5373         dbg_info *dbgi;
5374         ir_node  *new_const;
5375         ir_node  *new_shift;
5376         ir_node  *new_and;
5377         tarval   *tv_shl;
5378         tarval   *tv_shr;
5379         tarval   *tv_shift;
5380         tarval   *tv_mask;
5381         pn_Cmp    pnc;
5382         int       need_shrs = 0;
5383
5384         assert(is_Shl(n) || is_Shr(n) || is_Shrs(n));
5385
5386         if (!is_Const(right))
5387                 return n;
5388
5389         left = get_binop_left(n);
5390         mode = get_irn_mode(n);
5391         if (is_Shl(n) && (is_Shr(left) || is_Shrs(left))) {
5392                 ir_node *shr_right = get_binop_right(left);
5393
5394                 if (!is_Const(shr_right))
5395                         return n;
5396
5397                 x      = get_binop_left(left);
5398                 tv_shr = get_Const_tarval(shr_right);
5399                 tv_shl = get_Const_tarval(right);
5400
5401                 if (is_Shrs(left)) {
5402                         /* shrs variant only allowed if c1 >= c2 */
5403                         if (! (tarval_cmp(tv_shl, tv_shr) & pn_Cmp_Ge))
5404                                 return n;
5405
5406                         tv_mask = tarval_shrs(get_mode_all_one(mode), tv_shr);
5407                         need_shrs = 1;
5408                 } else {
5409                         tv_mask = tarval_shr(get_mode_all_one(mode), tv_shr);
5410                 }
5411                 tv_mask = tarval_shl(tv_mask, tv_shl);
5412         } else if (is_Shr(n) && is_Shl(left)) {
5413                 ir_node *shl_right = get_Shl_right(left);
5414
5415                 if (!is_Const(shl_right))
5416                         return n;
5417
5418                 x      = get_Shl_left(left);
5419                 tv_shr = get_Const_tarval(right);
5420                 tv_shl = get_Const_tarval(shl_right);
5421
5422                 tv_mask = tarval_shl(get_mode_all_one(mode), tv_shl);
5423                 tv_mask = tarval_shr(tv_mask, tv_shr);
5424         } else {
5425                 return n;
5426         }
5427
5428         if (get_tarval_mode(tv_shl) != get_tarval_mode(tv_shr)) {
5429                 tv_shl = tarval_convert_to(tv_shl, get_tarval_mode(tv_shr));
5430         }
5431
5432         assert(tv_mask != tarval_bad);
5433         assert(get_tarval_mode(tv_mask) == mode);
5434
5435         block = get_nodes_block(n);
5436         dbgi  = get_irn_dbg_info(n);
5437
5438         pnc = tarval_cmp(tv_shl, tv_shr);
5439         if (pnc == pn_Cmp_Lt || pnc == pn_Cmp_Eq) {
5440                 tv_shift  = tarval_sub(tv_shr, tv_shl, NULL);
5441                 new_const = new_Const(tv_shift);
5442                 if (need_shrs) {
5443                         new_shift = new_rd_Shrs(dbgi, block, x, new_const, mode);
5444                 } else {
5445                         new_shift = new_rd_Shr(dbgi, block, x, new_const, mode);
5446                 }
5447         } else {
5448                 assert(pnc == pn_Cmp_Gt);
5449                 tv_shift  = tarval_sub(tv_shl, tv_shr, NULL);
5450                 new_const = new_Const(tv_shift);
5451                 new_shift = new_rd_Shl(dbgi, block, x, new_const, mode);
5452         }
5453
5454         new_const = new_Const(tv_mask);
5455         new_and   = new_rd_And(dbgi, block, new_shift, new_const, mode);
5456
5457         return new_and;
5458 }
5459
5460 /**
5461  * Transform a Shr.
5462  */
5463 static ir_node *transform_node_Shr(ir_node *n)
5464 {
5465         ir_node *c, *oldn = n;
5466         ir_node *left  = get_Shr_left(n);
5467         ir_node *right = get_Shr_right(n);
5468         ir_mode *mode  = get_irn_mode(n);
5469
5470         HANDLE_BINOP_PHI((eval_func) tarval_shr, left, right, c, mode);
5471         n = transform_node_shift(n);
5472
5473         if (is_Shr(n))
5474                 n = transform_node_shl_shr(n);
5475         if (is_Shr(n))
5476                 n = transform_node_bitop_shift(n);
5477
5478         return n;
5479 }  /* transform_node_Shr */
5480
5481 /**
5482  * Transform a Shrs.
5483  */
5484 static ir_node *transform_node_Shrs(ir_node *n)
5485 {
5486         ir_node *c, *oldn = n;
5487         ir_node *a    = get_Shrs_left(n);
5488         ir_node *b    = get_Shrs_right(n);
5489         ir_mode *mode = get_irn_mode(n);
5490
5491         HANDLE_BINOP_PHI((eval_func) tarval_shrs, a, b, c, mode);
5492         n = transform_node_shift(n);
5493
5494         if (is_Shrs(n))
5495                 n = transform_node_bitop_shift(n);
5496
5497         return n;
5498 }  /* transform_node_Shrs */
5499
5500 /**
5501  * Transform a Shl.
5502  */
5503 static ir_node *transform_node_Shl(ir_node *n)
5504 {
5505         ir_node *c, *oldn = n;
5506         ir_node *a    = get_Shl_left(n);
5507         ir_node *b    = get_Shl_right(n);
5508         ir_mode *mode = get_irn_mode(n);
5509
5510         HANDLE_BINOP_PHI((eval_func) tarval_shl, a, b, c, mode);
5511         n = transform_node_shift(n);
5512
5513         if (is_Shl(n))
5514                 n = transform_node_shl_shr(n);
5515         if (is_Shl(n))
5516                 n = transform_node_bitop_shift(n);
5517
5518         return n;
5519 }  /* transform_node_Shl */
5520
5521 /**
5522  * Transform a Rotl.
5523  */
5524 static ir_node *transform_node_Rotl(ir_node *n)
5525 {
5526         ir_node *c, *oldn = n;
5527         ir_node *a    = get_Rotl_left(n);
5528         ir_node *b    = get_Rotl_right(n);
5529         ir_mode *mode = get_irn_mode(n);
5530
5531         HANDLE_BINOP_PHI((eval_func) tarval_rotl, a, b, c, mode);
5532         n = transform_node_shift(n);
5533
5534         if (is_Rotl(n))
5535                 n = transform_node_bitop_shift(n);
5536
5537         return n;
5538 }  /* transform_node_Rotl */
5539
5540 /**
5541  * Transform a Conv.
5542  */
5543 static ir_node *transform_node_Conv(ir_node *n)
5544 {
5545         ir_node *c, *oldn = n;
5546         ir_mode *mode = get_irn_mode(n);
5547         ir_node *a    = get_Conv_op(n);
5548
5549         if (mode != mode_b && is_const_Phi(a)) {
5550                 /* Do NOT optimize mode_b Conv's, this leads to remaining
5551                  * Phib nodes later, because the conv_b_lower operation
5552                  * is instantly reverted, when it tries to insert a Convb.
5553                  */
5554                 c = apply_conv_on_phi(a, mode);
5555                 if (c) {
5556                         DBG_OPT_ALGSIM0(oldn, c, FS_OPT_CONST_PHI);
5557                         return c;
5558                 }
5559         }
5560
5561         if (is_Unknown(a)) { /* Conv_A(Unknown_B) -> Unknown_A */
5562                 return new_r_Unknown(current_ir_graph, mode);
5563         }
5564
5565         if (mode_is_reference(mode) &&
5566                 get_mode_size_bits(mode) == get_mode_size_bits(get_irn_mode(a)) &&
5567                 is_Add(a)) {
5568                 ir_node *l = get_Add_left(a);
5569                 ir_node *r = get_Add_right(a);
5570                 dbg_info *dbgi = get_irn_dbg_info(a);
5571                 ir_node *block = get_nodes_block(n);
5572                 if (is_Conv(l)) {
5573                         ir_node *lop = get_Conv_op(l);
5574                         if (get_irn_mode(lop) == mode) {
5575                                 /* ConvP(AddI(ConvI(P), x)) -> AddP(P, x) */
5576                                 n = new_rd_Add(dbgi, block, lop, r, mode);
5577                                 return n;
5578                         }
5579                 }
5580                 if (is_Conv(r)) {
5581                         ir_node *rop = get_Conv_op(r);
5582                         if (get_irn_mode(rop) == mode) {
5583                                 /* ConvP(AddI(x, ConvI(P))) -> AddP(x, P) */
5584                                 n = new_rd_Add(dbgi, block, l, rop, mode);
5585                                 return n;
5586                         }
5587                 }
5588         }
5589
5590         return n;
5591 }  /* transform_node_Conv */
5592
5593 /**
5594  * Remove dead blocks and nodes in dead blocks
5595  * in keep alive list.  We do not generate a new End node.
5596  */
5597 static ir_node *transform_node_End(ir_node *n)
5598 {
5599         int i, j, n_keepalives = get_End_n_keepalives(n);
5600         ir_node **in;
5601
5602         NEW_ARR_A(ir_node *, in, n_keepalives);
5603
5604         for (i = j = 0; i < n_keepalives; ++i) {
5605                 ir_node *ka = get_End_keepalive(n, i);
5606                 if (is_Block(ka)) {
5607                         if (! is_Block_dead(ka)) {
5608                                 in[j++] = ka;
5609                         }
5610                         continue;
5611                 } else if (is_irn_pinned_in_irg(ka) && is_Block_dead(get_nodes_block(ka))) {
5612                         continue;
5613                 } else if (is_Bad(ka)) {
5614                         /* no need to keep Bad */
5615                         continue;
5616                 }
5617                 in[j++] = ka;
5618         }
5619         if (j != n_keepalives)
5620                 set_End_keepalives(n, j, in);
5621         return n;
5622 }  /* transform_node_End */
5623
5624 bool is_negated_value(ir_node *a, ir_node *b)
5625 {
5626         if (is_Minus(a) && get_Minus_op(a) == b)
5627                 return true;
5628         if (is_Minus(b) && get_Minus_op(b) == a)
5629                 return true;
5630         if (is_Sub(a) && is_Sub(b)) {
5631                 ir_node *a_left  = get_Sub_left(a);
5632                 ir_node *a_right = get_Sub_right(a);
5633                 ir_node *b_left  = get_Sub_left(b);
5634                 ir_node *b_right = get_Sub_right(b);
5635
5636                 if (a_left == b_right && a_right == b_left)
5637                         return true;
5638         }
5639
5640         return false;
5641 }
5642
5643 /**
5644  * Optimize a Mux into some simpler cases.
5645  */
5646 static ir_node *transform_node_Mux(ir_node *n)
5647 {
5648         ir_node *oldn = n, *sel = get_Mux_sel(n);
5649         ir_mode *mode = get_irn_mode(n);
5650         ir_node  *t   = get_Mux_true(n);
5651         ir_node  *f   = get_Mux_false(n);
5652         ir_graph *irg = current_ir_graph;
5653
5654         if (is_irg_state(irg, IR_GRAPH_STATE_KEEP_MUX))
5655                 return n;
5656
5657         if (is_Mux(t)) {
5658                 ir_node*  block = get_nodes_block(n);
5659                 ir_node*  c0    = sel;
5660                 ir_node*  c1    = get_Mux_sel(t);
5661                 ir_node*  t1    = get_Mux_true(t);
5662                 ir_node*  f1    = get_Mux_false(t);
5663                 if (f == f1) {
5664                         /* Mux(cond0, Mux(cond1, x, y), y) -> typical if (cond0 && cond1) x else y */
5665                         ir_node* and_    = new_r_And(block, c0, c1, mode_b);
5666                         ir_node* new_mux = new_r_Mux(block, and_, f1, t1, mode);
5667                         n   = new_mux;
5668                         sel = and_;
5669                         f   = f1;
5670                         t   = t1;
5671                         DBG_OPT_ALGSIM0(oldn, t, FS_OPT_MUX_COMBINE);
5672                 } else if (f == t1) {
5673                         /* Mux(cond0, Mux(cond1, x, y), x) */
5674                         ir_node* not_c1  = new_r_Not(block, c1, mode_b);
5675                         ir_node* and_    = new_r_And(block, c0, not_c1, mode_b);
5676                         ir_node* new_mux = new_r_Mux(block, and_, t1, f1, mode);
5677                         n   = new_mux;
5678                         sel = and_;
5679                         f   = t1;
5680                         t   = f1;
5681                         DBG_OPT_ALGSIM0(oldn, t, FS_OPT_MUX_COMBINE);
5682                 }
5683         } else if (is_Mux(f)) {
5684                 ir_node*  block = get_nodes_block(n);
5685                 ir_node*  c0    = sel;
5686                 ir_node*  c1    = get_Mux_sel(f);
5687                 ir_node*  t1    = get_Mux_true(f);
5688                 ir_node*  f1    = get_Mux_false(f);
5689                 if (t == t1) {
5690                         /* Mux(cond0, x, Mux(cond1, x, y)) -> typical if (cond0 || cond1) x else y */
5691                         ir_node* or_     = new_r_Or(block, c0, c1, mode_b);
5692                         ir_node* new_mux = new_r_Mux(block, or_, f1, t1, mode);
5693                         n   = new_mux;
5694                         sel = or_;
5695                         f   = f1;
5696                         t   = t1;
5697                         DBG_OPT_ALGSIM0(oldn, f, FS_OPT_MUX_COMBINE);
5698                 } else if (t == f1) {
5699                         /* Mux(cond0, x, Mux(cond1, y, x)) */
5700                         ir_node* not_c1  = new_r_Not(block, c1, mode_b);
5701                         ir_node* or_     = new_r_Or(block, c0, not_c1, mode_b);
5702                         ir_node* new_mux = new_r_Mux(block, or_, t1, f1, mode);
5703                         n   = new_mux;
5704                         sel = or_;
5705                         f   = t1;
5706                         t   = f1;
5707                         DBG_OPT_ALGSIM0(oldn, f, FS_OPT_MUX_COMBINE);
5708                 }
5709         }
5710
5711         /* first normalization step: move a possible zero to the false case */
5712         if (is_Proj(sel)) {
5713                 ir_node *cmp = get_Proj_pred(sel);
5714
5715                 if (is_Cmp(cmp)) {
5716                         if (is_Const(t) && is_Const_null(t)) {
5717                                 ir_node *tmp;
5718
5719                                 /* Mux(x, 0, y) => Mux(x, y, 0) */
5720                                 pn_Cmp pnc = get_Proj_proj(sel);
5721                                 sel = new_r_Proj(cmp, mode_b,
5722                                         get_negated_pnc(pnc, get_irn_mode(get_Cmp_left(cmp))));
5723                                 n        = new_rd_Mux(get_irn_dbg_info(n), get_nodes_block(n), sel, t, f, mode);
5724                                 tmp = t;
5725                                 t = f;
5726                                 f = tmp;
5727                         }
5728                 }
5729         }
5730
5731         /* note: after normalization, false can only happen on default */
5732         if (mode == mode_b) {
5733                 dbg_info *dbg   = get_irn_dbg_info(n);
5734                 ir_node  *block = get_nodes_block(n);
5735
5736                 if (is_Const(t)) {
5737                         tarval *tv_t = get_Const_tarval(t);
5738                         if (tv_t == tarval_b_true) {
5739                                 if (is_Const(f)) {
5740                                         /* Muxb(sel, true, false) = sel */
5741                                         assert(get_Const_tarval(f) == tarval_b_false);
5742                                         DBG_OPT_ALGSIM0(oldn, sel, FS_OPT_MUX_BOOL);
5743                                         return sel;
5744                                 } else {
5745                                         /* Muxb(sel, true, x) = Or(sel, x) */
5746                                         n = new_rd_Or(dbg, block, sel, f, mode_b);
5747                                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_OR_BOOL);
5748                                         return n;
5749                                 }
5750                         }
5751                 } else if (is_Const(f)) {
5752                         tarval *tv_f = get_Const_tarval(f);
5753                         if (tv_f == tarval_b_true) {
5754                                 /* Muxb(sel, x, true) = Or(Not(sel), x) */
5755                                 ir_node* not_sel = new_rd_Not(dbg, block, sel, mode_b);
5756                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_ORNOT_BOOL);
5757                                 n = new_rd_Or(dbg, block, not_sel, t, mode_b);
5758                                 return n;
5759                         } else {
5760                                 /* Muxb(sel, x, false) = And(sel, x) */
5761                                 assert(tv_f == tarval_b_false);
5762                                 n = new_rd_And(dbg, block, sel, t, mode_b);
5763                                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_AND_BOOL);
5764                                 return n;
5765                         }
5766                 }
5767         }
5768
5769         /* more normalization: try to normalize Mux(x, C1, C2) into Mux(x, +1/-1, 0) op C2 */
5770         if (is_Const(t) && is_Const(f) && mode_is_int(mode)) {
5771                 tarval *a = get_Const_tarval(t);
5772                 tarval *b = get_Const_tarval(f);
5773                 tarval *diff, *min;
5774
5775                 if (tarval_is_one(a) && tarval_is_null(b)) {
5776                         ir_node *block = get_nodes_block(n);
5777                         ir_node *conv  = new_r_Conv(block, sel, mode);
5778                         n = conv;
5779                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_CONV);
5780                         return n;
5781                 } else if (tarval_is_null(a) && tarval_is_one(b)) {
5782                         ir_node *block = get_nodes_block(n);
5783                         ir_node *not_  = new_r_Not(block, sel, mode_b);
5784                         ir_node *conv  = new_r_Conv(block, not_, mode);
5785                         n = conv;
5786                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_MUX_CONV);
5787                         return n;
5788                 }
5789                 /* TODO: it's not really clear if that helps in general or should be moved
5790                  * to backend, especially with the MUX->Conv transformation above */
5791                 if (tarval_cmp(a, b) & pn_Cmp_Gt) {
5792                         diff = tarval_sub(a, b, NULL);
5793                         min  = b;
5794                 } else {
5795                         diff = tarval_sub(b, a, NULL);
5796                         min  = a;
5797                 }
5798
5799                 if (diff == get_tarval_one(mode)) {
5800                         dbg_info *dbg   = get_irn_dbg_info(n);
5801                         ir_node  *block = get_nodes_block(n);
5802                         ir_node  *t     = new_Const(tarval_sub(a, min, NULL));
5803                         ir_node  *f     = new_Const(tarval_sub(b, min, NULL));
5804                         n = new_rd_Mux(dbg, block, sel, f, t, mode);
5805                         n = new_rd_Add(dbg, block, n, new_Const(min), mode);
5806                         return n;
5807                 }
5808         }
5809
5810         if (is_Proj(sel)) {
5811                 ir_node *cmp = get_Proj_pred(sel);
5812                 long     pn  = get_Proj_proj(sel);
5813
5814                 /*
5815                  * Note: normalization puts the constant on the right side,
5816                  * so we check only one case.
5817                  *
5818                  * Note further that these optimization work even for floating point
5819                  * with NaN's because -NaN == NaN.
5820                  * However, if +0 and -0 is handled differently, we cannot use the Abs/-Abs
5821                  * transformations.
5822                  */
5823                 if (is_Cmp(cmp)) {
5824                         ir_node *cmp_r = get_Cmp_right(cmp);
5825                         if (is_Const(cmp_r) && is_Const_null(cmp_r)) {
5826                                 ir_node *block = get_nodes_block(n);
5827                                 ir_node *cmp_l = get_Cmp_left(cmp);
5828
5829                                 if (!mode_honor_signed_zeros(mode) && is_negated_value(f, t)) {
5830                                         /* f = -t */
5831
5832                                         /* NaN's work fine with abs, so it is ok to remove Uo */
5833                                         long pnc = pn & ~pn_Cmp_Uo;
5834
5835                                         if ( (cmp_l == t && (pnc == pn_Cmp_Ge || pnc == pn_Cmp_Gt))
5836                                                 || (cmp_l == f && (pnc == pn_Cmp_Le || pnc == pn_Cmp_Lt)))
5837                                         {
5838                                                 /* Mux(a >/>= 0, a, -a) = Mux(a </<= 0, -a, a) ==> Abs(a) */
5839                                                 n = new_rd_Abs(get_irn_dbg_info(n), block, cmp_l, mode);
5840                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
5841                                                 return n;
5842                                         } else if ((cmp_l == t && (pnc == pn_Cmp_Le || pnc == pn_Cmp_Lt))
5843                                                 || (cmp_l == f && (pnc == pn_Cmp_Ge || pnc == pn_Cmp_Gt)))
5844                                         {
5845                                                 /* Mux(a </<= 0, a, -a) = Mux(a >/>= 0, -a, a) ==> -Abs(a) */
5846                                                 n = new_rd_Abs(get_irn_dbg_info(n), block, cmp_l, mode);
5847                                                 n = new_rd_Minus(get_irn_dbg_info(n), block, n, mode);
5848                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
5849                                                 return n;
5850                                         }
5851                                 }
5852
5853                                 if (mode_is_int(mode)) {
5854                                         /* integer only */
5855                                         if ((pn == pn_Cmp_Lg || pn == pn_Cmp_Eq) && is_And(cmp_l)) {
5856                                                 /* Mux((a & b) != 0, c, 0) */
5857                                                 ir_node *and_r = get_And_right(cmp_l);
5858                                                 ir_node *and_l;
5859
5860                                                 if (and_r == t && f == cmp_r) {
5861                                                         if (is_Const(t) && tarval_is_single_bit(get_Const_tarval(t))) {
5862                                                                 if (pn == pn_Cmp_Lg) {
5863                                                                         /* Mux((a & 2^C) != 0, 2^C, 0) */
5864                                                                         n = cmp_l;
5865                                                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5866                                                                 } else {
5867                                                                         /* Mux((a & 2^C) == 0, 2^C, 0) */
5868                                                                         n = new_rd_Eor(get_irn_dbg_info(n),
5869                                                                                 block, cmp_l, t, mode);
5870                                                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5871                                                                 }
5872                                                                 return n;
5873                                                         }
5874                                                 }
5875                                                 if (is_Shl(and_r)) {
5876                                                         ir_node *shl_l = get_Shl_left(and_r);
5877                                                         if (is_Const(shl_l) && is_Const_one(shl_l)) {
5878                                                                 if (and_r == t && f == cmp_r) {
5879                                                                         if (pn == pn_Cmp_Lg) {
5880                                                                                 /* (a & (1 << n)) != 0, (1 << n), 0) */
5881                                                                                 n = cmp_l;
5882                                                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5883                                                                         } else {
5884                                                                                 /* (a & (1 << n)) == 0, (1 << n), 0) */
5885                                                                                 n = new_rd_Eor(get_irn_dbg_info(n),
5886                                                                                         block, cmp_l, t, mode);
5887                                                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5888                                                                         }
5889                                                                         return n;
5890                                                                 }
5891                                                         }
5892                                                 }
5893                                                 and_l = get_And_left(cmp_l);
5894                                                 if (is_Shl(and_l)) {
5895                                                         ir_node *shl_l = get_Shl_left(and_l);
5896                                                         if (is_Const(shl_l) && is_Const_one(shl_l)) {
5897                                                                 if (and_l == t && f == cmp_r) {
5898                                                                         if (pn == pn_Cmp_Lg) {
5899                                                                                 /* ((1 << n) & a) != 0, (1 << n), 0) */
5900                                                                                 n = cmp_l;
5901                                                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5902                                                                         } else {
5903                                                                                 /* ((1 << n) & a) == 0, (1 << n), 0) */
5904                                                                                 n = new_rd_Eor(get_irn_dbg_info(n),
5905                                                                                         block, cmp_l, t, mode);
5906                                                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_BITOP);
5907                                                                         }
5908                                                                         return n;
5909                                                                 }
5910                                                         }
5911                                                 }
5912                                         }
5913                                 }
5914                         }
5915                 }
5916         }
5917
5918         return n;
5919 }  /* transform_node_Mux */
5920
5921 /**
5922  * optimize Sync nodes that have other syncs as input we simply add the inputs
5923  * of the other sync to our own inputs
5924  */
5925 static ir_node *transform_node_Sync(ir_node *n)
5926 {
5927         int arity = get_Sync_n_preds(n);
5928         int i;
5929
5930         for (i = 0; i < arity;) {
5931                 ir_node *pred = get_Sync_pred(n, i);
5932                 int      pred_arity;
5933                 int      j;
5934
5935                 if (!is_Sync(pred)) {
5936                         ++i;
5937                         continue;
5938                 }
5939
5940                 del_Sync_n(n, i);
5941                 --arity;
5942
5943                 pred_arity = get_Sync_n_preds(pred);
5944                 for (j = 0; j < pred_arity; ++j) {
5945                         ir_node *pred_pred = get_Sync_pred(pred, j);
5946                         int      k;
5947
5948                         for (k = 0;; ++k) {
5949                                 if (k >= arity) {
5950                                         add_irn_n(n, pred_pred);
5951                                         ++arity;
5952                                         break;
5953                                 }
5954                                 if (get_Sync_pred(n, k) == pred_pred) break;
5955                         }
5956                 }
5957         }
5958
5959         /* rehash the sync node */
5960         add_identities(current_ir_graph->value_table, n);
5961
5962         return n;
5963 }  /* transform_node_Sync */
5964
5965 /**
5966  * optimize a trampoline Call into a direct Call
5967  */
5968 static ir_node *transform_node_Call(ir_node *call)
5969 {
5970         ir_node  *callee = get_Call_ptr(call);
5971         ir_node  *adr, *mem, *res, *bl, **in;
5972         ir_type  *ctp, *mtp, *tp;
5973         type_dbg_info *tdb;
5974         dbg_info *db;
5975         int      i, n_res, n_param;
5976         ir_variadicity var;
5977
5978         if (! is_Proj(callee))
5979                 return call;
5980         callee = get_Proj_pred(callee);
5981         if (! is_Builtin(callee))
5982                 return call;
5983         if (get_Builtin_kind(callee) != ir_bk_inner_trampoline)
5984                 return call;
5985
5986         mem = get_Call_mem(call);
5987
5988         if (skip_Proj(mem) == callee) {
5989                 /* memory is routed to the trampoline, skip */
5990                 mem = get_Builtin_mem(callee);
5991         }
5992
5993         /* build a new call type */
5994         mtp = get_Call_type(call);
5995         tdb = get_type_dbg_info(mtp);
5996
5997         n_res   = get_method_n_ress(mtp);
5998         n_param = get_method_n_params(mtp);
5999         ctp     = new_d_type_method(n_param + 1, n_res, tdb);
6000
6001         for (i = 0; i < n_res; ++i)
6002                 set_method_res_type(ctp, i, get_method_res_type(mtp, i));
6003
6004         NEW_ARR_A(ir_node *, in, n_param + 1);
6005
6006         /* FIXME: we don't need a new pointer type in every step */
6007         tp = get_irg_frame_type(current_ir_graph);
6008         tp = new_type_pointer(tp);
6009         set_method_param_type(ctp, 0, tp);
6010
6011         in[0] = get_Builtin_param(callee, 2);
6012         for (i = 0; i < n_param; ++i) {
6013                 set_method_param_type(ctp, i + 1, get_method_param_type(mtp, i));
6014                 in[i + 1] = get_Call_param(call, i);
6015         }
6016         var = get_method_variadicity(mtp);
6017         set_method_variadicity(ctp, var);
6018         if (var == variadicity_variadic) {
6019                 set_method_first_variadic_param_index(ctp, get_method_first_variadic_param_index(mtp) + 1);
6020         }
6021         /* When we resolve a trampoline, the function must be called by a this-call */
6022         set_method_calling_convention(ctp, get_method_calling_convention(mtp) | cc_this_call);
6023         set_method_additional_properties(ctp, get_method_additional_properties(mtp));
6024
6025         adr = get_Builtin_param(callee, 1);
6026
6027         db  = get_irn_dbg_info(call);
6028         bl  = get_nodes_block(call);
6029
6030         res = new_rd_Call(db, bl, mem, adr, n_param + 1, in, ctp);
6031         if (get_irn_pinned(call) == op_pin_state_floats)
6032                 set_irn_pinned(res, op_pin_state_floats);
6033         return res;
6034 }  /* transform_node_Call */
6035
6036 /**
6037  * Tries several [inplace] [optimizing] transformations and returns an
6038  * equivalent node.  The difference to equivalent_node() is that these
6039  * transformations _do_ generate new nodes, and thus the old node must
6040  * not be freed even if the equivalent node isn't the old one.
6041  */
6042 static ir_node *transform_node(ir_node *n)
6043 {
6044         ir_node *oldn;
6045
6046         /*
6047          * Transform_node is the only "optimizing transformation" that might
6048          * return a node with a different opcode. We iterate HERE until fixpoint
6049          * to get the final result.
6050          */
6051         do {
6052                 oldn = n;
6053                 if (n->op->ops.transform_node != NULL)
6054                         n = n->op->ops.transform_node(n);
6055         } while (oldn != n);
6056
6057         return n;
6058 }  /* transform_node */
6059
6060 /**
6061  * Sets the default transform node operation for an ir_op_ops.
6062  *
6063  * @param code   the opcode for the default operation
6064  * @param ops    the operations initialized
6065  *
6066  * @return
6067  *    The operations.
6068  */
6069 static ir_op_ops *firm_set_default_transform_node(ir_opcode code, ir_op_ops *ops)
6070 {
6071 #define CASE(a)                                         \
6072         case iro_##a:                                       \
6073                 ops->transform_node      = transform_node_##a;  \
6074                 break
6075 #define CASE_PROJ(a)                                         \
6076         case iro_##a:                                            \
6077                 ops->transform_node_Proj = transform_node_Proj_##a;  \
6078                 break
6079 #define CASE_PROJ_EX(a)                                      \
6080         case iro_##a:                                            \
6081                 ops->transform_node      = transform_node_##a;       \
6082                 ops->transform_node_Proj = transform_node_Proj_##a;  \
6083                 break
6084
6085         switch (code) {
6086         CASE(Add);
6087         CASE(Sub);
6088         CASE(Mul);
6089         CASE_PROJ_EX(Div);
6090         CASE_PROJ_EX(Mod);
6091         CASE_PROJ_EX(DivMod);
6092         CASE(Quot);
6093         CASE(Abs);
6094         CASE_PROJ_EX(Cmp);
6095         CASE_PROJ_EX(Cond);
6096         CASE(And);
6097         CASE(Eor);
6098         CASE(Not);
6099         CASE(Minus);
6100         CASE(Cast);
6101         CASE_PROJ(Load);
6102         CASE_PROJ(Store);
6103         CASE_PROJ(Bound);
6104         CASE_PROJ(CopyB);
6105         CASE(Proj);
6106         CASE(Phi);
6107         CASE(Or);
6108         CASE(Sel);
6109         CASE(Shr);
6110         CASE(Shrs);
6111         CASE(Shl);
6112         CASE(Rotl);
6113         CASE(Conv);
6114         CASE(End);
6115         CASE(Mux);
6116         CASE(Sync);
6117         CASE(Call);
6118         default:
6119           /* leave NULL */;
6120         }
6121
6122         return ops;
6123 #undef CASE_PROJ_EX
6124 #undef CASE_PROJ
6125 #undef CASE
6126 }  /* firm_set_default_transform_node */
6127
6128
6129 /* **************** Common Subexpression Elimination **************** */
6130
6131 /** The size of the hash table used, should estimate the number of nodes
6132     in a graph. */
6133 #define N_IR_NODES 512
6134
6135 /** Compares the attributes of two Const nodes. */
6136 static int node_cmp_attr_Const(ir_node *a, ir_node *b)
6137 {
6138         return (get_Const_tarval(a) != get_Const_tarval(b))
6139             || (get_Const_type(a) != get_Const_type(b));
6140 }  /* node_cmp_attr_Const */
6141
6142 /** Compares the attributes of two Proj nodes. */
6143 static int node_cmp_attr_Proj(ir_node *a, ir_node *b)
6144 {
6145         return get_irn_proj_attr(a) != get_irn_proj_attr(b);
6146 }  /* node_cmp_attr_Proj */
6147
6148 /** Compares the attributes of two Filter nodes. */
6149 static int node_cmp_attr_Filter(ir_node *a, ir_node *b)
6150 {
6151         return get_Filter_proj(a) != get_Filter_proj(b);
6152 }  /* node_cmp_attr_Filter */
6153
6154 /** Compares the attributes of two Alloc nodes. */
6155 static int node_cmp_attr_Alloc(ir_node *a, ir_node *b)
6156 {
6157         const alloc_attr *pa = get_irn_alloc_attr(a);
6158         const alloc_attr *pb = get_irn_alloc_attr(b);
6159         return (pa->where != pb->where) || (pa->type != pb->type);
6160 }  /* node_cmp_attr_Alloc */
6161
6162 /** Compares the attributes of two Free nodes. */
6163 static int node_cmp_attr_Free(ir_node *a, ir_node *b)
6164 {
6165         const free_attr *pa = get_irn_free_attr(a);
6166         const free_attr *pb = get_irn_free_attr(b);
6167         return (pa->where != pb->where) || (pa->type != pb->type);
6168 }  /* node_cmp_attr_Free */
6169
6170 /** Compares the attributes of two SymConst nodes. */
6171 static int node_cmp_attr_SymConst(ir_node *a, ir_node *b)
6172 {
6173         const symconst_attr *pa = get_irn_symconst_attr(a);
6174         const symconst_attr *pb = get_irn_symconst_attr(b);
6175         return (pa->kind       != pb->kind)
6176             || (pa->sym.type_p != pb->sym.type_p)
6177             || (pa->tp         != pb->tp);
6178 }  /* node_cmp_attr_SymConst */
6179
6180 /** Compares the attributes of two Call nodes. */
6181 static int node_cmp_attr_Call(ir_node *a, ir_node *b)
6182 {
6183         const call_attr *pa = get_irn_call_attr(a);
6184         const call_attr *pb = get_irn_call_attr(b);
6185         return (pa->type != pb->type)
6186                 || (pa->tail_call != pb->tail_call);
6187 }  /* node_cmp_attr_Call */
6188
6189 /** Compares the attributes of two Sel nodes. */
6190 static int node_cmp_attr_Sel(ir_node *a, ir_node *b)
6191 {
6192         const ir_entity *a_ent = get_Sel_entity(a);
6193         const ir_entity *b_ent = get_Sel_entity(b);
6194 #if 0
6195         return
6196                 (a_ent->kind    != b_ent->kind)    ||
6197                 (a_ent->name    != b_ent->name)    ||
6198                 (a_ent->owner   != b_ent->owner)   ||
6199                 (a_ent->ld_name != b_ent->ld_name) ||
6200                 (a_ent->type    != b_ent->type);
6201 #endif
6202         /* Matze: inlining of functions can produce 2 entities with same type,
6203          * name, etc. */
6204         return a_ent != b_ent;
6205 }  /* node_cmp_attr_Sel */
6206
6207 /** Compares the attributes of two Phi nodes. */
6208 static int node_cmp_attr_Phi(ir_node *a, ir_node *b)
6209 {
6210         /* we can only enter this function if both nodes have the same number of inputs,
6211            hence it is enough to check if one of them is a Phi0 */
6212         if (is_Phi0(a)) {
6213                 /* check the Phi0 pos attribute */
6214                 return get_irn_phi_attr(a)->u.pos != get_irn_phi_attr(b)->u.pos;
6215         }
6216         return 0;
6217 }  /* node_cmp_attr_Phi */
6218
6219 /** Compares the attributes of two Conv nodes. */
6220 static int node_cmp_attr_Conv(ir_node *a, ir_node *b)
6221 {
6222         return get_Conv_strict(a) != get_Conv_strict(b);
6223 }  /* node_cmp_attr_Conv */
6224
6225 /** Compares the attributes of two Cast nodes. */
6226 static int node_cmp_attr_Cast(ir_node *a, ir_node *b)
6227 {
6228         return get_Cast_type(a) != get_Cast_type(b);
6229 }  /* node_cmp_attr_Cast */
6230
6231 /** Compares the attributes of two Load nodes. */
6232 static int node_cmp_attr_Load(ir_node *a, ir_node *b)
6233 {
6234         if (get_Load_volatility(a) == volatility_is_volatile ||
6235             get_Load_volatility(b) == volatility_is_volatile)
6236                 /* NEVER do CSE on volatile Loads */
6237                 return 1;
6238         /* do not CSE Loads with different alignment. Be conservative. */
6239         if (get_Load_align(a) != get_Load_align(b))
6240                 return 1;
6241
6242         return get_Load_mode(a) != get_Load_mode(b);
6243 }  /* node_cmp_attr_Load */
6244
6245 /** Compares the attributes of two Store nodes. */
6246 static int node_cmp_attr_Store(ir_node *a, ir_node *b)
6247 {
6248         /* do not CSE Stores with different alignment. Be conservative. */
6249         if (get_Store_align(a) != get_Store_align(b))
6250                 return 1;
6251
6252         /* NEVER do CSE on volatile Stores */
6253         return (get_Store_volatility(a) == volatility_is_volatile ||
6254                 get_Store_volatility(b) == volatility_is_volatile);
6255 }  /* node_cmp_attr_Store */
6256
6257 /** Compares two exception attributes */
6258 static int node_cmp_exception(ir_node *a, ir_node *b)
6259 {
6260         const except_attr *ea = get_irn_except_attr(a);
6261         const except_attr *eb = get_irn_except_attr(b);
6262
6263         return ea->pin_state != eb->pin_state;
6264 }
6265
6266 #define node_cmp_attr_Bound  node_cmp_exception
6267
6268 /** Compares the attributes of two Div nodes. */
6269 static int node_cmp_attr_Div(ir_node *a, ir_node *b)
6270 {
6271         const divmod_attr *ma = get_irn_divmod_attr(a);
6272         const divmod_attr *mb = get_irn_divmod_attr(b);
6273         return ma->exc.pin_state != mb->exc.pin_state ||
6274                    ma->resmode       != mb->resmode ||
6275                    ma->no_remainder  != mb->no_remainder;
6276 }  /* node_cmp_attr_Div */
6277
6278 /** Compares the attributes of two DivMod nodes. */
6279 static int node_cmp_attr_DivMod(ir_node *a, ir_node *b)
6280 {
6281         const divmod_attr *ma = get_irn_divmod_attr(a);
6282         const divmod_attr *mb = get_irn_divmod_attr(b);
6283         return ma->exc.pin_state != mb->exc.pin_state ||
6284                    ma->resmode       != mb->resmode;
6285 }  /* node_cmp_attr_DivMod */
6286
6287 /** Compares the attributes of two Mod nodes. */
6288 static int node_cmp_attr_Mod(ir_node *a, ir_node *b)
6289 {
6290         const divmod_attr *ma = get_irn_divmod_attr(a);
6291         const divmod_attr *mb = get_irn_divmod_attr(b);
6292         return ma->exc.pin_state != mb->exc.pin_state ||
6293                    ma->resmode       != mb->resmode;
6294 }  /* node_cmp_attr_Mod */
6295
6296 /** Compares the attributes of two Quot nodes. */
6297 static int node_cmp_attr_Quot(ir_node *a, ir_node *b)
6298 {
6299         const divmod_attr *ma = get_irn_divmod_attr(a);
6300         const divmod_attr *mb = get_irn_divmod_attr(b);
6301         return ma->exc.pin_state != mb->exc.pin_state ||
6302                    ma->resmode       != mb->resmode;
6303 }  /* node_cmp_attr_Quot */
6304
6305 /** Compares the attributes of two Confirm nodes. */
6306 static int node_cmp_attr_Confirm(ir_node *a, ir_node *b)
6307 {
6308         /* no need to compare the bound, as this is a input */
6309         return (get_Confirm_cmp(a) != get_Confirm_cmp(b));
6310 }  /* node_cmp_attr_Confirm */
6311
6312 /** Compares the attributes of two Builtin nodes. */
6313 static int node_cmp_attr_Builtin(ir_node *a, ir_node *b)
6314 {
6315         const builtin_attr *ma = get_irn_builtin_attr(a);
6316         const builtin_attr *mb = get_irn_builtin_attr(b);
6317
6318         /* no need to compare the type, equal kind means equal type */
6319         return ma->kind != mb->kind;
6320 }  /* node_cmp_attr_Builtin */
6321
6322 /** Compares the attributes of two ASM nodes. */
6323 static int node_cmp_attr_ASM(ir_node *a, ir_node *b)
6324 {
6325         int i, n;
6326         const ir_asm_constraint *ca;
6327         const ir_asm_constraint *cb;
6328         ident **cla, **clb;
6329
6330         if (get_ASM_text(a) != get_ASM_text(b))
6331                 return 1;
6332
6333         /* Should we really check the constraints here? Should be better, but is strange. */
6334         n = get_ASM_n_input_constraints(a);
6335         if (n != get_ASM_n_input_constraints(b))
6336                 return 0;
6337
6338         ca = get_ASM_input_constraints(a);
6339         cb = get_ASM_input_constraints(b);
6340         for (i = 0; i < n; ++i) {
6341                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
6342                         return 1;
6343         }
6344
6345         n = get_ASM_n_output_constraints(a);
6346         if (n != get_ASM_n_output_constraints(b))
6347                 return 0;
6348
6349         ca = get_ASM_output_constraints(a);
6350         cb = get_ASM_output_constraints(b);
6351         for (i = 0; i < n; ++i) {
6352                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
6353                         return 1;
6354         }
6355
6356         n = get_ASM_n_clobbers(a);
6357         if (n != get_ASM_n_clobbers(b))
6358                 return 0;
6359
6360         cla = get_ASM_clobbers(a);
6361         clb = get_ASM_clobbers(b);
6362         for (i = 0; i < n; ++i) {
6363                 if (cla[i] != clb[i])
6364                         return 1;
6365         }
6366         return 0;
6367 }  /* node_cmp_attr_ASM */
6368
6369 /** Compares the inexistent attributes of two Dummy nodes. */
6370 static int node_cmp_attr_Dummy(ir_node *a, ir_node *b)
6371 {
6372         (void) a;
6373         (void) b;
6374         return 1;
6375 }
6376
6377 /**
6378  * Set the default node attribute compare operation for an ir_op_ops.
6379  *
6380  * @param code   the opcode for the default operation
6381  * @param ops    the operations initialized
6382  *
6383  * @return
6384  *    The operations.
6385  */
6386 static ir_op_ops *firm_set_default_node_cmp_attr(ir_opcode code, ir_op_ops *ops)
6387 {
6388 #define CASE(a)                              \
6389         case iro_##a:                              \
6390                 ops->node_cmp_attr  = node_cmp_attr_##a; \
6391                 break
6392
6393         switch (code) {
6394         CASE(Const);
6395         CASE(Proj);
6396         CASE(Filter);
6397         CASE(Alloc);
6398         CASE(Free);
6399         CASE(SymConst);
6400         CASE(Call);
6401         CASE(Sel);
6402         CASE(Phi);
6403         CASE(Conv);
6404         CASE(Cast);
6405         CASE(Load);
6406         CASE(Store);
6407         CASE(Confirm);
6408         CASE(ASM);
6409         CASE(Div);
6410         CASE(DivMod);
6411         CASE(Mod);
6412         CASE(Quot);
6413         CASE(Bound);
6414         CASE(Builtin);
6415         CASE(Dummy);
6416         /* FIXME CopyB */
6417         default:
6418                 /* leave NULL */
6419                 break;
6420         }
6421
6422         return ops;
6423 #undef CASE
6424 }  /* firm_set_default_node_cmp_attr */
6425
6426 /*
6427  * Compare function for two nodes in the value table. Gets two
6428  * nodes as parameters.  Returns 0 if the nodes are a Common Sub Expression.
6429  */
6430 int identities_cmp(const void *elt, const void *key)
6431 {
6432         ir_node *a = (ir_node *)elt;
6433         ir_node *b = (ir_node *)key;
6434         int i, irn_arity_a;
6435
6436         if (a == b) return 0;
6437
6438         if ((get_irn_op(a) != get_irn_op(b)) ||
6439             (get_irn_mode(a) != get_irn_mode(b))) return 1;
6440
6441         /* compare if a's in and b's in are of equal length */
6442         irn_arity_a = get_irn_intra_arity(a);
6443         if (irn_arity_a != get_irn_intra_arity(b))
6444                 return 1;
6445
6446         if (get_irn_pinned(a) == op_pin_state_pinned) {
6447                 /* for pinned nodes, the block inputs must be equal */
6448                 if (get_irn_intra_n(a, -1) != get_irn_intra_n(b, -1))
6449                         return 1;
6450         } else if (! get_opt_global_cse()) {
6451                 /* for block-local CSE both nodes must be in the same MacroBlock */
6452                 if (get_irn_MacroBlock(a) != get_irn_MacroBlock(b))
6453                         return 1;
6454         }
6455
6456         /* compare a->in[0..ins] with b->in[0..ins] */
6457         for (i = 0; i < irn_arity_a; ++i) {
6458                 ir_node *pred_a = get_irn_intra_n(a, i);
6459                 ir_node *pred_b = get_irn_intra_n(b, i);
6460                 if (pred_a != pred_b) {
6461                         /* if both predecessors are CSE neutral they might be different */
6462                         if (!is_irn_cse_neutral(pred_a) || !is_irn_cse_neutral(pred_b))
6463                                 return 1;
6464                 }
6465         }
6466
6467         /*
6468          * here, we already now that the nodes are identical except their
6469          * attributes
6470          */
6471         if (a->op->ops.node_cmp_attr)
6472                 return a->op->ops.node_cmp_attr(a, b);
6473
6474         return 0;
6475 }  /* identities_cmp */
6476
6477 /*
6478  * Calculate a hash value of a node.
6479  *
6480  * @param node  The IR-node
6481  */
6482 unsigned ir_node_hash(const ir_node *node)
6483 {
6484         return node->op->ops.hash(node);
6485 }  /* ir_node_hash */
6486
6487
6488 pset *new_identities(void)
6489 {
6490         return new_pset(identities_cmp, N_IR_NODES);
6491 }  /* new_identities */
6492
6493 void del_identities(pset *value_table)
6494 {
6495         del_pset(value_table);
6496 }  /* del_identities */
6497
6498 /* Normalize a node by putting constants (and operands with larger
6499  * node index) on the right (operator side). */
6500 void ir_normalize_node(ir_node *n)
6501 {
6502         if (is_op_commutative(get_irn_op(n))) {
6503                 ir_node *l = get_binop_left(n);
6504                 ir_node *r = get_binop_right(n);
6505
6506                 /* For commutative operators perform  a OP b == b OP a but keep
6507                  * constants on the RIGHT side. This helps greatly in some
6508                  * optimizations.  Moreover we use the idx number to make the form
6509                  * deterministic. */
6510                 if (!operands_are_normalized(l, r)) {
6511                         set_binop_left(n, r);
6512                         set_binop_right(n, l);
6513                         hook_normalize(n);
6514                 }
6515         }
6516 }  /* ir_normalize_node */
6517
6518 /**
6519  * Update the nodes after a match in the value table. If both nodes have
6520  * the same MacroBlock but different Blocks, we must ensure that the node
6521  * with the dominating Block (the node that is near to the MacroBlock header
6522  * is stored in the table.
6523  * Because a MacroBlock has only one "non-exception" flow, we don't need
6524  * dominance info here: We known, that one block must dominate the other and
6525  * following the only block input will allow to find it.
6526  */
6527 static void update_known_irn(ir_node *known_irn, const ir_node *new_ir_node)
6528 {
6529         ir_node *known_blk, *new_block, *block, *mbh;
6530
6531         if (get_opt_global_cse()) {
6532                 /* Block inputs are meaning less */
6533                 return;
6534         }
6535         known_blk = get_irn_n(known_irn, -1);
6536         new_block = get_irn_n(new_ir_node, -1);
6537         if (known_blk == new_block) {
6538                 /* already in the same block */
6539                 return;
6540         }
6541         /*
6542          * We expect the typical case when we built the graph. In that case, the
6543          * known_irn is already the upper one, so checking this should be faster.
6544          */
6545         block = new_block;
6546         mbh   = get_Block_MacroBlock(new_block);
6547         for (;;) {
6548                 if (block == known_blk) {
6549                         /* ok, we have found it: known_block dominates new_block as expected */
6550                         return;
6551                 }
6552                 if (block == mbh) {
6553                         /*
6554                          * We have reached the MacroBlock header NOT founding
6555                          * the known_block. new_block must dominate known_block.
6556                          * Update known_irn.
6557                          */
6558                         set_irn_n(known_irn, -1, new_block);
6559                         return;
6560                 }
6561                 assert(get_Block_n_cfgpreds(block) == 1);
6562                 block = get_Block_cfgpred_block(block, 0);
6563         }
6564 }  /* update_value_table */
6565
6566 /*
6567  * Return the canonical node computing the same value as n.
6568  * Looks up the node in a hash table, enters it in the table
6569  * if it isn't there yet.
6570  *
6571  * @param value_table  the HashSet containing all nodes in the
6572  *                     current IR graph
6573  * @param n            the node to look up
6574  *
6575  * @return a node that computes the same value as n or n if no such
6576  *         node could be found
6577  */
6578 ir_node *identify_remember(pset *value_table, ir_node *n)
6579 {
6580         ir_node *nn = NULL;
6581
6582         if (!value_table) return n;
6583
6584         ir_normalize_node(n);
6585         /* lookup or insert in hash table with given hash key. */
6586         nn = pset_insert(value_table, n, ir_node_hash(n));
6587
6588         if (nn != n) {
6589                 update_known_irn(nn, n);
6590
6591                 /* n is reachable again */
6592                 edges_node_revival(nn, get_irn_irg(nn));
6593         }
6594
6595         return nn;
6596 }  /* identify_remember */
6597
6598 /**
6599  * During construction we set the op_pin_state_pinned flag in the graph right when the
6600  * optimization is performed.  The flag turning on procedure global cse could
6601  * be changed between two allocations.  This way we are safe.
6602  *
6603  * @param value_table  The value table
6604  * @param n            The node to lookup
6605  */
6606 static inline ir_node *identify_cons(pset *value_table, ir_node *n)
6607 {
6608         ir_node *old = n;
6609
6610         n = identify_remember(value_table, n);
6611         if (n != old && get_irn_MacroBlock(old) != get_irn_MacroBlock(n))
6612                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
6613         return n;
6614 }  /* identify_cons */
6615
6616 /* Add a node to the identities value table. */
6617 void add_identities(pset *value_table, ir_node *node)
6618 {
6619         if (get_opt_cse() && is_no_Block(node))
6620                 identify_remember(value_table, node);
6621 }  /* add_identities */
6622
6623 /* Visit each node in the value table of a graph. */
6624 void visit_all_identities(ir_graph *irg, irg_walk_func visit, void *env)
6625 {
6626         ir_node *node;
6627         ir_graph *rem = current_ir_graph;
6628
6629         current_ir_graph = irg;
6630         foreach_pset(irg->value_table, node)
6631                 visit(node, env);
6632         current_ir_graph = rem;
6633 }  /* visit_all_identities */
6634
6635 /**
6636  * Garbage in, garbage out. If a node has a dead input, i.e., the
6637  * Bad node is input to the node, return the Bad node.
6638  */
6639 static ir_node *gigo(ir_node *node)
6640 {
6641         int i, irn_arity;
6642         ir_op *op = get_irn_op(node);
6643
6644         /* remove garbage blocks by looking at control flow that leaves the block
6645            and replacing the control flow by Bad. */
6646         if (get_irn_mode(node) == mode_X) {
6647                 ir_node *block = get_nodes_block(skip_Proj(node));
6648
6649                 /* Don't optimize nodes in immature blocks. */
6650                 if (!get_Block_matured(block))
6651                         return node;
6652                 /* Don't optimize End, may have Bads. */
6653                 if (op == op_End) return node;
6654
6655                 if (is_Block(block)) {
6656                         if (is_Block_dead(block)) {
6657                                 /* control flow from dead block is dead */
6658                                 return new_Bad();
6659                         }
6660
6661                         for (i = get_irn_arity(block) - 1; i >= 0; --i) {
6662                                 if (!is_Bad(get_irn_n(block, i)))
6663                                         break;
6664                         }
6665                         if (i < 0) {
6666                                 ir_graph *irg = get_irn_irg(block);
6667                                 /* the start block is never dead */
6668                                 if (block != get_irg_start_block(irg)
6669                                         && block != get_irg_end_block(irg)) {
6670                                         /*
6671                                          * Do NOT kill control flow without setting
6672                                          * the block to dead of bad things can happen:
6673                                          * We get a Block that is not reachable be irg_block_walk()
6674                                          * but can be found by irg_walk()!
6675                                          */
6676                                         set_Block_dead(block);
6677                                         return new_Bad();
6678                                 }
6679                         }
6680                 }
6681         }
6682
6683         /* Blocks, Phis and Tuples may have dead inputs, e.g., if one of the
6684            blocks predecessors is dead. */
6685         if (op != op_Block && op != op_Phi && op != op_Tuple) {
6686                 irn_arity = get_irn_arity(node);
6687
6688                 /*
6689                  * Beware: we can only read the block of a non-floating node.
6690                  */
6691                 if (is_irn_pinned_in_irg(node) &&
6692                         is_Block_dead(get_nodes_block(skip_Proj(node))))
6693                         return new_Bad();
6694
6695                 for (i = 0; i < irn_arity; i++) {
6696                         ir_node *pred = get_irn_n(node, i);
6697
6698                         if (is_Bad(pred))
6699                                 return new_Bad();
6700 #if 0
6701                         /* Propagating Unknowns here seems to be a bad idea, because
6702                            sometimes we need a node as a input and did not want that
6703                            it kills it's user.
6704                            However, it might be useful to move this into a later phase
6705                            (if you think that optimizing such code is useful). */
6706                         if (is_Unknown(pred) && mode_is_data(get_irn_mode(node)))
6707                                 return new_Unknown(get_irn_mode(node));
6708 #endif
6709                 }
6710         }
6711 #if 0
6712         /* With this code we violate the agreement that local_optimize
6713            only leaves Bads in Block, Phi and Tuple nodes. */
6714         /* If Block has only Bads as predecessors it's garbage. */
6715         /* If Phi has only Bads as predecessors it's garbage. */
6716         if ((op == op_Block && get_Block_matured(node)) || op == op_Phi)  {
6717                 irn_arity = get_irn_arity(node);
6718                 for (i = 0; i < irn_arity; i++) {
6719                         if (!is_Bad(get_irn_n(node, i))) break;
6720                 }
6721                 if (i == irn_arity) node = new_Bad();
6722         }
6723 #endif
6724         return node;
6725 }  /* gigo */
6726
6727 /**
6728  * These optimizations deallocate nodes from the obstack.
6729  * It can only be called if it is guaranteed that no other nodes
6730  * reference this one, i.e., right after construction of a node.
6731  *
6732  * @param n   The node to optimize
6733  *
6734  * current_ir_graph must be set to the graph of the node!
6735  */
6736 ir_node *optimize_node(ir_node *n)
6737 {
6738         tarval *tv;
6739         ir_node *oldn = n;
6740         ir_opcode iro = get_irn_opcode(n);
6741
6742         /* Always optimize Phi nodes: part of the construction. */
6743         if ((!get_opt_optimize()) && (iro != iro_Phi)) return n;
6744
6745         /* constant expression evaluation / constant folding */
6746         if (get_opt_constant_folding()) {
6747                 /* neither constants nor Tuple values can be evaluated */
6748                 if (iro != iro_Const && (get_irn_mode(n) != mode_T)) {
6749                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
6750                         int old_fp_mode = tarval_fp_ops_enabled();
6751
6752                         tarval_enable_fp_ops(! (fp_model & fp_no_float_fold));
6753
6754                         /* try to evaluate */
6755                         tv = computed_value(n);
6756                         if (tv != tarval_bad) {
6757                                 ir_node *nw;
6758                                 ir_type *old_tp = get_irn_type(n);
6759                                 int i, arity = get_irn_arity(n);
6760                                 int node_size;
6761
6762                                 /*
6763                                  * Try to recover the type of the new expression.
6764                                  */
6765                                 for (i = 0; i < arity && !old_tp; ++i)
6766                                         old_tp = get_irn_type(get_irn_n(n, i));
6767
6768                                 /*
6769                                  * we MUST copy the node here temporary, because it's still needed
6770                                  * for DBG_OPT_CSTEVAL
6771                                  */
6772                                 node_size = offsetof(ir_node, attr) +  n->op->attr_size;
6773                                 oldn = alloca(node_size);
6774
6775                                 memcpy(oldn, n, node_size);
6776                                 CLONE_ARR_A(ir_node *, oldn->in, n->in);
6777
6778                                 /* ARG, copy the in array, we need it for statistics */
6779                                 memcpy(oldn->in, n->in, ARR_LEN(n->in) * sizeof(n->in[0]));
6780
6781                                 /* note the inplace edges module */
6782                                 edges_node_deleted(n, current_ir_graph);
6783
6784                                 /* evaluation was successful -- replace the node. */
6785                                 irg_kill_node(current_ir_graph, n);
6786                                 nw = new_Const(tv);
6787
6788                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
6789                                         set_Const_type(nw, old_tp);
6790                                 DBG_OPT_CSTEVAL(oldn, nw);
6791                                 tarval_enable_fp_ops(old_fp_mode);
6792                                 return nw;
6793                         }
6794                         tarval_enable_fp_ops(old_fp_mode);
6795                 }
6796         }
6797
6798         /* remove unnecessary nodes */
6799         if (get_opt_algebraic_simplification() ||
6800             (iro == iro_Phi)  ||   /* always optimize these nodes. */
6801             (iro == iro_Id)   ||
6802             (iro == iro_Proj) ||
6803             (iro == iro_Block)  )  /* Flags tested local. */
6804                 n = equivalent_node(n);
6805
6806         /* Common Subexpression Elimination.
6807          *
6808          * Checks whether n is already available.
6809          * The block input is used to distinguish different subexpressions. Right
6810          * now all nodes are op_pin_state_pinned to blocks, i.e., the CSE only finds common
6811          * subexpressions within a block.
6812          */
6813         if (get_opt_cse())
6814                 n = identify_cons(current_ir_graph->value_table, n);
6815
6816         if (n != oldn) {
6817                 edges_node_deleted(oldn, current_ir_graph);
6818
6819                 /* We found an existing, better node, so we can deallocate the old node. */
6820                 irg_kill_node(current_ir_graph, oldn);
6821                 return n;
6822         }
6823
6824         /* Some more constant expression evaluation that does not allow to
6825            free the node. */
6826         iro = get_irn_opcode(n);
6827         if (get_opt_algebraic_simplification() ||
6828             (iro == iro_Cond) ||
6829             (iro == iro_Proj))     /* Flags tested local. */
6830                 n = transform_node(n);
6831
6832         /* Remove nodes with dead (Bad) input.
6833            Run always for transformation induced Bads. */
6834         n = gigo(n);
6835
6836         /* Now we have a legal, useful node. Enter it in hash table for CSE */
6837         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block)) {
6838                 ir_node *o = n;
6839                 n = identify_remember(current_ir_graph->value_table, o);
6840                 if (o != n)
6841                         DBG_OPT_CSE(o, n);
6842         }
6843
6844         return n;
6845 }  /* optimize_node */
6846
6847
6848 /**
6849  * These optimizations never deallocate nodes (in place).  This can cause dead
6850  * nodes lying on the obstack.  Remove these by a dead node elimination,
6851  * i.e., a copying garbage collection.
6852  */
6853 ir_node *optimize_in_place_2(ir_node *n)
6854 {
6855         tarval *tv;
6856         ir_node *oldn = n;
6857         ir_opcode iro = get_irn_opcode(n);
6858
6859         if (!get_opt_optimize() && !is_Phi(n)) return n;
6860
6861         /* constant expression evaluation / constant folding */
6862         if (get_opt_constant_folding()) {
6863                 /* neither constants nor Tuple values can be evaluated */
6864                 if (iro != iro_Const && get_irn_mode(n) != mode_T) {
6865                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
6866                         int old_fp_mode = tarval_fp_ops_enabled();
6867
6868                         tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
6869                         /* try to evaluate */
6870                         tv = computed_value(n);
6871                         if (tv != tarval_bad) {
6872                                 /* evaluation was successful -- replace the node. */
6873                                 ir_type *old_tp = get_irn_type(n);
6874                                 int i, arity = get_irn_arity(n);
6875
6876                                 /*
6877                                  * Try to recover the type of the new expression.
6878                                  */
6879                                 for (i = 0; i < arity && !old_tp; ++i)
6880                                         old_tp = get_irn_type(get_irn_n(n, i));
6881
6882                                 n = new_Const(tv);
6883
6884                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
6885                                         set_Const_type(n, old_tp);
6886
6887                                 DBG_OPT_CSTEVAL(oldn, n);
6888                                 tarval_enable_fp_ops(old_fp_mode);
6889                                 return n;
6890                         }
6891                         tarval_enable_fp_ops(old_fp_mode);
6892                 }
6893         }
6894
6895         /* remove unnecessary nodes */
6896         if (get_opt_constant_folding() ||
6897             (iro == iro_Phi)  ||   /* always optimize these nodes. */
6898             (iro == iro_Id)   ||   /* ... */
6899             (iro == iro_Proj) ||   /* ... */
6900             (iro == iro_Block)  )  /* Flags tested local. */
6901                 n = equivalent_node(n);
6902
6903         /** common subexpression elimination **/
6904         /* Checks whether n is already available. */
6905         /* The block input is used to distinguish different subexpressions.  Right
6906            now all nodes are op_pin_state_pinned to blocks, i.e., the cse only finds common
6907            subexpressions within a block. */
6908         if (get_opt_cse()) {
6909                 ir_node *o = n;
6910                 n = identify_remember(current_ir_graph->value_table, o);
6911                 if (o != n)
6912                         DBG_OPT_CSE(o, n);
6913         }
6914
6915         /* Some more constant expression evaluation. */
6916         iro = get_irn_opcode(n);
6917         if (get_opt_constant_folding() ||
6918                 (iro == iro_Cond) ||
6919                 (iro == iro_Proj))     /* Flags tested local. */
6920                 n = transform_node(n);
6921
6922         /* Remove nodes with dead (Bad) input.
6923            Run always for transformation induced Bads.  */
6924         n = gigo(n);
6925
6926         /* Now we can verify the node, as it has no dead inputs any more. */
6927         irn_vrfy(n);
6928
6929         /* Now we have a legal, useful node. Enter it in hash table for cse.
6930            Blocks should be unique anyways.  (Except the successor of start:
6931            is cse with the start block!) */
6932         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block)) {
6933                 ir_node *o = n;
6934                 n = identify_remember(current_ir_graph->value_table, o);
6935                 if (o != n)
6936                         DBG_OPT_CSE(o, n);
6937         }
6938
6939         return n;
6940 }  /* optimize_in_place_2 */
6941
6942 /**
6943  * Wrapper for external use, set proper status bits after optimization.
6944  */
6945 ir_node *optimize_in_place(ir_node *n)
6946 {
6947         /* Handle graph state */
6948         assert(get_irg_phase_state(current_ir_graph) != phase_building);
6949
6950         if (get_opt_global_cse())
6951                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
6952         if (get_irg_outs_state(current_ir_graph) == outs_consistent)
6953                 set_irg_outs_inconsistent(current_ir_graph);
6954
6955         /* FIXME: Maybe we could also test whether optimizing the node can
6956            change the control graph. */
6957         set_irg_doms_inconsistent(current_ir_graph);
6958         return optimize_in_place_2(n);
6959 }  /* optimize_in_place */
6960
6961 /**
6962  * Calculate a hash value of a Const node.
6963  */
6964 static unsigned hash_Const(const ir_node *node)
6965 {
6966         unsigned h;
6967
6968         /* special value for const, as they only differ in their tarval. */
6969         h = HASH_PTR(node->attr.con.tv);
6970
6971         return h;
6972 }  /* hash_Const */
6973
6974 /**
6975  * Calculate a hash value of a SymConst node.
6976  */
6977 static unsigned hash_SymConst(const ir_node *node)
6978 {
6979         unsigned h;
6980
6981         /* all others are pointers */
6982         h = HASH_PTR(node->attr.symc.sym.type_p);
6983
6984         return h;
6985 }  /* hash_SymConst */
6986
6987 /**
6988  * Set the default hash operation in an ir_op_ops.
6989  *
6990  * @param code   the opcode for the default operation
6991  * @param ops    the operations initialized
6992  *
6993  * @return
6994  *    The operations.
6995  */
6996 static ir_op_ops *firm_set_default_hash(ir_opcode code, ir_op_ops *ops)
6997 {
6998 #define CASE(a)                                    \
6999         case iro_##a:                                  \
7000                 ops->hash  = hash_##a; \
7001                 break
7002
7003         /* hash function already set */
7004         if (ops->hash != NULL)
7005                 return ops;
7006
7007         switch (code) {
7008         CASE(Const);
7009         CASE(SymConst);
7010         default:
7011                 /* use input/mode default hash if no function was given */
7012                 ops->hash = firm_default_hash;
7013         }
7014
7015         return ops;
7016 #undef CASE
7017 }
7018
7019 /*
7020  * Sets the default operation for an ir_ops.
7021  */
7022 ir_op_ops *firm_set_default_operations(ir_opcode code, ir_op_ops *ops)
7023 {
7024         ops = firm_set_default_hash(code, ops);
7025         ops = firm_set_default_computed_value(code, ops);
7026         ops = firm_set_default_equivalent_node(code, ops);
7027         ops = firm_set_default_transform_node(code, ops);
7028         ops = firm_set_default_node_cmp_attr(code, ops);
7029         ops = firm_set_default_get_type(code, ops);
7030         ops = firm_set_default_get_type_attr(code, ops);
7031         ops = firm_set_default_get_entity_attr(code, ops);
7032
7033         return ops;
7034 }  /* firm_set_default_operations */