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