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