Add const_negate() which negates a Const node.
[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 /* returns -cnst */
2043 static ir_node* const_negate(ir_node* cnst)
2044 {
2045         tarval   *tv    = tarval_neg(get_Const_tarval(cnst));
2046         dbg_info *dbgi  = get_irn_dbg_info(cnst);
2047         ir_graph *irg   = get_irn_irg(cnst);
2048         ir_node  *block = get_nodes_block(cnst);
2049         ir_mode  *mode  = get_irn_mode(cnst);
2050         if (tv == tarval_bad) return NULL;
2051         return new_rd_Const(dbgi, irg, block, mode, tv);
2052 }
2053
2054 /**
2055  * Do the AddSub optimization, then Transform
2056  *   Constant folding on Phi
2057  *   Sub(0,a)          -> Minus(a)
2058  *   Sub(Mul(a, x), a) -> Mul(a, x-1)
2059  *   Sub(Sub(x, y), b) -> Sub(x, Add(y,b))
2060  *   Sub(Add(a, x), x) -> a
2061  *   Sub(x, Add(x, a)) -> -a
2062  *   Sub(x, Const)     -> Add(x, -Const)
2063  */
2064 static ir_node *transform_node_Sub(ir_node *n) {
2065         ir_mode *mode;
2066         ir_node *oldn = n;
2067         ir_node *a, *b, *c;
2068
2069         n = transform_node_AddSub(n);
2070
2071         a = get_Sub_left(n);
2072         b = get_Sub_right(n);
2073
2074         mode = get_irn_mode(n);
2075
2076 restart:
2077         HANDLE_BINOP_PHI(tarval_sub, a,b,c);
2078
2079         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2080         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2081                 return n;
2082
2083         /* Sub(a, Const) -> Add(a, -Const) */
2084         if (is_Const(b) && get_irn_mode(b) != mode_P) {
2085                 ir_node* cnst = const_negate(b);
2086                 if (cnst != NULL) {
2087                         ir_node  *block = get_nodes_block(n);
2088                         dbg_info *dbgi  = get_irn_dbg_info(n);
2089                         ir_graph *irg   = get_irn_irg(n);
2090                         ir_node  *add   = new_rd_Add(dbgi, irg, block, a, cnst, mode);
2091
2092                         return add;
2093                 }
2094         }
2095
2096         if (is_Const(a)) {
2097                 if (is_Sub(b)) { /* const - (a - b) -> (b - a) + -const */
2098                         ir_node* cnst = const_negate(a);
2099                         if (cnst != NULL) {
2100                                 ir_graph *irg     = current_ir_graph;
2101                                 dbg_info *s_dbg   = get_irn_dbg_info(b);
2102                                 ir_node  *s_block = get_nodes_block(b);
2103                                 ir_node  *s_left  = get_Sub_right(b);
2104                                 ir_node  *s_right = get_Sub_left(b);
2105                                 ir_mode  *s_mode  = get_irn_mode(b);
2106                                 ir_node  *sub     = new_rd_Sub(s_dbg, irg, s_block, s_left, s_right, s_mode);
2107                                 dbg_info *a_dbg   = get_irn_dbg_info(n);
2108                                 ir_node  *a_block = get_nodes_block(n);
2109                                 ir_mode  *a_mode  = get_irn_mode(n);
2110                                 ir_node  *add     = new_rd_Add(a_dbg, irg, a_block, sub, cnst, a_mode);
2111                                 return add;
2112                         }
2113                 } else if (is_Mul(b)) { /* const1 - (a * const2) -> (a * -const2) + -const1 */
2114                         ir_node* m_right = get_Mul_right(b);
2115                         if (is_Const(m_right)) {
2116                                 ir_node* cnst1 = const_negate(a);
2117                                 ir_node* cnst2 = const_negate(m_right);
2118                                 if (cnst1 != NULL && cnst2 != NULL) {
2119                                         ir_graph *irg     = current_ir_graph;
2120                                         dbg_info *m_dbg   = get_irn_dbg_info(b);
2121                                         ir_node  *m_block = get_nodes_block(b);
2122                                         ir_node  *m_left  = get_Mul_left(b);
2123                                         ir_mode  *m_mode  = get_irn_mode(b);
2124                                         ir_node  *mul     = new_rd_Mul(m_dbg, irg, m_block, m_left, cnst2, m_mode);
2125                                         dbg_info *a_dbg   = get_irn_dbg_info(n);
2126                                         ir_node  *a_block = get_nodes_block(n);
2127                                         ir_mode  *a_mode  = get_irn_mode(n);
2128                                         ir_node  *add     = new_rd_Add(a_dbg, irg, a_block, mul, cnst1, a_mode);
2129                                         return add;
2130                                 }
2131                         }
2132                 }
2133         }
2134
2135         /* Beware of Sub(P, P) which cannot be optimized into a simple Minus ... */
2136         if (mode_is_num(mode) && mode == get_irn_mode(a) && (classify_Const(a) == CNST_NULL)) {
2137                 n = new_rd_Minus(
2138                                 get_irn_dbg_info(n),
2139                                 current_ir_graph,
2140                                 get_irn_n(n, -1),
2141                                 b,
2142                                 mode);
2143                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
2144                 return n;
2145         }
2146         if (is_Add(a)) {
2147                 if (mode_wrap_around(mode)) {
2148                         ir_node *left  = get_Add_left(a);
2149                         ir_node *right = get_Add_right(a);
2150
2151                         /* FIXME: Does the Conv's work only for two complement or generally? */
2152                         if (left == b) {
2153                                 if (mode != get_irn_mode(right)) {
2154                                         /* This Sub is an effective Cast */
2155                                         right = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), right, mode);
2156                                 }
2157                                 n = right;
2158                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2159                                 return n;
2160                         } else if (right == b) {
2161                                 if (mode != get_irn_mode(left)) {
2162                                         /* This Sub is an effective Cast */
2163                                         left = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), left, mode);
2164                                 }
2165                                 n = left;
2166                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2167                                 return n;
2168                         }
2169                 }
2170         }
2171         if (is_Add(b)) {
2172                 if (mode_wrap_around(mode)) {
2173                         ir_node *left  = get_Add_left(b);
2174                         ir_node *right = get_Add_right(b);
2175
2176                         /* FIXME: Does the Conv's work only for two complement or generally? */
2177                         if (left == a) {
2178                                 ir_mode *r_mode = get_irn_mode(right);
2179
2180                                 n = new_r_Minus(get_irn_irg(n), get_irn_n(n, -1), right, r_mode);
2181                                 if (mode != r_mode) {
2182                                         /* This Sub is an effective Cast */
2183                                         n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
2184                                 }
2185                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2186                                 return n;
2187                         } else if (right == a) {
2188                                 ir_mode *l_mode = get_irn_mode(left);
2189
2190                                 n = new_r_Minus(get_irn_irg(n), get_irn_n(n, -1), left, l_mode);
2191                                 if (mode != l_mode) {
2192                                         /* This Sub is an effective Cast */
2193                                         n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
2194                                 }
2195                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
2196                                 return n;
2197                         }
2198                 }
2199         }
2200         if (mode_is_int(mode) && is_Conv(a) && is_Conv(b)) {
2201                 ir_mode *mode = get_irn_mode(a);
2202
2203                 if (mode == get_irn_mode(b)) {
2204                         ir_mode *ma, *mb;
2205
2206                         a = get_Conv_op(a);
2207                         b = get_Conv_op(b);
2208
2209                         /* check if it's allowed to skip the conv */
2210                         ma = get_irn_mode(a);
2211                         mb = get_irn_mode(b);
2212
2213                         if (mode_is_reference(ma) && mode_is_reference(mb)) {
2214                                 /* SubInt(ConvInt(aP), ConvInt(bP)) -> SubInt(aP,bP) */
2215                                 set_Sub_left(n, a);
2216                                 set_Sub_right(n, b);
2217
2218                                 goto restart;
2219                         }
2220                 }
2221         }
2222         /* do NOT execute this code if reassociation is enabled, it does the inverse! */
2223         if (get_opt_reassociation() && get_irn_op(a) == op_Mul) {
2224                 ir_node *ma = get_Mul_left(a);
2225                 ir_node *mb = get_Mul_right(a);
2226
2227                 if (ma == b) {
2228                         ir_node *blk = get_irn_n(n, -1);
2229                         n = new_rd_Mul(
2230                                         get_irn_dbg_info(n),
2231                                         current_ir_graph, blk,
2232                                         ma,
2233                                         new_rd_Sub(
2234                                                 get_irn_dbg_info(n),
2235                                                 current_ir_graph, blk,
2236                                                 mb,
2237                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
2238                                                 mode),
2239                                         mode);
2240                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2241                         return n;
2242                 } else if (mb == b) {
2243                         ir_node *blk = get_irn_n(n, -1);
2244                         n = new_rd_Mul(
2245                                         get_irn_dbg_info(n),
2246                                         current_ir_graph, blk,
2247                                         mb,
2248                                         new_rd_Sub(
2249                                                 get_irn_dbg_info(n),
2250                                                 current_ir_graph, blk,
2251                                                 ma,
2252                                                 new_r_Const_long(current_ir_graph, blk, mode, 1),
2253                                                 mode),
2254                                         mode);
2255                         DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
2256                         return n;
2257                 }
2258         }
2259         if (is_Sub(a)) {
2260                 ir_node *x   = get_Sub_left(a);
2261                 ir_node *y   = get_Sub_right(a);
2262                 ir_node *blk = get_irn_n(n, -1);
2263                 ir_mode *m_b = get_irn_mode(b);
2264                 ir_mode *m_y = get_irn_mode(y);
2265                 ir_node *add;
2266
2267                 /* Determine the right mode for the Add. */
2268                 if (m_b == m_y)
2269                         mode = m_b;
2270                 else if (mode_is_reference(m_b))
2271                         mode = m_b;
2272                 else if (mode_is_reference(m_y))
2273                         mode = m_y;
2274                 else {
2275                         /*
2276                          * Both modes are different but none is reference,
2277                          * happens for instance in SubP(SubP(P, Iu), Is).
2278                          * We have two possibilities here: Cast or ignore.
2279                          * Currently we ignore this case.
2280                          */
2281                         return n;
2282                 }
2283
2284                 add = new_r_Add(current_ir_graph, blk, y, b, mode);
2285
2286                 set_Sub_left(n, x);
2287                 set_Sub_right(n, add);
2288                 DBG_OPT_ALGSIM0(n, n, FS_OPT_SUB_SUB_X_Y_Z);
2289                 return n;
2290         }
2291         return n;
2292 }  /* transform_node_Sub */
2293
2294 /**
2295  * Several transformation done on n*n=2n bits mul.
2296  * These transformations must be done here because new nodes may be produced.
2297  */
2298 static ir_node *transform_node_Mul2n(ir_node *n, ir_mode *mode) {
2299         ir_node *oldn = n;
2300         ir_node *a = get_Mul_left(n);
2301         ir_node *b = get_Mul_right(n);
2302         tarval *ta = value_of(a);
2303         tarval *tb = value_of(b);
2304         ir_mode *smode = get_irn_mode(a);
2305
2306         if (ta == get_mode_one(smode)) {
2307                 ir_node *blk = get_irn_n(n, -1);
2308                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, b, mode);
2309                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2310                 return n;
2311         }
2312         else if (ta == get_mode_minus_one(smode)) {
2313                 ir_node *blk = get_irn_n(n, -1);
2314                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, b, smode);
2315                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, n, mode);
2316                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2317                 return n;
2318         }
2319         if (tb == get_mode_one(smode)) {
2320                 ir_node *blk = get_irn_n(a, -1);
2321                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, a, mode);
2322                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_NEUTRAL_1);
2323                 return n;
2324         }
2325         else if (tb == get_mode_minus_one(smode)) {
2326                 ir_node *blk = get_irn_n(n, -1);
2327                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, a, smode);
2328                 n = new_rd_Conv(get_irn_dbg_info(n), current_ir_graph, blk, n, mode);
2329                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2330                 return n;
2331         }
2332         return n;
2333 }
2334
2335 /**
2336  * Transform Mul(a,-1) into -a.
2337  * Do constant evaluation of Phi nodes.
2338  * Do architecture dependent optimizations on Mul nodes
2339  */
2340 static ir_node *transform_node_Mul(ir_node *n) {
2341         ir_node *c, *oldn = n;
2342         ir_mode *mode = get_irn_mode(n);
2343         ir_node *a = get_Mul_left(n);
2344         ir_node *b = get_Mul_right(n);
2345
2346         if (is_Bad(a) || is_Bad(b))
2347                 return n;
2348
2349         if (mode != get_irn_mode(a))
2350                 return transform_node_Mul2n(n, mode);
2351
2352         HANDLE_BINOP_PHI(tarval_mul, a,b,c);
2353
2354         if (mode_is_signed(mode)) {
2355                 ir_node *r = NULL;
2356
2357                 if (value_of(a) == get_mode_minus_one(mode))
2358                         r = b;
2359                 else if (value_of(b) == get_mode_minus_one(mode))
2360                         r = a;
2361                 if (r) {
2362                         n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), r, mode);
2363                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_MUL_MINUS_1);
2364                         return n;
2365                 }
2366         }
2367         if (is_Minus(a)) {
2368                 if (is_Const(b)) { /* -a * const -> a * -const */
2369                         ir_node* cnst = const_negate(b);
2370                         if (cnst != NULL) {
2371                                 set_Mul_left( n, get_Minus_op(a));
2372                                 set_Mul_right(n, cnst);
2373                                 return n;
2374                         }
2375                 } else if (is_Minus(b)) { /* -a * -b -> a * b */
2376                         set_Mul_left( n, get_Minus_op(a));
2377                         set_Mul_right(n, get_Minus_op(b));
2378                         return n;
2379                 } else if (is_Sub(b)) { /* -a * (b - c) -> a * (c - b) */
2380                         ir_node  *sub_l = get_Sub_left(b);
2381                         ir_node  *sub_r = get_Sub_right(b);
2382                         dbg_info *dbgi  = get_irn_dbg_info(b);
2383                         ir_graph *irg   = current_ir_graph;
2384                         ir_mode  *mode  = get_irn_mode(b);
2385                         ir_node  *block = get_nodes_block(b);
2386                         ir_node  *new_b = new_rd_Sub(dbgi, irg, block, sub_r, sub_l, mode);
2387                         set_Mul_left( n, get_Minus_op(a));
2388                         set_Mul_right(n, new_b);
2389                         return n;
2390                 }
2391         } else if (is_Minus(b)) {
2392                 if (is_Sub(a)) { /* (a - b) * -c -> (b - a) * c */
2393                         ir_node  *sub_l = get_Sub_left(a);
2394                         ir_node  *sub_r = get_Sub_right(a);
2395                         dbg_info *dbgi  = get_irn_dbg_info(a);
2396                         ir_graph *irg   = current_ir_graph;
2397                         ir_mode  *mode  = get_irn_mode(a);
2398                         ir_node  *block = get_nodes_block(a);
2399                         ir_node  *new_a = new_rd_Sub(dbgi, irg, block, sub_r, sub_l, mode);
2400                         set_Mul_left (n, new_a);
2401                         set_Mul_right(n, get_Minus_op(b));
2402                         return n;
2403                 }
2404         }
2405         if (get_mode_arithmetic(mode) == irma_ieee754) {
2406                 if (is_Const(a)) {
2407                         tarval *tv = get_Const_tarval(a);
2408                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)) {
2409                                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), b, b, mode);
2410                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2411                                 return n;
2412                         }
2413                 }
2414                 else if (is_Const(b)) {
2415                         tarval *tv = get_Const_tarval(b);
2416                         if (tarval_ieee754_get_exponent(tv) == 1 && tarval_ieee754_zero_mantissa(tv)) {
2417                                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, a, mode);
2418                                 DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_A_A);
2419                                 return n;
2420                         }
2421                 }
2422         }
2423         return arch_dep_replace_mul_with_shifts(n);
2424 }  /* transform_node_Mul */
2425
2426 /**
2427  * Transform a Div Node.
2428  */
2429 static ir_node *transform_node_Div(ir_node *n) {
2430         tarval *tv = value_of(n);
2431         ir_mode *mode = get_Div_resmode(n);
2432         ir_node *value = n;
2433
2434         if (tv != tarval_bad) {
2435                 value = new_Const(get_tarval_mode(tv), tv);
2436
2437                 DBG_OPT_CSTEVAL(n, value);
2438                 goto make_tuple;
2439         } else {
2440                 ir_node *a = get_Div_left(n);
2441                 ir_node *b = get_Div_right(n);
2442                 ir_node *dummy;
2443
2444                 if (a == b && value_not_zero(a, &dummy)) {
2445                         /* BEWARE: we can optimize a/a to 1 only if this cannot cause a exception */
2446                         value = new_Const(mode, get_mode_one(mode));
2447                         DBG_OPT_CSTEVAL(n, value);
2448                         goto make_tuple;
2449                 } else {
2450                         if (mode_is_signed(mode) && is_Const(b)) {
2451                                 tarval *tv = get_Const_tarval(b);
2452
2453                                 if (tv == get_mode_minus_one(mode)) {
2454                                         /* a / -1 */
2455                                         value = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, mode);
2456                                         DBG_OPT_CSTEVAL(n, value);
2457                                         goto make_tuple;
2458                                 }
2459                         }
2460                         /* Try architecture dependent optimization */
2461                         value = arch_dep_replace_div_by_const(n);
2462                 }
2463         }
2464
2465         if (value != n) {
2466                 ir_node *mem, *blk;
2467
2468 make_tuple:
2469                 /* Turn Div into a tuple (mem, jmp, bad, value) */
2470                 mem = get_Div_mem(n);
2471                 blk = get_irn_n(n, -1);
2472
2473                 /* skip a potential Pin */
2474                 if (is_Pin(mem))
2475                         mem = get_Pin_op(mem);
2476                 turn_into_tuple(n, pn_Div_max);
2477                 set_Tuple_pred(n, pn_Div_M,         mem);
2478                 set_Tuple_pred(n, pn_Div_X_regular, new_r_Jmp(current_ir_graph, blk));
2479                 set_Tuple_pred(n, pn_Div_X_except,  new_Bad());
2480                 set_Tuple_pred(n, pn_Div_res,       value);
2481         }
2482         return n;
2483 }  /* transform_node_Div */
2484
2485 /**
2486  * Transform a Mod node.
2487  */
2488 static ir_node *transform_node_Mod(ir_node *n) {
2489         tarval *tv = value_of(n);
2490         ir_mode *mode = get_Mod_resmode(n);
2491         ir_node *value = n;
2492
2493         if (tv != tarval_bad) {
2494                 value = new_Const(get_tarval_mode(tv), tv);
2495
2496                 DBG_OPT_CSTEVAL(n, value);
2497                 goto make_tuple;
2498         } else {
2499                 ir_node *a = get_Mod_left(n);
2500                 ir_node *b = get_Mod_right(n);
2501                 ir_node *dummy;
2502
2503                 if (a == b && value_not_zero(a, &dummy)) {
2504                         /* BEWARE: we can optimize a%a to 0 only if this cannot cause a exception */
2505                         value = new_Const(mode, get_mode_null(mode));
2506                         DBG_OPT_CSTEVAL(n, value);
2507                         goto make_tuple;
2508                 } else {
2509                         if (mode_is_signed(mode) && is_Const(b)) {
2510                                 tarval *tv = get_Const_tarval(b);
2511
2512                                 if (tv == get_mode_minus_one(mode)) {
2513                                         /* a % -1 = 0 */
2514                                         value = new_Const(mode, get_mode_null(mode));
2515                                         DBG_OPT_CSTEVAL(n, value);
2516                                         goto make_tuple;
2517                                 }
2518                         }
2519                         /* Try architecture dependent optimization */
2520                         value = arch_dep_replace_mod_by_const(n);
2521                 }
2522         }
2523
2524         if (value != n) {
2525                 ir_node *mem, *blk;
2526
2527 make_tuple:
2528                 /* Turn Mod into a tuple (mem, jmp, bad, value) */
2529                 mem = get_Mod_mem(n);
2530                 blk = get_irn_n(n, -1);
2531
2532                 /* skip a potential Pin */
2533                 if (is_Pin(mem))
2534                         mem = get_Pin_op(mem);
2535                 turn_into_tuple(n, pn_Mod_max);
2536                 set_Tuple_pred(n, pn_Mod_M,         mem);
2537                 set_Tuple_pred(n, pn_Mod_X_regular, new_r_Jmp(current_ir_graph, blk));
2538                 set_Tuple_pred(n, pn_Mod_X_except,  new_Bad());
2539                 set_Tuple_pred(n, pn_Mod_res,       value);
2540         }
2541         return n;
2542 }  /* transform_node_Mod */
2543
2544 /**
2545  * Transform a DivMod node.
2546  */
2547 static ir_node *transform_node_DivMod(ir_node *n) {
2548         ir_node *dummy;
2549         ir_node *a = get_DivMod_left(n);
2550         ir_node *b = get_DivMod_right(n);
2551         ir_mode *mode = get_DivMod_resmode(n);
2552         tarval *ta = value_of(a);
2553         tarval *tb = value_of(b);
2554         int evaluated = 0;
2555
2556         if (tb != tarval_bad) {
2557                 if (tb == get_mode_one(get_tarval_mode(tb))) {
2558                         b = new_Const(mode, get_mode_null(mode));
2559                         DBG_OPT_CSTEVAL(n, b);
2560                         goto make_tuple;
2561                 } else if (ta != tarval_bad) {
2562                         tarval *resa, *resb;
2563                         resa = tarval_div(ta, tb);
2564                         if (resa == tarval_bad) return n; /* Causes exception!!! Model by replacing through
2565                                                              Jmp for X result!? */
2566                         resb = tarval_mod(ta, tb);
2567                         if (resb == tarval_bad) return n; /* Causes exception! */
2568                         a = new_Const(mode, resa);
2569                         b = new_Const(mode, resb);
2570                         DBG_OPT_CSTEVAL(n, a);
2571                         DBG_OPT_CSTEVAL(n, b);
2572                         goto make_tuple;
2573                 } else if (mode_is_signed(mode) && tb == get_mode_minus_one(mode)) {
2574                         a = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1), a, mode);
2575                         b = new_Const(mode, get_mode_null(mode));
2576                         DBG_OPT_CSTEVAL(n, a);
2577                         DBG_OPT_CSTEVAL(n, b);
2578                         goto make_tuple;
2579                 } else { /* Try architecture dependent optimization */
2580                         arch_dep_replace_divmod_by_const(&a, &b, n);
2581                         evaluated = a != NULL;
2582                 }
2583         } else if (a == b) {
2584                 if (value_not_zero(a, &dummy)) {
2585                         /* a/a && a != 0 */
2586                         a = new_Const(mode, get_mode_one(mode));
2587                         b = new_Const(mode, get_mode_null(mode));
2588                         DBG_OPT_CSTEVAL(n, a);
2589                         DBG_OPT_CSTEVAL(n, b);
2590                         goto make_tuple;
2591                 } else {
2592                         /* BEWARE: it is NOT possible to optimize a/a to 1, as this may cause a exception */
2593                         return n;
2594                 }
2595         } else if (ta == get_mode_null(mode) && value_not_zero(b, &dummy)) {
2596                 /* 0 / non-Const = 0 */
2597                 b = a;
2598                 goto make_tuple;
2599         }
2600
2601         if (evaluated) { /* replace by tuple */
2602                 ir_node *mem, *blk;
2603
2604 make_tuple:
2605                 mem = get_DivMod_mem(n);
2606                 /* skip a potential Pin */
2607                 if (is_Pin(mem))
2608                         mem = get_Pin_op(mem);
2609
2610                 blk = get_irn_n(n, -1);
2611                 turn_into_tuple(n, pn_DivMod_max);
2612                 set_Tuple_pred(n, pn_DivMod_M,         mem);
2613                 set_Tuple_pred(n, pn_DivMod_X_regular, new_r_Jmp(current_ir_graph, blk));
2614                 set_Tuple_pred(n, pn_DivMod_X_except,  new_Bad());  /* no exception */
2615                 set_Tuple_pred(n, pn_DivMod_res_div,   a);
2616                 set_Tuple_pred(n, pn_DivMod_res_mod,  b);
2617         }
2618
2619         return n;
2620 }  /* transform_node_DivMod */
2621
2622 /**
2623  * Optimize x / c to x * (1/c)
2624  */
2625 static ir_node *transform_node_Quot(ir_node *n) {
2626         ir_mode *mode = get_Quot_resmode(n);
2627         ir_node *oldn = n;
2628
2629         if (get_mode_arithmetic(mode) == irma_ieee754) {
2630                 ir_node *b = get_Quot_right(n);
2631
2632                 if (is_Const(b)) {
2633                         tarval *tv = get_Const_tarval(b);
2634
2635                         tv = tarval_quo(get_mode_one(mode), tv);
2636
2637                         /* Do the transformation if the result is either exact or we are not
2638                            using strict rules. */
2639                         if (tv != tarval_bad &&
2640                             (tarval_ieee754_get_exact() || (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic) == 0)) {
2641                                 ir_node *blk = get_irn_n(n, -1);
2642                                 ir_node *c = new_r_Const(current_ir_graph, blk, mode, tv);
2643                                 ir_node *a = get_Quot_left(n);
2644                                 ir_node *m = new_rd_Mul(get_irn_dbg_info(n), current_ir_graph, blk, a, c, mode);
2645                                 ir_node *mem = get_Quot_mem(n);
2646
2647                                 /* skip a potential Pin */
2648                                 if (is_Pin(mem))
2649                                         mem = get_Pin_op(mem);
2650                                 turn_into_tuple(n, pn_Quot_max);
2651                                 set_Tuple_pred(n, pn_Quot_M, mem);
2652                                 set_Tuple_pred(n, pn_Quot_X_regular, new_r_Jmp(current_ir_graph, blk));
2653                                 set_Tuple_pred(n, pn_Quot_X_except,  new_r_Bad(current_ir_graph));
2654                                 set_Tuple_pred(n, pn_Quot_res, m);
2655                                 DBG_OPT_ALGSIM1(oldn, a, b, m, FS_OPT_FP_INV_MUL);
2656                         }
2657                 }
2658         }
2659         return n;
2660 }  /* transform_node_Quot */
2661
2662 /**
2663  * Optimize Abs(x) into  x if x is Confirmed >= 0
2664  * Optimize Abs(x) into -x if x is Confirmed <= 0
2665  */
2666 static ir_node *transform_node_Abs(ir_node *n) {
2667         ir_node        *oldn = n;
2668         ir_node        *a = get_Abs_op(n);
2669         value_classify_sign sign = classify_value_sign(a);
2670
2671         if (sign == value_classified_negative) {
2672                 ir_mode *mode = get_irn_mode(n);
2673
2674                 /*
2675                  * We can replace the Abs by -x here.
2676                  * We even could add a new Confirm here.
2677                  *
2678                  * Note that -x would create a new node, so we could
2679                  * not run it in the equivalent_node() context.
2680                  */
2681                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph,
2682                                 get_irn_n(n, -1), a, mode);
2683
2684                 DBG_OPT_CONFIRM(oldn, n);
2685         } else if (sign == value_classified_positive) {
2686                 /* n is positive, Abs is not needed */
2687                 n = a;
2688
2689                 DBG_OPT_CONFIRM(oldn, n);
2690         }
2691
2692         return n;
2693 }  /* transform_node_Abs */
2694
2695 /**
2696  * Transform a Cond node.
2697  *
2698  * Replace the Cond by a Jmp if it branches on a constant
2699  * condition.
2700  */
2701 static ir_node *transform_node_Cond(ir_node *n) {
2702
2703         ir_node *jmp;
2704         ir_node *a = get_Cond_selector(n);
2705         tarval *ta = value_of(a);
2706
2707         /* we need block info which is not available in floating irgs */
2708         if (get_irg_pinned(current_ir_graph) == op_pin_state_floats)
2709                 return n;
2710
2711         if ((ta != tarval_bad) &&
2712             (get_irn_mode(a) == mode_b) &&
2713             (get_opt_unreachable_code())) {
2714                 /* It's a boolean Cond, branching on a boolean constant.
2715                    Replace it by a tuple (Bad, Jmp) or (Jmp, Bad) */
2716                 jmp = new_r_Jmp(current_ir_graph, get_nodes_block(n));
2717                 turn_into_tuple(n, pn_Cond_max);
2718                 if (ta == tarval_b_true) {
2719                         set_Tuple_pred(n, pn_Cond_false, new_Bad());
2720                         set_Tuple_pred(n, pn_Cond_true, jmp);
2721                 } else {
2722                         set_Tuple_pred(n, pn_Cond_false, jmp);
2723                         set_Tuple_pred(n, pn_Cond_true, new_Bad());
2724                 }
2725                 /* We might generate an endless loop, so keep it alive. */
2726                 add_End_keepalive(get_irg_end(current_ir_graph), get_nodes_block(n));
2727         }
2728         return n;
2729 }  /* transform_node_Cond */
2730
2731 typedef ir_node* (*recursive_transform) (ir_node *n);
2732
2733 /**
2734  * makes use of distributive laws for and, or, eor
2735  *     and(a OP c, b OP c) -> and(a, b) OP c
2736  * note, might return a different op than n
2737  */
2738 static ir_node *transform_bitwise_distributive(ir_node *n,
2739                                                recursive_transform trans_func)
2740 {
2741         ir_node *oldn    = n;
2742         ir_node *a       = get_binop_left(n);
2743         ir_node *b       = get_binop_right(n);
2744         ir_op   *op      = get_irn_op(a);
2745         ir_op   *op_root = get_irn_op(n);
2746
2747         if(op != get_irn_op(b))
2748                 return n;
2749
2750         if (op == op_Conv) {
2751                 ir_node *a_op   = get_Conv_op(a);
2752                 ir_node *b_op   = get_Conv_op(b);
2753                 ir_mode *a_mode = get_irn_mode(a_op);
2754                 ir_mode *b_mode = get_irn_mode(b_op);
2755                 if(a_mode == b_mode && (mode_is_int(a_mode) || a_mode == mode_b)) {
2756                         ir_node *blk = get_irn_n(n, -1);
2757
2758                         n = exact_copy(n);
2759                         set_binop_left(n, a_op);
2760                         set_binop_right(n, b_op);
2761                         set_irn_mode(n, a_mode);
2762                         n = trans_func(n);
2763                         n = new_r_Conv(current_ir_graph, blk, n, get_irn_mode(oldn));
2764
2765                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_SHIFT_AND);
2766                         return n;
2767                 }
2768         }
2769
2770         if (op == op_Eor) {
2771                 /* nothing to gain here */
2772                 return n;
2773         }
2774
2775         if (op == op_Shrs || op == op_Shr || op == op_Shl
2776                         || op == op_And || op == op_Or || op == op_Eor) {
2777                 ir_node *a_left  = get_binop_left(a);
2778                 ir_node *a_right = get_binop_right(a);
2779                 ir_node *b_left  = get_binop_left(b);
2780                 ir_node *b_right = get_binop_right(b);
2781                 ir_node *c       = NULL;
2782                 ir_node *op1, *op2;
2783
2784                 if (is_op_commutative(op)) {
2785                         if (a_left == b_left) {
2786                                 c   = a_left;
2787                                 op1 = a_right;
2788                                 op2 = b_right;
2789                         } else if(a_left == b_right) {
2790                                 c   = a_left;
2791                                 op1 = a_right;
2792                                 op2 = b_left;
2793                         } else if(a_right == b_left) {
2794                                 c   = a_right;
2795                                 op1 = a_left;
2796                                 op2 = b_right;
2797                         }
2798                 }
2799                 if(a_right == b_right) {
2800                         c   = a_right;
2801                         op1 = a_left;
2802                         op2 = b_left;
2803                 }
2804
2805                 if (c != NULL) {
2806                         /* (a sop c) & (b sop c) => (a & b) sop c */
2807                         ir_node *blk = get_irn_n(n, -1);
2808
2809                         ir_node *new_n = exact_copy(n);
2810                         set_binop_left(new_n, op1);
2811                         set_binop_right(new_n, op2);
2812                         new_n = trans_func(new_n);
2813
2814                         if(op_root == op_Eor && op == op_Or) {
2815                                 dbg_info  *dbgi = get_irn_dbg_info(n);
2816                                 ir_graph  *irg  = current_ir_graph;
2817                                 ir_mode   *mode = get_irn_mode(c);
2818
2819                                 c = new_rd_Not(dbgi, irg, blk, c, mode);
2820                                 n = new_rd_And(dbgi, irg, blk, new_n, c, mode);
2821                         } else {
2822                                 n = exact_copy(a);
2823                                 set_irn_n(n, -1, blk);
2824                                 set_binop_left(n, new_n);
2825                                 set_binop_right(n, c);
2826                         }
2827
2828
2829                         DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_SHIFT_AND);
2830                         return n;
2831                 }
2832         }
2833
2834         return n;
2835 }
2836
2837 /**
2838  * Transform an And.
2839  */
2840 static ir_node *transform_node_And(ir_node *n) {
2841         ir_node *c, *oldn;
2842         ir_node *a = get_And_left(n);
2843         ir_node *b = get_And_right(n);
2844
2845         HANDLE_BINOP_PHI(tarval_and, a,b,c);
2846
2847         /* we can evaluate 2 Projs of the same Cmp */
2848         if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
2849                 ir_node *pred_a = get_Proj_pred(a);
2850                 ir_node *pred_b = get_Proj_pred(b);
2851                 if(pred_a == pred_b) {
2852                         dbg_info *dbgi  = get_irn_dbg_info(n);
2853                         ir_node  *block = get_nodes_block(pred_a);
2854                         pn_Cmp pn_a     = get_Proj_proj(a);
2855                         pn_Cmp pn_b     = get_Proj_proj(b);
2856                         /* yes, we can simply calculate with pncs */
2857                         pn_Cmp new_pnc  = pn_a & pn_b;
2858
2859                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
2860                                            new_pnc);
2861                 }
2862         }
2863
2864         n = transform_bitwise_distributive(n, transform_node_And);
2865
2866         return n;
2867 }  /* transform_node_And */
2868
2869 /**
2870  * Transform an Eor.
2871  */
2872 static ir_node *transform_node_Eor(ir_node *n) {
2873         ir_node *c, *oldn = n;
2874         ir_node *a = get_Eor_left(n);
2875         ir_node *b = get_Eor_right(n);
2876         ir_mode *mode = get_irn_mode(n);
2877
2878         HANDLE_BINOP_PHI(tarval_eor, a,b,c);
2879
2880         /* we can evaluate 2 Projs of the same Cmp */
2881         if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
2882                 ir_node *pred_a = get_Proj_pred(a);
2883                 ir_node *pred_b = get_Proj_pred(b);
2884                 if(pred_a == pred_b) {
2885                         dbg_info *dbgi  = get_irn_dbg_info(n);
2886                         ir_node  *block = get_nodes_block(pred_a);
2887                         pn_Cmp pn_a     = get_Proj_proj(a);
2888                         pn_Cmp pn_b     = get_Proj_proj(b);
2889                         /* yes, we can simply calculate with pncs */
2890                         pn_Cmp new_pnc  = pn_a ^ pn_b;
2891
2892                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
2893                                            new_pnc);
2894                 }
2895         }
2896
2897         if (a == b) {
2898                 /* a ^ a = 0 */
2899                 n = new_rd_Const(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1),
2900                                  mode, get_mode_null(mode));
2901                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_A_A);
2902         } else if ((mode == mode_b)
2903                    && (get_irn_op(a) == op_Proj)
2904                    && (get_irn_mode(a) == mode_b)
2905                    && (classify_tarval (value_of(b)) == TV_CLASSIFY_ONE)
2906                    && (get_irn_op(get_Proj_pred(a)) == op_Cmp)) {
2907                 /* The Eor negates a Cmp. The Cmp has the negated result anyways! */
2908                 n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
2909                                 mode_b, get_negated_pnc(get_Proj_proj(a), mode));
2910
2911                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT_BOOL);
2912         } else if ((mode == mode_b)
2913                && (classify_tarval (value_of(b)) == TV_CLASSIFY_ONE)) {
2914                 /* The Eor is a Not. Replace it by a Not. */
2915                 /*   ????!!!Extend to bitfield 1111111. */
2916                 n = new_r_Not(current_ir_graph, get_irn_n(n, -1), a, mode_b);
2917
2918                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_EOR_TO_NOT);
2919         } else {
2920                 n = transform_bitwise_distributive(n, transform_node_Eor);
2921         }
2922
2923         return n;
2924 }  /* transform_node_Eor */
2925
2926 /**
2927  * Transform a Not.
2928  */
2929 static ir_node *transform_node_Not(ir_node *n) {
2930         ir_node *c, *oldn = n;
2931         ir_node *a = get_Not_op(n);
2932         ir_op *op_a = get_irn_op(a);
2933
2934         HANDLE_UNOP_PHI(tarval_not,a,c);
2935
2936         /* check for a boolean Not */
2937         if (   (get_irn_mode(n) == mode_b)
2938             && (op_a == op_Proj)
2939             && (get_irn_mode(a) == mode_b)
2940             && (get_irn_op(get_Proj_pred(a)) == op_Cmp)) {
2941                 /* We negate a Cmp. The Cmp has the negated result anyways! */
2942                 n = new_r_Proj(current_ir_graph, get_irn_n(n, -1), get_Proj_pred(a),
2943                                 mode_b, get_negated_pnc(get_Proj_proj(a), mode_b));
2944                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_CMP);
2945                 return n;
2946         }
2947         if (op_a == op_Sub && classify_Const(get_Sub_right(a)) == CNST_ONE) {
2948                 /* ~(x-1) = -x */
2949                 ir_node *op = get_Sub_left(a);
2950                 ir_node *blk = get_irn_n(n, -1);
2951                 n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, op, get_irn_mode(n));
2952                 DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_MINUS_1);
2953         }
2954         return n;
2955 }  /* transform_node_Not */
2956
2957 /**
2958  * Transform a Minus.
2959  * Optimize:
2960  *   -(~x) = x + 1
2961  */
2962 static ir_node *transform_node_Minus(ir_node *n) {
2963         ir_node *c, *oldn = n;
2964         ir_node *a = get_Minus_op(n);
2965         ir_mode *mode;
2966
2967         HANDLE_UNOP_PHI(tarval_neg,a,c);
2968
2969         mode = get_irn_mode(a);
2970         if (get_mode_arithmetic(mode) == irma_twos_complement && is_Not(a)) {
2971                 /* -(~x) = x + 1 */
2972                 ir_node *op   = get_Not_op(a);
2973                 tarval *tv    = get_mode_one(mode);
2974                 ir_node *blk  = get_irn_n(n, -1);
2975                 ir_node *c    = new_r_Const(current_ir_graph, blk, mode, tv);
2976                 n = new_rd_Add(get_irn_dbg_info(n), current_ir_graph, blk, op, c, mode);
2977                 DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_NOT);
2978         } else if (is_Sub(a)) {
2979                 /* - (a-b) = b - a */
2980                 ir_node *la  = get_Sub_left(a);
2981                 ir_node *ra  = get_Sub_right(a);
2982                 ir_node *blk = get_irn_n(n, -1);
2983
2984                 n = new_rd_Sub(get_irn_dbg_info(n), current_ir_graph, blk, ra, la, mode);
2985                 DBG_OPT_ALGSIM2(oldn, a, n, FS_OPT_MINUS_SUB);
2986         }
2987
2988         return n;
2989 }  /* transform_node_Minus */
2990
2991 /**
2992  * Transform a Cast_type(Const) into a new Const_type
2993  */
2994 static ir_node *transform_node_Cast(ir_node *n) {
2995         ir_node *oldn = n;
2996         ir_node *pred = get_Cast_op(n);
2997         ir_type *tp = get_irn_type(n);
2998
2999         if (get_irn_op(pred) == op_Const && get_Const_type(pred) != tp) {
3000                 n = new_rd_Const_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_irn_mode(pred),
3001                         get_Const_tarval(pred), tp);
3002                 DBG_OPT_CSTEVAL(oldn, n);
3003         } else if ((get_irn_op(pred) == op_SymConst) && (get_SymConst_value_type(pred) != tp)) {
3004                 n = new_rd_SymConst_type(NULL, current_ir_graph, get_irn_n(pred, -1), get_SymConst_symbol(pred),
3005                         get_SymConst_kind(pred), tp);
3006                 DBG_OPT_CSTEVAL(oldn, n);
3007         }
3008
3009         return n;
3010 }  /* transform_node_Cast */
3011
3012 /**
3013  * Transform a Proj(Div) 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_Div(ir_node *proj) {
3017         ir_node *div = get_Proj_pred(proj);
3018         ir_node *b   = get_Div_right(div);
3019         ir_node *confirm, *res, *new_mem;
3020         long proj_nr;
3021
3022         if (value_not_zero(b, &confirm)) {
3023                 /* div(x, y) && y != 0 */
3024                 proj_nr = get_Proj_proj(proj);
3025                 switch (proj_nr) {
3026                 case pn_Div_X_regular:
3027                         return new_r_Jmp(current_ir_graph, get_irn_n(div, -1));
3028
3029                 case pn_Div_X_except:
3030                         /* we found an exception handler, remove it */
3031                         DBG_OPT_EXC_REM(proj);
3032                         return new_Bad();
3033
3034                 case pn_Div_M:
3035                         res = get_Div_mem(div);
3036                         new_mem = get_irg_no_mem(current_ir_graph);
3037
3038                         if (confirm) {
3039                                 /* This node can only float up to the Confirm block */
3040                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3041                         }
3042                         set_irn_pinned(div, op_pin_state_floats);
3043                         /* this is a Div without exception, we can remove the memory edge */
3044                         set_Div_mem(div, new_mem);
3045                         return res;
3046                 }
3047         }
3048         return proj;
3049 }  /* transform_node_Proj_Div */
3050
3051 /**
3052  * Transform a Proj(Mod) with a non-zero value.
3053  * Removes the exceptions and routes the memory to the NoMem node.
3054  */
3055 static ir_node *transform_node_Proj_Mod(ir_node *proj) {
3056         ir_node *mod = get_Proj_pred(proj);
3057         ir_node *b   = get_Mod_right(mod);
3058         ir_node *confirm, *res, *new_mem;
3059         long proj_nr;
3060
3061         if (value_not_zero(b, &confirm)) {
3062                 /* mod(x, y) && y != 0 */
3063                 proj_nr = get_Proj_proj(proj);
3064
3065                 switch (proj_nr) {
3066
3067                 case pn_Mod_X_regular:
3068                         return new_r_Jmp(current_ir_graph, get_irn_n(mod, -1));
3069
3070                 case pn_Mod_X_except:
3071                         /* we found an exception handler, remove it */
3072                         DBG_OPT_EXC_REM(proj);
3073                         return new_Bad();
3074
3075                 case pn_Mod_M:
3076                         res = get_Mod_mem(mod);
3077                         new_mem = get_irg_no_mem(current_ir_graph);
3078
3079                         if (confirm) {
3080                                 /* This node can only float up to the Confirm block */
3081                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3082                         }
3083                         set_irn_pinned(mod, op_pin_state_floats);
3084                         /* this is a Mod without exception, we can remove the memory edge */
3085                         set_Mod_mem(mod, get_irg_no_mem(current_ir_graph));
3086                         return res;
3087                 case pn_Mod_res:
3088                         if (get_Mod_left(mod) == b) {
3089                                 /* a % a = 0 if a != 0 */
3090                                 ir_mode *mode = get_irn_mode(proj);
3091                                 ir_node *res  = new_Const(mode, get_mode_null(mode));
3092
3093                                 DBG_OPT_CSTEVAL(mod, res);
3094                                 return res;
3095                         }
3096                 }
3097         }
3098         return proj;
3099 }  /* transform_node_Proj_Mod */
3100
3101 /**
3102  * Transform a Proj(DivMod) with a non-zero value.
3103  * Removes the exceptions and routes the memory to the NoMem node.
3104  */
3105 static ir_node *transform_node_Proj_DivMod(ir_node *proj) {
3106         ir_node *divmod = get_Proj_pred(proj);
3107         ir_node *b      = get_DivMod_right(divmod);
3108         ir_node *confirm, *res, *new_mem;
3109         long proj_nr;
3110
3111         if (value_not_zero(b, &confirm)) {
3112                 /* DivMod(x, y) && y != 0 */
3113                 proj_nr = get_Proj_proj(proj);
3114
3115                 switch (proj_nr) {
3116
3117                 case pn_DivMod_X_regular:
3118                         return new_r_Jmp(current_ir_graph, get_irn_n(divmod, -1));
3119
3120                 case pn_DivMod_X_except:
3121                         /* we found an exception handler, remove it */
3122                         DBG_OPT_EXC_REM(proj);
3123                         return new_Bad();
3124
3125                 case pn_DivMod_M:
3126                         res = get_DivMod_mem(divmod);
3127                         new_mem = get_irg_no_mem(current_ir_graph);
3128
3129                         if (confirm) {
3130                                 /* This node can only float up to the Confirm block */
3131                                 new_mem = new_r_Pin(current_ir_graph, get_nodes_block(confirm), new_mem);
3132                         }
3133                         set_irn_pinned(divmod, op_pin_state_floats);
3134                         /* this is a DivMod without exception, we can remove the memory edge */
3135                         set_DivMod_mem(divmod, get_irg_no_mem(current_ir_graph));
3136                         return res;
3137
3138                 case pn_DivMod_res_mod:
3139                         if (get_DivMod_left(divmod) == b) {
3140                                 /* a % a = 0 if a != 0 */
3141                                 ir_mode *mode = get_irn_mode(proj);
3142                                 ir_node *res  = new_Const(mode, get_mode_null(mode));
3143
3144                                 DBG_OPT_CSTEVAL(divmod, res);
3145                                 return res;
3146                         }
3147                 }
3148         }
3149         return proj;
3150 }  /* transform_node_Proj_DivMod */
3151
3152 /**
3153  * Optimizes jump tables (CondIs or CondIu) by removing all impossible cases.
3154  */
3155 static ir_node *transform_node_Proj_Cond(ir_node *proj) {
3156         if (get_opt_unreachable_code()) {
3157                 ir_node *n = get_Proj_pred(proj);
3158                 ir_node *b = get_Cond_selector(n);
3159
3160                 if (mode_is_int(get_irn_mode(b))) {
3161                         tarval *tb = value_of(b);
3162
3163                         if (tb != tarval_bad) {
3164                                 /* we have a constant switch */
3165                                 long num = get_Proj_proj(proj);
3166
3167                                 if (num != get_Cond_defaultProj(n)) { /* we cannot optimize default Proj's yet */
3168                                         if (get_tarval_long(tb) == num) {
3169                                                 /* Do NOT create a jump here, or we will have 2 control flow ops
3170                                                  * in a block. This case is optimized away in optimize_cf(). */
3171                                                 return proj;
3172                                         } else {
3173                                                 /* this case will NEVER be taken, kill it */
3174                                                 return new_Bad();
3175                                         }
3176                                 }
3177                         }
3178                 }
3179         }
3180         return proj;
3181 }  /* transform_node_Proj_Cond */
3182
3183 /**
3184  * Normalizes and optimizes Cmp nodes.
3185  */
3186 static ir_node *transform_node_Proj_Cmp(ir_node *proj) {
3187         ir_node *n     = get_Proj_pred(proj);
3188         ir_node *left  = get_Cmp_left(n);
3189         ir_node *right = get_Cmp_right(n);
3190         ir_node *c     = NULL;
3191         tarval *tv     = NULL;
3192         int changed    = 0;
3193         ir_mode *mode  = NULL;
3194         long proj_nr   = get_Proj_proj(proj);
3195
3196         /* we can evaluate this direct */
3197         switch(proj_nr) {
3198         case pn_Cmp_False:
3199                 return new_Const(mode_b, get_tarval_b_false());
3200         case pn_Cmp_True:
3201                 return new_Const(mode_b, get_tarval_b_true());
3202         case pn_Cmp_Leg:
3203                 if(!mode_is_float(get_irn_mode(left)))
3204                         return new_Const(mode_b, get_tarval_b_true());
3205                 break;
3206         default:
3207                 break;
3208         }
3209
3210         /* Remove unnecessary conversions */
3211         /* TODO handle constants */
3212         if (is_Conv(left) && is_Conv(right)) {
3213                 ir_mode* mode        = get_irn_mode(left);
3214                 ir_node* op_left     = get_Conv_op(left);
3215                 ir_node* op_right    = get_Conv_op(right);
3216                 ir_mode* mode_left   = get_irn_mode(op_left);
3217                 ir_mode* mode_right  = get_irn_mode(op_right);
3218
3219                 if (smaller_mode(mode_left, mode) && smaller_mode(mode_right, mode)) {
3220                         ir_graph* irg   = current_ir_graph;
3221                         ir_node*  block = get_nodes_block(n);
3222                         ir_node*  new_left;
3223                         ir_node*  new_right;
3224
3225                         if (mode_left == mode_right) {
3226                                 new_left  = op_left;
3227                                 new_right = op_right;
3228                         } else if (smaller_mode(mode_left, mode_right)) {
3229                                 new_left  = new_r_Conv(irg, block, op_left, mode_right);
3230                                 new_right = op_right;
3231                         } else if (smaller_mode(mode_right, mode_left)) {
3232                                 new_left  = op_left;
3233                                 new_right = new_r_Conv(irg, block, op_right, mode_left);
3234                         } else {
3235                                 goto no_remove_conv;
3236                         }
3237                         left  = new_left;
3238                         right = new_right;
3239                         set_Cmp_left( n, left);
3240                         set_Cmp_right(n, right);
3241 no_remove_conv:;
3242                 }
3243         }
3244
3245         if (get_irn_mode(left) == mode_b) {
3246                 ir_graph* irg   = current_ir_graph;
3247                 ir_node*  block = get_nodes_block(n);
3248
3249                 switch (proj_nr) {
3250                         case pn_Cmp_Le: return new_r_Or( irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
3251                         case pn_Cmp_Lt: return new_r_And(irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
3252                         case pn_Cmp_Ge: return new_r_Or( irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
3253                         case pn_Cmp_Gt: return new_r_And(irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
3254                         case pn_Cmp_Lg: return new_r_Eor(irg, block, left, right, mode_b);
3255                         case pn_Cmp_Eq: return new_r_Not(irg, block, new_r_Eor(irg, block, left, right, mode_b), mode_b);
3256                 }
3257         }
3258
3259         if (!get_opt_reassociation())
3260                 return proj;
3261
3262         /*
3263          * First step: normalize the compare op
3264          * by placing the constant on the right site
3265          * or moving the lower address node to the left.
3266          * We ignore the case that both are constants
3267          * this case should be optimized away.
3268          */
3269         if (get_irn_op(right) == op_Const) {
3270                 c = right;
3271         } else if (get_irn_op(left) == op_Const) {
3272                 c     = left;
3273                 left  = right;
3274                 right = c;
3275
3276                 proj_nr = get_inversed_pnc(proj_nr);
3277                 changed |= 1;
3278         } else if (get_irn_idx(left) > get_irn_idx(right)) {
3279                 ir_node *t = left;
3280
3281                 left  = right;
3282                 right = t;
3283
3284                 proj_nr = get_inversed_pnc(proj_nr);
3285                 changed |= 1;
3286         }
3287
3288         /*
3289          * Second step: Try to reduce the magnitude
3290          * of a constant. This may help to generate better code
3291          * later and may help to normalize more compares.
3292          * Of course this is only possible for integer values.
3293          */
3294         if (c) {
3295                 mode = get_irn_mode(c);
3296                 tv = get_Const_tarval(c);
3297
3298                 if (tv != tarval_bad) {
3299                         /* the following optimization is possible on modes without Overflow
3300                          * on Unary Minus or on == and !=:
3301                          * -a CMP c  ==>  a swap(CMP) -c
3302                          *
3303                          * Beware: for two-complement Overflow may occur, so only == and != can
3304                          * be optimized, see this:
3305                          * -MININT < 0 =/=> MININT > 0 !!!
3306                          */
3307                         if (get_opt_constant_folding() && get_irn_op(left) == op_Minus &&
3308                                 (!mode_overflow_on_unary_Minus(mode) ||
3309                                 (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
3310                                 left = get_Minus_op(left);
3311                                 tv = tarval_neg(tv);
3312
3313                                 if (tv != tarval_bad) {
3314                                         proj_nr = get_inversed_pnc(proj_nr);
3315                                         changed |= 2;
3316                                 }
3317                         }
3318
3319                         /* for integer modes, we have more */
3320                         if (mode_is_int(mode)) {
3321                                 /* Ne includes Unordered which is not possible on integers.
3322                                  * However, frontends often use this wrong, so fix it here */
3323                                 if (proj_nr & pn_Cmp_Uo) {
3324                                         proj_nr &= ~pn_Cmp_Uo;
3325                                         set_Proj_proj(proj, proj_nr);
3326                                 }
3327
3328                                 /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
3329                                 if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
3330                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
3331                                         tv = tarval_sub(tv, get_mode_one(mode));
3332
3333                                         if (tv != tarval_bad) {
3334                                                 proj_nr ^= pn_Cmp_Eq;
3335                                                 changed |= 2;
3336                                         }
3337                                 }
3338                                 /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
3339                                 else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
3340                                         tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
3341                                         tv = tarval_add(tv, get_mode_one(mode));
3342
3343                                         if (tv != tarval_bad) {
3344                                                 proj_nr ^= pn_Cmp_Eq;
3345                                                 changed |= 2;
3346                                         }
3347                                 }
3348
3349                                 /* the following reassociations work only for == and != */
3350                                 if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
3351
3352                                         /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
3353                                         if (classify_tarval(tv) == TV_CLASSIFY_NULL && get_irn_op(left) == op_Sub) {
3354                                                 right = get_Sub_right(left);
3355                                                 left  = get_Sub_left(left);
3356
3357                                                 tv = value_of(right);
3358                                                 if (tv != tarval_bad) {
3359                                                         changed = 1;
3360                                                 }
3361                                         }
3362
3363                                         if (tv != tarval_bad) {
3364                                                 ir_op *op = get_irn_op(left);
3365
3366                                                 /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
3367                                                 if (op == op_Sub) {
3368                                                         ir_node *c1 = get_Sub_right(left);
3369                                                         tarval *tv2 = value_of(c1);
3370
3371                                                         if (tv2 != tarval_bad) {
3372                                                                 tv2 = tarval_add(tv, value_of(c1));
3373
3374                                                                 if (tv2 != tarval_bad) {
3375                                                                         left    = get_Sub_left(left);
3376                                                                         tv      = tv2;
3377                                                                         changed |= 2;
3378                                                                 }
3379                                                         }
3380                                                 }
3381                                                 /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
3382                                                 else if (op == op_Add) {
3383                                                         ir_node *a_l = get_Add_left(left);
3384                                                         ir_node *a_r = get_Add_right(left);
3385                                                         ir_node *a;
3386                                                         tarval *tv2;
3387
3388                                                         if (get_irn_op(a_l) == op_Const) {
3389                                                                 a = a_r;
3390                                                                 tv2 = value_of(a_l);
3391                                                         } else {
3392                                                                 a = a_l;
3393                                                                 tv2 = value_of(a_r);
3394                                                         }
3395
3396                                                         if (tv2 != tarval_bad) {
3397                                                                 tv2 = tarval_sub(tv, tv2);
3398
3399                                                                 if (tv2 != tarval_bad) {
3400                                                                         left    = a;
3401                                                                         tv      = tv2;
3402                                                                         changed |= 2;
3403                                                                 }
3404                                                         }
3405                                                 }
3406                                                 /* -a == c ==> a == -c, -a != c ==> a != -c */
3407                                                 else if (op == op_Minus) {
3408                                                         tarval *tv2 = tarval_sub(get_mode_null(mode), tv);
3409
3410                                                         if (tv2 != tarval_bad) {
3411                                                                 left    = get_Minus_op(left);
3412                                                                 tv      = tv2;
3413                                                                 changed |= 2;
3414                                                         }
3415                                                 }
3416                                         }
3417                                 } /* == or != */
3418                                 /* the following reassociations work only for <= */
3419                                 else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
3420                                         if (tv != tarval_bad) {
3421                                                 ir_op *op = get_irn_op(left);
3422
3423                                                 /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
3424                                                 if (op == op_Abs) {
3425                                                 }
3426                                         }
3427                                 }
3428                         } /* mode_is_int */
3429
3430                         /*
3431                          * optimization for AND:
3432                          * Optimize:
3433                          *   And(x, C) == C  ==>  And(x, C) != 0
3434                          *   And(x, C) != C  ==>  And(X, C) == 0
3435                          *
3436                          * if C is a single Bit constant.
3437                          */
3438                         if ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) &&
3439                                 (get_irn_op(left) == op_And)) {
3440                                 if (tarval_is_single_bit(tv)) {
3441                                         /* check for Constant's match. We have check hare the tarvals,
3442                                            because our const might be changed */
3443                                         ir_node *la = get_And_left(left);
3444                                         ir_node *ra = get_And_right(left);
3445                                         if ((is_Const(la) && get_Const_tarval(la) == tv) ||
3446                                                 (is_Const(ra) && get_Const_tarval(ra) == tv)) {
3447                                                         /* fine: do the transformation */
3448                                                         tv = get_mode_null(get_tarval_mode(tv));
3449                                                         proj_nr ^= pn_Cmp_Leg;
3450                                                         changed |= 2;
3451                                         }
3452                                 }
3453                         }
3454                 } /* tarval != bad */
3455         }
3456
3457         if (changed) {
3458                 ir_node *block = get_irn_n(n, -1); /* Beware of get_nodes_Block() */
3459
3460                 if (changed & 2)      /* need a new Const */
3461                         right = new_Const(mode, tv);
3462
3463                 /* create a new compare */
3464                 n = new_rd_Cmp(get_irn_dbg_info(n), current_ir_graph, block,
3465                         left, right);
3466
3467                 set_Proj_pred(proj, n);
3468                 set_Proj_proj(proj, proj_nr);
3469         }
3470
3471         return proj;
3472 }  /* transform_node_Proj_Cmp */
3473
3474 /**
3475  * Does all optimizations on nodes that must be done on it's Proj's
3476  * because of creating new nodes.
3477  */
3478 static ir_node *transform_node_Proj(ir_node *proj) {
3479         ir_node *n = get_Proj_pred(proj);
3480
3481         switch (get_irn_opcode(n)) {
3482         case iro_Div:
3483                 return transform_node_Proj_Div(proj);
3484
3485         case iro_Mod:
3486                 return transform_node_Proj_Mod(proj);
3487
3488         case iro_DivMod:
3489                 return transform_node_Proj_DivMod(proj);
3490
3491         case iro_Cond:
3492                 return transform_node_Proj_Cond(proj);
3493
3494         case iro_Cmp:
3495                 return transform_node_Proj_Cmp(proj);
3496
3497         case iro_Tuple:
3498                 /* should not happen, but if it does will be optimized away */
3499                 return equivalent_node_Proj(proj);
3500
3501         default:
3502                 /* do nothing */
3503                 return proj;
3504         }
3505 }  /* transform_node_Proj */
3506
3507 /**
3508  * Move Confirms down through Phi nodes.
3509  */
3510 static ir_node *transform_node_Phi(ir_node *phi) {
3511         int i, n;
3512         ir_mode *mode = get_irn_mode(phi);
3513
3514         if (mode_is_reference(mode)) {
3515                 n = get_irn_arity(phi);
3516
3517                 /* Beware of Phi0 */
3518                 if (n > 0) {
3519                         ir_node *pred = get_irn_n(phi, 0);
3520                         ir_node *bound, *new_Phi, *block, **in;
3521                         pn_Cmp  pnc;
3522
3523                         if (! is_Confirm(pred))
3524                                 return phi;
3525
3526                         bound = get_Confirm_bound(pred);
3527                         pnc   = get_Confirm_cmp(pred);
3528
3529                         NEW_ARR_A(ir_node *, in, n);
3530                         in[0] = get_Confirm_value(pred);
3531
3532                         for (i = 1; i < n; ++i) {
3533                                 pred = get_irn_n(phi, i);
3534
3535                                 if (! is_Confirm(pred) ||
3536                                         get_Confirm_bound(pred) != bound ||
3537                                         get_Confirm_cmp(pred) != pnc)
3538                                         return phi;
3539                                 in[i] = get_Confirm_value(pred);
3540                         }
3541                         /* move the Confirm nodes "behind" the Phi */
3542                         block = get_irn_n(phi, -1);
3543                         new_Phi = new_r_Phi(current_ir_graph, block, n, in, get_irn_mode(phi));
3544                         return new_r_Confirm(current_ir_graph, block, new_Phi, bound, pnc);
3545                 }
3546         }
3547         return phi;
3548 }  /* transform_node_Phi */
3549
3550 /**
3551  * Returns the operands of a commutative bin-op, if one operand is
3552  * a const, it is returned as the second one.
3553  */
3554 static void get_comm_Binop_Ops(ir_node *binop, ir_node **a, ir_node **c) {
3555         ir_node *op_a = get_binop_left(binop);
3556         ir_node *op_b = get_binop_right(binop);
3557
3558         assert(is_op_commutative(get_irn_op(binop)));
3559
3560         if (get_irn_op(op_a) == op_Const) {
3561                 *a = op_b;
3562                 *c = op_a;
3563         } else {
3564                 *a = op_a;
3565                 *c = op_b;
3566         }
3567 }  /* get_comm_Binop_Ops */
3568
3569 /**
3570  * Optimize a Or(And(Or(And(v,c4),c3),c2),c1) pattern if possible.
3571  * Such pattern may arise in bitfield stores.
3572  *
3573  * value  c4                  value      c4 & c2
3574  *    AND     c3                    AND           c1 | c3
3575  *        OR     c2      ===>               OR
3576  *           AND    c1
3577  *               OR
3578  *
3579  *
3580  * value  c2                 value  c1
3581  *     AND   c1    ===>           OR     if (c1 | c2) == 0x111..11
3582  *        OR
3583  */
3584 static ir_node *transform_node_Or_bf_store(ir_node *or) {
3585         ir_node *and, *c1;
3586         ir_node *or_l, *c2;
3587         ir_node *and_l, *c3;
3588         ir_node *value, *c4;
3589         ir_node *new_and, *new_const, *block;
3590         ir_mode *mode = get_irn_mode(or);
3591
3592         tarval *tv1, *tv2, *tv3, *tv4, *tv, *n_tv4, *n_tv2;
3593
3594         while (1) {
3595                 get_comm_Binop_Ops(or, &and, &c1);
3596                 if (!is_Const(c1) || !is_And(and))
3597                         return or;
3598
3599                 get_comm_Binop_Ops(and, &or_l, &c2);
3600                 if (!is_Const(c2))
3601                         return or;
3602
3603                 tv1 = get_Const_tarval(c1);
3604                 tv2 = get_Const_tarval(c2);
3605
3606                 tv = tarval_or(tv1, tv2);
3607                 if (classify_tarval(tv) == TV_CLASSIFY_ALL_ONE) {
3608                         /* the AND does NOT clear a bit with isn't set be the OR */
3609                         set_Or_left(or, or_l);
3610                         set_Or_right(or, c1);
3611
3612                         /* check for more */
3613                         continue;
3614                 }
3615
3616                 if (!is_Or(or_l))
3617                         return or;
3618
3619                 get_comm_Binop_Ops(or_l, &and_l, &c3);
3620                 if (!is_Const(c3) || !is_And(and_l))
3621                         return or;
3622
3623                 get_comm_Binop_Ops(and_l, &value, &c4);
3624                 if (!is_Const(c4))
3625                         return or;
3626
3627                 /* ok, found the pattern, check for conditions */
3628                 assert(mode == get_irn_mode(and));
3629                 assert(mode == get_irn_mode(or_l));
3630                 assert(mode == get_irn_mode(and_l));
3631
3632                 tv3 = get_Const_tarval(c3);
3633                 tv4 = get_Const_tarval(c4);
3634
3635                 tv = tarval_or(tv4, tv2);
3636                 if (classify_tarval(tv) != TV_CLASSIFY_ALL_ONE) {
3637                         /* have at least one 0 at the same bit position */
3638                         return or;
3639                 }
3640
3641                 n_tv4 = tarval_not(tv4);
3642                 if (tv3 != tarval_and(tv3, n_tv4)) {
3643                         /* bit in the or_mask is outside the and_mask */
3644                         return or;
3645                 }
3646
3647                 n_tv2 = tarval_not(tv2);
3648                 if (tv1 != tarval_and(tv1, n_tv2)) {
3649                         /* bit in the or_mask is outside the and_mask */
3650                         return or;
3651                 }
3652
3653                 /* ok, all conditions met */
3654                 block = get_irn_n(or, -1);
3655
3656                 new_and = new_r_And(current_ir_graph, block,
3657                         value, new_r_Const(current_ir_graph, block, mode, tarval_and(tv4, tv2)), mode);
3658
3659                 new_const = new_r_Const(current_ir_graph, block, mode, tarval_or(tv3, tv1));
3660
3661                 set_Or_left(or, new_and);
3662                 set_Or_right(or, new_const);
3663
3664                 /* check for more */
3665         }
3666 }  /* transform_node_Or_bf_store */
3667
3668 /**
3669  * Optimize an Or(shl(x, c), shr(x, bits - c)) into a Rot
3670  */
3671 static ir_node *transform_node_Or_Rot(ir_node *or) {
3672         ir_mode *mode = get_irn_mode(or);
3673         ir_node *shl, *shr, *block;
3674         ir_node *irn, *x, *c1, *c2, *v, *sub, *n;
3675         tarval *tv1, *tv2;
3676
3677         if (! mode_is_int(mode))
3678                 return or;
3679
3680         shl = get_binop_left(or);
3681         shr = get_binop_right(or);
3682
3683         if (get_irn_op(shl) == op_Shr) {
3684                 if (get_irn_op(shr) != op_Shl)
3685                         return or;
3686
3687                 irn = shl;
3688                 shl = shr;
3689                 shr = irn;
3690         } else if (get_irn_op(shl) != op_Shl) {
3691                 return or;
3692         } else if (get_irn_op(shr) != op_Shr) {
3693                 return or;
3694         }
3695         x = get_Shl_left(shl);
3696         if (x != get_Shr_left(shr))
3697                 return or;
3698
3699         c1 = get_Shl_right(shl);
3700         c2 = get_Shr_right(shr);
3701         if (get_irn_op(c1) == op_Const && get_irn_op(c2) == op_Const) {
3702                 tv1 = get_Const_tarval(c1);
3703                 if (! tarval_is_long(tv1))
3704                         return or;
3705
3706                 tv2 = get_Const_tarval(c2);
3707                 if (! tarval_is_long(tv2))
3708                         return or;
3709
3710                 if (get_tarval_long(tv1) + get_tarval_long(tv2)
3711                         != get_mode_size_bits(mode))
3712                         return or;
3713
3714                 /* yet, condition met */
3715                 block = get_irn_n(or, -1);
3716
3717                 n = new_r_Rot(current_ir_graph, block, x, c1, mode);
3718
3719                 DBG_OPT_ALGSIM1(or, shl, shr, n, FS_OPT_OR_SHFT_TO_ROT);
3720                 return n;
3721         } else if (get_irn_op(c1) == op_Sub) {
3722                 v   = c2;
3723                 sub = c1;
3724
3725                 if (get_Sub_right(sub) != v)
3726                         return or;
3727
3728                 c1 = get_Sub_left(sub);
3729                 if (get_irn_op(c1) != op_Const)
3730                         return or;
3731
3732                 tv1 = get_Const_tarval(c1);
3733                 if (! tarval_is_long(tv1))
3734                         return or;
3735
3736                 if (get_tarval_long(tv1) != get_mode_size_bits(mode))
3737                         return or;
3738
3739                 /* yet, condition met */
3740                 block = get_nodes_block(or);
3741
3742                 /* a Rot right is not supported, so use a rot left */
3743                 n =  new_r_Rot(current_ir_graph, block, x, sub, mode);
3744
3745                 DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
3746                 return n;
3747         } else if (get_irn_op(c2) == op_Sub) {
3748                 v   = c1;
3749                 sub = c2;
3750
3751                 c1 = get_Sub_left(sub);
3752                 if (get_irn_op(c1) != op_Const)
3753                         return or;
3754
3755                 tv1 = get_Const_tarval(c1);
3756                 if (! tarval_is_long(tv1))
3757                         return or;
3758
3759                 if (get_tarval_long(tv1) != get_mode_size_bits(mode))
3760                         return or;
3761
3762                 /* yet, condition met */
3763                 block = get_irn_n(or, -1);
3764
3765                 /* a Rot Left */
3766                 n = new_r_Rot(current_ir_graph, block, x, v, mode);
3767
3768                 DBG_OPT_ALGSIM0(or, n, FS_OPT_OR_SHFT_TO_ROT);
3769                 return n;
3770         }
3771
3772         return or;
3773 }  /* transform_node_Or_Rot */
3774
3775 /**
3776  * Transform an Or.
3777  */
3778 static ir_node *transform_node_Or(ir_node *n) {
3779         ir_node *c, *oldn = n;
3780         ir_node *a = get_Or_left(n);
3781         ir_node *b = get_Or_right(n);
3782
3783         /* we can evaluate 2 Projs of the same Cmp */
3784         if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
3785                 ir_node *pred_a = get_Proj_pred(a);
3786                 ir_node *pred_b = get_Proj_pred(b);
3787                 if(pred_a == pred_b) {
3788                         dbg_info *dbgi  = get_irn_dbg_info(n);
3789                         ir_node  *block = get_nodes_block(pred_a);
3790                         pn_Cmp pn_a     = get_Proj_proj(a);
3791                         pn_Cmp pn_b     = get_Proj_proj(b);
3792                         /* yes, we can simply calculate with pncs */
3793                         pn_Cmp new_pnc  = pn_a | pn_b;
3794
3795                         return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
3796                                            new_pnc);
3797                 }
3798         }
3799
3800         HANDLE_BINOP_PHI(tarval_or, a,b,c);
3801
3802         n = transform_node_Or_bf_store(n);
3803         n = transform_node_Or_Rot(n);
3804         if (n != oldn)
3805                 return n;
3806
3807         n = transform_bitwise_distributive(n, transform_node_Or);
3808
3809         return n;
3810 }  /* transform_node_Or */
3811
3812
3813 /* forward */
3814 static ir_node *transform_node(ir_node *n);
3815
3816 /**
3817  * Optimize (a >> c1) >> c2), works for Shr, Shrs, Shl.
3818  *
3819  * Should be moved to reassociation?
3820  */
3821 static ir_node *transform_node_shift(ir_node *n) {
3822         ir_node *left, *right;
3823         tarval *tv1, *tv2, *res;
3824         ir_mode *mode;
3825         int modulo_shf, flag;
3826
3827         left = get_binop_left(n);
3828
3829         /* different operations */
3830         if (get_irn_op(left) != get_irn_op(n))
3831                 return n;
3832
3833         right = get_binop_right(n);
3834         tv1 = value_of(right);
3835         if (tv1 == tarval_bad)
3836                 return n;
3837
3838         tv2 = value_of(get_binop_right(left));
3839         if (tv2 == tarval_bad)
3840                 return n;
3841
3842         res = tarval_add(tv1, tv2);
3843
3844         /* beware: a simple replacement works only, if res < modulo shift */
3845         mode = get_irn_mode(n);
3846
3847         flag = 0;
3848
3849         modulo_shf = get_mode_modulo_shift(mode);
3850         if (modulo_shf > 0) {
3851                 tarval *modulo = new_tarval_from_long(modulo_shf, get_tarval_mode(res));
3852
3853                 if (tarval_cmp(res, modulo) & pn_Cmp_Lt)
3854                         flag = 1;
3855         } else
3856                 flag = 1;
3857
3858         if (flag) {
3859                 /* ok, we can replace it */
3860                 ir_node *in[2], *irn, *block = get_irn_n(n, -1);
3861
3862                 in[0] = get_binop_left(left);
3863                 in[1] = new_r_Const(current_ir_graph, block, get_tarval_mode(res), res);
3864
3865                 irn = new_ir_node(NULL, current_ir_graph, block, get_irn_op(n), mode, 2, in);
3866
3867                 DBG_OPT_ALGSIM0(n, irn, FS_OPT_REASSOC_SHIFT);
3868
3869                 return transform_node(irn);
3870         }
3871         return n;
3872 }  /* transform_node_shift */
3873
3874 /**
3875  * Transform a Shr.
3876  */
3877 static ir_node *transform_node_Shr(ir_node *n) {
3878         ir_node *c, *oldn = n;
3879         ir_node *a = get_Shr_left(n);
3880         ir_node *b = get_Shr_right(n);
3881
3882         HANDLE_BINOP_PHI(tarval_shr, a, b, c);
3883         return transform_node_shift(n);
3884 }  /* transform_node_Shr */
3885
3886 /**
3887  * Transform a Shrs.
3888  */
3889 static ir_node *transform_node_Shrs(ir_node *n) {
3890         ir_node *c, *oldn = n;
3891         ir_node *a = get_Shrs_left(n);
3892         ir_node *b = get_Shrs_right(n);
3893
3894         HANDLE_BINOP_PHI(tarval_shrs, a, b, c);
3895         return transform_node_shift(n);
3896 }  /* transform_node_Shrs */
3897
3898 /**
3899  * Transform a Shl.
3900  */
3901 static ir_node *transform_node_Shl(ir_node *n) {
3902         ir_node *c, *oldn = n;
3903         ir_node *a = get_Shl_left(n);
3904         ir_node *b = get_Shl_right(n);
3905
3906         HANDLE_BINOP_PHI(tarval_shl, a, b, c);
3907         return transform_node_shift(n);
3908 }  /* transform_node_Shl */
3909
3910 /**
3911  * Remove dead blocks and nodes in dead blocks
3912  * in keep alive list.  We do not generate a new End node.
3913  */
3914 static ir_node *transform_node_End(ir_node *n) {
3915         int i, j, n_keepalives = get_End_n_keepalives(n);
3916         ir_node **in;
3917
3918         NEW_ARR_A(ir_node *, in, n_keepalives);
3919
3920         for (i = j = 0; i < n_keepalives; ++i) {
3921                 ir_node *ka = get_End_keepalive(n, i);
3922                 if (is_Block(ka)) {
3923                         if (! is_Block_dead(ka)) {
3924                                 in[j++] = ka;
3925                         }
3926                         continue;
3927                 } else if (is_irn_pinned_in_irg(ka) && is_Block_dead(get_nodes_block(ka))) {
3928                         continue;
3929                 }
3930                 /* FIXME: beabi need to keep a Proj(M) */
3931                 if (is_Phi(ka) || is_irn_keep(ka) || is_Proj(ka))
3932                         in[j++] = ka;
3933         }
3934         if (j != n_keepalives)
3935                 set_End_keepalives(n, j, in);
3936         return n;
3937 }  /* transform_node_End */
3938
3939 /** returns 1 if a == -b */
3940 static int is_negated_value(ir_node *a, ir_node *b) {
3941         if(is_Minus(a) && get_Minus_op(a) == b)
3942                 return 1;
3943         if(is_Minus(b) && get_Minus_op(b) == a)
3944                 return 1;
3945         if(is_Sub(a) && is_Sub(b)) {
3946                 ir_node *a_left  = get_Sub_left(a);
3947                 ir_node *a_right = get_Sub_right(a);
3948                 ir_node *b_left  = get_Sub_left(b);
3949                 ir_node *b_right = get_Sub_right(b);
3950
3951                 if(a_left == b_right && a_right == b_left)
3952                         return 1;
3953         }
3954
3955         return 0;
3956 }
3957
3958 /**
3959  * Optimize a Mux into some simpler cases.
3960  */
3961 static ir_node *transform_node_Mux(ir_node *n) {
3962         ir_node *oldn = n, *sel = get_Mux_sel(n);
3963         ir_mode *mode = get_irn_mode(n);
3964
3965         if (mode == mode_b) {
3966                 ir_node  *t     = get_Mux_true(n);
3967                 ir_node  *f     = get_Mux_false(n);
3968                 dbg_info *dbg   = get_irn_dbg_info(n);
3969                 ir_node  *block = get_irn_n(n, -1);
3970                 ir_graph *irg   = current_ir_graph;
3971
3972                 if (is_Const(t)) {
3973                         tarval *tv_t = get_Const_tarval(t);
3974                         if (tv_t == tarval_b_true) {
3975                                 if (is_Const(f)) {
3976                                         assert(get_Const_tarval(f) == tarval_b_false);
3977                                         return sel;
3978                                 } else {
3979                                         return new_rd_Or(dbg, irg, block, sel, f, mode_b);
3980                                 }
3981                         } else {
3982                                 ir_node* not_sel = new_rd_Not(dbg, irg, block, sel, mode_b);
3983                                 assert(tv_t == tarval_b_false);
3984                                 if (is_Const(f)) {
3985                                         assert(get_Const_tarval(f) == tarval_b_true);
3986                                         return not_sel;
3987                                 } else {
3988                                         return new_rd_And(dbg, irg, block, not_sel, f, mode_b);
3989                                 }
3990                         }
3991                 } else if (is_Const(f)) {
3992                         tarval *tv_f = get_Const_tarval(f);
3993                         if (tv_f == tarval_b_true) {
3994                                 ir_node* not_sel = new_rd_Not(dbg, irg, block, sel, mode_b);
3995                                 return new_rd_Or(dbg, irg, block, not_sel, t, mode_b);
3996                         } else {
3997                                 assert(tv_f == tarval_b_false);
3998                                 return new_rd_And(dbg, irg, block, sel, t, mode_b);
3999                         }
4000                 }
4001         }
4002
4003         if (get_irn_op(sel) == op_Proj && !mode_honor_signed_zeros(mode)) {
4004                 ir_node *cmp = get_Proj_pred(sel);
4005                 long     pn  = get_Proj_proj(sel);
4006                 ir_node *f   = get_Mux_false(n);
4007                 ir_node *t   = get_Mux_true(n);
4008
4009                 /*
4010                  * Note: normalization puts the constant on the right side,
4011                  * so we check only one case.
4012                  *
4013                  * Note further that these optimization work even for floating point
4014                  * with NaN's because -NaN == NaN.
4015                  * However, if +0 and -0 is handled differently, we cannot use the first
4016                  * one.
4017                  */
4018                 if (get_irn_op(cmp) == op_Cmp
4019                                 && classify_Const(get_Cmp_right(cmp)) == CNST_NULL) {
4020                         ir_node *block    = get_irn_n(n, -1);
4021
4022                         if(is_negated_value(f, t)) {
4023                                 ir_node *cmp_left = get_Cmp_left(cmp);
4024
4025                                 /* Psi(a >= 0, a, -a) = Psi(a <= 0, -a, a) ==> Abs(a) */
4026                                 if ( (cmp_left == t && (pn == pn_Cmp_Ge || pn == pn_Cmp_Gt))
4027                                         || (cmp_left == f && (pn == pn_Cmp_Le || pn == pn_Cmp_Lt)))
4028                                 {
4029                                         n = new_rd_Abs(get_irn_dbg_info(n), current_ir_graph, block,
4030                                                                    cmp_left, mode);
4031                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
4032                                         return n;
4033                                 /* Psi(a <= 0, a, -a) = Psi(a >= 0, -a, a) ==> -Abs(a) */
4034                                 } else if ((cmp_left == t && (pn == pn_Cmp_Le || pn == pn_Cmp_Lt))
4035                                         || (cmp_left == f && (pn == pn_Cmp_Ge || pn == pn_Cmp_Gt)))
4036                                 {
4037                                         n = new_rd_Abs(get_irn_dbg_info(n), current_ir_graph, block,
4038                                                                    cmp_left, mode);
4039                                         n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph,
4040                                                          block, n, mode);
4041                                         DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_ABS);
4042                                         return n;
4043                                 }
4044                         }
4045
4046                         if (mode_is_int(mode) && mode_is_signed(mode) &&
4047                                 get_mode_arithmetic(mode) == irma_twos_complement) {
4048                                 ir_node *x = get_Cmp_left(cmp);
4049
4050                                 /* the following optimization works only with signed integer two-complement mode */
4051
4052                                 if (mode == get_irn_mode(x)) {
4053                                         /*
4054                                          * FIXME: this restriction is two rigid, as it would still
4055                                          * work if mode(x) = Hs and mode == Is, but at least it removes
4056                                          * all wrong cases.
4057                                          */
4058                                         if ((pn == pn_Cmp_Lt || pn == pn_Cmp_Le) &&
4059                                             classify_Const(t) == CNST_ALL_ONE &&
4060                                             classify_Const(f) == CNST_NULL) {
4061                                                 /*
4062                                                  * Mux(x:T </<= 0, 0, -1) -> Shrs(x, sizeof_bits(T) - 1)
4063                                                  * Conditions:
4064                                                  * T must be signed.
4065                                                  */
4066                                                 n = new_rd_Shrs(get_irn_dbg_info(n),
4067                                                                 current_ir_graph, block, x,
4068                                                                 new_r_Const_long(current_ir_graph, block, mode_Iu,
4069                                                                 get_mode_size_bits(mode) - 1),
4070                                                                 mode);
4071                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
4072                                                 return n;
4073                                         } else if ((pn == pn_Cmp_Gt || pn == pn_Cmp_Ge) &&
4074                                                    classify_Const(t) == CNST_ONE &&
4075                                                    classify_Const(f) == CNST_NULL) {
4076                                                 /*
4077                                                  * Mux(x:T >/>= 0, 0, 1) -> Shr(-x, sizeof_bits(T) - 1)
4078                                                  * Conditions:
4079                                                  * T must be signed.
4080                                                  */
4081                                                 n = new_rd_Shr(get_irn_dbg_info(n),
4082                                                         current_ir_graph, block,
4083                                                         new_r_Minus(current_ir_graph, block, x, mode),
4084                                                         new_r_Const_long(current_ir_graph, block, mode_Iu,
4085                                                         get_mode_size_bits(mode) - 1),
4086                                                         mode);
4087                                                 DBG_OPT_ALGSIM1(oldn, cmp, sel, n, FS_OPT_MUX_TO_SHR);
4088                                                 return n;
4089                                         }
4090                                 }
4091                         }
4092                 }
4093         }
4094         return arch_transform_node_Mux(n);
4095 }  /* transform_node_Mux */
4096
4097 /**
4098  * Optimize a Psi into some simpler cases.
4099  */
4100 static ir_node *transform_node_Psi(ir_node *n) {
4101         if (is_Mux(n))
4102                 return transform_node_Mux(n);
4103
4104         return n;
4105 }  /* transform_node_Psi */
4106
4107 /**
4108  * Tries several [inplace] [optimizing] transformations and returns an
4109  * equivalent node.  The difference to equivalent_node() is that these
4110  * transformations _do_ generate new nodes, and thus the old node must
4111  * not be freed even if the equivalent node isn't the old one.
4112  */
4113 static ir_node *transform_node(ir_node *n) {
4114         ir_node *oldn;
4115
4116         /*
4117          * Transform_node is the only "optimizing transformation" that might
4118          * return a node with a different opcode. We iterate HERE until fixpoint
4119          * to get the final result.
4120          */
4121         do {
4122                 oldn = n;
4123                 if (n->op->ops.transform_node)
4124                         n = n->op->ops.transform_node(n);
4125         } while (oldn != n);
4126
4127         return n;
4128 }  /* transform_node */
4129
4130 /**
4131  * Sets the default transform node operation for an ir_op_ops.
4132  *
4133  * @param code   the opcode for the default operation
4134  * @param ops    the operations initialized
4135  *
4136  * @return
4137  *    The operations.
4138  */
4139 static ir_op_ops *firm_set_default_transform_node(ir_opcode code, ir_op_ops *ops)
4140 {
4141 #define CASE(a)                                 \
4142         case iro_##a:                                 \
4143                 ops->transform_node  = transform_node_##a;  \
4144                 break
4145
4146         switch (code) {
4147         CASE(Add);
4148         CASE(Sub);
4149         CASE(Mul);
4150         CASE(Div);
4151         CASE(Mod);
4152         CASE(DivMod);
4153         CASE(Quot);
4154         CASE(Abs);
4155         CASE(Cond);
4156         CASE(And);
4157         CASE(Or);
4158         CASE(Eor);
4159         CASE(Minus);
4160         CASE(Not);
4161         CASE(Cast);
4162         CASE(Proj);
4163         CASE(Phi);
4164         CASE(Sel);
4165         CASE(Shr);
4166         CASE(Shrs);
4167         CASE(Shl);
4168         CASE(End);
4169         CASE(Mux);
4170         CASE(Psi);
4171         default:
4172           /* leave NULL */;
4173         }
4174
4175         return ops;
4176 #undef CASE
4177 }  /* firm_set_default_transform_node */
4178
4179
4180 /* **************** Common Subexpression Elimination **************** */
4181
4182 /** The size of the hash table used, should estimate the number of nodes
4183     in a graph. */
4184 #define N_IR_NODES 512
4185
4186 /** Compares the attributes of two Const nodes. */
4187 static int node_cmp_attr_Const(ir_node *a, ir_node *b) {
4188         return (get_Const_tarval(a) != get_Const_tarval(b))
4189             || (get_Const_type(a) != get_Const_type(b));
4190 }  /* node_cmp_attr_Const */
4191
4192 /** Compares the attributes of two Proj nodes. */
4193 static int node_cmp_attr_Proj(ir_node *a, ir_node *b) {
4194         return get_irn_proj_attr(a) != get_irn_proj_attr(b);
4195 }  /* node_cmp_attr_Proj */
4196
4197 /** Compares the attributes of two Filter nodes. */
4198 static int node_cmp_attr_Filter(ir_node *a, ir_node *b) {
4199         return get_Filter_proj(a) != get_Filter_proj(b);
4200 }  /* node_cmp_attr_Filter */
4201
4202 /** Compares the attributes of two Alloc nodes. */
4203 static int node_cmp_attr_Alloc(ir_node *a, ir_node *b) {
4204         const alloc_attr *pa = get_irn_alloc_attr(a);
4205         const alloc_attr *pb = get_irn_alloc_attr(b);
4206         return (pa->where != pb->where) || (pa->type != pb->type);
4207 }  /* node_cmp_attr_Alloc */
4208
4209 /** Compares the attributes of two Free nodes. */
4210 static int node_cmp_attr_Free(ir_node *a, ir_node *b) {
4211         const free_attr *pa = get_irn_free_attr(a);
4212         const free_attr *pb = get_irn_free_attr(b);
4213         return (pa->where != pb->where) || (pa->type != pb->type);
4214 }  /* node_cmp_attr_Free */
4215
4216 /** Compares the attributes of two SymConst nodes. */
4217 static int node_cmp_attr_SymConst(ir_node *a, ir_node *b) {
4218         const symconst_attr *pa = get_irn_symconst_attr(a);
4219         const symconst_attr *pb = get_irn_symconst_attr(b);
4220         return (pa->num        != pb->num)
4221             || (pa->sym.type_p != pb->sym.type_p)
4222             || (pa->tp         != pb->tp);
4223 }  /* node_cmp_attr_SymConst */
4224
4225 /** Compares the attributes of two Call nodes. */
4226 static int node_cmp_attr_Call(ir_node *a, ir_node *b) {
4227         return (get_irn_call_attr(a) != get_irn_call_attr(b));
4228 }  /* node_cmp_attr_Call */
4229
4230 /** Compares the attributes of two Sel nodes. */
4231 static int node_cmp_attr_Sel(ir_node *a, ir_node *b) {
4232         const ir_entity *a_ent = get_Sel_entity(a);
4233         const ir_entity *b_ent = get_Sel_entity(b);
4234         return
4235                 (a_ent->kind    != b_ent->kind)    ||
4236                 (a_ent->name    != b_ent->name)    ||
4237                 (a_ent->owner   != b_ent->owner)   ||
4238                 (a_ent->ld_name != b_ent->ld_name) ||
4239                 (a_ent->type    != b_ent->type);
4240 }  /* node_cmp_attr_Sel */
4241
4242 /** Compares the attributes of two Phi nodes. */
4243 static int node_cmp_attr_Phi(ir_node *a, ir_node *b) {
4244         /* we can only enter this function if both nodes have the same number of inputs,
4245            hence it is enough to check if one of them is a Phi0 */
4246         if (is_Phi0(a)) {
4247                 /* check the Phi0 attribute */
4248                 return get_irn_phi0_attr(a) != get_irn_phi0_attr(b);
4249         }
4250         return 0;
4251 }  /* node_cmp_attr_Phi */
4252
4253 /** Compares the attributes of two Conv nodes. */
4254 static int node_cmp_attr_Conv(ir_node *a, ir_node *b) {
4255         return get_Conv_strict(a) != get_Conv_strict(b);
4256 }  /* node_cmp_attr_Conv */
4257
4258 /** Compares the attributes of two Cast nodes. */
4259 static int node_cmp_attr_Cast(ir_node *a, ir_node *b) {
4260         return get_Cast_type(a) != get_Cast_type(b);
4261 }  /* node_cmp_attr_Cast */
4262
4263 /** Compares the attributes of two Load nodes. */
4264 static int node_cmp_attr_Load(ir_node *a, ir_node *b) {
4265         if (get_Load_volatility(a) == volatility_is_volatile ||
4266             get_Load_volatility(b) == volatility_is_volatile)
4267                 /* NEVER do CSE on volatile Loads */
4268                 return 1;
4269         /* do not CSE Loads with different alignment. Be conservative. */
4270         if (get_Load_align(a) != get_Load_align(b))
4271                 return 1;
4272
4273         return get_Load_mode(a) != get_Load_mode(b);
4274 }  /* node_cmp_attr_Load */
4275
4276 /** Compares the attributes of two Store nodes. */
4277 static int node_cmp_attr_Store(ir_node *a, ir_node *b) {
4278         /* do not CSE Stores with different alignment. Be conservative. */
4279         if (get_Store_align(a) != get_Store_align(b))
4280                 return 1;
4281
4282         /* NEVER do CSE on volatile Stores */
4283         return (get_Store_volatility(a) == volatility_is_volatile ||
4284                 get_Store_volatility(b) == volatility_is_volatile);
4285 }  /* node_cmp_attr_Store */
4286
4287 /** Compares the attributes of two Confirm nodes. */
4288 static int node_cmp_attr_Confirm(ir_node *a, ir_node *b) {
4289         return (get_Confirm_cmp(a) != get_Confirm_cmp(b));
4290 }  /* node_cmp_attr_Confirm */
4291
4292 /** Compares the attributes of two ASM nodes. */
4293 static int node_cmp_attr_ASM(ir_node *a, ir_node *b) {
4294         int i, n;
4295         const ir_asm_constraint *ca;
4296         const ir_asm_constraint *cb;
4297         ident **cla, **clb;
4298
4299         if (get_ASM_text(a) != get_ASM_text(b))
4300                 return 1;
4301
4302         /* Should we really check the constraints here? Should be better, but is strange. */
4303         n = get_ASM_n_input_constraints(a);
4304         if (n != get_ASM_n_input_constraints(b))
4305                 return 0;
4306
4307         ca = get_ASM_input_constraints(a);
4308         cb = get_ASM_input_constraints(b);
4309         for (i = 0; i < n; ++i) {
4310                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
4311                         return 1;
4312         }
4313
4314         n = get_ASM_n_output_constraints(a);
4315         if (n != get_ASM_n_output_constraints(b))
4316                 return 0;
4317
4318         ca = get_ASM_output_constraints(a);
4319         cb = get_ASM_output_constraints(b);
4320         for (i = 0; i < n; ++i) {
4321                 if (ca[i].pos != cb[i].pos || ca[i].constraint != cb[i].constraint)
4322                         return 1;
4323         }
4324
4325         n = get_ASM_n_clobbers(a);
4326         if (n != get_ASM_n_clobbers(b))
4327                 return 0;
4328
4329         cla = get_ASM_clobbers(a);
4330         clb = get_ASM_clobbers(b);
4331         for (i = 0; i < n; ++i) {
4332                 if (cla[i] != clb[i])
4333                         return 1;
4334         }
4335         return 0;
4336 }  /* node_cmp_attr_ASM */
4337
4338 /**
4339  * Set the default node attribute compare operation for an ir_op_ops.
4340  *
4341  * @param code   the opcode for the default operation
4342  * @param ops    the operations initialized
4343  *
4344  * @return
4345  *    The operations.
4346  */
4347 static ir_op_ops *firm_set_default_node_cmp_attr(ir_opcode code, ir_op_ops *ops)
4348 {
4349 #define CASE(a)                              \
4350         case iro_##a:                              \
4351                 ops->node_cmp_attr  = node_cmp_attr_##a; \
4352                 break
4353
4354         switch (code) {
4355         CASE(Const);
4356         CASE(Proj);
4357         CASE(Filter);
4358         CASE(Alloc);
4359         CASE(Free);
4360         CASE(SymConst);
4361         CASE(Call);
4362         CASE(Sel);
4363         CASE(Phi);
4364         CASE(Conv);
4365         CASE(Cast);
4366         CASE(Load);
4367         CASE(Store);
4368         CASE(Confirm);
4369         CASE(ASM);
4370         default:
4371           /* leave NULL */;
4372         }
4373
4374         return ops;
4375 #undef CASE
4376 }  /* firm_set_default_node_cmp_attr */
4377
4378 /*
4379  * Compare function for two nodes in the hash table. Gets two
4380  * nodes as parameters.  Returns 0 if the nodes are a cse.
4381  */
4382 int identities_cmp(const void *elt, const void *key) {
4383         ir_node *a, *b;
4384         int i, irn_arity_a;
4385
4386         a = (void *)elt;
4387         b = (void *)key;
4388
4389         if (a == b) return 0;
4390
4391         if ((get_irn_op(a) != get_irn_op(b)) ||
4392             (get_irn_mode(a) != get_irn_mode(b))) return 1;
4393
4394         /* compare if a's in and b's in are of equal length */
4395         irn_arity_a = get_irn_intra_arity (a);
4396         if (irn_arity_a != get_irn_intra_arity(b))
4397                 return 1;
4398
4399         /* for block-local cse and op_pin_state_pinned nodes: */
4400         if (!get_opt_global_cse() || (get_irn_pinned(a) == op_pin_state_pinned)) {
4401                 if (get_irn_intra_n(a, -1) != get_irn_intra_n(b, -1))
4402                         return 1;
4403         }
4404
4405         /* compare a->in[0..ins] with b->in[0..ins] */
4406         for (i = 0; i < irn_arity_a; i++)
4407                 if (get_irn_intra_n(a, i) != get_irn_intra_n(b, i))
4408                         return 1;
4409
4410         /*
4411          * here, we already now that the nodes are identical except their
4412          * attributes
4413          */
4414         if (a->op->ops.node_cmp_attr)
4415                 return a->op->ops.node_cmp_attr(a, b);
4416
4417         return 0;
4418 }  /* identities_cmp */
4419
4420 /*
4421  * Calculate a hash value of a node.
4422  */
4423 unsigned ir_node_hash(ir_node *node) {
4424         unsigned h;
4425         int i, irn_arity;
4426
4427         if (node->op == op_Const) {
4428                 /* special value for const, as they only differ in their tarval. */
4429                 h = HASH_PTR(node->attr.con.tv);
4430                 h = 9*h + HASH_PTR(get_irn_mode(node));
4431         } else if (node->op == op_SymConst) {
4432                 /* special value for const, as they only differ in their symbol. */
4433                 h = HASH_PTR(node->attr.symc.sym.type_p);
4434                 h = 9*h + HASH_PTR(get_irn_mode(node));
4435         } else {
4436
4437                 /* hash table value = 9*(9*(9*(9*(9*arity+in[0])+in[1])+ ...)+mode)+code */
4438                 h = irn_arity = get_irn_intra_arity(node);
4439
4440                 /* consider all in nodes... except the block if not a control flow. */
4441                 for (i = is_cfop(node) ? -1 : 0;  i < irn_arity;  i++) {
4442                         h = 9*h + HASH_PTR(get_irn_intra_n(node, i));
4443                 }
4444
4445                 /* ...mode,... */
4446                 h = 9*h + HASH_PTR(get_irn_mode(node));
4447                 /* ...and code */
4448                 h = 9*h + HASH_PTR(get_irn_op(node));
4449         }
4450
4451         return h;
4452 }  /* ir_node_hash */
4453
4454 pset *new_identities(void) {
4455         return new_pset(identities_cmp, N_IR_NODES);
4456 }  /* new_identities */
4457
4458 void del_identities(pset *value_table) {
4459         del_pset(value_table);
4460 }  /* del_identities */
4461
4462 /**
4463  * Return the canonical node computing the same value as n.
4464  *
4465  * @param value_table  The value table
4466  * @param n            The node to lookup
4467  *
4468  * Looks up the node in a hash table.
4469  *
4470  * For Const nodes this is performed in the constructor, too.  Const
4471  * nodes are extremely time critical because of their frequent use in
4472  * constant string arrays.
4473  */
4474 static INLINE ir_node *identify(pset *value_table, ir_node *n) {
4475         ir_node *o = NULL;
4476
4477         if (!value_table) return n;
4478
4479         if (get_opt_reassociation()) {
4480                 if (is_op_commutative(get_irn_op(n))) {
4481                         ir_node *l = get_binop_left(n);
4482                         ir_node *r = get_binop_right(n);
4483
4484                         /* for commutative operators perform  a OP b == b OP a */
4485                         if (get_irn_idx(l) > get_irn_idx(r)) {
4486                                 set_binop_left(n, r);
4487                                 set_binop_right(n, l);
4488                         }
4489                 }
4490         }
4491
4492         o = pset_find(value_table, n, ir_node_hash(n));
4493         if (!o) return n;
4494
4495         DBG_OPT_CSE(n, o);
4496
4497         return o;
4498 }  /* identify */
4499
4500 /**
4501  * During construction we set the op_pin_state_pinned flag in the graph right when the
4502  * optimization is performed.  The flag turning on procedure global cse could
4503  * be changed between two allocations.  This way we are safe.
4504  */
4505 static INLINE ir_node *identify_cons(pset *value_table, ir_node *n) {
4506         ir_node *old = n;
4507
4508         n = identify(value_table, n);
4509         if (get_irn_n(old, -1) != get_irn_n(n, -1))
4510                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
4511         return n;
4512 }  /* identify_cons */
4513
4514 /*
4515  * Return the canonical node computing the same value as n.
4516  * Looks up the node in a hash table, enters it in the table
4517  * if it isn't there yet.
4518  */
4519 ir_node *identify_remember(pset *value_table, ir_node *n) {
4520         ir_node *o = NULL;
4521
4522         if (!value_table) return n;
4523
4524         if (get_opt_reassociation()) {
4525                 if (is_op_commutative(get_irn_op(n))) {
4526                         ir_node *l = get_binop_left(n);
4527                         ir_node *r = get_binop_right(n);
4528                         int l_idx = get_irn_idx(l);
4529                         int r_idx = get_irn_idx(r);
4530
4531                         /* For commutative operators perform  a OP b == b OP a but keep
4532                            constants on the RIGHT side. This helps greatly in some optimizations.
4533                            Moreover we use the idx number to make the form deterministic. */
4534                         if (is_irn_constlike(l))
4535                                 l_idx = -l_idx;
4536                         if (is_irn_constlike(r))
4537                                 r_idx = -r_idx;
4538                         if (l_idx < r_idx) {
4539                                 set_binop_left(n, r);
4540                                 set_binop_right(n, l);
4541                         }
4542                 }
4543         }
4544
4545         /* lookup or insert in hash table with given hash key. */
4546         o = pset_insert(value_table, n, ir_node_hash(n));
4547
4548         if (o != n) {
4549                 DBG_OPT_CSE(n, o);
4550         }
4551
4552         return o;
4553 }  /* identify_remember */
4554
4555 /* Add a node to the identities value table. */
4556 void add_identities(pset *value_table, ir_node *node) {
4557         if (get_opt_cse() && is_no_Block(node))
4558                 identify_remember(value_table, node);
4559 }  /* add_identities */
4560
4561 /* Visit each node in the value table of a graph. */
4562 void visit_all_identities(ir_graph *irg, irg_walk_func visit, void *env) {
4563         ir_node *node;
4564         ir_graph *rem = current_ir_graph;
4565
4566         current_ir_graph = irg;
4567         foreach_pset(irg->value_table, node)
4568                 visit(node, env);
4569         current_ir_graph = rem;
4570 }  /* visit_all_identities */
4571
4572 /**
4573  * Garbage in, garbage out. If a node has a dead input, i.e., the
4574  * Bad node is input to the node, return the Bad node.
4575  */
4576 static INLINE ir_node *gigo(ir_node *node) {
4577         int i, irn_arity;
4578         ir_op *op = get_irn_op(node);
4579
4580         /* remove garbage blocks by looking at control flow that leaves the block
4581            and replacing the control flow by Bad. */
4582         if (get_irn_mode(node) == mode_X) {
4583                 ir_node *block = get_nodes_block(skip_Proj(node));
4584
4585                 /* Don't optimize nodes in immature blocks. */
4586                 if (!get_Block_matured(block)) return node;
4587                 /* Don't optimize End, may have Bads. */
4588                 if (op == op_End) return node;
4589
4590                 if (is_Block(block)) {
4591                         irn_arity = get_irn_arity(block);
4592                         for (i = 0; i < irn_arity; i++) {
4593                                 if (!is_Bad(get_irn_n(block, i)))
4594                                         break;
4595                         }
4596                         if (i == irn_arity) {
4597                                 ir_graph *irg = get_irn_irg(block);
4598                                 /* the start block is never dead */
4599                                 if (block != get_irg_start_block(irg)
4600                                         && block != get_irg_end_block(irg))
4601                                         return new_Bad();
4602                         }
4603                 }
4604         }
4605
4606         /* Blocks, Phis and Tuples may have dead inputs, e.g., if one of the
4607            blocks predecessors is dead. */
4608         if (op != op_Block && op != op_Phi && op != op_Tuple) {
4609                 irn_arity = get_irn_arity(node);
4610
4611                 /*
4612                  * Beware: we can only read the block of a non-floating node.
4613                  */
4614                 if (is_irn_pinned_in_irg(node) &&
4615                         is_Block_dead(get_nodes_block(node)))
4616                         return new_Bad();
4617
4618                 for (i = 0; i < irn_arity; i++) {
4619                         ir_node *pred = get_irn_n(node, i);
4620
4621                         if (is_Bad(pred))
4622                                 return new_Bad();
4623 #if 0
4624                         /* Propagating Unknowns here seems to be a bad idea, because
4625                            sometimes we need a node as a input and did not want that
4626                            it kills it's user.
4627                            However, it might be useful to move this into a later phase
4628                            (if you think that optimizing such code is useful). */
4629                         if (is_Unknown(pred) && mode_is_data(get_irn_mode(node)))
4630                                 return new_Unknown(get_irn_mode(node));
4631 #endif
4632                 }
4633         }
4634 #if 0
4635         /* With this code we violate the agreement that local_optimize
4636            only leaves Bads in Block, Phi and Tuple nodes. */
4637         /* If Block has only Bads as predecessors it's garbage. */
4638         /* If Phi has only Bads as predecessors it's garbage. */
4639         if ((op == op_Block && get_Block_matured(node)) || op == op_Phi)  {
4640                 irn_arity = get_irn_arity(node);
4641                 for (i = 0; i < irn_arity; i++) {
4642                         if (!is_Bad(get_irn_n(node, i))) break;
4643                 }
4644                 if (i == irn_arity) node = new_Bad();
4645         }
4646 #endif
4647         return node;
4648 }  /* gigo */
4649
4650 /**
4651  * These optimizations deallocate nodes from the obstack.
4652  * It can only be called if it is guaranteed that no other nodes
4653  * reference this one, i.e., right after construction of a node.
4654  *
4655  * @param n   The node to optimize
4656  *
4657  * current_ir_graph must be set to the graph of the node!
4658  */
4659 ir_node *optimize_node(ir_node *n) {
4660         tarval *tv;
4661         ir_node *oldn = n;
4662         ir_opcode iro = get_irn_opcode(n);
4663
4664         /* Always optimize Phi nodes: part of the construction. */
4665         if ((!get_opt_optimize()) && (iro != iro_Phi)) return n;
4666
4667         /* constant expression evaluation / constant folding */
4668         if (get_opt_constant_folding()) {
4669                 /* neither constants nor Tuple values can be evaluated */
4670                 if (iro != iro_Const && (get_irn_mode(n) != mode_T)) {
4671                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
4672                         int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
4673                         /* try to evaluate */
4674                         tv = computed_value(n);
4675                         if (tv != tarval_bad) {
4676                                 ir_node *nw;
4677                                 ir_type *old_tp = get_irn_type(n);
4678                                 int i, arity = get_irn_arity(n);
4679                                 int node_size;
4680
4681                                 /*
4682                                  * Try to recover the type of the new expression.
4683                                  */
4684                                 for (i = 0; i < arity && !old_tp; ++i)
4685                                         old_tp = get_irn_type(get_irn_n(n, i));
4686
4687                                 /*
4688                                  * we MUST copy the node here temporary, because it's still needed
4689                                  * for DBG_OPT_CSTEVAL
4690                                  */
4691                                 node_size = offsetof(ir_node, attr) +  n->op->attr_size;
4692                                 oldn = alloca(node_size);
4693
4694                                 memcpy(oldn, n, node_size);
4695                                 CLONE_ARR_A(ir_node *, oldn->in, n->in);
4696
4697                                 /* ARG, copy the in array, we need it for statistics */
4698                                 memcpy(oldn->in, n->in, ARR_LEN(n->in) * sizeof(n->in[0]));
4699
4700                                 /* note the inplace edges module */
4701                                 edges_node_deleted(n, current_ir_graph);
4702
4703                                 /* evaluation was successful -- replace the node. */
4704                                 irg_kill_node(current_ir_graph, n);
4705                                 nw = new_Const(get_tarval_mode (tv), tv);
4706
4707                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode (tv))
4708                                         set_Const_type(nw, old_tp);
4709                                 DBG_OPT_CSTEVAL(oldn, nw);
4710                                 tarval_enable_fp_ops(old_fp_mode);
4711                                 return nw;
4712                         }
4713                         tarval_enable_fp_ops(old_fp_mode);
4714                 }
4715         }
4716
4717         /* remove unnecessary nodes */
4718         if (get_opt_constant_folding() ||
4719             (iro == iro_Phi)  ||   /* always optimize these nodes. */
4720             (iro == iro_Id)   ||
4721             (iro == iro_Proj) ||
4722             (iro == iro_Block)  )  /* Flags tested local. */
4723                 n = equivalent_node(n);
4724
4725         optimize_preds(n);                  /* do node specific optimizations of nodes predecessors. */
4726
4727         /* Common Subexpression Elimination.
4728          *
4729          * Checks whether n is already available.
4730          * The block input is used to distinguish different subexpressions. Right
4731          * now all nodes are op_pin_state_pinned to blocks, i.e., the CSE only finds common
4732          * subexpressions within a block.
4733          */
4734         if (get_opt_cse())
4735                 n = identify_cons(current_ir_graph->value_table, n);
4736
4737         if (n != oldn) {
4738                 edges_node_deleted(oldn, current_ir_graph);
4739
4740                 /* We found an existing, better node, so we can deallocate the old node. */
4741                 irg_kill_node(current_ir_graph, oldn);
4742                 return n;
4743         }
4744
4745         /* Some more constant expression evaluation that does not allow to
4746            free the node. */
4747         iro = get_irn_opcode(n);
4748         if (get_opt_constant_folding() ||
4749             (iro == iro_Cond) ||
4750             (iro == iro_Proj))     /* Flags tested local. */
4751                 n = transform_node(n);
4752
4753         /* Remove nodes with dead (Bad) input.
4754            Run always for transformation induced Bads. */
4755         n = gigo (n);
4756
4757         /* Now we have a legal, useful node. Enter it in hash table for CSE */
4758         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block)) {
4759                 n = identify_remember(current_ir_graph->value_table, n);
4760         }
4761
4762         return n;
4763 }  /* optimize_node */
4764
4765
4766 /**
4767  * These optimizations never deallocate nodes (in place).  This can cause dead
4768  * nodes lying on the obstack.  Remove these by a dead node elimination,
4769  * i.e., a copying garbage collection.
4770  */
4771 ir_node *optimize_in_place_2(ir_node *n) {
4772         tarval *tv;
4773         ir_node *oldn = n;
4774         ir_opcode iro = get_irn_opcode(n);
4775
4776         if (!get_opt_optimize() && (get_irn_op(n) != op_Phi)) return n;
4777
4778         /* constant expression evaluation / constant folding */
4779         if (get_opt_constant_folding()) {
4780                 /* neither constants nor Tuple values can be evaluated */
4781                 if (iro != iro_Const && get_irn_mode(n) != mode_T) {
4782                         unsigned fp_model = get_irg_fp_model(current_ir_graph);
4783                         int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
4784                         /* try to evaluate */
4785                         tv = computed_value(n);
4786                         if (tv != tarval_bad) {
4787                                 /* evaluation was successful -- replace the node. */
4788                                 ir_type *old_tp = get_irn_type(n);
4789                                 int i, arity = get_irn_arity(n);
4790
4791                                 /*
4792                                  * Try to recover the type of the new expression.
4793                                  */
4794                                 for (i = 0; i < arity && !old_tp; ++i)
4795                                         old_tp = get_irn_type(get_irn_n(n, i));
4796
4797                                 n = new_Const(get_tarval_mode(tv), tv);
4798
4799                                 if (old_tp && get_type_mode(old_tp) == get_tarval_mode(tv))
4800                                         set_Const_type(n, old_tp);
4801
4802                                 DBG_OPT_CSTEVAL(oldn, n);
4803                                 tarval_enable_fp_ops(old_fp_mode);
4804                                 return n;
4805                         }
4806                         tarval_enable_fp_ops(old_fp_mode);
4807                 }
4808         }
4809
4810         /* remove unnecessary nodes */
4811         if (get_opt_constant_folding() ||
4812             (iro == iro_Phi)  ||   /* always optimize these nodes. */
4813             (iro == iro_Id)   ||   /* ... */
4814             (iro == iro_Proj) ||   /* ... */
4815             (iro == iro_Block)  )  /* Flags tested local. */
4816                 n = equivalent_node(n);
4817
4818         optimize_preds(n);                  /* do node specific optimizations of nodes predecessors. */
4819
4820         /** common subexpression elimination **/
4821         /* Checks whether n is already available. */
4822         /* The block input is used to distinguish different subexpressions.  Right
4823            now all nodes are op_pin_state_pinned to blocks, i.e., the cse only finds common
4824            subexpressions within a block. */
4825         if (get_opt_cse()) {
4826                 n = identify(current_ir_graph->value_table, n);
4827         }
4828
4829         /* Some more constant expression evaluation. */
4830         iro = get_irn_opcode(n);
4831         if (get_opt_constant_folding() ||
4832                 (iro == iro_Cond) ||
4833                 (iro == iro_Proj))     /* Flags tested local. */
4834                 n = transform_node(n);
4835
4836         /* Remove nodes with dead (Bad) input.
4837            Run always for transformation induced Bads.  */
4838         n = gigo(n);
4839
4840         /* Now we can verify the node, as it has no dead inputs any more. */
4841         irn_vrfy(n);
4842
4843         /* Now we have a legal, useful node. Enter it in hash table for cse.
4844            Blocks should be unique anyways.  (Except the successor of start:
4845            is cse with the start block!) */
4846         if (get_opt_cse() && (get_irn_opcode(n) != iro_Block))
4847                 n = identify_remember(current_ir_graph->value_table, n);
4848
4849         return n;
4850 }  /* optimize_in_place_2 */
4851
4852 /**
4853  * Wrapper for external use, set proper status bits after optimization.
4854  */
4855 ir_node *optimize_in_place(ir_node *n) {
4856         /* Handle graph state */
4857         assert(get_irg_phase_state(current_ir_graph) != phase_building);
4858
4859         if (get_opt_global_cse())
4860                 set_irg_pinned(current_ir_graph, op_pin_state_floats);
4861         if (get_irg_outs_state(current_ir_graph) == outs_consistent)
4862                 set_irg_outs_inconsistent(current_ir_graph);
4863
4864         /* FIXME: Maybe we could also test whether optimizing the node can
4865            change the control graph. */
4866         set_irg_doms_inconsistent(current_ir_graph);
4867         return optimize_in_place_2(n);
4868 }  /* optimize_in_place */
4869
4870 /*
4871  * Sets the default operation for an ir_ops.
4872  */
4873 ir_op_ops *firm_set_default_operations(ir_opcode code, ir_op_ops *ops) {
4874         ops = firm_set_default_computed_value(code, ops);
4875         ops = firm_set_default_equivalent_node(code, ops);
4876         ops = firm_set_default_transform_node(code, ops);
4877         ops = firm_set_default_node_cmp_attr(code, ops);
4878         ops = firm_set_default_get_type(code, ops);
4879         ops = firm_set_default_get_type_attr(code, ops);
4880         ops = firm_set_default_get_entity_attr(code, ops);
4881
4882         return ops;
4883 }  /* firm_set_default_operations */