32e2c0f223c62ebfd192301dcede8b8588064cac
[libfirm] / ir / opt / combo.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Cliff Click's Combined Analysis/Optimization
23  * @author  Michael Beck
24  * @version $Id$
25  *
26  * This is a slightly enhanced version of Cliff Clicks combo algorithm
27  * - support for commutative nodes is added, Add(a,b) and Add(b,a) ARE congruent
28  * - supports all Firm direct (by a data edge) identities except Mux
29  *   (Mux can be a 2-input or 1-input identity, only 2-input is implemented yet)
30  * - supports Confirm nodes (handle them like Copies but do NOT remove them)
31  * - let Cmp nodes calculate Top like all othe data nodes: this would let
32  *   Mux nodes to calculate Unknown instead of taking the true result
33  * - let Cond(Top) always select FALSE/default: This is tricky. Nodes are only reavaluated
34  *   IFF the predecessor changed its type. Because nodes are initialized with Top
35  *   this never happens, let all Proj(Cond) be unreachable.
36  *   We avoid this condition by the same way we work around Phi: whenever a Block
37  *   node is placed on the list, place its Cond nodes (and because they are Tuple
38  *   all its Proj-nodes either on the cprop list)
39  *   Especially, this changes the meaning of Click's example:
40  *
41  *   int main() {
42  *     int x;
43  *
44  *     if (x == 2)
45  *       printf("x == 2\n");
46  *     if (x == 3)
47  *       printf("x == 3\n");
48  *   }
49  *
50  *   Would print:
51  *   x == 2
52  *   x == 3
53  *
54  *   using Click's version while is silent with our.
55  * - support for global congruences is implemented but not tested yet
56  *
57  * Note further that we use the terminology from Click's work here, which is different
58  * in some cases from Firm terminology.  Especially, Click's type is a
59  * Firm tarval/entity, nevertheless we call it type here for "maximum compatibility".
60  */
61 #include "config.h"
62
63 #include <assert.h>
64
65 #include "iroptimize.h"
66 #include "irflag.h"
67 #include "ircons.h"
68 #include "list.h"
69 #include "set.h"
70 #include "pmap.h"
71 #include "obstack.h"
72 #include "irgraph_t.h"
73 #include "irnode_t.h"
74 #include "iropt_t.h"
75 #include "irgwalk.h"
76 #include "irop.h"
77 #include "irouts.h"
78 #include "irgmod.h"
79 #include "iropt_dbg.h"
80 #include "debug.h"
81 #include "array_t.h"
82 #include "error.h"
83 #include "irnodeset.h"
84 #include "irpass.h"
85 #include "tv_t.h"
86
87 #include "irprintf.h"
88 #include "irdump.h"
89
90 /* define this to check that all type translations are monotone */
91 #define VERIFY_MONOTONE
92
93 /* define this to check the consistency of partitions */
94 #define CHECK_PARTITIONS
95
96 typedef struct node_t            node_t;
97 typedef struct partition_t       partition_t;
98 typedef struct opcode_key_t      opcode_key_t;
99 typedef struct listmap_entry_t   listmap_entry_t;
100
101 /** The type of the compute function. */
102 typedef void (*compute_func)(node_t *node);
103
104 /**
105  * An opcode map key.
106  */
107 struct opcode_key_t {
108         ir_opcode   code;   /**< The Firm opcode. */
109         ir_mode     *mode;  /**< The mode of all nodes in the partition. */
110         int         arity;  /**< The arity of this opcode (needed for Phi etc. */
111         union {
112                 long      proj;   /**< For Proj nodes, its proj number */
113                 ir_entity *ent;   /**< For Sel Nodes, its entity */
114                 int       intVal; /**< For Conv/Div Nodes: strict/remainderless */
115                 unsigned  uintVal;/**< for Builtin: the kind */
116                 ir_node   *block; /**< for Block: itself */
117                 void      *ptr;   /**< generic pointer for hash/cmp */
118         } u;
119 };
120
121 /**
122  * An entry in the list_map.
123  */
124 struct listmap_entry_t {
125         void            *id;    /**< The id. */
126         node_t          *list;  /**< The associated list for this id. */
127         listmap_entry_t *next;  /**< Link to the next entry in the map. */
128 };
129
130 /** We must map id's to lists. */
131 typedef struct listmap_t {
132         set             *map;    /**< Map id's to listmap_entry_t's */
133         listmap_entry_t *values; /**< List of all values in the map. */
134 } listmap_t;
135
136 /**
137  * A lattice element. Because we handle constants and symbolic constants different, we
138  * have to use this union.
139  */
140 typedef union {
141         tarval          *tv;
142         symconst_symbol sym;
143 } lattice_elem_t;
144
145 /**
146  * A node.
147  */
148 struct node_t {
149         ir_node         *node;          /**< The IR-node itself. */
150         list_head       node_list;      /**< Double-linked list of leader/follower entries. */
151         list_head       cprop_list;     /**< Double-linked partition.cprop list. */
152         partition_t     *part;          /**< points to the partition this node belongs to */
153         node_t          *next;          /**< Next node on local list (partition.touched, fallen). */
154         node_t          *race_next;     /**< Next node on race list. */
155         lattice_elem_t  type;           /**< The associated lattice element "type". */
156         int             max_user_input; /**< Maximum input number of Def-Use edges. */
157         int             next_edge;      /**< Index of the next Def-Use edge to use. */
158         int             n_followers;    /**< Number of Follower in the outs set. */
159         unsigned        on_touched:1;   /**< Set, if this node is on the partition.touched set. */
160         unsigned        on_cprop:1;     /**< Set, if this node is on the partition.cprop list. */
161         unsigned        on_fallen:1;    /**< Set, if this node is on the fallen list. */
162         unsigned        is_follower:1;  /**< Set, if this node is a follower. */
163         unsigned        flagged:2;      /**< 2 Bits, set if this node was visited by race 1 or 2. */
164 };
165
166 /**
167  * A partition containing congruent nodes.
168  */
169 struct partition_t {
170         list_head         Leader;          /**< The head of partition Leader node list. */
171         list_head         Follower;        /**< The head of partition Follower node list. */
172         list_head         cprop;           /**< The head of partition.cprop list. */
173         list_head         cprop_X;         /**< The head of partition.cprop (Cond nodes and its Projs) list. */
174         partition_t       *wl_next;        /**< Next entry in the work list if any. */
175         partition_t       *touched_next;   /**< Points to the next partition in the touched set. */
176         partition_t       *cprop_next;     /**< Points to the next partition in the cprop list. */
177         partition_t       *split_next;     /**< Points to the next partition in the list that must be split by split_by(). */
178         node_t            *touched;        /**< The partition.touched set of this partition. */
179         unsigned          n_leader;        /**< Number of entries in this partition.Leader. */
180         unsigned          n_touched;       /**< Number of entries in the partition.touched. */
181         int               max_user_inputs; /**< Maximum number of user inputs of all entries. */
182         unsigned          on_worklist:1;   /**< Set, if this partition is in the work list. */
183         unsigned          on_touched:1;    /**< Set, if this partition is on the touched set. */
184         unsigned          on_cprop:1;      /**< Set, if this partition is on the cprop list. */
185         unsigned          type_is_T_or_C:1;/**< Set, if all nodes in this partition have type Top or Constant. */
186 #ifdef DEBUG_libfirm
187         partition_t       *dbg_next;       /**< Link all partitions for debugging */
188         unsigned          nr;              /**< A unique number for (what-)mapping, >0. */
189 #endif
190 };
191
192 typedef struct environment_t {
193         struct obstack  obst;           /**< obstack to allocate data structures. */
194         partition_t     *worklist;      /**< The work list. */
195         partition_t     *cprop;         /**< The constant propagation list. */
196         partition_t     *touched;       /**< the touched set. */
197         partition_t     *initial;       /**< The initial partition. */
198         set             *opcode2id_map; /**< The opcodeMode->id map. */
199         ir_node         **kept_memory;  /**< Array of memory nodes that must be kept. */
200         int             end_idx;        /**< -1 for local and 0 for global congruences. */
201         int             lambda_input;   /**< Captured argument for lambda_partition(). */
202         unsigned        modified:1;     /**< Set, if the graph was modified. */
203         unsigned        unopt_cf:1;     /**< If set, control flow is not optimized due to Unknown. */
204         /* options driving the optimization */
205         unsigned        commutative:1;  /**< Set, if commutation nodes should be handled specially. */
206         unsigned        opt_unknown:1;  /**< Set, if non-strict programs should be optimized. */
207 #ifdef DEBUG_libfirm
208         partition_t     *dbg_list;      /**< List of all partitions. */
209 #endif
210 } environment_t;
211
212 /** Type of the what function. */
213 typedef void *(*what_func)(const node_t *node, environment_t *env);
214
215 #define get_irn_node(irn)         ((node_t *)get_irn_link(irn))
216 #define set_irn_node(irn, node)   set_irn_link(irn, node)
217
218 /* we do NOT use tarval_unreachable here, instead we use Top for this purpose */
219 #undef tarval_unreachable
220 #define tarval_unreachable tarval_top
221
222
223 /** The debug module handle. */
224 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
225
226 /** The what reason. */
227 DEBUG_ONLY(static const char *what_reason;)
228
229 /** Next partition number. */
230 DEBUG_ONLY(static unsigned part_nr = 0);
231
232 /** The tarval returned by Unknown nodes: set to either tarval_bad OR tarval_top. */
233 static tarval *tarval_UNKNOWN;
234
235 /* forward */
236 static node_t *identity(node_t *node);
237
238 #ifdef CHECK_PARTITIONS
239 /**
240  * Check a partition.
241  */
242 static void check_partition(const partition_t *T)
243 {
244         node_t   *node;
245         unsigned n = 0;
246
247         list_for_each_entry(node_t, node, &T->Leader, node_list) {
248                 assert(node->is_follower == 0);
249                 assert(node->flagged == 0);
250                 assert(node->part == T);
251                 ++n;
252         }
253         assert(n == T->n_leader);
254
255         list_for_each_entry(node_t, node, &T->Follower, node_list) {
256                 assert(node->is_follower == 1);
257                 assert(node->flagged == 0);
258                 assert(node->part == T);
259         }
260 }  /* check_partition */
261
262 /**
263  * check that all leader nodes in the partition have the same opcode.
264  */
265 static void check_opcode(const partition_t *Z)
266 {
267         node_t       *node;
268         opcode_key_t key;
269         int          first = 1;
270
271         list_for_each_entry(node_t, node, &Z->Leader, node_list) {
272                 ir_node *irn = node->node;
273
274                 if (first) {
275                         key.code   = get_irn_opcode(irn);
276                         key.mode   = get_irn_mode(irn);
277                         key.arity  = get_irn_arity(irn);
278                         key.u.proj = 0;
279                         key.u.ent  = NULL;
280
281                         switch (get_irn_opcode(irn)) {
282                         case iro_Proj:
283                                 key.u.proj = get_Proj_proj(irn);
284                                 break;
285                         case iro_Sel:
286                                 key.u.ent = get_Sel_entity(irn);
287                                 break;
288                         case iro_Conv:
289                                 key.u.intVal = get_Conv_strict(irn);
290                                 break;
291                         case iro_Div:
292                                 key.u.intVal = get_Div_no_remainder(irn);
293                                 break;
294                         case iro_Block:
295                                 key.u.block = irn;
296                                 break;
297                         case iro_Load:
298                                 key.mode = get_Load_mode(irn);
299                                 break;
300                         case iro_Builtin:
301                                 key.u.intVal = get_Builtin_kind(irn);
302                                 break;
303                         default:
304                                 break;
305                         }
306                         first = 0;
307                 } else {
308                         assert((unsigned)key.code  == get_irn_opcode(irn));
309                         assert(key.mode  == get_irn_mode(irn));
310                         assert(key.arity == get_irn_arity(irn));
311
312                         switch (get_irn_opcode(irn)) {
313                         case iro_Proj:
314                                 assert(key.u.proj == get_Proj_proj(irn));
315                                 break;
316                         case iro_Sel:
317                                 assert(key.u.ent == get_Sel_entity(irn));
318                                 break;
319                         case iro_Conv:
320                                 assert(key.u.intVal == get_Conv_strict(irn));
321                                 break;
322                         case iro_Div:
323                                 assert(key.u.intVal == get_Div_no_remainder(irn));
324                                 break;
325                         case iro_Block:
326                                 assert(key.u.block == irn);
327                                 break;
328                         case iro_Load:
329                                 assert(key.mode == get_Load_mode(irn));
330                                 break;
331                         case iro_Builtin:
332                                 assert(key.u.intVal == (int) get_Builtin_kind(irn));
333                                 break;
334                         default:
335                                 break;
336                         }
337                 }
338         }
339 }  /* check_opcode */
340
341 static void check_all_partitions(environment_t *env)
342 {
343 #ifdef DEBUG_libfirm
344         partition_t *P;
345         node_t      *node;
346
347         for (P = env->dbg_list; P != NULL; P = P->dbg_next) {
348                 check_partition(P);
349                 if (! P->type_is_T_or_C)
350                         check_opcode(P);
351                 list_for_each_entry(node_t, node, &P->Follower, node_list) {
352                         node_t *leader = identity(node);
353
354                         assert(leader != node && leader->part == node->part);
355                 }
356         }
357 #else
358         (void) env;
359 #endif
360 }
361
362 /**
363  * Check list.
364  */
365 static void do_check_list(const node_t *list, int ofs, const partition_t *Z)
366 {
367
368 #ifndef NDEBUG
369         const node_t *e;
370 #define NEXT(e)  *((const node_t **)((char *)(e) + (ofs)))
371         for (e = list; e != NULL; e = NEXT(e)) {
372                 assert(e->part == Z);
373         }
374 #undef NEXT
375 #else
376         (void) list;
377         (void) ofs;
378         (void) Z;
379 #endif
380 }  /* ido_check_list */
381
382 /**
383  * Check a local list.
384  */
385 static void check_list(const node_t *list, const partition_t *Z)
386 {
387         do_check_list(list, offsetof(node_t, next), Z);
388 }  /* check_list */
389
390 #else
391 #define check_partition(T)
392 #define check_list(list, Z)
393 #define check_all_partitions(env)
394 #endif /* CHECK_PARTITIONS */
395
396 #ifdef DEBUG_libfirm
397 static inline lattice_elem_t get_partition_type(const partition_t *X);
398
399 /**
400  * Dump partition to output.
401  */
402 static void dump_partition(const char *msg, const partition_t *part)
403 {
404         const node_t   *node;
405         int            first = 1;
406         lattice_elem_t type = get_partition_type(part);
407
408         DB((dbg, LEVEL_2, "%s part%u%s (%u, %+F) {\n  ",
409                 msg, part->nr, part->type_is_T_or_C ? "*" : "",
410                 part->n_leader, type));
411         list_for_each_entry(node_t, node, &part->Leader, node_list) {
412                 DB((dbg, LEVEL_2, "%s%+F", first ? "" : ", ", node->node));
413                 first = 0;
414         }
415         if (! list_empty(&part->Follower)) {
416                 DB((dbg, LEVEL_2, "\n---\n  "));
417                 first = 1;
418                 list_for_each_entry(node_t, node, &part->Follower, node_list) {
419                         DB((dbg, LEVEL_2, "%s%+F", first ? "" : ", ", node->node));
420                         first = 0;
421                 }
422         }
423         DB((dbg, LEVEL_2, "\n}\n"));
424 }  /* dump_partition */
425
426 /**
427  * Dumps a list.
428  */
429 static void do_dump_list(const char *msg, const node_t *node, int ofs)
430 {
431         const node_t *p;
432         int          first = 1;
433
434 #define GET_LINK(p, ofs)  *((const node_t **)((char *)(p) + (ofs)))
435
436         DB((dbg, LEVEL_3, "%s = {\n  ", msg));
437         for (p = node; p != NULL; p = GET_LINK(p, ofs)) {
438                 DB((dbg, LEVEL_3, "%s%+F", first ? "" : ", ", p->node));
439                 first = 0;
440         }
441         DB((dbg, LEVEL_3, "\n}\n"));
442
443 #undef GET_LINK
444 }  /* do_dump_list */
445
446 /**
447  * Dumps a race list.
448  */
449 static void dump_race_list(const char *msg, const node_t *list)
450 {
451         do_dump_list(msg, list, offsetof(node_t, race_next));
452 }  /* dump_race_list */
453
454 /**
455  * Dumps a local list.
456  */
457 static void dump_list(const char *msg, const node_t *list)
458 {
459         do_dump_list(msg, list, offsetof(node_t, next));
460 }  /* dump_list */
461
462 /**
463  * Dump all partitions.
464  */
465 static void dump_all_partitions(const environment_t *env)
466 {
467         const partition_t *P;
468
469         DB((dbg, LEVEL_2, "All partitions\n===============\n"));
470         for (P = env->dbg_list; P != NULL; P = P->dbg_next)
471                 dump_partition("", P);
472 }  /* dump_all_partitions */
473
474 /**
475  * Sump a split list.
476  */
477 static void dump_split_list(const partition_t *list)
478 {
479         const partition_t *p;
480
481         DB((dbg, LEVEL_2, "Split by %s produced = {\n", what_reason));
482         for (p = list; p != NULL; p = p->split_next)
483                 DB((dbg, LEVEL_2, "part%u, ", p->nr));
484         DB((dbg, LEVEL_2, "\n}\n"));
485 }  /* dump_split_list */
486
487 /**
488  * Dump partition and type for a node.
489  */
490 static int dump_partition_hook(FILE *F, ir_node *n, ir_node *local)
491 {
492         ir_node *irn = local != NULL ? local : n;
493         node_t *node = get_irn_node(irn);
494
495         ir_fprintf(F, "info2 : \"partition %u type %+F\"\n", node->part->nr, node->type);
496         return 1;
497 }  /* dump_partition_hook */
498
499 #else
500 #define dump_partition(msg, part)
501 #define dump_race_list(msg, list)
502 #define dump_list(msg, list)
503 #define dump_all_partitions(env)
504 #define dump_split_list(list)
505 #endif
506
507 #if defined(VERIFY_MONOTONE) && defined (DEBUG_libfirm)
508 /**
509  * Verify that a type transition is monotone
510  */
511 static void verify_type(const lattice_elem_t old_type, node_t *node)
512 {
513         if (old_type.tv == node->type.tv) {
514                 /* no change */
515                 return;
516         }
517         if (old_type.tv == tarval_top) {
518                 /* from Top down-to is always allowed */
519                 return;
520         }
521         if (node->type.tv == tarval_bottom || node->type.tv == tarval_reachable) {
522                 /* bottom reached */
523                 return;
524         }
525         panic("combo: wrong translation from %+F to %+F on node %+F", old_type, node->type, node->node);
526 }  /* verify_type */
527
528 #else
529 #define verify_type(old_type, node)
530 #endif
531
532 /**
533  * Compare two pointer values of a listmap.
534  */
535 static int listmap_cmp_ptr(const void *elt, const void *key, size_t size)
536 {
537         const listmap_entry_t *e1 = elt;
538         const listmap_entry_t *e2 = key;
539
540         (void) size;
541         return e1->id != e2->id;
542 }  /* listmap_cmp_ptr */
543
544 /**
545  * Initializes a listmap.
546  *
547  * @param map  the listmap
548  */
549 static void listmap_init(listmap_t *map)
550 {
551         map->map    = new_set(listmap_cmp_ptr, 16);
552         map->values = NULL;
553 }  /* listmap_init */
554
555 /**
556  * Terminates a listmap.
557  *
558  * @param map  the listmap
559  */
560 static void listmap_term(listmap_t *map)
561 {
562         del_set(map->map);
563 }  /* listmap_term */
564
565 /**
566  * Return the associated listmap entry for a given id.
567  *
568  * @param map  the listmap
569  * @param id   the id to search for
570  *
571  * @return the associated listmap entry for the given id
572  */
573 static listmap_entry_t *listmap_find(listmap_t *map, void *id)
574 {
575         listmap_entry_t key, *entry;
576
577         key.id   = id;
578         key.list = NULL;
579         key.next = NULL;
580         entry = set_insert(map->map, &key, sizeof(key), HASH_PTR(id));
581
582         if (entry->list == NULL) {
583                 /* a new entry, put into the list */
584                 entry->next = map->values;
585                 map->values = entry;
586         }
587         return entry;
588 }  /* listmap_find */
589
590 /**
591  * Calculate the hash value for an opcode map entry.
592  *
593  * @param entry  an opcode map entry
594  *
595  * @return a hash value for the given opcode map entry
596  */
597 static unsigned opcode_hash(const opcode_key_t *entry)
598 {
599         return (entry->mode - (ir_mode *)0) * 9 + entry->code + entry->u.proj * 3 + HASH_PTR(entry->u.ptr) + entry->arity;
600 }  /* opcode_hash */
601
602 /**
603  * Compare two entries in the opcode map.
604  */
605 static int cmp_opcode(const void *elt, const void *key, size_t size)
606 {
607         const opcode_key_t *o1 = elt;
608         const opcode_key_t *o2 = key;
609
610         (void) size;
611         return o1->code != o2->code || o1->mode != o2->mode ||
612                o1->arity != o2->arity ||
613                o1->u.proj != o2->u.proj ||
614                o1->u.intVal != o2->u.intVal || /* this already checks uIntVal */
615                o1->u.ptr != o2->u.ptr;
616 }  /* cmp_opcode */
617
618 /**
619  * Compare two Def-Use edges for input position.
620  */
621 static int cmp_def_use_edge(const void *a, const void *b)
622 {
623         const ir_def_use_edge *ea = a;
624         const ir_def_use_edge *eb = b;
625
626         /* no overrun, because range is [-1, MAXINT] */
627         return ea->pos - eb->pos;
628 }  /* cmp_def_use_edge */
629
630 /**
631  * We need the Def-Use edges sorted.
632  */
633 static void sort_irn_outs(node_t *node)
634 {
635         ir_node *irn = node->node;
636         int n_outs = get_irn_n_outs(irn);
637
638         if (n_outs > 1) {
639                 qsort(&irn->out[1], n_outs, sizeof(irn->out[0]), cmp_def_use_edge);
640         }
641         node->max_user_input = irn->out[n_outs].pos;
642 }  /* sort_irn_outs */
643
644 /**
645  * Return the type of a node.
646  *
647  * @param irn  an IR-node
648  *
649  * @return the associated type of this node
650  */
651 static inline lattice_elem_t get_node_type(const ir_node *irn)
652 {
653         return get_irn_node(irn)->type;
654 }  /* get_node_type */
655
656 /**
657  * Return the tarval of a node.
658  *
659  * @param irn  an IR-node
660  *
661  * @return the associated type of this node
662  */
663 static inline tarval *get_node_tarval(const ir_node *irn)
664 {
665         lattice_elem_t type = get_node_type(irn);
666
667         if (is_tarval(type.tv))
668                 return type.tv;
669         return tarval_bottom;
670 }  /* get_node_type */
671
672 /**
673  * Add a partition to the worklist.
674  */
675 static inline void add_to_worklist(partition_t *X, environment_t *env)
676 {
677         assert(X->on_worklist == 0);
678         DB((dbg, LEVEL_2, "Adding part%d to worklist\n", X->nr));
679         X->wl_next     = env->worklist;
680         X->on_worklist = 1;
681         env->worklist  = X;
682 }  /* add_to_worklist */
683
684 /**
685  * Create a new empty partition.
686  *
687  * @param env   the environment
688  *
689  * @return a newly allocated partition
690  */
691 static inline partition_t *new_partition(environment_t *env)
692 {
693         partition_t *part = OALLOC(&env->obst, partition_t);
694
695         INIT_LIST_HEAD(&part->Leader);
696         INIT_LIST_HEAD(&part->Follower);
697         INIT_LIST_HEAD(&part->cprop);
698         INIT_LIST_HEAD(&part->cprop_X);
699         part->wl_next         = NULL;
700         part->touched_next    = NULL;
701         part->cprop_next      = NULL;
702         part->split_next      = NULL;
703         part->touched         = NULL;
704         part->n_leader        = 0;
705         part->n_touched       = 0;
706         part->max_user_inputs = 0;
707         part->on_worklist     = 0;
708         part->on_touched      = 0;
709         part->on_cprop        = 0;
710         part->type_is_T_or_C  = 0;
711 #ifdef DEBUG_libfirm
712         part->dbg_next        = env->dbg_list;
713         env->dbg_list         = part;
714         part->nr              = part_nr++;
715 #endif
716
717         return part;
718 }  /* new_partition */
719
720 /**
721  * Get the first node from a partition.
722  */
723 static inline node_t *get_first_node(const partition_t *X)
724 {
725         return list_entry(X->Leader.next, node_t, node_list);
726 }  /* get_first_node */
727
728 /**
729  * Return the type of a partition (assuming partition is non-empty and
730  * all elements have the same type).
731  *
732  * @param X  a partition
733  *
734  * @return the type of the first element of the partition
735  */
736 static inline lattice_elem_t get_partition_type(const partition_t *X)
737 {
738         const node_t *first = get_first_node(X);
739         return first->type;
740 }  /* get_partition_type */
741
742 /**
743  * Creates a partition node for the given IR-node and place it
744  * into the given partition.
745  *
746  * @param irn   an IR-node
747  * @param part  a partition to place the node in
748  * @param env   the environment
749  *
750  * @return the created node
751  */
752 static node_t *create_partition_node(ir_node *irn, partition_t *part, environment_t *env)
753 {
754         /* create a partition node and place it in the partition */
755         node_t *node = OALLOC(&env->obst, node_t);
756
757         INIT_LIST_HEAD(&node->node_list);
758         INIT_LIST_HEAD(&node->cprop_list);
759         node->node           = irn;
760         node->part           = part;
761         node->next           = NULL;
762         node->race_next      = NULL;
763         node->type.tv        = tarval_top;
764         node->max_user_input = 0;
765         node->next_edge      = 0;
766         node->n_followers    = 0;
767         node->on_touched     = 0;
768         node->on_cprop       = 0;
769         node->on_fallen      = 0;
770         node->is_follower    = 0;
771         node->flagged        = 0;
772         set_irn_node(irn, node);
773
774         list_add_tail(&node->node_list, &part->Leader);
775         ++part->n_leader;
776
777         return node;
778 }  /* create_partition_node */
779
780 /**
781  * Pre-Walker, initialize all Nodes' type to U or top and place
782  * all nodes into the TOP partition.
783  */
784 static void create_initial_partitions(ir_node *irn, void *ctx)
785 {
786         environment_t *env  = ctx;
787         partition_t   *part = env->initial;
788         node_t        *node;
789
790         node = create_partition_node(irn, part, env);
791         sort_irn_outs(node);
792         if (node->max_user_input > part->max_user_inputs)
793                 part->max_user_inputs = node->max_user_input;
794
795         if (is_Block(irn)) {
796                 set_Block_phis(irn, NULL);
797         }
798 }  /* create_initial_partitions */
799
800 /**
801  * Post-Walker, collect  all Block-Phi lists, set Cond.
802  */
803 static void init_block_phis(ir_node *irn, void *ctx)
804 {
805         (void) ctx;
806
807         if (is_Phi(irn)) {
808                 add_Block_phi(get_nodes_block(irn), irn);
809         }
810 }  /* init_block_phis */
811
812 /**
813  * Add a node to the entry.partition.touched set and
814  * node->partition to the touched set if not already there.
815  *
816  * @param y    a node
817  * @param env  the environment
818  */
819 static inline void add_to_touched(node_t *y, environment_t *env)
820 {
821         if (y->on_touched == 0) {
822                 partition_t *part = y->part;
823
824                 y->next       = part->touched;
825                 part->touched = y;
826                 y->on_touched = 1;
827                 ++part->n_touched;
828
829                 if (part->on_touched == 0) {
830                         part->touched_next = env->touched;
831                         env->touched       = part;
832                         part->on_touched   = 1;
833                 }
834
835                 check_list(part->touched, part);
836         }
837 }  /* add_to_touched */
838
839 /**
840  * Place a node on the cprop list.
841  *
842  * @param y    the node
843  * @param env  the environment
844  */
845 static void add_to_cprop(node_t *y, environment_t *env)
846 {
847         ir_node *irn;
848
849         /* Add y to y.partition.cprop. */
850         if (y->on_cprop == 0) {
851                 partition_t *Y = y->part;
852                 ir_node *irn   = y->node;
853
854                 /* place Conds and all its Projs on the cprop_X list */
855                 if (is_Cond(skip_Proj(irn)))
856                         list_add_tail(&y->cprop_list, &Y->cprop_X);
857                 else
858                         list_add_tail(&y->cprop_list, &Y->cprop);
859                 y->on_cprop   = 1;
860
861                 DB((dbg, LEVEL_3, "Add %+F to part%u.cprop\n", y->node, Y->nr));
862
863                 /* place its partition on the cprop list */
864                 if (Y->on_cprop == 0) {
865                         Y->cprop_next = env->cprop;
866                         env->cprop    = Y;
867                         Y->on_cprop   = 1;
868                 }
869         }
870         irn = y->node;
871         if (get_irn_mode(irn) == mode_T) {
872                 /* mode_T nodes always produce tarval_bottom, so we must explicitly
873                    add it's Proj's to get constant evaluation to work */
874                 int i;
875
876                 for (i = get_irn_n_outs(irn) - 1; i >= 0; --i) {
877                         node_t *proj = get_irn_node(get_irn_out(irn, i));
878
879                         add_to_cprop(proj, env);
880                 }
881         } else if (is_Block(irn)) {
882                 /* Due to the way we handle Phi's, we must place all Phis of a block on the list
883                  * if someone placed the block. The Block is only placed if the reachability
884                  * changes, and this must be re-evaluated in compute_Phi(). */
885                 ir_node *phi;
886                 for (phi = get_Block_phis(irn); phi != NULL; phi = get_Phi_next(phi)) {
887                         node_t *p = get_irn_node(phi);
888                         add_to_cprop(p, env);
889                 }
890         }
891 }  /* add_to_cprop */
892
893 /**
894  * Update the worklist: If Z is on worklist then add Z' to worklist.
895  * Else add the smaller of Z and Z' to worklist.
896  *
897  * @param Z        the Z partition
898  * @param Z_prime  the Z' partition, a previous part of Z
899  * @param env      the environment
900  */
901 static void update_worklist(partition_t *Z, partition_t *Z_prime, environment_t *env)
902 {
903         if (Z->on_worklist || Z_prime->n_leader < Z->n_leader) {
904                 add_to_worklist(Z_prime, env);
905         } else {
906                 add_to_worklist(Z, env);
907         }
908 }  /* update_worklist */
909
910 /**
911  * Make all inputs to x no longer be F.def_use edges.
912  *
913  * @param x  the node
914  */
915 static void move_edges_to_leader(node_t *x)
916 {
917         ir_node     *irn = x->node;
918         int         i, j, k;
919
920         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
921                 node_t  *pred = get_irn_node(get_irn_n(irn, i));
922                 ir_node *p;
923                 int     n;
924
925                 p = pred->node;
926                 n = get_irn_n_outs(p);
927                 for (j = 1; j <= pred->n_followers; ++j) {
928                         if (p->out[j].pos == i && p->out[j].use == irn) {
929                                 /* found a follower edge to x, move it to the Leader */
930                                 ir_def_use_edge edge = p->out[j];
931
932                                 /* remove this edge from the Follower set */
933                                 p->out[j] = p->out[pred->n_followers];
934                                 --pred->n_followers;
935
936                                 /* sort it into the leader set */
937                                 for (k = pred->n_followers + 2; k <= n; ++k) {
938                                         if (p->out[k].pos >= edge.pos)
939                                                 break;
940                                         p->out[k - 1] = p->out[k];
941                                 }
942                                 /* place the new edge here */
943                                 p->out[k - 1] = edge;
944
945                                 /* edge found and moved */
946                                 break;
947                         }
948                 }
949         }
950 }  /* move_edges_to_leader */
951
952 /**
953  * Split a partition that has NO followers by a local list.
954  *
955  * @param Z    partition to split
956  * @param g    a (non-empty) node list
957  * @param env  the environment
958  *
959  * @return  a new partition containing the nodes of g
960  */
961 static partition_t *split_no_followers(partition_t *Z, node_t *g, environment_t *env)
962 {
963         partition_t *Z_prime;
964         node_t      *node;
965         unsigned    n = 0;
966         int         max_input;
967
968         dump_partition("Splitting ", Z);
969         dump_list("by list ", g);
970
971         assert(g != NULL);
972
973         /* Remove g from Z. */
974         for (node = g; node != NULL; node = node->next) {
975                 assert(node->part == Z);
976                 list_del(&node->node_list);
977                 ++n;
978         }
979         assert(n < Z->n_leader);
980         Z->n_leader -= n;
981
982         /* Move g to a new partition, Z'. */
983         Z_prime = new_partition(env);
984         max_input = 0;
985         for (node = g; node != NULL; node = node->next) {
986                 list_add_tail(&node->node_list, &Z_prime->Leader);
987                 node->part = Z_prime;
988                 if (node->max_user_input > max_input)
989                         max_input = node->max_user_input;
990         }
991         Z_prime->max_user_inputs = max_input;
992         Z_prime->n_leader        = n;
993
994         check_partition(Z);
995         check_partition(Z_prime);
996
997         /* for now, copy the type info tag, it will be adjusted in split_by(). */
998         Z_prime->type_is_T_or_C = Z->type_is_T_or_C;
999
1000         update_worklist(Z, Z_prime, env);
1001
1002         dump_partition("Now ", Z);
1003         dump_partition("Created new ", Z_prime);
1004         return Z_prime;
1005 }  /* split_no_followers */
1006
1007 /**
1008  * Make the Follower -> Leader transition for a node.
1009  *
1010  * @param n  the node
1011  */
1012 static void follower_to_leader(node_t *n)
1013 {
1014         assert(n->is_follower == 1);
1015
1016         DB((dbg, LEVEL_2, "%+F make the follower -> leader transition\n", n->node));
1017         n->is_follower = 0;
1018         move_edges_to_leader(n);
1019         list_del(&n->node_list);
1020         list_add_tail(&n->node_list, &n->part->Leader);
1021         ++n->part->n_leader;
1022 }  /* follower_to_leader */
1023
1024 /**
1025  * The environment for one race step.
1026  */
1027 typedef struct step_env {
1028         node_t   *initial;    /**< The initial node list. */
1029         node_t   *unwalked;   /**< The unwalked node list. */
1030         node_t   *walked;     /**< The walked node list. */
1031         int      index;       /**< Next index of Follower use_def edge. */
1032         unsigned side;        /**< side number. */
1033 } step_env;
1034
1035 /**
1036  * Return non-zero, if a input is a real follower
1037  *
1038  * @param irn    the node to check
1039  * @param input  number of the input
1040  */
1041 static int is_real_follower(const ir_node *irn, int input)
1042 {
1043         node_t *pred;
1044
1045         switch (get_irn_opcode(irn)) {
1046         case iro_Confirm:
1047                 if (input == 1) {
1048                         /* ignore the Confirm bound input */
1049                         return 0;
1050                 }
1051                 break;
1052         case iro_Mux:
1053                 if (input == 0) {
1054                         /* ignore the Mux sel input */
1055                         return 0;
1056                 }
1057                 break;
1058         case iro_Phi: {
1059                 /* dead inputs are not follower edges */
1060                 ir_node *block = get_nodes_block(irn);
1061                 node_t  *pred  = get_irn_node(get_Block_cfgpred(block, input));
1062
1063                 if (pred->type.tv == tarval_unreachable)
1064                         return 0;
1065                 break;
1066         }
1067         case iro_Sub:
1068         case iro_Shr:
1069         case iro_Shl:
1070         case iro_Shrs:
1071         case iro_Rotl:
1072                 if (input == 1) {
1073                         /* only a Sub x,0 / Shift x,0 might be a follower */
1074                         return 0;
1075                 }
1076                 break;
1077         case iro_Add:
1078         case iro_Or:
1079         case iro_Eor:
1080                 pred = get_irn_node(get_irn_n(irn, input));
1081                 if (is_tarval(pred->type.tv) && tarval_is_null(pred->type.tv))
1082                         return 0;
1083                 break;
1084         case iro_Mul:
1085                 pred = get_irn_node(get_irn_n(irn, input));
1086                 if (is_tarval(pred->type.tv) && tarval_is_one(pred->type.tv))
1087                         return 0;
1088                 break;
1089         case iro_And:
1090                 pred = get_irn_node(get_irn_n(irn, input));
1091                 if (is_tarval(pred->type.tv) && tarval_is_all_one(pred->type.tv))
1092                         return 0;
1093                 break;
1094         default:
1095                 assert(!"opcode not implemented yet");
1096                 break;
1097         }
1098         return 1;
1099 }  /* is_real_follower */
1100
1101 /**
1102  * Do one step in the race.
1103  */
1104 static int step(step_env *env)
1105 {
1106         node_t *n;
1107
1108         if (env->initial != NULL) {
1109                 /* Move node from initial to unwalked */
1110                 n             = env->initial;
1111                 env->initial  = n->race_next;
1112
1113                 n->race_next  = env->unwalked;
1114                 env->unwalked = n;
1115
1116                 return 0;
1117         }
1118
1119         while (env->unwalked != NULL) {
1120                 /* let n be the first node in unwalked */
1121                 n = env->unwalked;
1122                 while (env->index < n->n_followers) {
1123                         const ir_def_use_edge *edge = &n->node->out[1 + env->index];
1124
1125                         /* let m be n.F.def_use[index] */
1126                         node_t *m = get_irn_node(edge->use);
1127
1128                         assert(m->is_follower);
1129                         /*
1130                          * Some inputs, like the get_Confirm_bound are NOT
1131                          * real followers, sort them out.
1132                          */
1133                         if (! is_real_follower(m->node, edge->pos)) {
1134                                 ++env->index;
1135                                 continue;
1136                         }
1137                         ++env->index;
1138
1139                         /* only followers from our partition */
1140                         if (m->part != n->part)
1141                                 continue;
1142
1143                         if ((m->flagged & env->side) == 0) {
1144                                 m->flagged |= env->side;
1145
1146                                 if (m->flagged != 3) {
1147                                         /* visited the first time */
1148                                         /* add m to unwalked not as first node (we might still need to
1149                                            check for more follower node */
1150                                         m->race_next = n->race_next;
1151                                         n->race_next = m;
1152                                         return 0;
1153                                 }
1154                                 /* else already visited by the other side and on the other list */
1155                         }
1156                 }
1157                 /* move n to walked */
1158                 env->unwalked = n->race_next;
1159                 n->race_next  = env->walked;
1160                 env->walked   = n;
1161                 env->index    = 0;
1162         }
1163         return 1;
1164 }  /* step */
1165
1166 /**
1167  * Clear the flags from a list and check for
1168  * nodes that where touched from both sides.
1169  *
1170  * @param list  the list
1171  */
1172 static int clear_flags(node_t *list)
1173 {
1174         int    res = 0;
1175         node_t *n;
1176
1177         for (n = list; n != NULL; n = n->race_next) {
1178                 if (n->flagged == 3) {
1179                         /* we reach a follower from both sides, this will split congruent
1180                          * inputs and make it a leader. */
1181                         follower_to_leader(n);
1182                         res = 1;
1183                 }
1184                 n->flagged = 0;
1185         }
1186         return res;
1187 }  /* clear_flags */
1188
1189 /**
1190  * Split a partition by a local list using the race.
1191  *
1192  * @param pX   pointer to the partition to split, might be changed!
1193  * @param gg   a (non-empty) node list
1194  * @param env  the environment
1195  *
1196  * @return  a new partition containing the nodes of gg
1197  */
1198 static partition_t *split(partition_t **pX, node_t *gg, environment_t *env)
1199 {
1200         partition_t *X = *pX;
1201         partition_t *X_prime;
1202         list_head   tmp;
1203         step_env    senv[2];
1204         node_t      *g, *h, *node, *t;
1205         int         max_input, transitions, winner, shf;
1206         unsigned    n;
1207         DEBUG_ONLY(static int run = 0;)
1208
1209         DB((dbg, LEVEL_2, "Run %d ", run++));
1210         if (list_empty(&X->Follower)) {
1211                 /* if the partition has NO follower, we can use the fast
1212                    splitting algorithm. */
1213                 return split_no_followers(X, gg, env);
1214         }
1215         /* else do the race */
1216
1217         dump_partition("Splitting ", X);
1218         dump_list("by list ", gg);
1219
1220         INIT_LIST_HEAD(&tmp);
1221
1222         /* Remove gg from X.Leader and put into g */
1223         g = NULL;
1224         for (node = gg; node != NULL; node = node->next) {
1225                 assert(node->part == X);
1226                 assert(node->is_follower == 0);
1227
1228                 list_del(&node->node_list);
1229                 list_add_tail(&node->node_list, &tmp);
1230                 node->race_next = g;
1231                 g               = node;
1232         }
1233         /* produce h */
1234         h = NULL;
1235         list_for_each_entry(node_t, node, &X->Leader, node_list) {
1236                 node->race_next = h;
1237                 h               = node;
1238         }
1239         /* restore X.Leader */
1240         list_splice(&tmp, &X->Leader);
1241
1242         senv[0].initial   = g;
1243         senv[0].unwalked  = NULL;
1244         senv[0].walked    = NULL;
1245         senv[0].index     = 0;
1246         senv[0].side      = 1;
1247
1248         senv[1].initial   = h;
1249         senv[1].unwalked  = NULL;
1250         senv[1].walked    = NULL;
1251         senv[1].index     = 0;
1252         senv[1].side      = 2;
1253
1254         /*
1255          * Some informations on the race that are not stated clearly in Click's
1256          * thesis.
1257          * 1) A follower stays on the side that reach him first.
1258          * 2) If the other side reches a follower, if will be converted to
1259          *    a leader. /This must be done after the race is over, else the
1260          *    edges we are iterating on are renumbered./
1261          * 3) /New leader might end up on both sides./
1262          * 4) /If one side ends up with new Leaders, we must ensure that
1263          *    they can split out by opcode, hence we have to put _every_
1264          *    partition with new Leader nodes on the cprop list, as
1265          *    opcode splitting is done by split_by() at the end of
1266          *    constant propagation./
1267          */
1268         for (;;) {
1269                 if (step(&senv[0])) {
1270                         winner = 0;
1271                         break;
1272                 }
1273                 if (step(&senv[1])) {
1274                         winner = 1;
1275                         break;
1276                 }
1277         }
1278         assert(senv[winner].initial == NULL);
1279         assert(senv[winner].unwalked == NULL);
1280
1281         /* clear flags from walked/unwalked */
1282         shf = winner;
1283         transitions  = clear_flags(senv[0].unwalked) << shf;
1284         transitions |= clear_flags(senv[0].walked)   << shf;
1285         shf ^= 1;
1286         transitions |= clear_flags(senv[1].unwalked) << shf;
1287         transitions |= clear_flags(senv[1].walked)   << shf;
1288
1289         dump_race_list("winner ", senv[winner].walked);
1290
1291         /* Move walked_{winner} to a new partition, X'. */
1292         X_prime   = new_partition(env);
1293         max_input = 0;
1294         n         = 0;
1295         for (node = senv[winner].walked; node != NULL; node = node->race_next) {
1296                 list_del(&node->node_list);
1297                 node->part = X_prime;
1298                 if (node->is_follower) {
1299                         list_add_tail(&node->node_list, &X_prime->Follower);
1300                 } else {
1301                         list_add_tail(&node->node_list, &X_prime->Leader);
1302                         ++n;
1303                 }
1304                 if (node->max_user_input > max_input)
1305                         max_input = node->max_user_input;
1306         }
1307         X_prime->n_leader        = n;
1308         X_prime->max_user_inputs = max_input;
1309         X->n_leader             -= X_prime->n_leader;
1310
1311         /* for now, copy the type info tag, it will be adjusted in split_by(). */
1312         X_prime->type_is_T_or_C = X->type_is_T_or_C;
1313
1314         /*
1315          * Even if a follower was not checked by both sides, it might have
1316          * loose its congruence, so we need to check this case for all follower.
1317          */
1318         list_for_each_entry_safe(node_t, node, t, &X_prime->Follower, node_list) {
1319                 if (identity(node) == node) {
1320                         follower_to_leader(node);
1321                         transitions |= 1;
1322                 }
1323         }
1324
1325         check_partition(X);
1326         check_partition(X_prime);
1327
1328         /* X' is the smaller part */
1329         add_to_worklist(X_prime, env);
1330
1331         /*
1332          * If there where follower to leader transitions, ensure that the nodes
1333          * can be split out if necessary.
1334          */
1335         if (transitions & 1) {
1336                 /* place winner partition on the cprop list */
1337                 if (X_prime->on_cprop == 0) {
1338                         X_prime->cprop_next = env->cprop;
1339                         env->cprop          = X_prime;
1340                         X_prime->on_cprop   = 1;
1341                 }
1342         }
1343         if (transitions & 2) {
1344                 /* place other partition on the cprop list */
1345                 if (X->on_cprop == 0) {
1346                         X->cprop_next = env->cprop;
1347                         env->cprop    = X;
1348                         X->on_cprop   = 1;
1349                 }
1350         }
1351
1352         dump_partition("Now ", X);
1353         dump_partition("Created new ", X_prime);
1354
1355         /* we have to ensure that the partition containing g is returned */
1356         if (winner != 0) {
1357                 *pX = X_prime;
1358                 return X;
1359         }
1360
1361         return X_prime;
1362 }  /* split */
1363
1364 /**
1365  * Returns non-zero if the i'th input of a Phi node is live.
1366  *
1367  * @param phi  a Phi-node
1368  * @param i    an input number
1369  *
1370  * @return non-zero if the i'th input of the given Phi node is live
1371  */
1372 static int is_live_input(ir_node *phi, int i)
1373 {
1374         if (i >= 0) {
1375                 ir_node        *block = get_nodes_block(phi);
1376                 ir_node        *pred  = get_Block_cfgpred(block, i);
1377                 lattice_elem_t type   = get_node_type(pred);
1378
1379                 return type.tv != tarval_unreachable;
1380         }
1381         /* else it's the control input, always live */
1382         return 1;
1383 }  /* is_live_input */
1384
1385 /**
1386  * Return non-zero if a type is a constant.
1387  */
1388 static int is_constant_type(lattice_elem_t type)
1389 {
1390         if (type.tv != tarval_bottom && type.tv != tarval_top)
1391                 return 1;
1392         return 0;
1393 }  /* is_constant_type */
1394
1395 /**
1396  * Check whether a type is neither Top or a constant.
1397  * Note: U is handled like Top here, R is a constant.
1398  *
1399  * @param type  the type to check
1400  */
1401 static int type_is_neither_top_nor_const(const lattice_elem_t type)
1402 {
1403         if (is_tarval(type.tv)) {
1404                 if (type.tv == tarval_top)
1405                         return 0;
1406                 if (tarval_is_constant(type.tv))
1407                         return 0;
1408         } else {
1409                 /* is a symconst */
1410                 return 0;
1411         }
1412         return 1;
1413 }  /* type_is_neither_top_nor_const */
1414
1415 /**
1416  * Collect nodes to the touched list.
1417  *
1418  * @param list  the list which contains the nodes that must be evaluated
1419  * @param idx   the index of the def_use edge to evaluate
1420  * @param env   the environment
1421  */
1422 static void collect_touched(list_head *list, int idx, environment_t *env)
1423 {
1424         node_t  *x, *y;
1425         int     end_idx = env->end_idx;
1426
1427         list_for_each_entry(node_t, x, list, node_list) {
1428                 int num_edges;
1429
1430                 if (idx == -1) {
1431                         /* leader edges start AFTER follower edges */
1432                         x->next_edge = x->n_followers + 1;
1433                 }
1434                 num_edges = get_irn_n_outs(x->node);
1435
1436                 /* for all edges in x.L.def_use_{idx} */
1437                 while (x->next_edge <= num_edges) {
1438                         const ir_def_use_edge *edge = &x->node->out[x->next_edge];
1439                         ir_node               *succ;
1440
1441                         /* check if we have necessary edges */
1442                         if (edge->pos > idx)
1443                                 break;
1444
1445                         ++x->next_edge;
1446
1447                         succ = edge->use;
1448
1449                         /* only non-commutative nodes */
1450                         if (env->commutative &&
1451                             (idx == 0 || idx == 1) && is_op_commutative(get_irn_op(succ)))
1452                                 continue;
1453
1454                         /* ignore the "control input" for non-pinned nodes
1455                         if we are running in GCSE mode */
1456                         if (idx < end_idx && get_irn_pinned(succ) != op_pin_state_pinned)
1457                                 continue;
1458
1459                         y = get_irn_node(succ);
1460                         assert(get_irn_n(succ, idx) == x->node);
1461
1462                         /* ignore block edges touching followers */
1463                         if (idx == -1 && y->is_follower)
1464                                 continue;
1465
1466                         if (is_constant_type(y->type)) {
1467                                 ir_opcode code = get_irn_opcode(succ);
1468                                 if (code == iro_Sub || code == iro_Cmp)
1469                                         add_to_cprop(y, env);
1470                         }
1471
1472                         /* Partitions of constants should not be split simply because their Nodes have unequal
1473                            functions or incongruent inputs. */
1474                         if (type_is_neither_top_nor_const(y->type) &&
1475                                 (! is_Phi(y->node) || is_live_input(y->node, idx))) {
1476                                         add_to_touched(y, env);
1477                         }
1478                 }
1479         }
1480 }  /* collect_touched */
1481
1482 /**
1483  * Collect commutative nodes to the touched list.
1484  *
1485  * @param list  the list which contains the nodes that must be evaluated
1486  * @param env   the environment
1487  */
1488 static void collect_commutative_touched(list_head *list, environment_t *env)
1489 {
1490         node_t  *x, *y;
1491
1492         list_for_each_entry(node_t, x, list, node_list) {
1493                 int num_edges;
1494
1495                 num_edges = get_irn_n_outs(x->node);
1496
1497                 x->next_edge = x->n_followers + 1;
1498
1499                 /* for all edges in x.L.def_use_{idx} */
1500                 while (x->next_edge <= num_edges) {
1501                         const ir_def_use_edge *edge = &x->node->out[x->next_edge];
1502                         ir_node               *succ;
1503
1504                         /* check if we have necessary edges */
1505                         if (edge->pos > 1)
1506                                 break;
1507
1508                         ++x->next_edge;
1509                         if (edge->pos < 0)
1510                                 continue;
1511
1512                         succ = edge->use;
1513
1514                         /* only commutative nodes */
1515                         if (!is_op_commutative(get_irn_op(succ)))
1516                                 continue;
1517
1518                         y = get_irn_node(succ);
1519                         if (is_constant_type(y->type)) {
1520                                 ir_opcode code = get_irn_opcode(succ);
1521                                 if (code == iro_Eor)
1522                                         add_to_cprop(y, env);
1523                         }
1524
1525                         /* Partitions of constants should not be split simply because their Nodes have unequal
1526                            functions or incongruent inputs. */
1527                         if (type_is_neither_top_nor_const(y->type)) {
1528                                 add_to_touched(y, env);
1529                         }
1530                 }
1531         }
1532 }  /* collect_commutative_touched */
1533
1534 /**
1535  * Split the partitions if caused by the first entry on the worklist.
1536  *
1537  * @param env  the environment
1538  */
1539 static void cause_splits(environment_t *env)
1540 {
1541         partition_t *X, *Z, *N;
1542         int         idx;
1543
1544         /* remove the first partition from the worklist */
1545         X = env->worklist;
1546         env->worklist  = X->wl_next;
1547         X->on_worklist = 0;
1548
1549         dump_partition("Cause_split: ", X);
1550
1551         if (env->commutative) {
1552                 /* handle commutative nodes first */
1553
1554                 /* empty the touched set: already done, just clear the list */
1555                 env->touched = NULL;
1556
1557                 collect_commutative_touched(&X->Leader, env);
1558                 collect_commutative_touched(&X->Follower, env);
1559
1560                 for (Z = env->touched; Z != NULL; Z = N) {
1561                         node_t   *e, *n;
1562                         node_t   *touched     = Z->touched;
1563                         node_t   *touched_aa  = NULL;
1564                         node_t   *touched_ab  = NULL;
1565                         unsigned n_touched_aa = 0;
1566                         unsigned n_touched_ab = 0;
1567
1568                         assert(Z->touched != NULL);
1569
1570                         /* beware, split might change Z */
1571                         N = Z->touched_next;
1572
1573                         /* remove it from the touched set */
1574                         Z->on_touched = 0;
1575
1576                         /* Empty local Z.touched. */
1577                         for (e = touched; e != NULL; e = n) {
1578                                 node_t *left  = get_irn_node(get_irn_n(e->node, 0));
1579                                 node_t *right = get_irn_node(get_irn_n(e->node, 1));
1580
1581                                 assert(e->is_follower == 0);
1582                                 e->on_touched = 0;
1583                                 n = e->next;
1584
1585                                 /*
1586                                  * Note: op(a, a) is NOT congruent to op(a, b).
1587                                  * So, we must split the touched list.
1588                                  */
1589                                 if (left->part == right->part) {
1590                                         e->next = touched_aa;
1591                                         touched_aa = e;
1592                                         ++n_touched_aa;
1593                                 } else {
1594                                         e->next = touched_ab;
1595                                         touched_ab = e;
1596                                         ++n_touched_ab;
1597                                 }
1598                         }
1599                         assert(n_touched_aa + n_touched_ab == Z->n_touched);
1600                         Z->touched   = NULL;
1601                         Z->n_touched = 0;
1602
1603                         if (0 < n_touched_aa && n_touched_aa < Z->n_leader) {
1604                                 partition_t *Z_prime = Z;
1605                                 DB((dbg, LEVEL_2, "Split part%d by touched_aa\n", Z_prime->nr));
1606                                 split(&Z_prime, touched_aa, env);
1607                         } else
1608                                 assert(n_touched_aa <= Z->n_leader);
1609
1610                         if (0 < n_touched_ab && n_touched_ab < Z->n_leader) {
1611                                 partition_t *Z_prime = Z;
1612                                 DB((dbg, LEVEL_2, "Split part%d by touched_ab\n", Z_prime->nr));
1613                                 split(&Z_prime, touched_ab, env);
1614                         } else
1615                                 assert(n_touched_ab <= Z->n_leader);
1616                 }
1617         }
1618
1619         /* combine temporary leader and follower list */
1620         for (idx = -1; idx <= X->max_user_inputs; ++idx) {
1621                 /* empty the touched set: already done, just clear the list */
1622                 env->touched = NULL;
1623
1624                 collect_touched(&X->Leader, idx, env);
1625                 collect_touched(&X->Follower, idx, env);
1626
1627                 for (Z = env->touched; Z != NULL; Z = N) {
1628                         node_t   *e;
1629                         node_t   *touched  = Z->touched;
1630                         unsigned n_touched = Z->n_touched;
1631
1632                         assert(Z->touched != NULL);
1633
1634                         /* beware, split might change Z */
1635                         N = Z->touched_next;
1636
1637                         /* remove it from the touched set */
1638                         Z->on_touched = 0;
1639
1640                         /* Empty local Z.touched. */
1641                         for (e = touched; e != NULL; e = e->next) {
1642                                 assert(e->is_follower == 0);
1643                                 e->on_touched = 0;
1644                         }
1645                         Z->touched   = NULL;
1646                         Z->n_touched = 0;
1647
1648                         if (0 < n_touched && n_touched < Z->n_leader) {
1649                                 DB((dbg, LEVEL_2, "Split part%d by touched\n", Z->nr));
1650                                 split(&Z, touched, env);
1651                         } else
1652                                 assert(n_touched <= Z->n_leader);
1653                 }
1654         }
1655 }  /* cause_splits */
1656
1657 /**
1658  * Implements split_by_what(): Split a partition by characteristics given
1659  * by the what function.
1660  *
1661  * @param X     the partition to split
1662  * @param What  a function returning an Id for every node of the partition X
1663  * @param P     a list to store the result partitions
1664  * @param env   the environment
1665  *
1666  * @return *P
1667  */
1668 static partition_t *split_by_what(partition_t *X, what_func What,
1669                                   partition_t **P, environment_t *env) {
1670         node_t          *x, *S;
1671         listmap_t       map;
1672         listmap_entry_t *iter;
1673         partition_t     *R;
1674
1675         /* Let map be an empty mapping from the range of What to (local) list of Nodes. */
1676         listmap_init(&map);
1677         list_for_each_entry(node_t, x, &X->Leader, node_list) {
1678                 void            *id = What(x, env);
1679                 listmap_entry_t *entry;
1680
1681                 if (id == NULL) {
1682                         /* input not allowed, ignore */
1683                         continue;
1684                 }
1685                 /* Add x to map[What(x)]. */
1686                 entry = listmap_find(&map, id);
1687                 x->next     = entry->list;
1688                 entry->list = x;
1689         }
1690         /* Let P be a set of Partitions. */
1691
1692         /* for all sets S except one in the range of map do */
1693         for (iter = map.values; iter != NULL; iter = iter->next) {
1694                 if (iter->next == NULL) {
1695                         /* this is the last entry, ignore */
1696                         break;
1697                 }
1698                 S = iter->list;
1699
1700                 /* Add SPLIT( X, S ) to P. */
1701                 DB((dbg, LEVEL_2, "Split part%d by WHAT = %s\n", X->nr, what_reason));
1702                 R = split(&X, S, env);
1703                 R->split_next = *P;
1704                 *P            = R;
1705         }
1706         /* Add X to P. */
1707         X->split_next = *P;
1708         *P            = X;
1709
1710         listmap_term(&map);
1711         return *P;
1712 }  /* split_by_what */
1713
1714 /** lambda n.(n.type) */
1715 static void *lambda_type(const node_t *node, environment_t *env)
1716 {
1717         (void)env;
1718         return node->type.tv;
1719 }  /* lambda_type */
1720
1721 /** lambda n.(n.opcode) */
1722 static void *lambda_opcode(const node_t *node, environment_t *env)
1723 {
1724         opcode_key_t key, *entry;
1725         ir_node      *irn = node->node;
1726
1727         key.code   = get_irn_opcode(irn);
1728         key.mode   = get_irn_mode(irn);
1729         key.arity  = get_irn_arity(irn);
1730         key.u.proj = 0;
1731         key.u.ent  = NULL;
1732
1733         switch (get_irn_opcode(irn)) {
1734         case iro_Proj:
1735                 key.u.proj = get_Proj_proj(irn);
1736                 break;
1737         case iro_Sel:
1738                 key.u.ent = get_Sel_entity(irn);
1739                 break;
1740         case iro_Conv:
1741                 key.u.intVal = get_Conv_strict(irn);
1742                 break;
1743         case iro_Div:
1744                 key.u.intVal = get_Div_no_remainder(irn);
1745                 break;
1746         case iro_Block:
1747                 /*
1748                  * Some ugliness here: Two Blocks having the same
1749                  * IJmp predecessor would be congruent, which of course is wrong.
1750                  * We fix it by never letting blocks be congruent
1751                  * which cannot be detected by combo either.
1752                  */
1753                 key.u.block = irn;
1754                 break;
1755         case iro_Load:
1756                 key.mode = get_Load_mode(irn);
1757                 break;
1758         case iro_Builtin:
1759                 key.u.intVal = get_Builtin_kind(irn);
1760                 break;
1761         default:
1762                 break;
1763         }
1764
1765         entry = set_insert(env->opcode2id_map, &key, sizeof(key), opcode_hash(&key));
1766         return entry;
1767 }  /* lambda_opcode */
1768
1769 /** lambda n.(n[i].partition) */
1770 static void *lambda_partition(const node_t *node, environment_t *env)
1771 {
1772         ir_node *skipped = skip_Proj(node->node);
1773         ir_node *pred;
1774         node_t  *p;
1775         int     i = env->lambda_input;
1776
1777         if (i >= get_irn_arity(node->node)) {
1778                 /*
1779                  * We are outside the allowed range: This can happen even
1780                  * if we have split by opcode first: doing so might move Followers
1781                  * to Leaders and those will have a different opcode!
1782                  * Note that in this case the partition is on the cprop list and will be
1783                  * split again.
1784                  */
1785                 return NULL;
1786         }
1787
1788         /* ignore the "control input" for non-pinned nodes
1789            if we are running in GCSE mode */
1790         if (i < env->end_idx && get_irn_pinned(skipped) != op_pin_state_pinned)
1791                 return NULL;
1792
1793         pred = i == -1 ? get_irn_n(skipped, i) : get_irn_n(node->node, i);
1794         p    = get_irn_node(pred);
1795         return p->part;
1796 }  /* lambda_partition */
1797
1798 /** lambda n.(n[i].partition) for commutative nodes */
1799 static void *lambda_commutative_partition(const node_t *node, environment_t *env)
1800 {
1801         ir_node     *irn     = node->node;
1802         ir_node     *skipped = skip_Proj(irn);
1803         ir_node     *pred, *left, *right;
1804         node_t      *p;
1805         partition_t *pl, *pr;
1806         int         i = env->lambda_input;
1807
1808         if (i >= get_irn_arity(node->node)) {
1809                 /*
1810                  * We are outside the allowed range: This can happen even
1811                  * if we have split by opcode first: doing so might move Followers
1812                  * to Leaders and those will have a different opcode!
1813                  * Note that in this case the partition is on the cprop list and will be
1814                  * split again.
1815                  */
1816                 return NULL;
1817         }
1818
1819         /* ignore the "control input" for non-pinned nodes
1820            if we are running in GCSE mode */
1821         if (i < env->end_idx && get_irn_pinned(skipped) != op_pin_state_pinned)
1822                 return NULL;
1823
1824         if (i == -1) {
1825                 pred = get_irn_n(skipped, i);
1826                 p    = get_irn_node(pred);
1827                 return p->part;
1828         }
1829
1830         if (is_op_commutative(get_irn_op(irn))) {
1831                 /* normalize partition order by returning the "smaller" on input 0,
1832                    the "bigger" on input 1. */
1833                 left  = get_binop_left(irn);
1834                 pl    = get_irn_node(left)->part;
1835                 right = get_binop_right(irn);
1836                 pr    = get_irn_node(right)->part;
1837
1838                 if (i == 0)
1839                         return pl < pr ? pl : pr;
1840                 else
1841                 return pl > pr ? pl : pr;
1842         } else {
1843                 /* a not split out Follower */
1844                 pred = get_irn_n(irn, i);
1845                 p    = get_irn_node(pred);
1846
1847                 return p->part;
1848         }
1849 }  /* lambda_commutative_partition */
1850
1851 /**
1852  * Returns true if a type is a constant (and NOT Top
1853  * or Bottom).
1854  */
1855 static int is_con(const lattice_elem_t type)
1856 {
1857         /* be conservative */
1858         if (is_tarval(type.tv))
1859                 return tarval_is_constant(type.tv);
1860         return is_entity(type.sym.entity_p);
1861 }  /* is_con */
1862
1863 /**
1864  * Implements split_by().
1865  *
1866  * @param X    the partition to split
1867  * @param env  the environment
1868  */
1869 static void split_by(partition_t *X, environment_t *env)
1870 {
1871         partition_t *I, *P = NULL;
1872         int         input;
1873
1874         dump_partition("split_by", X);
1875
1876         if (X->n_leader == 1) {
1877                 /* we have only one leader, no need to split, just check it's type */
1878                 node_t *x = get_first_node(X);
1879                 X->type_is_T_or_C = x->type.tv == tarval_top || is_con(x->type);
1880                 return;
1881         }
1882
1883         DEBUG_ONLY(what_reason = "lambda n.(n.type)";)
1884         P = split_by_what(X, lambda_type, &P, env);
1885         dump_split_list(P);
1886
1887         /* adjust the type tags, we have split partitions by type */
1888         for (I = P; I != NULL; I = I->split_next) {
1889                 node_t *x = get_first_node(I);
1890                 I->type_is_T_or_C = x->type.tv == tarval_top || is_con(x->type);
1891         }
1892
1893         do {
1894                 partition_t *Y = P;
1895
1896                 P = P->split_next;
1897                 if (Y->n_leader > 1) {
1898                         /* we do not want split the TOP or constant partitions */
1899                         if (! Y->type_is_T_or_C) {
1900                                 partition_t *Q = NULL;
1901
1902                                 DEBUG_ONLY(what_reason = "lambda n.(n.opcode)";)
1903                                 Q = split_by_what(Y, lambda_opcode, &Q, env);
1904                                 dump_split_list(Q);
1905
1906                                 do {
1907                                         partition_t *Z = Q;
1908
1909                                         Q = Q->split_next;
1910                                         if (Z->n_leader > 1) {
1911                                                 const node_t *first = get_first_node(Z);
1912                                                 int          arity  = get_irn_arity(first->node);
1913                                                 partition_t  *R, *S;
1914                                                 what_func    what = lambda_partition;
1915                                                 DEBUG_ONLY(char buf[64];)
1916
1917                                                 if (env->commutative && is_op_commutative(get_irn_op(first->node)))
1918                                                         what = lambda_commutative_partition;
1919
1920                                                 /*
1921                                                  * BEWARE: during splitting by input 2 for instance we might
1922                                                  * create new partitions which are different by input 1, so collect
1923                                                  * them and split further.
1924                                                  */
1925                                                 Z->split_next = NULL;
1926                                                 R             = Z;
1927                                                 S             = NULL;
1928                                                 for (input = arity - 1; input >= -1; --input) {
1929                                                         do {
1930                                                                 partition_t *Z_prime = R;
1931
1932                                                                 R = R->split_next;
1933                                                                 if (Z_prime->n_leader > 1) {
1934                                                                         env->lambda_input = input;
1935                                                                         DEBUG_ONLY(snprintf(buf, sizeof(buf), "lambda n.(n[%d].partition)", input);)
1936                                                                         DEBUG_ONLY(what_reason = buf;)
1937                                                                         S = split_by_what(Z_prime, what, &S, env);
1938                                                                         dump_split_list(S);
1939                                                                 } else {
1940                                                                         Z_prime->split_next = S;
1941                                                                         S                   = Z_prime;
1942                                                                 }
1943                                                         } while (R != NULL);
1944                                                         R = S;
1945                                                         S = NULL;
1946                                                 }
1947                                         }
1948                                 } while (Q != NULL);
1949                         }
1950                 }
1951         } while (P != NULL);
1952 }  /* split_by */
1953
1954 /**
1955  * (Re-)compute the type for a given node.
1956  *
1957  * @param node  the node
1958  */
1959 static void default_compute(node_t *node)
1960 {
1961         int     i;
1962         ir_node *irn = node->node;
1963
1964         /* if any of the data inputs have type top, the result is type top */
1965         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
1966                 ir_node *pred = get_irn_n(irn, i);
1967                 node_t  *p    = get_irn_node(pred);
1968
1969                 if (p->type.tv == tarval_top) {
1970                         node->type.tv = tarval_top;
1971                         return;
1972                 }
1973         }
1974
1975         if (get_irn_mode(node->node) == mode_X)
1976                 node->type.tv = tarval_reachable;
1977         else
1978                 node->type.tv = computed_value(irn);
1979 }  /* default_compute */
1980
1981 /**
1982  * (Re-)compute the type for a Block node.
1983  *
1984  * @param node  the node
1985  */
1986 static void compute_Block(node_t *node)
1987 {
1988         int     i;
1989         ir_node *block = node->node;
1990
1991         if (block == get_irg_start_block(current_ir_graph) || has_Block_entity(block)) {
1992                 /* start block and labelled blocks are always reachable */
1993                 node->type.tv = tarval_reachable;
1994                 return;
1995         }
1996
1997         for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i) {
1998                 node_t *pred = get_irn_node(get_Block_cfgpred(block, i));
1999
2000                 if (pred->type.tv == tarval_reachable) {
2001                         /* A block is reachable, if at least of predecessor is reachable. */
2002                         node->type.tv = tarval_reachable;
2003                         return;
2004                 }
2005         }
2006         node->type.tv = tarval_top;
2007 }  /* compute_Block */
2008
2009 /**
2010  * (Re-)compute the type for a Bad node.
2011  *
2012  * @param node  the node
2013  */
2014 static void compute_Bad(node_t *node)
2015 {
2016         /* Bad nodes ALWAYS compute Top */
2017         node->type.tv = tarval_top;
2018 }  /* compute_Bad */
2019
2020 /**
2021  * (Re-)compute the type for an Unknown node.
2022  *
2023  * @param node  the node
2024  */
2025 static void compute_Unknown(node_t *node)
2026 {
2027         /* While Unknown nodes should compute Top this is dangerous:
2028          * a Top input to a Cond would lead to BOTH control flows unreachable.
2029          * While this is correct in the given semantics, it would destroy the Firm
2030          * graph.
2031          *
2032          * It would be safe to compute Top IF it can be assured, that only Cmp
2033          * nodes are inputs to Conds. We check that first.
2034          * This is the way Frontends typically build Firm, but some optimizations
2035          * (jump threading for instance) might replace them by Phib's...
2036          */
2037         node->type.tv = tarval_UNKNOWN;
2038 }  /* compute_Unknown */
2039
2040 /**
2041  * (Re-)compute the type for a Jmp node.
2042  *
2043  * @param node  the node
2044  */
2045 static void compute_Jmp(node_t *node)
2046 {
2047         node_t *block = get_irn_node(get_nodes_block(node->node));
2048
2049         node->type = block->type;
2050 }  /* compute_Jmp */
2051
2052 /**
2053  * (Re-)compute the type for the Return node.
2054  *
2055  * @param node  the node
2056  */
2057 static void compute_Return(node_t *node)
2058 {
2059         /* The Return node is NOT dead if it is in a reachable block.
2060          * This is already checked in compute(). so we can return
2061          * Reachable here. */
2062         node->type.tv = tarval_reachable;
2063 }  /* compute_Return */
2064
2065 /**
2066  * (Re-)compute the type for the End node.
2067  *
2068  * @param node  the node
2069  */
2070 static void compute_End(node_t *node)
2071 {
2072         /* the End node is NOT dead of course */
2073         node->type.tv = tarval_reachable;
2074 }  /* compute_End */
2075
2076 /**
2077  * (Re-)compute the type for a Call.
2078  *
2079  * @param node  the node
2080  */
2081 static void compute_Call(node_t *node)
2082 {
2083         /*
2084          * A Call computes always bottom, even if it has Unknown
2085          * predecessors.
2086          */
2087         node->type.tv = tarval_bottom;
2088 }  /* compute_Call */
2089
2090 /**
2091  * (Re-)compute the type for a SymConst node.
2092  *
2093  * @param node  the node
2094  */
2095 static void compute_SymConst(node_t *node)
2096 {
2097         ir_node *irn = node->node;
2098         node_t  *block = get_irn_node(get_nodes_block(irn));
2099
2100         if (block->type.tv == tarval_unreachable) {
2101                 node->type.tv = tarval_top;
2102                 return;
2103         }
2104         switch (get_SymConst_kind(irn)) {
2105         case symconst_addr_ent:
2106                 node->type.sym = get_SymConst_symbol(irn);
2107                 break;
2108         default:
2109                 node->type.tv = computed_value(irn);
2110         }
2111 }  /* compute_SymConst */
2112
2113 /**
2114  * (Re-)compute the type for a Phi node.
2115  *
2116  * @param node  the node
2117  */
2118 static void compute_Phi(node_t *node)
2119 {
2120         int            i;
2121         ir_node        *phi = node->node;
2122         lattice_elem_t type;
2123
2124         /* if a Phi is in a unreachable block, its type is TOP */
2125         node_t *block = get_irn_node(get_nodes_block(phi));
2126
2127         if (block->type.tv == tarval_unreachable) {
2128                 node->type.tv = tarval_top;
2129                 return;
2130         }
2131
2132         /* Phi implements the Meet operation */
2133         type.tv = tarval_top;
2134         for (i = get_Phi_n_preds(phi) - 1; i >= 0; --i) {
2135                 node_t *pred   = get_irn_node(get_Phi_pred(phi, i));
2136                 node_t *pred_X = get_irn_node(get_Block_cfgpred(block->node, i));
2137
2138                 if (pred_X->type.tv == tarval_unreachable || pred->type.tv == tarval_top) {
2139                         /* ignore TOP inputs: We must check here for unreachable blocks,
2140                            because Firm constants live in the Start Block are NEVER Top.
2141                            Else, a Phi (1,2) will produce Bottom, even if the 2 for instance
2142                            comes from a unreachable input. */
2143                         continue;
2144                 }
2145                 if (pred->type.tv == tarval_bottom) {
2146                         node->type.tv = tarval_bottom;
2147                         return;
2148                 } else if (type.tv == tarval_top) {
2149                         /* first constant found */
2150                         type = pred->type;
2151                 } else if (type.tv != pred->type.tv) {
2152                         /* different constants or tarval_bottom */
2153                         node->type.tv = tarval_bottom;
2154                         return;
2155                 }
2156                 /* else nothing, constants are the same */
2157         }
2158         node->type = type;
2159 }  /* compute_Phi */
2160
2161 /**
2162  * (Re-)compute the type for an Add. Special case: one nodes is a Zero Const.
2163  *
2164  * @param node  the node
2165  */
2166 static void compute_Add(node_t *node)
2167 {
2168         ir_node        *sub = node->node;
2169         node_t         *l   = get_irn_node(get_Add_left(sub));
2170         node_t         *r   = get_irn_node(get_Add_right(sub));
2171         lattice_elem_t a    = l->type;
2172         lattice_elem_t b    = r->type;
2173         ir_mode        *mode;
2174
2175         if (a.tv == tarval_top || b.tv == tarval_top) {
2176                 node->type.tv = tarval_top;
2177         } else if (a.tv == tarval_bottom || b.tv == tarval_bottom) {
2178                 node->type.tv = tarval_bottom;
2179         } else {
2180                 /* x + 0 = 0 + x = x, but beware of floating point +0 + -0, so we
2181                    must call tarval_add() first to handle this case! */
2182                 if (is_tarval(a.tv)) {
2183                         if (is_tarval(b.tv)) {
2184                                 node->type.tv = tarval_add(a.tv, b.tv);
2185                                 return;
2186                         }
2187                         mode = get_tarval_mode(a.tv);
2188                         if (a.tv == get_mode_null(mode)) {
2189                                 node->type = b;
2190                                 return;
2191                         }
2192                 } else if (is_tarval(b.tv)) {
2193                         mode = get_tarval_mode(b.tv);
2194                         if (b.tv == get_mode_null(mode)) {
2195                                 node->type = a;
2196                                 return;
2197                         }
2198                 }
2199                 node->type.tv = tarval_bottom;
2200         }
2201 }  /* compute_Add */
2202
2203 /**
2204  * (Re-)compute the type for a Sub. Special case: both nodes are congruent.
2205  *
2206  * @param node  the node
2207  */
2208 static void compute_Sub(node_t *node)
2209 {
2210         ir_node        *sub = node->node;
2211         node_t         *l   = get_irn_node(get_Sub_left(sub));
2212         node_t         *r   = get_irn_node(get_Sub_right(sub));
2213         lattice_elem_t a    = l->type;
2214         lattice_elem_t b    = r->type;
2215         tarval         *tv;
2216
2217         if (a.tv == tarval_top || b.tv == tarval_top) {
2218                 node->type.tv = tarval_top;
2219         } else if (is_con(a) && is_con(b)) {
2220                 if (is_tarval(a.tv) && is_tarval(b.tv)) {
2221                         node->type.tv = tarval_sub(a.tv, b.tv, get_irn_mode(sub));
2222                 } else if (is_tarval(a.tv) && tarval_is_null(a.tv)) {
2223                         node->type = b;
2224                 } else if (is_tarval(b.tv) && tarval_is_null(b.tv)) {
2225                         node->type = a;
2226                 } else {
2227                         node->type.tv = tarval_bottom;
2228                 }
2229         } else if (r->part == l->part &&
2230                    (!mode_is_float(get_irn_mode(l->node)))) {
2231                 /*
2232                  * BEWARE: a - a is NOT always 0 for floating Point values, as
2233                  * NaN op NaN = NaN, so we must check this here.
2234                  */
2235                 ir_mode *mode = get_irn_mode(sub);
2236                 tv = get_mode_null(mode);
2237
2238                 /* if the node was ONCE evaluated by all constants, but now
2239                    this breaks AND we get from the argument partitions a different
2240                    result, switch to bottom.
2241                    This happens because initially all nodes are in the same partition ... */
2242                 if (node->type.tv != tv)
2243                         tv = tarval_bottom;
2244                 node->type.tv = tv;
2245         } else {
2246                 node->type.tv = tarval_bottom;
2247         }
2248 }  /* compute_Sub */
2249
2250 /**
2251  * (Re-)compute the type for an Eor. Special case: both nodes are congruent.
2252  *
2253  * @param node  the node
2254  */
2255 static void compute_Eor(node_t *node)
2256 {
2257         ir_node        *eor = node->node;
2258         node_t         *l   = get_irn_node(get_Eor_left(eor));
2259         node_t         *r   = get_irn_node(get_Eor_right(eor));
2260         lattice_elem_t a    = l->type;
2261         lattice_elem_t b    = r->type;
2262         tarval         *tv;
2263
2264         if (a.tv == tarval_top || b.tv == tarval_top) {
2265                 node->type.tv = tarval_top;
2266         } else if (is_con(a) && is_con(b)) {
2267                 if (is_tarval(a.tv) && is_tarval(b.tv)) {
2268                         node->type.tv = tarval_eor(a.tv, b.tv);
2269                 } else if (is_tarval(a.tv) && tarval_is_null(a.tv)) {
2270                         node->type = b;
2271                 } else if (is_tarval(b.tv) && tarval_is_null(b.tv)) {
2272                         node->type = a;
2273                 } else {
2274                         node->type.tv = tarval_bottom;
2275                 }
2276         } else if (r->part == l->part) {
2277                 ir_mode *mode = get_irn_mode(eor);
2278                 tv = get_mode_null(mode);
2279
2280                 /* if the node was ONCE evaluated by all constants, but now
2281                    this breaks AND we get from the argument partitions a different
2282                    result, switch to bottom.
2283                    This happens because initially all nodes are in the same partition ... */
2284                 if (node->type.tv != tv)
2285                         tv = tarval_bottom;
2286                 node->type.tv = tv;
2287         } else {
2288                 node->type.tv = tarval_bottom;
2289         }
2290 }  /* compute_Eor */
2291
2292 /**
2293  * (Re-)compute the type for Cmp.
2294  *
2295  * @param node  the node
2296  */
2297 static void compute_Cmp(node_t *node)
2298 {
2299         ir_node        *cmp  = node->node;
2300         node_t         *l    = get_irn_node(get_Cmp_left(cmp));
2301         node_t         *r    = get_irn_node(get_Cmp_right(cmp));
2302         lattice_elem_t a     = l->type;
2303         lattice_elem_t b     = r->type;
2304
2305         if (a.tv == tarval_top || b.tv == tarval_top) {
2306                 node->type.tv = tarval_top;
2307         } else if (r->part == l->part) {
2308                 /* both nodes congruent, we can probably do something */
2309                 node->type.tv = tarval_b_true;
2310         } else if (is_con(a) && is_con(b)) {
2311                 /* both nodes are constants, we can probably do something */
2312                 node->type.tv = tarval_b_true;
2313         } else {
2314                 node->type.tv = tarval_bottom;
2315         }
2316 }  /* compute_Cmp */
2317
2318 /**
2319  * (Re-)compute the type for a Proj(Cmp).
2320  *
2321  * @param node  the node
2322  * @param cond  the predecessor Cmp node
2323  */
2324 static void compute_Proj_Cmp(node_t *node, ir_node *cmp)
2325 {
2326         ir_node        *proj = node->node;
2327         node_t         *l    = get_irn_node(get_Cmp_left(cmp));
2328         node_t         *r    = get_irn_node(get_Cmp_right(cmp));
2329         lattice_elem_t a     = l->type;
2330         lattice_elem_t b     = r->type;
2331         pn_Cmp         pnc   = get_Proj_proj(proj);
2332         tarval         *tv;
2333
2334         if (a.tv == tarval_top || b.tv == tarval_top) {
2335                 node->type.tv = tarval_undefined;
2336         } else if (is_con(a) && is_con(b)) {
2337                 default_compute(node);
2338         } else if (r->part == l->part &&
2339                    (!mode_is_float(get_irn_mode(l->node)) || pnc == pn_Cmp_Lt || pnc == pn_Cmp_Gt)) {
2340                 /*
2341                  * BEWARE: a == a is NOT always True for floating Point values, as
2342                  * NaN != NaN is defined, so we must check this here.
2343                  */
2344                 tv = pnc & pn_Cmp_Eq ? tarval_b_true: tarval_b_false;
2345
2346                 /* if the node was ONCE evaluated by all constants, but now
2347                    this breaks AND we get from the argument partitions a different
2348                    result, switch to bottom.
2349                    This happens because initially all nodes are in the same partition ... */
2350                 if (node->type.tv != tv)
2351                         tv = tarval_bottom;
2352                 node->type.tv = tv;
2353         } else {
2354                 node->type.tv = tarval_bottom;
2355         }
2356 }  /* compute_Proj_Cmp */
2357
2358 /**
2359  * (Re-)compute the type for a Proj(Cond).
2360  *
2361  * @param node  the node
2362  * @param cond  the predecessor Cond node
2363  */
2364 static void compute_Proj_Cond(node_t *node, ir_node *cond)
2365 {
2366         ir_node *proj     = node->node;
2367         long    pnc       = get_Proj_proj(proj);
2368         ir_node *sel      = get_Cond_selector(cond);
2369         node_t  *selector = get_irn_node(sel);
2370
2371         /*
2372          * Note: it is crucial for the monotony that the Proj(Cond)
2373          * are evaluates after all predecessors of the Cond selector are
2374          * processed.
2375          * Example
2376          *
2377          * if (x != 0)
2378          *
2379          * Due to the fact that 0 is a const, the Cmp gets immediately
2380          * on the cprop list. It will be evaluated before x is evaluated,
2381          * might leaving x as Top. When later x is evaluated, the Cmp
2382          * might change its value.
2383          * BUT if the Cond is evaluated before this happens, Proj(Cond, FALSE)
2384          * gets R, and later changed to F if Cmp is evaluated to True!
2385          *
2386          * We prevent this by putting Conds in an extra cprop_X queue, which
2387          * gets evaluated after the cprop queue is empty.
2388          *
2389          * Note that this even happens with Click's original algorithm, if
2390          * Cmp(x, 0) is evaluated to True first and later changed to False
2391          * if x was Top first and later changed to a Const ...
2392          * It is unclear how Click solved that problem ...
2393          *
2394          * However, in rare cases even this does not help, if a Top reaches
2395          * a compare  through a Phi, than Proj(Cond) is evaluated changing
2396          * the type of the Phi to something other.
2397          * So, we take the last resort and bind the type to R once
2398          * it is calculated.
2399          *
2400          * (This might be even the way Click works around the whole problem).
2401          *
2402          * Finally, we may miss some optimization possibilities due to this:
2403          *
2404          * x = phi(Top, y)
2405          * if (x == 0)
2406          *
2407          * If Top reaches the if first, than we decide for != here.
2408          * If y later is evaluated to 0, we cannot revert this decision
2409          * and must live with both outputs enabled. If this happens,
2410          * we get an unresolved if (true) in the code ...
2411          *
2412          * In Click's version where this decision is done at the Cmp,
2413          * the Cmp is NOT optimized away than (if y evaluated to 1
2414          * for instance) and we get a if (1 == 0) here ...
2415          *
2416          * Both solutions are suboptimal.
2417          * At least, we could easily detect this problem and run
2418          * cf_opt() (or even combo) again :-(
2419          */
2420         if (node->type.tv == tarval_reachable)
2421                 return;
2422
2423         if (get_irn_mode(sel) == mode_b) {
2424                 /* an IF */
2425                 if (pnc == pn_Cond_true) {
2426                         if (selector->type.tv == tarval_b_false) {
2427                                 node->type.tv = tarval_unreachable;
2428                         } else if (selector->type.tv == tarval_b_true) {
2429                                 node->type.tv = tarval_reachable;
2430                         } else if (selector->type.tv == tarval_bottom) {
2431                                 node->type.tv = tarval_reachable;
2432                         } else {
2433                                 assert(selector->type.tv == tarval_top);
2434                                 if (tarval_UNKNOWN == tarval_top) {
2435                                         /* any condition based on Top is "!=" */
2436                                         node->type.tv = tarval_unreachable;
2437                                 } else {
2438                                         node->type.tv = tarval_unreachable;
2439                                 }
2440                         }
2441                 } else {
2442                         assert(pnc == pn_Cond_false);
2443
2444                         if (selector->type.tv == tarval_b_false) {
2445                                 node->type.tv = tarval_reachable;
2446                         } else if (selector->type.tv == tarval_b_true) {
2447                                 node->type.tv = tarval_unreachable;
2448                         } else if (selector->type.tv == tarval_bottom) {
2449                                 node->type.tv = tarval_reachable;
2450                         } else {
2451                                 assert(selector->type.tv == tarval_top);
2452                                 if (tarval_UNKNOWN == tarval_top) {
2453                                         /* any condition based on Top is "!=" */
2454                                         node->type.tv = tarval_reachable;
2455                                 } else {
2456                                         node->type.tv = tarval_unreachable;
2457                                 }
2458                         }
2459                 }
2460         } else {
2461                 /* an SWITCH */
2462                 if (selector->type.tv == tarval_bottom) {
2463                         node->type.tv = tarval_reachable;
2464                 } else if (selector->type.tv == tarval_top) {
2465                         if (tarval_UNKNOWN == tarval_top &&
2466                             pnc == get_Cond_default_proj(cond)) {
2467                                 /* a switch based of Top is always "default" */
2468                                 node->type.tv = tarval_reachable;
2469                         } else {
2470                                 node->type.tv = tarval_unreachable;
2471                         }
2472                 } else {
2473                         long value = get_tarval_long(selector->type.tv);
2474                         if (pnc == get_Cond_default_proj(cond)) {
2475                                 /* default switch, have to check ALL other cases */
2476                                 int i;
2477
2478                                 for (i = get_irn_n_outs(cond) - 1; i >= 0; --i) {
2479                                         ir_node *succ = get_irn_out(cond, i);
2480
2481                                         if (succ == proj)
2482                                                 continue;
2483                                         if (value == get_Proj_proj(succ)) {
2484                                                 /* we found a match, will NOT take the default case */
2485                                                 node->type.tv = tarval_unreachable;
2486                                                 return;
2487                                         }
2488                                 }
2489                                 /* all cases checked, no match, will take default case */
2490                                 node->type.tv = tarval_reachable;
2491                         } else {
2492                                 /* normal case */
2493                                 node->type.tv = value == pnc ? tarval_reachable : tarval_unreachable;
2494                         }
2495                 }
2496         }
2497 }  /* compute_Proj_Cond */
2498
2499 /**
2500  * (Re-)compute the type for a Proj-Node.
2501  *
2502  * @param node  the node
2503  */
2504 static void compute_Proj(node_t *node)
2505 {
2506         ir_node *proj = node->node;
2507         ir_mode *mode = get_irn_mode(proj);
2508         node_t  *block = get_irn_node(get_nodes_block(skip_Proj(proj)));
2509         ir_node *pred  = get_Proj_pred(proj);
2510
2511         if (block->type.tv == tarval_unreachable) {
2512                 /* a Proj in a unreachable Block stay Top */
2513                 node->type.tv = tarval_top;
2514                 return;
2515         }
2516         if (get_irn_node(pred)->type.tv == tarval_top && !is_Cond(pred)) {
2517                 /* if the predecessor is Top, its Proj follow */
2518                 node->type.tv = tarval_top;
2519                 return;
2520         }
2521
2522         if (mode == mode_M) {
2523                 /* mode M is always bottom */
2524                 node->type.tv = tarval_bottom;
2525                 return;
2526         }
2527         if (mode != mode_X) {
2528                 if (is_Cmp(pred))
2529                         compute_Proj_Cmp(node, pred);
2530                 else
2531                         default_compute(node);
2532                 return;
2533         }
2534         /* handle mode_X nodes */
2535
2536         switch (get_irn_opcode(pred)) {
2537         case iro_Start:
2538                 /* the Proj_X from the Start is always reachable.
2539                    However this is already handled at the top. */
2540                 node->type.tv = tarval_reachable;
2541                 break;
2542         case iro_Cond:
2543                 compute_Proj_Cond(node, pred);
2544                 break;
2545         default:
2546                 default_compute(node);
2547         }
2548 }  /* compute_Proj */
2549
2550 /**
2551  * (Re-)compute the type for a Confirm.
2552  *
2553  * @param node  the node
2554  */
2555 static void compute_Confirm(node_t *node)
2556 {
2557         ir_node *confirm = node->node;
2558         node_t  *pred = get_irn_node(get_Confirm_value(confirm));
2559
2560         if (get_Confirm_cmp(confirm) == pn_Cmp_Eq) {
2561                 node_t *bound = get_irn_node(get_Confirm_bound(confirm));
2562
2563                 if (is_con(bound->type)) {
2564                         /* is equal to a constant */
2565                         node->type = bound->type;
2566                         return;
2567                 }
2568         }
2569         /* a Confirm is a copy OR a Const */
2570         node->type = pred->type;
2571 }  /* compute_Confirm */
2572
2573 /**
2574  * (Re-)compute the type for a given node.
2575  *
2576  * @param node  the node
2577  */
2578 static void compute(node_t *node)
2579 {
2580         ir_node *irn = node->node;
2581         compute_func func;
2582
2583 #ifndef VERIFY_MONOTONE
2584         /*
2585          * Once a node reaches bottom, the type cannot fall further
2586          * in the lattice and we can stop computation.
2587          * Do not take this exit if the monotony verifier is
2588          * enabled to catch errors.
2589          */
2590         if (node->type.tv == tarval_bottom)
2591                 return;
2592 #endif
2593
2594         if (is_no_Block(irn)) {
2595                 /* for pinned nodes, check its control input */
2596                 if (get_irn_pinned(skip_Proj(irn)) == op_pin_state_pinned) {
2597                         node_t *block = get_irn_node(get_nodes_block(irn));
2598
2599                         if (block->type.tv == tarval_unreachable) {
2600                                 node->type.tv = tarval_top;
2601                                 return;
2602                         }
2603                 }
2604         }
2605
2606         func = (compute_func)node->node->op->ops.generic;
2607         if (func != NULL)
2608                 func(node);
2609 }  /* compute */
2610
2611 /*
2612  * Identity functions: Note that one might thing that identity() is just a
2613  * synonym for equivalent_node(). While this is true, we cannot use it for the algorithm
2614  * here, because it expects that the identity node is one of the inputs, which is NOT
2615  * always true for equivalent_node() which can handle (and does sometimes) DAGs.
2616  * So, we have our own implementation, which copies some parts of equivalent_node()
2617  */
2618
2619 /**
2620  * Calculates the Identity for Phi nodes
2621  */
2622 static node_t *identity_Phi(node_t *node)
2623 {
2624         ir_node *phi    = node->node;
2625         ir_node *block  = get_nodes_block(phi);
2626         node_t  *n_part = NULL;
2627         int     i;
2628
2629         for (i = get_Phi_n_preds(phi) - 1; i >= 0; --i) {
2630                 node_t *pred_X = get_irn_node(get_Block_cfgpred(block, i));
2631
2632                 if (pred_X->type.tv == tarval_reachable) {
2633                         node_t *pred = get_irn_node(get_Phi_pred(phi, i));
2634
2635                         if (n_part == NULL)
2636                                 n_part = pred;
2637                         else if (n_part->part != pred->part) {
2638                                 /* incongruent inputs, not a follower */
2639                                 return node;
2640                         }
2641                 }
2642         }
2643         /* if n_part is NULL here, all inputs path are dead, the Phi computes
2644          * tarval_top, is in the TOP partition and should NOT being split! */
2645         assert(n_part != NULL);
2646         return n_part;
2647 }  /* identity_Phi */
2648
2649 /**
2650  * Calculates the Identity for commutative 0 neutral nodes.
2651  */
2652 static node_t *identity_comm_zero_binop(node_t *node)
2653 {
2654         ir_node *op   = node->node;
2655         node_t  *a    = get_irn_node(get_binop_left(op));
2656         node_t  *b    = get_irn_node(get_binop_right(op));
2657         ir_mode *mode = get_irn_mode(op);
2658         tarval  *zero;
2659
2660         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2661         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2662                 return node;
2663
2664         /* node: no input should be tarval_top, else the binop would be also
2665          * Top and not being split. */
2666         zero = get_mode_null(mode);
2667         if (a->type.tv == zero)
2668                 return b;
2669         if (b->type.tv == zero)
2670                 return a;
2671         return node;
2672 }  /* identity_comm_zero_binop */
2673
2674 /**
2675  * Calculates the Identity for Shift nodes.
2676  */
2677 static node_t *identity_shift(node_t *node)
2678 {
2679         ir_node *op   = node->node;
2680         node_t  *b    = get_irn_node(get_binop_right(op));
2681         ir_mode *mode = get_irn_mode(b->node);
2682         tarval  *zero;
2683
2684         /* node: no input should be tarval_top, else the binop would be also
2685          * Top and not being split. */
2686         zero = get_mode_null(mode);
2687         if (b->type.tv == zero)
2688                 return get_irn_node(get_binop_left(op));
2689         return node;
2690 }  /* identity_shift */
2691
2692 /**
2693  * Calculates the Identity for Mul nodes.
2694  */
2695 static node_t *identity_Mul(node_t *node)
2696 {
2697         ir_node *op   = node->node;
2698         node_t  *a    = get_irn_node(get_Mul_left(op));
2699         node_t  *b    = get_irn_node(get_Mul_right(op));
2700         ir_mode *mode = get_irn_mode(op);
2701         tarval  *one;
2702
2703         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2704         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2705                 return node;
2706
2707         /* node: no input should be tarval_top, else the binop would be also
2708          * Top and not being split. */
2709         one = get_mode_one(mode);
2710         if (a->type.tv == one)
2711                 return b;
2712         if (b->type.tv == one)
2713                 return a;
2714         return node;
2715 }  /* identity_Mul */
2716
2717 /**
2718  * Calculates the Identity for Sub nodes.
2719  */
2720 static node_t *identity_Sub(node_t *node)
2721 {
2722         ir_node *sub  = node->node;
2723         node_t  *b    = get_irn_node(get_Sub_right(sub));
2724         ir_mode *mode = get_irn_mode(sub);
2725
2726         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2727         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2728                 return node;
2729
2730         /* node: no input should be tarval_top, else the binop would be also
2731          * Top and not being split. */
2732         if (b->type.tv == get_mode_null(mode))
2733                 return get_irn_node(get_Sub_left(sub));
2734         return node;
2735 }  /* identity_Sub */
2736
2737 /**
2738  * Calculates the Identity for And nodes.
2739  */
2740 static node_t *identity_And(node_t *node)
2741 {
2742         ir_node *and = node->node;
2743         node_t  *a   = get_irn_node(get_And_left(and));
2744         node_t  *b   = get_irn_node(get_And_right(and));
2745         tarval  *neutral = get_mode_all_one(get_irn_mode(and));
2746
2747         /* node: no input should be tarval_top, else the And would be also
2748          * Top and not being split. */
2749         if (a->type.tv == neutral)
2750                 return b;
2751         if (b->type.tv == neutral)
2752                 return a;
2753         return node;
2754 }  /* identity_And */
2755
2756 /**
2757  * Calculates the Identity for Confirm nodes.
2758  */
2759 static node_t *identity_Confirm(node_t *node)
2760 {
2761         ir_node *confirm = node->node;
2762
2763         /* a Confirm is always a Copy */
2764         return get_irn_node(get_Confirm_value(confirm));
2765 }  /* identity_Confirm */
2766
2767 /**
2768  * Calculates the Identity for Mux nodes.
2769  */
2770 static node_t *identity_Mux(node_t *node)
2771 {
2772         ir_node *mux = node->node;
2773         node_t  *t   = get_irn_node(get_Mux_true(mux));
2774         node_t  *f   = get_irn_node(get_Mux_false(mux));
2775         /*node_t  *sel; */
2776
2777         if (t->part == f->part)
2778                 return t;
2779
2780         /* for now, the 1-input identity is not supported */
2781 #if 0
2782         sel = get_irn_node(get_Mux_sel(mux));
2783
2784         /* Mux sel input is mode_b, so it is always a tarval */
2785         if (sel->type.tv == tarval_b_true)
2786                 return t;
2787         if (sel->type.tv == tarval_b_false)
2788                 return f;
2789 #endif
2790         return node;
2791 }  /* identity_Mux */
2792
2793 /**
2794  * Calculates the Identity for nodes.
2795  */
2796 static node_t *identity(node_t *node)
2797 {
2798         ir_node *irn = node->node;
2799
2800         switch (get_irn_opcode(irn)) {
2801         case iro_Phi:
2802                 return identity_Phi(node);
2803         case iro_Mul:
2804                 return identity_Mul(node);
2805         case iro_Add:
2806         case iro_Or:
2807         case iro_Eor:
2808                 return identity_comm_zero_binop(node);
2809         case iro_Shr:
2810         case iro_Shl:
2811         case iro_Shrs:
2812         case iro_Rotl:
2813                 return identity_shift(node);
2814         case iro_And:
2815                 return identity_And(node);
2816         case iro_Sub:
2817                 return identity_Sub(node);
2818         case iro_Confirm:
2819                 return identity_Confirm(node);
2820         case iro_Mux:
2821                 return identity_Mux(node);
2822         default:
2823                 return node;
2824         }
2825 }  /* identity */
2826
2827 /**
2828  * Node follower is a (new) follower of leader, segregate Leader
2829  * out edges.
2830  */
2831 static void segregate_def_use_chain_1(const ir_node *follower, node_t *leader)
2832 {
2833         ir_node *l   = leader->node;
2834         int     j, i, n = get_irn_n_outs(l);
2835
2836         DB((dbg, LEVEL_2, "%+F is a follower of %+F\n", follower, leader->node));
2837         /* The leader edges must remain sorted, but follower edges can
2838            be unsorted. */
2839         for (i = leader->n_followers + 1; i <= n; ++i) {
2840                 if (l->out[i].use == follower) {
2841                         ir_def_use_edge t = l->out[i];
2842
2843                         for (j = i - 1; j >= leader->n_followers + 1; --j)
2844                                 l->out[j + 1] = l->out[j];
2845                         ++leader->n_followers;
2846                         l->out[leader->n_followers] = t;
2847                         break;
2848                 }
2849         }
2850 }  /* segregate_def_use_chain_1 */
2851
2852 /**
2853  * Node follower is a (new) follower segregate its Leader
2854  * out edges.
2855  *
2856  * @param follower  the follower IR node
2857  */
2858 static void segregate_def_use_chain(const ir_node *follower)
2859 {
2860         int i;
2861
2862         for (i = get_irn_arity(follower) - 1; i >= 0; --i) {
2863                 node_t *pred = get_irn_node(get_irn_n(follower, i));
2864
2865                 segregate_def_use_chain_1(follower, pred);
2866         }
2867 }  /* segregate_def_use_chain */
2868
2869 /**
2870  * Propagate constant evaluation.
2871  *
2872  * @param env  the environment
2873  */
2874 static void propagate(environment_t *env)
2875 {
2876         partition_t    *X, *Y;
2877         node_t         *x;
2878         lattice_elem_t old_type;
2879         node_t         *fallen;
2880         unsigned       n_fallen, old_type_was_T_or_C;
2881         int            i;
2882
2883         while (env->cprop != NULL) {
2884                 void *oldopcode = NULL;
2885
2886                 /* remove the first partition X from cprop */
2887                 X           = env->cprop;
2888                 X->on_cprop = 0;
2889                 env->cprop  = X->cprop_next;
2890
2891                 old_type_was_T_or_C = X->type_is_T_or_C;
2892
2893                 DB((dbg, LEVEL_2, "Propagate type on part%d\n", X->nr));
2894                 fallen   = NULL;
2895                 n_fallen = 0;
2896                 for (;;) {
2897                         int cprop_empty   = list_empty(&X->cprop);
2898                         int cprop_X_empty = list_empty(&X->cprop_X);
2899
2900                         if (cprop_empty && cprop_X_empty) {
2901                                 /* both cprop lists are empty */
2902                                 break;
2903                         }
2904
2905                         /* remove the first Node x from X.cprop */
2906                         if (cprop_empty) {
2907                                 /* Get a node from the cprop_X list only if
2908                                  * all data nodes are processed.
2909                                  * This ensures, that all inputs of the Cond
2910                                  * predecessor are processed if its type is still Top.
2911                                  */
2912                                 x = list_entry(X->cprop_X.next, node_t, cprop_list);
2913                         } else {
2914                                 x = list_entry(X->cprop.next, node_t, cprop_list);
2915                         }
2916
2917                         //assert(x->part == X);
2918                         list_del(&x->cprop_list);
2919                         x->on_cprop = 0;
2920
2921                         if (x->is_follower && identity(x) == x) {
2922                                 /* check the opcode first */
2923                                 if (oldopcode == NULL) {
2924                                         oldopcode = lambda_opcode(get_first_node(X), env);
2925                                 }
2926                                 if (oldopcode != lambda_opcode(x, env)) {
2927                                         if (x->on_fallen == 0) {
2928                                                 /* different opcode -> x falls out of this partition */
2929                                                 x->next      = fallen;
2930                                                 x->on_fallen = 1;
2931                                                 fallen       = x;
2932                                                 ++n_fallen;
2933                                                 DB((dbg, LEVEL_2, "Add node %+F to fallen\n", x->node));
2934                                         }
2935                                 }
2936
2937                                 /* x will make the follower -> leader transition */
2938                                 follower_to_leader(x);
2939                         }
2940
2941                         /* compute a new type for x */
2942                         old_type = x->type;
2943                         DB((dbg, LEVEL_3, "computing type of %+F\n", x->node));
2944                         compute(x);
2945                         if (x->type.tv != old_type.tv) {
2946                                 DB((dbg, LEVEL_2, "node %+F has changed type from %+F to %+F\n", x->node, old_type, x->type));
2947                                 verify_type(old_type, x);
2948
2949                                 if (x->on_fallen == 0) {
2950                                         /* Add x to fallen. Nodes might fall from T -> const -> _|_, so check that they are
2951                                            not already on the list. */
2952                                         x->next      = fallen;
2953                                         x->on_fallen = 1;
2954                                         fallen       = x;
2955                                         ++n_fallen;
2956                                         DB((dbg, LEVEL_2, "Add node %+F to fallen\n", x->node));
2957                                 }
2958                                 for (i = get_irn_n_outs(x->node) - 1; i >= 0; --i) {
2959                                         ir_node *succ = get_irn_out(x->node, i);
2960                                         node_t  *y    = get_irn_node(succ);
2961
2962                                         /* Add y to y.partition.cprop. */
2963                                         add_to_cprop(y, env);
2964                                 }
2965                         }
2966                 }
2967
2968                 if (n_fallen > 0 && n_fallen != X->n_leader) {
2969                         DB((dbg, LEVEL_2, "Splitting part%d by fallen\n", X->nr));
2970                         Y = split(&X, fallen, env);
2971                         /*
2972                          * We have split out fallen node. The type of the result
2973                          * partition is NOT set yet.
2974                          */
2975                         Y->type_is_T_or_C = 0;
2976                 } else {
2977                         Y = X;
2978                 }
2979                 /* remove the flags from the fallen list */
2980                 for (x = fallen; x != NULL; x = x->next)
2981                         x->on_fallen = 0;
2982
2983                 if (old_type_was_T_or_C) {
2984                         node_t *y, *tmp;
2985
2986                         /* check if some nodes will make the leader -> follower transition */
2987                         list_for_each_entry_safe(node_t, y, tmp, &Y->Leader, node_list) {
2988                                 if (y->type.tv != tarval_top && ! is_con(y->type)) {
2989                                         node_t *eq_node = identity(y);
2990
2991                                         if (eq_node != y && eq_node->part == y->part) {
2992                                                 DB((dbg, LEVEL_2, "Node %+F is a follower of %+F\n", y->node, eq_node->node));
2993                                                 /* move to Follower */
2994                                                 y->is_follower = 1;
2995                                                 list_del(&y->node_list);
2996                                                 list_add_tail(&y->node_list, &Y->Follower);
2997                                                 --Y->n_leader;
2998
2999                                                 segregate_def_use_chain(y->node);
3000                                         }
3001                                 }
3002                         }
3003                 }
3004                 split_by(Y, env);
3005         }
3006 }  /* propagate */
3007
3008 /**
3009  * Get the leader for a given node from its congruence class.
3010  *
3011  * @param irn  the node
3012  */
3013 static ir_node *get_leader(node_t *node)
3014 {
3015         partition_t *part = node->part;
3016
3017         if (part->n_leader > 1 || node->is_follower) {
3018                 if (node->is_follower) {
3019                         DB((dbg, LEVEL_2, "Replacing follower %+F\n", node->node));
3020                 }
3021                 else
3022                         DB((dbg, LEVEL_2, "Found congruence class for %+F\n", node->node));
3023
3024                 return get_first_node(part)->node;
3025         }
3026         return node->node;
3027 }  /* get_leader */
3028
3029 /**
3030  * Returns non-zero if a mode_T node has only one reachable output.
3031  */
3032 static int only_one_reachable_proj(ir_node *n)
3033 {
3034         int i, k = 0;
3035
3036         for (i = get_irn_n_outs(n) - 1; i >= 0; --i) {
3037                 ir_node *proj = get_irn_out(n, i);
3038                 node_t  *node;
3039
3040                 /* skip non-control flow Proj's */
3041                 if (get_irn_mode(proj) != mode_X)
3042                         continue;
3043
3044                 node = get_irn_node(proj);
3045                 if (node->type.tv == tarval_reachable) {
3046                         if (++k > 1)
3047                                 return 0;
3048                 }
3049         }
3050         return 1;
3051 }  /* only_one_reachable_proj */
3052
3053 /**
3054  * Return non-zero if the control flow predecessor node pred
3055  * is the only reachable control flow exit of its block.
3056  *
3057  * @param pred   the control flow exit
3058  * @param block  the destination block
3059  */
3060 static int can_exchange(ir_node *pred, ir_node *block)
3061 {
3062         if (is_Start(pred) || has_Block_entity(block))
3063                 return 0;
3064         else if (is_Jmp(pred))
3065                 return 1;
3066         else if (get_irn_mode(pred) == mode_T) {
3067                 /* if the predecessor block has more than one
3068                    reachable outputs we cannot remove the block */
3069                 return only_one_reachable_proj(pred);
3070         }
3071         return 0;
3072 }  /* can_exchange */
3073
3074 /**
3075  * Block Post-Walker, apply the analysis results on control flow by
3076  * shortening Phi's and Block inputs.
3077  */
3078 static void apply_cf(ir_node *block, void *ctx)
3079 {
3080         environment_t *env = ctx;
3081         node_t        *node = get_irn_node(block);
3082         int           i, j, k, n;
3083         ir_node       **ins, **in_X;
3084         ir_node       *phi, *next;
3085
3086         n = get_Block_n_cfgpreds(block);
3087
3088         if (node->type.tv == tarval_unreachable) {
3089                 env->modified = 1;
3090
3091                 for (i = n - 1; i >= 0; --i) {
3092                         ir_node *pred = get_Block_cfgpred(block, i);
3093
3094                         if (! is_Bad(pred)) {
3095                                 node_t *pred_bl = get_irn_node(get_nodes_block(skip_Proj(pred)));
3096
3097                                 if (pred_bl->flagged == 0) {
3098                                         pred_bl->flagged = 3;
3099
3100                                         if (pred_bl->type.tv == tarval_reachable) {
3101                                                 /*
3102                                                  * We will remove an edge from block to its pred.
3103                                                  * This might leave the pred block as an endless loop
3104                                                  */
3105                                                 if (! is_backedge(block, i))
3106                                                         keep_alive(pred_bl->node);
3107                                         }
3108                                 }
3109                         }
3110                 }
3111
3112                 /* the EndBlock is always reachable even if the analysis
3113                    finds out the opposite :-) */
3114                 if (block != get_irg_end_block(current_ir_graph)) {
3115                         /* mark dead blocks */
3116                         set_Block_dead(block);
3117                         DB((dbg, LEVEL_1, "Removing dead %+F\n", block));
3118                 } else {
3119                         /* the endblock is unreachable */
3120                         set_irn_in(block, 0, NULL);
3121                 }
3122                 return;
3123         }
3124
3125         if (n == 1) {
3126                 /* only one predecessor combine */
3127                 ir_node *pred = skip_Proj(get_Block_cfgpred(block, 0));
3128
3129                 if (can_exchange(pred, block)) {
3130                         ir_node *new_block = get_nodes_block(pred);
3131                         DB((dbg, LEVEL_1, "Fuse %+F with %+F\n", block, new_block));
3132                         DBG_OPT_COMBO(block, new_block, FS_OPT_COMBO_CF);
3133                         exchange(block, new_block);
3134                         node->node = new_block;
3135                         env->modified = 1;
3136                 }
3137                 return;
3138         }
3139
3140         NEW_ARR_A(ir_node *, in_X, n);
3141         k = 0;
3142         for (i = 0; i < n; ++i) {
3143                 ir_node *pred = get_Block_cfgpred(block, i);
3144                 node_t  *node = get_irn_node(pred);
3145
3146                 if (node->type.tv == tarval_reachable) {
3147                         in_X[k++] = pred;
3148                 } else {
3149                         DB((dbg, LEVEL_1, "Removing dead input %d from %+F (%+F)\n", i, block, pred));
3150                         if (! is_Bad(pred)) {
3151                                 node_t *pred_bl = get_irn_node(get_nodes_block(skip_Proj(pred)));
3152
3153                                 if (pred_bl->flagged == 0) {
3154                                         pred_bl->flagged = 3;
3155
3156                                         if (pred_bl->type.tv == tarval_reachable) {
3157                                                 /*
3158                                                  * We will remove an edge from block to its pred.
3159                                                  * This might leave the pred block as an endless loop
3160                                                  */
3161                                                 if (! is_backedge(block, i))
3162                                                         keep_alive(pred_bl->node);
3163                                         }
3164                                 }
3165                         }
3166                 }
3167         }
3168         if (k >= n)
3169                 return;
3170
3171         /* fix Phi's */
3172         NEW_ARR_A(ir_node *, ins, n);
3173         for (phi = get_Block_phis(block); phi != NULL; phi = next) {
3174                 node_t *node = get_irn_node(phi);
3175
3176                 next = get_Phi_next(phi);
3177                 if (is_tarval(node->type.tv) && tarval_is_constant(node->type.tv)) {
3178                         /* this Phi is replaced by a constant */
3179                         tarval  *tv = node->type.tv;
3180                         ir_node *c  = new_Const(tv);
3181
3182                         set_irn_node(c, node);
3183                         node->node = c;
3184                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", phi, c));
3185                         DBG_OPT_COMBO(phi, c, FS_OPT_COMBO_CONST);
3186                         exchange(phi, c);
3187                         env->modified = 1;
3188                 } else {
3189                         j = 0;
3190                         for (i = 0; i < n; ++i) {
3191                                 node_t *pred = get_irn_node(get_Block_cfgpred(block, i));
3192
3193                                 if (pred->type.tv == tarval_reachable) {
3194                                         ins[j++] = get_Phi_pred(phi, i);
3195                                 }
3196                         }
3197                         if (j == 1) {
3198                                 /* this Phi is replaced by a single predecessor */
3199                                 ir_node *s = ins[0];
3200                                 node_t *phi_node = get_irn_node(phi);
3201
3202                                 node->node = s;
3203                                 DB((dbg, LEVEL_1, "%+F is replaced by %+F because of cf change\n", phi, s));
3204                                 DBG_OPT_COMBO(phi, s, FS_OPT_COMBO_FOLLOWER);
3205                                 exchange(phi, s);
3206                                 phi_node->node = s;
3207                                 env->modified = 1;
3208                         } else {
3209                                 set_irn_in(phi, j, ins);
3210                                 env->modified = 1;
3211                         }
3212                 }
3213         }
3214
3215         /* fix block */
3216         if (k == 1) {
3217                 /* this Block has only one live predecessor */
3218                 ir_node *pred = skip_Proj(in_X[0]);
3219
3220                 if (can_exchange(pred, block)) {
3221                         ir_node *new_block = get_nodes_block(pred);
3222                         DBG_OPT_COMBO(block, new_block, FS_OPT_COMBO_CF);
3223                         exchange(block, new_block);
3224                         node->node = new_block;
3225                         env->modified = 1;
3226                         return;
3227                 }
3228         }
3229         set_irn_in(block, k, in_X);
3230         env->modified = 1;
3231 }  /* apply_cf */
3232
3233 /**
3234  * Exchange a node by its leader.
3235  * Beware: in rare cases the mode might be wrong here, for instance
3236  * AddP(x, NULL) is a follower of x, but with different mode.
3237  * Fix it here.
3238  */
3239 static void exchange_leader(ir_node *irn, ir_node *leader)
3240 {
3241         ir_mode *mode = get_irn_mode(irn);
3242         if (mode != get_irn_mode(leader)) {
3243                 /* The conv is a no-op, so we are free to place it
3244                  * either in the block of the leader OR in irn's block.
3245                  * Probably placing it into leaders block might reduce
3246                  * the number of Conv due to CSE. */
3247                 ir_node  *block = get_nodes_block(leader);
3248                 dbg_info *dbg   = get_irn_dbg_info(irn);
3249
3250                 leader = new_rd_Conv(dbg, block, leader, mode);
3251         }
3252         exchange(irn, leader);
3253 }  /* exchange_leader */
3254
3255 /**
3256  * Check, if all users of a mode_M node are dead. Use
3257  * the Def-Use edges for this purpose, as they still
3258  * reflect the situation.
3259  */
3260 static int all_users_are_dead(const ir_node *irn)
3261 {
3262         int i, n = get_irn_n_outs(irn);
3263
3264         for (i = 1; i <= n; ++i) {
3265                 const ir_node *succ  = irn->out[i].use;
3266                 const node_t  *block = get_irn_node(get_nodes_block(succ));
3267                 const node_t  *node;
3268
3269                 if (block->type.tv == tarval_unreachable) {
3270                         /* block is unreachable */
3271                         continue;
3272                 }
3273                 node = get_irn_node(succ);
3274                 if (node->type.tv != tarval_top) {
3275                         /* found a reachable user */
3276                         return 0;
3277                 }
3278         }
3279         /* all users are unreachable */
3280         return 1;
3281 }  /* all_user_are_dead */
3282
3283 /**
3284  * Walker: Find reachable mode_M nodes that have only
3285  * unreachable users. These nodes must be kept later.
3286  */
3287 static void find_kept_memory(ir_node *irn, void *ctx)
3288 {
3289         environment_t *env = ctx;
3290         node_t        *node, *block;
3291
3292         if (get_irn_mode(irn) != mode_M)
3293                 return;
3294
3295         block = get_irn_node(get_nodes_block(irn));
3296         if (block->type.tv == tarval_unreachable)
3297                 return;
3298
3299         node = get_irn_node(irn);
3300         if (node->type.tv == tarval_top)
3301                 return;
3302
3303         /* ok, we found a live memory node. */
3304         if (all_users_are_dead(irn)) {
3305                 DB((dbg, LEVEL_1, "%+F must be kept\n", irn));
3306                 ARR_APP1(ir_node *, env->kept_memory, irn);
3307         }
3308 }  /* find_kept_memory */
3309
3310 /**
3311  * Post-Walker, apply the analysis results;
3312  */
3313 static void apply_result(ir_node *irn, void *ctx)
3314 {
3315         environment_t *env = ctx;
3316         node_t        *node = get_irn_node(irn);
3317
3318         if (is_Block(irn) || is_End(irn) || is_Bad(irn)) {
3319                 /* blocks already handled, do not touch the End node */
3320         } else {
3321                 node_t *block = get_irn_node(get_nodes_block(irn));
3322
3323                 if (block->type.tv == tarval_unreachable) {
3324                         ir_node *bad = get_irg_bad(current_ir_graph);
3325
3326                         /* here, bad might already have a node, but this can be safely ignored
3327                            as long as bad has at least ONE valid node */
3328                         set_irn_node(bad, node);
3329                         node->node = bad;
3330                         DB((dbg, LEVEL_1, "%+F is unreachable\n", irn));
3331                         exchange(irn, bad);
3332                         env->modified = 1;
3333                 } else if (node->type.tv == tarval_top) {
3334                         ir_mode *mode = get_irn_mode(irn);
3335
3336                         if (mode == mode_M) {
3337                                 /* never kill a mode_M node */
3338                                 if (is_Proj(irn)) {
3339                                         ir_node *pred  = get_Proj_pred(irn);
3340                                         node_t  *pnode = get_irn_node(pred);
3341
3342                                         if (pnode->type.tv == tarval_top) {
3343                                                 /* skip the predecessor */
3344                                                 ir_node *mem = get_memop_mem(pred);
3345                                                 node->node = mem;
3346                                                 DB((dbg, LEVEL_1, "%+F computes Top, replaced by %+F\n", irn, mem));
3347                                                 exchange(irn, mem);
3348                                                 env->modified = 1;
3349                                         }
3350                                 }
3351                                 /* leave other nodes, especially PhiM */
3352                         } else if (mode == mode_T) {
3353                                 /* Do not kill mode_T nodes, kill their Projs */
3354                         } else if (! is_Unknown(irn)) {
3355                                 /* don't kick away Unknown's, they might be still needed */
3356                                 ir_node *unk = new_r_Unknown(current_ir_graph, mode);
3357
3358                                 /* control flow should already be handled at apply_cf() */
3359                                 assert(mode != mode_X);
3360
3361                                 /* see comment above */
3362                                 set_irn_node(unk, node);
3363                                 node->node = unk;
3364                                 DB((dbg, LEVEL_1, "%+F computes Top\n", irn));
3365                                 exchange(irn, unk);
3366                                 env->modified = 1;
3367                         }
3368                 }
3369                 else if (get_irn_mode(irn) == mode_X) {
3370                         if (is_Proj(irn)) {
3371                                 /* leave or Jmp */
3372                                 ir_node *cond = get_Proj_pred(irn);
3373
3374                                 if (is_Cond(cond)) {
3375                                         if (only_one_reachable_proj(cond)) {
3376                                                 ir_node *jmp = new_r_Jmp(block->node);
3377                                                 set_irn_node(jmp, node);
3378                                                 node->node = jmp;
3379                                                 DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, jmp));
3380                                                 DBG_OPT_COMBO(irn, jmp, FS_OPT_COMBO_CF);
3381                                                 exchange(irn, jmp);
3382                                                 env->modified = 1;
3383                                         } else {
3384                                                 node_t *sel = get_irn_node(get_Cond_selector(cond));
3385                                                 tarval *tv  = sel->type.tv;
3386
3387                                                 if (is_tarval(tv) && tarval_is_constant(tv)) {
3388                                                         /* The selector is a constant, but more
3389                                                          * than one output is active: An unoptimized
3390                                                          * case found. */
3391                                                         env->unopt_cf = 1;
3392                                                 }
3393                                         }
3394                                 }
3395                         }
3396                 } else {
3397                         /* normal data node */
3398                         if (is_tarval(node->type.tv) && tarval_is_constant(node->type.tv)) {
3399                                 tarval *tv = node->type.tv;
3400
3401                                 /*
3402                                  * Beware: never replace mode_T nodes by constants. Currently we must mark
3403                                  * mode_T nodes with constants, but do NOT replace them.
3404                                  */
3405                                 if (! is_Const(irn) && get_irn_mode(irn) != mode_T) {
3406                                         /* can be replaced by a constant */
3407                                         ir_node *c = new_Const(tv);
3408                                         set_irn_node(c, node);
3409                                         node->node = c;
3410                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, c));
3411                                         DBG_OPT_COMBO(irn, c, FS_OPT_COMBO_CONST);
3412                                         exchange_leader(irn, c);
3413                                         env->modified = 1;
3414                                 }
3415                         } else if (is_entity(node->type.sym.entity_p)) {
3416                                 if (! is_SymConst(irn)) {
3417                                         /* can be replaced by a SymConst */
3418                                         ir_node *symc = new_r_SymConst(current_ir_graph, get_irn_mode(irn), node->type.sym, symconst_addr_ent);
3419                                         set_irn_node(symc, node);
3420                                         node->node = symc;
3421
3422                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, symc));
3423                                         DBG_OPT_COMBO(irn, symc, FS_OPT_COMBO_CONST);
3424                                         exchange_leader(irn, symc);
3425                                         env->modified = 1;
3426                                 }
3427                         } else if (is_Confirm(irn)) {
3428                                 /* Confirms are always follower, but do not kill them here */
3429                         } else {
3430                                 ir_node *leader = get_leader(node);
3431
3432                                 if (leader != irn) {
3433                                         int non_strict_phi = 0;
3434
3435                                         /*
3436                                          * Beware: Do not remove Phi(Unknown, ..., x, ..., Unknown)
3437                                          * as this might create non-strict programs.
3438                                          */
3439                                         if (node->is_follower && is_Phi(irn) && !is_Unknown(leader)) {
3440                                                 int i;
3441
3442                                                 for (i = get_Phi_n_preds(irn) - 1; i >= 0; --i) {
3443                                                         ir_node *pred = get_Phi_pred(irn, i);
3444
3445                                                         if (is_Unknown(pred)) {
3446                                                                 non_strict_phi = 1;
3447                                                                 break;
3448                                                         }
3449                                                 }
3450                                         }
3451                                         if (! non_strict_phi) {
3452                                                 DB((dbg, LEVEL_1, "%+F from part%d is replaced by %+F\n", irn, node->part->nr, leader));
3453                                                 if (node->is_follower)
3454                                                         DBG_OPT_COMBO(irn, leader, FS_OPT_COMBO_FOLLOWER);
3455                                                 else
3456                                                         DBG_OPT_COMBO(irn, leader, FS_OPT_COMBO_CONGRUENT);
3457                                                 exchange_leader(irn, leader);
3458                                                 env->modified = 1;
3459                                         }
3460                                 }
3461                         }
3462                 }
3463         }
3464 }  /* apply_result */
3465
3466 /**
3467  * Fix the keep-alives by deleting unreachable ones.
3468  */
3469 static void apply_end(ir_node *end, environment_t *env)
3470 {
3471         int i, j,  n = get_End_n_keepalives(end);
3472         ir_node **in;
3473
3474         if (n > 0)
3475                 NEW_ARR_A(ir_node *, in, n);
3476
3477         /* fix the keep alive */
3478         for (i = j = 0; i < n; i++) {
3479                 ir_node *ka   = get_End_keepalive(end, i);
3480                 node_t  *node = get_irn_node(ka);
3481
3482                 if (! is_Block(ka))
3483                         node = get_irn_node(get_nodes_block(ka));
3484
3485                 if (node->type.tv != tarval_unreachable && !is_Bad(ka))
3486                         in[j++] = ka;
3487         }
3488         if (j != n) {
3489                 set_End_keepalives(end, j, in);
3490                 env->modified = 1;
3491         }
3492 }  /* apply_end */
3493
3494 #define SET(code) op_##code->ops.generic = (op_func)compute_##code
3495
3496 /**
3497  * sets the generic functions to compute.
3498  */
3499 static void set_compute_functions(void)
3500 {
3501         int i;
3502
3503         /* set the default compute function */
3504         for (i = get_irp_n_opcodes() - 1; i >= 0; --i) {
3505                 ir_op *op = get_irp_opcode(i);
3506                 op->ops.generic = (op_func)default_compute;
3507         }
3508
3509         /* set specific functions */
3510         SET(Block);
3511         SET(Unknown);
3512         SET(Bad);
3513         SET(Jmp);
3514         SET(Phi);
3515         SET(Add);
3516         SET(Sub);
3517         SET(Eor);
3518         SET(SymConst);
3519         SET(Cmp);
3520         SET(Proj);
3521         SET(Confirm);
3522         SET(Return);
3523         SET(End);
3524         SET(Call);
3525 }  /* set_compute_functions */
3526
3527 /**
3528  * Add memory keeps.
3529  */
3530 static void add_memory_keeps(ir_node **kept_memory, int len)
3531 {
3532         ir_node      *end = get_irg_end(current_ir_graph);
3533         int          i;
3534         ir_nodeset_t set;
3535
3536         ir_nodeset_init(&set);
3537
3538         /* check, if those nodes are already kept */
3539         for (i = get_End_n_keepalives(end) - 1; i >= 0; --i)
3540                 ir_nodeset_insert(&set, get_End_keepalive(end, i));
3541
3542         for (i = len - 1; i >= 0; --i) {
3543                 ir_node *ka = kept_memory[i];
3544
3545                 if (! ir_nodeset_contains(&set, ka)) {
3546                         add_End_keepalive(end, ka);
3547                 }
3548         }
3549         ir_nodeset_destroy(&set);
3550 }  /* add_memory_keeps */
3551
3552 void combo(ir_graph *irg)
3553 {
3554         environment_t env;
3555         ir_node       *initial_bl;
3556         node_t        *start;
3557         ir_graph      *rem = current_ir_graph;
3558         int           len;
3559
3560         current_ir_graph = irg;
3561
3562         /* register a debug mask */
3563         FIRM_DBG_REGISTER(dbg, "firm.opt.combo");
3564
3565         DB((dbg, LEVEL_1, "Doing COMBO for %+F\n", irg));
3566
3567         obstack_init(&env.obst);
3568         env.worklist       = NULL;
3569         env.cprop          = NULL;
3570         env.touched        = NULL;
3571         env.initial        = NULL;
3572 #ifdef DEBUG_libfirm
3573         env.dbg_list       = NULL;
3574 #endif
3575         env.opcode2id_map  = new_set(cmp_opcode, iro_Last * 4);
3576         env.kept_memory    = NEW_ARR_F(ir_node *, 0);
3577         env.end_idx        = get_opt_global_cse() ? 0 : -1;
3578         env.lambda_input   = 0;
3579         env.modified       = 0;
3580         env.unopt_cf       = 0;
3581         /* options driving the optimization */
3582         env.commutative    = 1;
3583         env.opt_unknown    = 1;
3584
3585         assure_irg_outs(irg);
3586         assure_cf_loop(irg);
3587
3588         /* we have our own value_of function */
3589         set_value_of_func(get_node_tarval);
3590
3591         set_compute_functions();
3592         DEBUG_ONLY(part_nr = 0);
3593
3594         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST);
3595
3596         if (env.opt_unknown)
3597                 tarval_UNKNOWN = tarval_top;
3598         else
3599                 tarval_UNKNOWN = tarval_bad;
3600
3601         /* create the initial partition and place it on the work list */
3602         env.initial = new_partition(&env);
3603         add_to_worklist(env.initial, &env);
3604         irg_walk_graph(irg, create_initial_partitions, init_block_phis, &env);
3605
3606         /* set the hook: from now, every node has a partition and a type */
3607         DEBUG_ONLY(set_dump_node_vcgattr_hook(dump_partition_hook));
3608
3609         /* all nodes on the initial partition have type Top */
3610         env.initial->type_is_T_or_C = 1;
3611
3612         /* Place the START Node's partition on cprop.
3613            Place the START Node on its local worklist. */
3614         initial_bl = get_irg_start_block(irg);
3615         start      = get_irn_node(initial_bl);
3616         add_to_cprop(start, &env);
3617
3618         do {
3619                 propagate(&env);
3620                 if (env.worklist != NULL)
3621                         cause_splits(&env);
3622         } while (env.cprop != NULL || env.worklist != NULL);
3623
3624         dump_all_partitions(&env);
3625         check_all_partitions(&env);
3626
3627 #if 0
3628         dump_ir_block_graph(irg, "-partition");
3629 #endif
3630
3631         /* apply the result */
3632
3633         /* check, which nodes must be kept */
3634         irg_walk_graph(irg, NULL, find_kept_memory, &env);
3635
3636         /* kill unreachable control flow */
3637         irg_block_walk_graph(irg, NULL, apply_cf, &env);
3638         /* Kill keep-alives of dead blocks: this speeds up apply_result()
3639          * and fixes assertion because dead cf to dead blocks is NOT removed by
3640          * apply_cf(). */
3641         apply_end(get_irg_end(irg), &env);
3642         irg_walk_graph(irg, NULL, apply_result, &env);
3643
3644         len = ARR_LEN(env.kept_memory);
3645         if (len > 0)
3646                 add_memory_keeps(env.kept_memory, len);
3647
3648         if (env.unopt_cf) {
3649                 DB((dbg, LEVEL_1, "Unoptimized Control Flow left"));
3650         }
3651
3652         if (env.modified) {
3653                 /* control flow might changed */
3654                 set_irg_outs_inconsistent(irg);
3655                 set_irg_extblk_inconsistent(irg);
3656                 set_irg_doms_inconsistent(irg);
3657                 set_irg_loopinfo_inconsistent(irg);
3658                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
3659         }
3660
3661         ir_free_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST);
3662
3663         /* remove the partition hook */
3664         DEBUG_ONLY(set_dump_node_vcgattr_hook(NULL));
3665
3666         DEL_ARR_F(env.kept_memory);
3667         del_set(env.opcode2id_map);
3668         obstack_free(&env.obst, NULL);
3669
3670         /* restore value_of() default behavior */
3671         set_value_of_func(NULL);
3672         current_ir_graph = rem;
3673 }  /* combo */
3674
3675 /* Creates an ir_graph pass for combo. */
3676 ir_graph_pass_t *combo_pass(const char *name)
3677 {
3678         return def_graph_pass(name ? name : "combo", combo);
3679 }  /* combo_pass */