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