- reverted to 2bit flags
[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  * Note further that we use the terminology from Click's work here, which is different
27  * in some cases from Firm terminology.  Especially, Click's type is a
28  * Firm tarval/entity, nevertheless we call it type here for "maximum compatibility".
29  */
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <assert.h>
35
36 #include "iroptimize.h"
37 #include "archop.h"
38 #include "irflag.h"
39 #include "ircons.h"
40 #include "list.h"
41 #include "set.h"
42 #include "pmap.h"
43 #include "obstack.h"
44 #include "irgraph_t.h"
45 #include "irnode_t.h"
46 #include "iropt_t.h"
47 #include "irgwalk.h"
48 #include "irop.h"
49 #include "irouts.h"
50 #include "irgmod.h"
51 #include "debug.h"
52 #include "error.h"
53
54 #include "tv_t.h"
55
56 #include "irprintf.h"
57 #include "irdump.h"
58
59 /* define this to check that all type translations are monotone */
60 #define VERIFY_MONOTONE
61
62 /* define this to check the consistency of partitions */
63 #define CHECK_PARTITIONS
64
65 /* define this to disable followers (may be buggy) */
66 #undef NO_FOLLOWER
67
68 typedef struct node_t            node_t;
69 typedef struct partition_t       partition_t;
70 typedef struct opcode_key_t      opcode_key_t;
71 typedef struct listmap_entry_t   listmap_entry_t;
72
73 /** The type of the compute function. */
74 typedef void (*compute_func)(node_t *node);
75
76 /**
77  * An opcode map key.
78  */
79 struct opcode_key_t {
80         ir_opcode   code;   /**< The Firm opcode. */
81         ir_mode     *mode;  /**< The mode of all nodes in the partition. */
82         int         arity;  /**< The arity of this opcode (needed for Phi etc. */
83         union {
84                 long      proj;   /**< For Proj nodes, its proj number */
85                 ir_entity *ent;   /**< For Sel Nodes, its entity */
86         } u;
87 };
88
89 /**
90  * An entry in the list_map.
91  */
92 struct listmap_entry_t {
93         void            *id;    /**< The id. */
94         node_t          *list;  /**< The associated list for this id. */
95         listmap_entry_t *next;  /**< Link to the next entry in the map. */
96 };
97
98 /** We must map id's to lists. */
99 typedef struct listmap_t {
100         set             *map;    /**< Map id's to listmap_entry_t's */
101         listmap_entry_t *values; /**< List of all values in the map. */
102 } listmap_t;
103
104 /**
105  * A lattice element. Because we handle constants and symbolic constants different, we
106  * have to use this union.
107  */
108 typedef union {
109         tarval          *tv;
110         symconst_symbol sym;
111 } lattice_elem_t;
112
113 /**
114  * A node.
115  */
116 struct node_t {
117         ir_node         *node;          /**< The IR-node itself. */
118         list_head       node_list;      /**< Double-linked list of leader/follower entries. */
119         list_head       cprop_list;     /**< Double-linked partition.cprop list. */
120         partition_t     *part;          /**< points to the partition this node belongs to */
121         node_t          *next;          /**< Next node on local list (partition.touched, fallen). */
122         node_t          *race_next;     /**< Next node on race list. */
123         lattice_elem_t  type;           /**< The associated lattice element "type". */
124         int             max_user_input; /**< Maximum input number of Def-Use edges. */
125         int             next_edge;      /**< Index of the next Def-Use edge to use. */
126         int             n_followers;    /**< Number of Follower in the outs set. */
127         unsigned        on_touched:1;   /**< Set, if this node is on the partition.touched set. */
128         unsigned        on_cprop:1;     /**< Set, if this node is on the partition.cprop list. */
129         unsigned        on_fallen:1;    /**< Set, if this node is on the fallen list. */
130         unsigned        is_follower:1;  /**< Set, if this node is a follower. */
131         unsigned        by_all_const:1; /**< Set, if this node was once evaluated by all constants. */
132         unsigned        flagged:2;      /**< 2 Bits, set if this node was visited by race 1 or 2. */
133 };
134
135 /**
136  * A partition containing congruent nodes.
137  */
138 struct partition_t {
139         list_head         Leader;          /**< The head of partition Leader node list. */
140         list_head         Follower;        /**< The head of partition Follower node list. */
141         list_head         cprop;           /**< The head of partition.cprop list. */
142         partition_t       *wl_next;        /**< Next entry in the work list if any. */
143         partition_t       *touched_next;   /**< Points to the next partition in the touched set. */
144         partition_t       *cprop_next;     /**< Points to the next partition in the cprop list. */
145         partition_t       *split_next;     /**< Points to the next partition in the list that must be split by split_by(). */
146         node_t            *touched;        /**< The partition.touched set of this partition. */
147         unsigned          n_leader;        /**< Number of entries in this partition.Leader. */
148         unsigned          n_touched;       /**< Number of entries in the partition.touched. */
149         int               max_user_inputs; /**< Maximum number of user inputs of all entries. */
150         unsigned          on_worklist:1;   /**< Set, if this partition is in the work list. */
151         unsigned          on_touched:1;    /**< Set, if this partition is on the touched set. */
152         unsigned          on_cprop:1;      /**< Set, if this partition is on the cprop list. */
153         unsigned          type_is_T_or_C:1;/**< Set, if all nodes in this partition have type Top or Constant. */
154 #ifdef DEBUG_libfirm
155         partition_t       *dbg_next;       /**< Link all partitions for debugging */
156         unsigned          nr;              /**< A unique number for (what-)mapping, >0. */
157 #endif
158 };
159
160 typedef struct environment_t {
161         struct obstack  obst;           /**< obstack to allocate data structures. */
162         partition_t     *worklist;      /**< The work list. */
163         partition_t     *cprop;         /**< The constant propagation list. */
164         partition_t     *touched;       /**< the touched set. */
165         partition_t     *initial;       /**< The initial partition. */
166         set             *opcode2id_map; /**< The opcodeMode->id map. */
167         pmap            *type2id_map;   /**< The type->id map. */
168         int             end_idx;        /**< -1 for local and 0 for global congruences. */
169         int             lambda_input;   /**< Captured argument for lambda_partition(). */
170         int             modified;       /**< Set, if the graph was modified. */
171 #ifdef DEBUG_libfirm
172         partition_t     *dbg_list;      /**< List of all partitions. */
173 #endif
174 } environment_t;
175
176 /** Type of the what function. */
177 typedef void *(*what_func)(const node_t *node, environment_t *env);
178
179 #define get_irn_node(follower)         ((node_t *)get_irn_link(follower))
180 #define set_irn_node(follower, node)   set_irn_link(follower, node)
181
182 /* we do NOT use tarval_unreachable here, instead we use Top for this purpose */
183 #undef tarval_unreachable
184 #define tarval_unreachable tarval_top
185
186
187 /** The debug module handle. */
188 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
189
190 /** Next partition number. */
191 DEBUG_ONLY(static unsigned part_nr = 0);
192
193 /* forward */
194 static node_t *identity(node_t *node);
195
196 #ifdef CHECK_PARTITIONS
197 /**
198  * Check a partition.
199  */
200 static void check_partition(const partition_t *T) {
201         node_t   *node;
202         unsigned n = 0;
203
204         list_for_each_entry(node_t, node, &T->Leader, node_list) {
205                 assert(node->is_follower == 0);
206                 assert(node->flagged == 0);
207                 assert(node->part == T);
208                 ++n;
209         }
210         assert(n == T->n_leader);
211
212         list_for_each_entry(node_t, node, &T->Follower, node_list) {
213                 assert(node->is_follower == 1);
214                 assert(node->flagged == 0);
215                 assert(node->part == T);
216         }
217 }  /* check_partition */
218
219 static void check_all_partitions(environment_t *env) {
220         partition_t *P;
221         node_t      *node;
222
223         for (P = env->dbg_list; P != NULL; P = P->dbg_next) {
224                 check_partition(P);
225                 list_for_each_entry(node_t, node, &P->Follower, node_list) {
226                         node_t *leader = identity(node);
227
228                         assert(leader != node && leader->part == node->part);
229                 }
230         }
231 }
232
233 /**
234  * Check list.
235  */
236 static void do_check_list(const node_t *list, int ofs, const partition_t *Z) {
237         const node_t *e;
238
239 #define NEXT(e)  *((const node_t **)((char *)(e) + (ofs)))
240         for (e = list; e != NULL; e = NEXT(e)) {
241                 assert(e->part == Z);
242         }
243 #undef NEXT
244 }  /* ido_check_list */
245
246 /**
247  * Check a local list.
248  */
249 static void check_list(const node_t *list, const partition_t *Z) {
250         do_check_list(list, offsetof(node_t, next), Z);
251 }  /* check_list */
252
253 #else
254 #define check_partition(T)
255 #define check_list(list, Z)
256 #define check_all_partitions(env)
257 #endif /* CHECK_PARTITIONS */
258
259 #ifdef DEBUG_libfirm
260 static INLINE lattice_elem_t get_partition_type(const partition_t *X);
261
262 /**
263  * Dump partition to output.
264  */
265 static void dump_partition(const char *msg, const partition_t *part) {
266         const node_t   *node;
267         int            first = 1;
268         lattice_elem_t type = get_partition_type(part);
269
270         DB((dbg, LEVEL_2, "%s part%u%s (%u, %+F) {\n  ",
271                 msg, part->nr, part->type_is_T_or_C ? "*" : "",
272                 part->n_leader, type));
273         list_for_each_entry(node_t, node, &part->Leader, node_list) {
274                 DB((dbg, LEVEL_2, "%s%+F", first ? "" : ", ", node->node));
275                 first = 0;
276         }
277         if (! list_empty(&part->Follower)) {
278                 DB((dbg, LEVEL_2, "\n---\n  "));
279                 first = 1;
280                 list_for_each_entry(node_t, node, &part->Follower, node_list) {
281                         DB((dbg, LEVEL_2, "%s%+F", first ? "" : ", ", node->node));
282                         first = 0;
283                 }
284         }
285         DB((dbg, LEVEL_2, "\n}\n"));
286 }  /* dump_partition */
287
288 /**
289  * Dumps a list.
290  */
291 static void do_dump_list(const char *msg, const node_t *node, int ofs) {
292         const node_t *p;
293         int          first = 1;
294
295 #define GET_LINK(p, ofs)  *((const node_t **)((char *)(p) + (ofs)))
296
297         DB((dbg, LEVEL_3, "%s = {\n  ", msg));
298         for (p = node; p != NULL; p = GET_LINK(p, ofs)) {
299                 DB((dbg, LEVEL_3, "%s%+F", first ? "" : ", ", p->node));
300                 first = 0;
301         }
302         DB((dbg, LEVEL_3, "\n}\n"));
303
304 #undef GET_LINK
305 }
306
307 /**
308  * Dumps a race list.
309  */
310 static void dump_race_list(const char *msg, const node_t *list) {
311         do_dump_list(msg, list, offsetof(node_t, race_next));
312 }
313
314 /**
315  * Dumps a local list.
316  */
317 static void dump_list(const char *msg, const node_t *list) {
318         do_dump_list(msg, list, offsetof(node_t, next));
319 }
320
321 /**
322  * Dump all partitions.
323  */
324 static void dump_all_partitions(const environment_t *env) {
325         const partition_t *P;
326
327         DB((dbg, LEVEL_2, "All partitions\n===============\n"));
328         for (P = env->dbg_list; P != NULL; P = P->dbg_next)
329                 dump_partition("", P);
330 }
331
332 #else
333 #define dump_partition(msg, part)
334 #define dump_race_list(msg, list)
335 #define dump_list(msg, list)
336 #define dump_all_partitions(env)
337 #endif
338
339 #if defined(VERIFY_MONOTONE) && defined (DEBUG_libfirm)
340 /**
341  * Verify that a type transition is monotone
342  */
343 static void verify_type(const lattice_elem_t old_type, const lattice_elem_t new_type) {
344         if (old_type.tv == new_type.tv) {
345                 /* no change */
346                 return;
347         }
348         if (old_type.tv == tarval_top) {
349                 /* from Top down-to is always allowed */
350                 return;
351         }
352         if (old_type.tv == tarval_reachable) {
353                 panic("verify_type(): wrong translation from %+F to %+F", old_type, new_type);
354         }
355         if (new_type.tv == tarval_bottom || new_type.tv == tarval_reachable) {
356                 /* bottom reached */
357                 return;
358         }
359         panic("verify_type(): wrong translation from %+F to %+F", old_type, new_type);
360 }
361 #else
362 #define verify_type(old_type, new_type)
363 #endif
364
365 /**
366  * Compare two pointer values of a listmap.
367  */
368 static int listmap_cmp_ptr(const void *elt, const void *key, size_t size) {
369         const listmap_entry_t *e1 = elt;
370         const listmap_entry_t *e2 = key;
371
372         (void) size;
373         return e1->id != e2->id;
374 }  /* listmap_cmp_ptr */
375
376 /**
377  * Initializes a listmap.
378  *
379  * @param map  the listmap
380  */
381 static void listmap_init(listmap_t *map) {
382         map->map    = new_set(listmap_cmp_ptr, 16);
383         map->values = NULL;
384 }  /* listmap_init */
385
386 /**
387  * Terminates a listmap.
388  *
389  * @param map  the listmap
390  */
391 static void listmap_term(listmap_t *map) {
392         del_set(map->map);
393 }  /* listmap_term */
394
395 /**
396  * Return the associated listmap entry for a given id.
397  *
398  * @param map  the listmap
399  * @param id   the id to search for
400  *
401  * @return the asociated listmap entry for the given id
402  */
403 static listmap_entry_t *listmap_find(listmap_t *map, void *id) {
404         listmap_entry_t key, *entry;
405
406         key.id   = id;
407         key.list = NULL;
408         key.next = NULL;
409         entry = set_insert(map->map, &key, sizeof(key), HASH_PTR(id));
410
411         if (entry->list == NULL) {
412                 /* a new entry, put into the list */
413                 entry->next = map->values;
414                 map->values = entry;
415         }
416         return entry;
417 }  /* listmap_find */
418
419 /**
420  * Calculate the hash value for an opcode map entry.
421  *
422  * @param entry  an opcode map entry
423  *
424  * @return a hash value for the given opcode map entry
425  */
426 static unsigned opcode_hash(const opcode_key_t *entry) {
427         return (entry->mode - (ir_mode *)0) * 9 + entry->code + entry->u.proj * 3 + HASH_PTR(entry->u.ent);
428 }  /* opcode_hash */
429
430 /**
431  * Compare two entries in the opcode map.
432  */
433 static int cmp_opcode(const void *elt, const void *key, size_t size) {
434         const opcode_key_t *o1 = elt;
435         const opcode_key_t *o2 = key;
436
437         (void) size;
438         return o1->code != o2->code || o1->mode != o2->mode ||
439                o1->arity != o2->arity ||
440                o1->u.proj != o2->u.proj || o1->u.ent != o2->u.ent;
441 }  /* cmp_opcode */
442
443 /**
444  * Compare two Def-Use edges for input position.
445  */
446 static int cmp_def_use_edge(const void *a, const void *b) {
447         const ir_def_use_edge *ea = a;
448         const ir_def_use_edge *eb = b;
449
450         /* no overrun, because range is [-1, MAXINT] */
451         return ea->pos - eb->pos;
452 }  /* cmp_def_use_edge */
453
454 /**
455  * We need the Def-Use edges sorted.
456  */
457 static void sort_irn_outs(node_t *node) {
458         ir_node *irn = node->node;
459         int n_outs = get_irn_n_outs(irn);
460
461         if (n_outs > 1) {
462                 qsort(&irn->out[1], n_outs, sizeof(irn->out[0]), cmp_def_use_edge);
463         }
464         node->max_user_input = irn->out[n_outs].pos;
465 }  /* sort_irn_outs */
466
467 /**
468  * Return the type of a node.
469  *
470  * @param irn  an IR-node
471  *
472  * @return the associated type of this node
473  */
474 static INLINE lattice_elem_t get_node_type(const ir_node *irn) {
475         return get_irn_node(irn)->type;
476 }  /* get_node_type */
477
478 /**
479  * Return the tarval of a node.
480  *
481  * @param irn  an IR-node
482  *
483  * @return the associated type of this node
484  */
485 static INLINE tarval *get_node_tarval(const ir_node *irn) {
486         lattice_elem_t type = get_node_type(irn);
487
488         if (is_tarval(type.tv))
489                 return type.tv;
490         return tarval_bottom;
491 }  /* get_node_type */
492
493 /**
494  * Add a partition to the worklist.
495  */
496 static INLINE void add_to_worklist(partition_t *X, environment_t *env) {
497         assert(X->on_worklist == 0);
498         X->wl_next     = env->worklist;
499         X->on_worklist = 1;
500         env->worklist  = X;
501 }  /* add_to_worklist */
502
503 /**
504  * Create a new empty partition.
505  *
506  * @param env   the environment
507  *
508  * @return a newly allocated partition
509  */
510 static INLINE partition_t *new_partition(environment_t *env) {
511         partition_t *part = obstack_alloc(&env->obst, sizeof(*part));
512
513         INIT_LIST_HEAD(&part->Leader);
514         INIT_LIST_HEAD(&part->Follower);
515         INIT_LIST_HEAD(&part->cprop);
516         part->wl_next         = NULL;
517         part->touched_next    = NULL;
518         part->cprop_next      = NULL;
519         part->split_next      = NULL;
520         part->touched         = NULL;
521         part->n_leader        = 0;
522         part->n_touched       = 0;
523         part->max_user_inputs = 0;
524         part->on_worklist     = 0;
525         part->on_touched      = 0;
526         part->on_cprop        = 0;
527         part->type_is_T_or_C  = 0;
528 #ifdef DEBUG_libfirm
529         part->dbg_next        = env->dbg_list;
530         env->dbg_list         = part;
531         part->nr              = part_nr++;
532 #endif
533
534         return part;
535 }  /* new_partition */
536
537 /**
538  * Get the first node from a partition.
539  */
540 static INLINE node_t *get_first_node(const partition_t *X) {
541         return list_entry(X->Leader.next, node_t, node_list);
542 }  /* get_first_node */
543
544 /**
545  * Return the type of a partition (assuming partition is non-empty and
546  * all elements have the same type).
547  *
548  * @param X  a partition
549  *
550  * @return the type of the first element of the partition
551  */
552 static INLINE lattice_elem_t get_partition_type(const partition_t *X) {
553         const node_t *first = get_first_node(X);
554         return first->type;
555 }  /* get_partition_type */
556
557 /**
558  * Creates a partition node for the given IR-node and place it
559  * into the given partition.
560  *
561  * @param irn   an IR-node
562  * @param part  a partition to place the node in
563  * @param env   the environment
564  *
565  * @return the created node
566  */
567 static node_t *create_partition_node(ir_node *irn, partition_t *part, environment_t *env) {
568         /* create a partition node and place it in the partition */
569         node_t *node = obstack_alloc(&env->obst, sizeof(*node));
570
571         INIT_LIST_HEAD(&node->node_list);
572         INIT_LIST_HEAD(&node->cprop_list);
573         node->node           = irn;
574         node->part           = part;
575         node->next           = NULL;
576         node->race_next      = NULL;
577         node->type.tv        = tarval_top;
578         node->max_user_input = 0;
579         node->next_edge      = 0;
580         node->n_followers    = 0;
581         node->on_touched     = 0;
582         node->on_cprop       = 0;
583         node->on_fallen      = 0;
584         node->is_follower    = 0;
585         node->by_all_const   = 0;
586         node->flagged        = 0;
587         set_irn_node(irn, node);
588
589         list_add_tail(&node->node_list, &part->Leader);
590         ++part->n_leader;
591
592         return node;
593 }  /* create_partition_node */
594
595 /**
596  * Pre-Walker, init all Block-Phi lists.
597  */
598 static void init_block_phis(ir_node *irn, void *env) {
599         (void) env;
600
601         if (is_Block(irn)) {
602                 set_Block_phis(irn, NULL);
603         }
604 }  /* init_block_phis */
605
606 /**
607  * Post-Walker, initialize all Nodes' type to U or top and place
608  * all nodes into the TOP partition.
609  */
610 static void create_initial_partitions(ir_node *irn, void *ctx) {
611         environment_t *env  = ctx;
612         partition_t   *part = env->initial;
613         node_t        *node;
614
615         node = create_partition_node(irn, part, env);
616         sort_irn_outs(node);
617         if (node->max_user_input > part->max_user_inputs)
618                 part->max_user_inputs = node->max_user_input;
619
620         if (is_Phi(irn)) {
621                 add_Block_phi(get_nodes_block(irn), irn);
622         }
623 }  /* create_initial_partitions */
624
625 /**
626  * Add a node to the entry.partition.touched set and
627  * node->partition to the touched set if not already there.
628  *
629  * @param y    a node
630  * @param env  the environment
631  */
632 static INLINE void add_to_touched(node_t *y, environment_t *env) {
633         if (y->on_touched == 0) {
634                 partition_t *part = y->part;
635
636                 y->next       = part->touched;
637                 part->touched = y;
638                 y->on_touched = 1;
639                 ++part->n_touched;
640
641                 if (part->on_touched == 0) {
642                         part->touched_next = env->touched;
643                         env->touched       = part;
644                         part->on_touched   = 1;
645                 }
646
647                 check_list(part->touched, part);
648         }
649 }  /* add_to_touched */
650
651 /**
652  * Place a node on the cprop list.
653  *
654  * @param y    the node
655  * @param env  the environment
656  */
657 static void add_to_cprop(node_t *y, environment_t *env) {
658         /* Add y to y.partition.cprop. */
659         if (y->on_cprop == 0) {
660                 partition_t *Y = y->part;
661
662                 list_add_tail(&y->cprop_list, &Y->cprop);
663                 y->on_cprop   = 1;
664
665                 DB((dbg, LEVEL_3, "Add %+F to part%u.cprop\n", y->node, Y->nr));
666
667                 /* place its partition on the cprop list */
668                 if (Y->on_cprop == 0) {
669                         Y->cprop_next = env->cprop;
670                         env->cprop    = Y;
671                         Y->on_cprop   = 1;
672                 }
673         }
674         if (get_irn_mode(y->node) == mode_T) {
675                 /* mode_T nodes always produce tarval_bottom, so we must explicitly
676                    add it's Proj's to get constant evaluation to work */
677                 int i;
678
679                 for (i = get_irn_n_outs(y->node) - 1; i >= 0; --i) {
680                         node_t *proj = get_irn_node(get_irn_out(y->node, i));
681
682                         add_to_cprop(proj, env);
683                 }
684         } else if (is_Block(y->node)) {
685                 /* Due to the way we handle Phi's, we must place all Phis of a block on the list
686                  * if someone placed the block. The Block is only placed if the reachability
687                  * changes, and this must be re-evaluated in compute_Phi(). */
688                 ir_node *phi;
689                 for (phi = get_Block_phis(y->node); phi != NULL; phi = get_Phi_next(phi)) {
690                         node_t *p = get_irn_node(phi);
691                         add_to_cprop(p, env);
692                 }
693         }
694 }  /* add_to_cprop */
695
696 /**
697  * Update the worklist: If Z is on worklist then add Z' to worklist.
698  * Else add the smaller of Z and Z' to worklist.
699  *
700  * @param Z        the Z partition
701  * @param Z_prime  the Z' partition, a previous part of Z
702  * @param env      the environment
703  */
704 static void update_worklist(partition_t *Z, partition_t *Z_prime, environment_t *env) {
705         if (Z->on_worklist || Z_prime->n_leader < Z->n_leader) {
706                 add_to_worklist(Z_prime, env);
707         } else {
708                 add_to_worklist(Z, env);
709         }
710 }  /* update_worklist */
711
712 /**
713  * Make all inputs to x no longer be F.def_use edges.
714  *
715  * @param x  the node
716  */
717 static void move_edges_to_leader(node_t *x) {
718         ir_node     *irn = x->node;
719         int         i, j, k;
720
721         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
722                 node_t  *pred = get_irn_node(get_irn_n(irn, i));
723                 ir_node *p;
724                 int     n;
725
726                 p = pred->node;
727                 n = get_irn_n_outs(p);
728                 for (j = 1; j <= pred->n_followers; ++j) {
729                         if (p->out[j].pos == i && p->out[j].use == irn) {
730                                 /* found a follower edge to x, move it to the Leader */
731                                 ir_def_use_edge edge = p->out[j];
732
733                                 /* remove this edge from the Follower set */
734                                 p->out[j] = p->out[pred->n_followers];
735                                 --pred->n_followers;
736
737                                 /* sort it into the leader set */
738                                 for (k = pred->n_followers + 2; k <= n; ++k) {
739                                         if (p->out[k].pos >= edge.pos)
740                                                 break;
741                                         p->out[k - 1] = p->out[k];
742                                 }
743                                 /* place the new edge here */
744                                 p->out[k - 1] = edge;
745
746                                 /* edge found and moved */
747                                 break;
748                         }
749                 }
750         }
751 }  /* move_edges_to_leader */
752
753 /**
754  * Split a partition that has NO followers by a local list.
755  *
756  * @param Z    partition to split
757  * @param g    a (non-empty) node list
758  * @param env  the environment
759  *
760  * @return  a new partition containing the nodes of g
761  */
762 static partition_t *split_no_followers(partition_t *Z, node_t *g, environment_t *env) {
763         partition_t *Z_prime;
764         node_t      *node;
765         unsigned    n = 0;
766         int         max_input;
767
768         dump_partition("Splitting ", Z);
769         dump_list("by list ", g);
770
771         assert(g != NULL);
772
773         /* Remove g from Z. */
774         for (node = g; node != NULL; node = node->next) {
775                 assert(node->part == Z);
776                 list_del(&node->node_list);
777                 ++n;
778         }
779         assert(n < Z->n_leader);
780         Z->n_leader -= n;
781
782         /* Move g to a new partition, Z'. */
783         Z_prime = new_partition(env);
784         max_input = 0;
785         for (node = g; node != NULL; node = node->next) {
786                 list_add_tail(&node->node_list, &Z_prime->Leader);
787                 node->part = Z_prime;
788                 if (node->max_user_input > max_input)
789                         max_input = node->max_user_input;
790         }
791         Z_prime->max_user_inputs = max_input;
792         Z_prime->n_leader        = n;
793
794         check_partition(Z);
795         check_partition(Z_prime);
796
797         /* for now, copy the type info tag, it will be adjusted in split_by(). */
798         Z_prime->type_is_T_or_C = Z->type_is_T_or_C;
799
800         update_worklist(Z, Z_prime, env);
801
802         dump_partition("Now ", Z);
803         dump_partition("Created new ", Z_prime);
804         return Z_prime;
805 }  /* split_no_followers */
806
807 #ifdef NO_FOLLOWER
808
809 #define split(Z, g, env) split_no_followers(*(Z), g, env)
810
811 #else
812
813 /**
814  * Make the Follower -> Leader transition for a node.
815  *
816  * @param n  the node
817  */
818 static void follower_to_leader(node_t *n) {
819         assert(n->is_follower == 1);
820
821         DB((dbg, LEVEL_2, "%+F make the follower -> leader transition\n", n->node));
822         n->is_follower = 0;
823         move_edges_to_leader(n);
824         list_del(&n->node_list);
825         list_add_tail(&n->node_list, &n->part->Leader);
826         ++n->part->n_leader;
827 }  /* follower_to_leader */
828
829 /**
830  * The environment for one race step.
831  */
832 typedef struct step_env {
833         node_t   *initial;    /**< The initial node list. */
834         node_t   *unwalked;   /**< The unwalked node list. */
835         node_t   *walked;     /**< The walked node list. */
836         int      index;       /**< Next index of Follower use_def edge. */
837         unsigned side;        /**< side number. */
838 } step_env;
839
840 /**
841  * Return non-zero, if a input is a real follower
842  *
843  * @param irn    the node to check
844  * @param input  number of the input
845  */
846 static int is_real_follower(const ir_node *irn, int input) {
847         if (input == 1 && is_Confirm(irn)) {
848                 /* return the Confirm bound input */
849                 return 0;
850         }
851         if (input == 0 && is_Mux(irn)) {
852                 /* ignore the Mux sel input */
853                 return 0;
854         }
855         if (is_Phi(irn)) {
856                 /* dead inputs are not follower edges */
857                 ir_node *block = get_nodes_block(irn);
858                 node_t  *pred  = get_irn_node(get_Block_cfgpred(block, input));
859
860                 if (pred->type.tv == tarval_unreachable)
861                         return 0;
862         }
863         return 1;
864 }
865
866 /**
867  * Do one step in the race.
868  */
869 static int step(step_env *env) {
870         node_t *n;
871
872         if (env->initial != NULL) {
873                 /* Move node from initial to unwalked */
874                 n             = env->initial;
875                 env->initial  = n->race_next;
876
877                 n->race_next  = env->unwalked;
878                 env->unwalked = n;
879
880                 return 0;
881         }
882
883         while (env->unwalked != NULL) {
884                 /* let n be the first node in unwalked */
885                 n = env->unwalked;
886                 while (env->index < n->n_followers) {
887                         const ir_def_use_edge *edge = &n->node->out[1 + env->index];
888
889                         /* let m be n.F.def_use[index] */
890                         node_t *m = get_irn_node(edge->use);
891
892                         assert(m->is_follower);
893                         /*
894                          * Some inputs, like the get_Confirm_bound are NOT
895                          * real followers, sort them out.
896                          */
897                         if (! is_real_follower(m->node, edge->pos)) {
898                                 ++env->index;
899                                 continue;
900                         }
901                         ++env->index;
902
903                         /* only followers from our partition */
904                         if (m->part != n->part)
905                                 continue;
906
907                         if ((m->flagged & env->side) == 0) {
908                                 m->flagged |= env->side;
909
910                                 if (m->flagged != 3) {
911                                         /* visited the first time */
912                                         /* add m to unwalked not as first node (we might still need to
913                                            check for more follower node */
914                                         m->race_next = n->race_next;
915                                         n->race_next = m;
916                                         return 0;
917                                 }
918                                 /* else already visited by the other side and on the other list */
919                         }
920                 }
921                 /* move n to walked */
922                 env->unwalked = n->race_next;
923                 n->race_next  = env->walked;
924                 env->walked   = n;
925                 env->index    = 0;
926         }
927         return 1;
928 }  /* step */
929
930 /**
931  * Clear the flags from a list and check for
932  * nodes that where touched from both sides.
933  *
934  * @param list  the list
935  */
936 static int clear_flags(node_t *list) {
937         int    res = 0;
938         node_t *n;
939
940         for (n = list; n != NULL; n = n->race_next) {
941                 if (n->flagged == 3) {
942                         /* we reach a follower from both sides, this will split congruent
943                          * inputs and make it a leader. */
944                         follower_to_leader(n);
945                         res = 1;
946                 }
947                 n->flagged = 0;
948         }
949         return res;
950 }  /* clear_flags */
951
952 /**
953  * Split a partition by a local list using the race.
954  *
955  * @param pX   pointer to the partition to split, might be changed!
956  * @param gg   a (non-empty) node list
957  * @param env  the environment
958  *
959  * @return  a new partition containing the nodes of gg
960  */
961 static partition_t *split(partition_t **pX, node_t *gg, environment_t *env) {
962         partition_t *X = *pX;
963         partition_t *X_prime;
964         list_head   tmp;
965         step_env    env1, env2, *winner;
966         node_t      *g, *h, *node, *t;
967         int         max_input, transitions;
968         unsigned    n;
969         DEBUG_ONLY(static int run = 0;)
970
971         DB((dbg, LEVEL_2, "Run %d ", run++));
972         if (list_empty(&X->Follower)) {
973                 /* if the partition has NO follower, we can use the fast
974                    splitting algorithm. */
975                 return split_no_followers(X, gg, env);
976         }
977         /* else do the race */
978
979         dump_partition("Splitting ", X);
980         dump_list("by list ", gg);
981
982         INIT_LIST_HEAD(&tmp);
983
984         /* Remove gg from X.Leader and put into g */
985         g = NULL;
986         for (node = gg; node != NULL; node = node->next) {
987                 assert(node->part == X);
988                 assert(node->is_follower == 0);
989
990                 list_del(&node->node_list);
991                 list_add_tail(&node->node_list, &tmp);
992                 node->race_next = g;
993                 g               = node;
994         }
995         /* produce h */
996         h = NULL;
997         list_for_each_entry(node_t, node, &X->Leader, node_list) {
998                 node->race_next = h;
999                 h               = node;
1000         }
1001         /* restore X.Leader */
1002         list_splice(&tmp, &X->Leader);
1003
1004         env1.initial       = g;
1005         env1.unwalked      = NULL;
1006         env1.walked        = NULL;
1007         env1.index         = 0;
1008         env1.side          = 1;
1009
1010         env2.initial       = h;
1011         env2.unwalked      = NULL;
1012         env2.walked        = NULL;
1013         env2.index         = 0;
1014         env2.side          = 2;
1015
1016         for (;;) {
1017                 if (step(&env1)) {
1018                         winner = &env1;
1019                         break;
1020                 }
1021                 if (step(&env2)) {
1022                         winner = &env2;
1023                         break;
1024                 }
1025         }
1026         assert(winner->initial == NULL);
1027         assert(winner->unwalked == NULL);
1028
1029         /* clear flags from walked/unwalked */
1030         transitions  = clear_flags(env1.unwalked);
1031         transitions |= clear_flags(env1.walked);
1032         transitions |= clear_flags(env2.unwalked);
1033         transitions |= clear_flags(env2.walked);
1034
1035         dump_race_list("winner ", winner->walked);
1036
1037         /* Move walked_{winner} to a new partition, X'. */
1038         X_prime   = new_partition(env);
1039         max_input = 0;
1040         n         = 0;
1041         for (node = winner->walked; node != NULL; node = node->race_next) {
1042                 list_del(&node->node_list);
1043                 node->part = X_prime;
1044                 if (node->is_follower) {
1045                         list_add_tail(&node->node_list, &X_prime->Follower);
1046                 } else {
1047                         list_add_tail(&node->node_list, &X_prime->Leader);
1048                         ++n;
1049                 }
1050                 if (node->max_user_input > max_input)
1051                         max_input = node->max_user_input;
1052         }
1053         X_prime->n_leader        = n;
1054         X_prime->max_user_inputs = max_input;
1055         X->n_leader             -= X_prime->n_leader;
1056
1057         /* for now, copy the type info tag, it will be adjusted in split_by(). */
1058         X_prime->type_is_T_or_C = X->type_is_T_or_C;
1059
1060         /*
1061          * Even if a follower was not checked by both sides, it might have
1062          * loose its congruence, so we need to check this case for all follower.
1063          */
1064         list_for_each_entry_safe(node_t, node, t, &X_prime->Follower, node_list) {
1065                 if (identity(node) == node) {
1066                         follower_to_leader(node);
1067                         transitions = 1;
1068                 }
1069         }
1070
1071         check_partition(X);
1072         check_partition(X_prime);
1073
1074         /* X' is the smaller part */
1075         add_to_worklist(X_prime, env);
1076
1077         /*
1078          * If there where follower to leader transitions, ensure that the nodes
1079          * can be split out if necessary.
1080          */
1081         if (transitions) {
1082                 /* place partitions on the cprop list */
1083                 if (X_prime->on_cprop == 0) {
1084                         X_prime->cprop_next = env->cprop;
1085                         env->cprop          = X_prime;
1086                         X_prime->on_cprop   = 1;
1087                 }
1088                 if (X->on_cprop == 0) {
1089                         X->cprop_next = env->cprop;
1090                         env->cprop    = X;
1091                         X->on_cprop   = 1;
1092                 }
1093         }
1094
1095         dump_partition("Now ", X);
1096         dump_partition("Created new ", X_prime);
1097
1098         /* we have to ensure that the partition containing g is returned */
1099         if (winner == &env2) {
1100                 *pX = X_prime;
1101                 return X;
1102         }
1103
1104         return X_prime;
1105 }  /* split */
1106 #endif /* NO_FOLLOWER */
1107
1108 /**
1109  * Returns non-zero if the i'th input of a Phi node is live.
1110  *
1111  * @param phi  a Phi-node
1112  * @param i    an input number
1113  *
1114  * @return non-zero if the i'th input of the given Phi node is live
1115  */
1116 static int is_live_input(ir_node *phi, int i) {
1117         if (i >= 0) {
1118                 ir_node        *block = get_nodes_block(phi);
1119                 ir_node        *pred  = get_Block_cfgpred(block, i);
1120                 lattice_elem_t type   = get_node_type(pred);
1121
1122                 return type.tv != tarval_unreachable;
1123         }
1124         /* else it's the control input, always live */
1125         return 1;
1126 }  /* is_live_input */
1127
1128 /**
1129  * Return non-zero if a type is a constant.
1130  */
1131 static int is_constant_type(lattice_elem_t type) {
1132         if (type.tv != tarval_bottom && type.tv != tarval_top)
1133                 return 1;
1134         return 0;
1135 }  /* is_constant_type */
1136
1137 /**
1138  * Check whether a type is neither Top or a constant.
1139  * Note: U is handled like Top here, R is a constant.
1140  *
1141  * @param type  the type to check
1142  */
1143 static int type_is_neither_top_nor_const(const lattice_elem_t type) {
1144         if (is_tarval(type.tv)) {
1145                 if (type.tv == tarval_top)
1146                         return 0;
1147                 if (tarval_is_constant(type.tv))
1148                         return 0;
1149         } else {
1150                 /* is a symconst */
1151                 return 0;
1152         }
1153         return 1;
1154 }
1155
1156 /**
1157  * Collect nodes to the touched list.
1158  *
1159  * @param list  the list which contains the nodes that must be evaluated
1160  * @param idx   the index of the def_use edge to evaluate
1161  * @param env   the environment
1162  */
1163 static void collect_touched(list_head *list, int idx, environment_t *env) {
1164         node_t  *x, *y;
1165         int     end_idx = env->end_idx;
1166
1167         list_for_each_entry(node_t, x, list, node_list) {
1168                 int num_edges;
1169
1170                 if (idx == -1) {
1171                         /* leader edges start AFTER follower edges */
1172                         x->next_edge = x->n_followers + 1;
1173                 }
1174                 num_edges = get_irn_n_outs(x->node);
1175
1176                 /* for all edges in x.L.def_use_{idx} */
1177                 while (x->next_edge <= num_edges) {
1178                         const ir_def_use_edge *edge = &x->node->out[x->next_edge];
1179                         ir_node               *succ;
1180
1181                         /* check if we have necessary edges */
1182                         if (edge->pos > idx)
1183                                 break;
1184
1185                         ++x->next_edge;
1186
1187                         succ = edge->use;
1188
1189                         /* ignore the "control input" for non-pinned nodes
1190                         if we are running in GCSE mode */
1191                         if (idx < end_idx && get_irn_pinned(succ) != op_pin_state_pinned)
1192                                 continue;
1193
1194                         y = get_irn_node(succ);
1195                         assert(get_irn_n(succ, idx) == x->node);
1196
1197                         /* ignore block edges touching followers */
1198                         if (idx == -1 && y->is_follower)
1199                                 continue;
1200
1201                         if (is_constant_type(y->type)) {
1202                                 ir_opcode code = get_irn_opcode(succ);
1203                                 if (code == iro_Sub || code == iro_Cmp)
1204                                         add_to_cprop(y, env);
1205                         }
1206
1207                         /* Partitions of constants should not be split simply because their Nodes have unequal
1208                            functions or incongruent inputs. */
1209                         if (type_is_neither_top_nor_const(y->type) &&
1210                                 (! is_Phi(y->node) || is_live_input(y->node, idx))) {
1211                                         add_to_touched(y, env);
1212                         }
1213                 }
1214         }
1215 }  /* collect_touched */
1216
1217 /**
1218  * Split the partitions if caused by the first entry on the worklist.
1219  *
1220  * @param env  the environment
1221  */
1222 static void cause_splits(environment_t *env) {
1223         partition_t *X, *Z, *N;
1224         int         idx;
1225
1226         /* remove the first partition from the worklist */
1227         X = env->worklist;
1228         env->worklist  = X->wl_next;
1229         X->on_worklist = 0;
1230
1231         dump_partition("Cause_split: ", X);
1232
1233         /* combine temporary leader and follower list */
1234         for (idx = -1; idx <= X->max_user_inputs; ++idx) {
1235                 /* empty the touched set: already done, just clear the list */
1236                 env->touched = NULL;
1237
1238                 collect_touched(&X->Leader, idx, env);
1239                 collect_touched(&X->Follower, idx, env);
1240
1241                 for (Z = env->touched; Z != NULL; Z = N) {
1242                         node_t   *e;
1243                         node_t   *touched  = Z->touched;
1244                         unsigned n_touched = Z->n_touched;
1245
1246                         assert(Z->touched != NULL);
1247
1248                         /* beware, split might change Z */
1249                         N = Z->touched_next;
1250
1251                         /* remove it from the touched set */
1252                         Z->on_touched = 0;
1253
1254                         /* Empty local Z.touched. */
1255                         for (e = touched; e != NULL; e = e->next) {
1256                                 assert(e->is_follower == 0);
1257                                 e->on_touched = 0;
1258                         }
1259                         Z->touched   = NULL;
1260                         Z->n_touched = 0;
1261
1262                         if (0 < n_touched && n_touched < Z->n_leader) {
1263                                 DB((dbg, LEVEL_2, "Split part%d by touched\n", Z->nr));
1264                                 split(&Z, touched, env);
1265                         } else
1266                                 assert(n_touched <= Z->n_leader);
1267                 }
1268         }
1269 }  /* cause_splits */
1270
1271 /**
1272  * Implements split_by_what(): Split a partition by characteristics given
1273  * by the what function.
1274  *
1275  * @param X     the partition to split
1276  * @param What  a function returning an Id for every node of the partition X
1277  * @param P     a list to store the result partitions
1278  * @param env   the environment
1279  *
1280  * @return *P
1281  */
1282 static partition_t *split_by_what(partition_t *X, what_func What,
1283                                   partition_t **P, environment_t *env) {
1284         node_t          *x, *S;
1285         listmap_t       map;
1286         listmap_entry_t *iter;
1287         partition_t     *R;
1288
1289         /* Let map be an empty mapping from the range of What to (local) list of Nodes. */
1290         listmap_init(&map);
1291         list_for_each_entry(node_t, x, &X->Leader, node_list) {
1292                 void            *id = What(x, env);
1293                 listmap_entry_t *entry;
1294
1295                 if (id == NULL) {
1296                         /* input not allowed, ignore */
1297                         continue;
1298                 }
1299                 /* Add x to map[What(x)]. */
1300                 entry = listmap_find(&map, id);
1301                 x->next     = entry->list;
1302                 entry->list = x;
1303         }
1304         /* Let P be a set of Partitions. */
1305
1306         /* for all sets S except one in the range of map do */
1307         for (iter = map.values; iter != NULL; iter = iter->next) {
1308                 if (iter->next == NULL) {
1309                         /* this is the last entry, ignore */
1310                         break;
1311                 }
1312                 S = iter->list;
1313
1314                 /* Add SPLIT( X, S ) to P. */
1315                 DB((dbg, LEVEL_2, "Split part%d by what\n", X->nr));
1316                 R = split(&X, S, env);
1317                 R->split_next = *P;
1318                 *P            = R;
1319         }
1320         /* Add X to P. */
1321         X->split_next = *P;
1322         *P            = X;
1323
1324         listmap_term(&map);
1325         return *P;
1326 }  /* split_by_what */
1327
1328 /** lambda n.(n.type) */
1329 static void *lambda_type(const node_t *node, environment_t *env) {
1330         (void)env;
1331         return node->type.tv;
1332 }  /* lambda_type */
1333
1334 /** lambda n.(n.opcode) */
1335 static void *lambda_opcode(const node_t *node, environment_t *env) {
1336         opcode_key_t key, *entry;
1337         ir_node      *irn = node->node;
1338
1339         key.code   = get_irn_opcode(irn);
1340         key.mode   = get_irn_mode(irn);
1341         key.arity  = get_irn_arity(irn);
1342         key.u.proj = 0;
1343         key.u.ent  = NULL;
1344
1345         switch (get_irn_opcode(irn)) {
1346         case iro_Proj:
1347                 key.u.proj = get_Proj_proj(irn);
1348                 break;
1349         case iro_Sel:
1350                 key.u.ent = get_Sel_entity(irn);
1351                 break;
1352         default:
1353                 break;
1354         }
1355
1356         entry = set_insert(env->opcode2id_map, &key, sizeof(key), opcode_hash(&key));
1357         return entry;
1358 }  /* lambda_opcode */
1359
1360 /** lambda n.(n[i].partition) */
1361 static void *lambda_partition(const node_t *node, environment_t *env) {
1362         ir_node *skipped = skip_Proj(node->node);
1363         ir_node *pred;
1364         node_t  *p;
1365         int     i = env->lambda_input;
1366
1367         if (i >= get_irn_arity(node->node)) {
1368                 /* we are outside the allowed range */
1369                 return NULL;
1370         }
1371
1372         /* ignore the "control input" for non-pinned nodes
1373            if we are running in GCSE mode */
1374         if (i < env->end_idx && get_irn_pinned(skipped) != op_pin_state_pinned)
1375                 return NULL;
1376
1377         pred = i == -1 ? get_irn_n(skipped, i) : get_irn_n(node->node, i);
1378         p    = get_irn_node(pred);
1379
1380         return p->part;
1381 }  /* lambda_partition */
1382
1383 /**
1384  * Returns true if a type is a constant.
1385  */
1386 static int is_con(const lattice_elem_t type) {
1387         /* be conservative */
1388         if (is_tarval(type.tv))
1389                 return tarval_is_constant(type.tv);
1390         return is_entity(type.sym.entity_p);
1391 }  /* is_con */
1392
1393 /**
1394  * Implements split_by().
1395  *
1396  * @param X    the partition to split
1397  * @param env  the environment
1398  */
1399 static void split_by(partition_t *X, environment_t *env) {
1400         partition_t *I, *P = NULL;
1401         int         input;
1402
1403         dump_partition("split_by", X);
1404
1405         if (X->n_leader == 1) {
1406                 /* we have only one leader, no need to split, just check it's type */
1407                 node_t *x = get_first_node(X);
1408                 X->type_is_T_or_C = x->type.tv == tarval_top || is_con(x->type);
1409                 return;
1410         }
1411
1412         DB((dbg, LEVEL_2, "WHAT = lambda n.(n.type) on part%d\n", X->nr));
1413         P = split_by_what(X, lambda_type, &P, env);
1414
1415         /* adjust the type tags, we have split partitions by type */
1416         for (I = P; I != NULL; I = I->split_next) {
1417                 node_t *x = get_first_node(I);
1418                 I->type_is_T_or_C = x->type.tv == tarval_top || is_con(x->type);
1419         }
1420
1421         do {
1422                 partition_t *Y = P;
1423
1424                 P = P->split_next;
1425                 if (Y->n_leader > 1) {
1426                         /* we do not want split the TOP or constant partitions */
1427                         if (! Y->type_is_T_or_C) {
1428                                 partition_t *Q = NULL;
1429
1430                                 DB((dbg, LEVEL_2, "WHAT = lambda n.(n.opcode) on part%d\n", Y->nr));
1431                                 Q = split_by_what(Y, lambda_opcode, &Q, env);
1432
1433                                 do {
1434                                         partition_t *Z = Q;
1435
1436                                         Q = Q->split_next;
1437                                         if (Z->n_leader > 1) {
1438                                                 const node_t *first = get_first_node(Z);
1439                                                 int          arity  = get_irn_arity(first->node);
1440                                                 partition_t  *R, *S;
1441
1442                                                 /*
1443                                                  * BEWARE: during splitting by input 2 for instance we might
1444                                                  * create new partitions which are different by input 1, so collect
1445                                                  * them and split further.
1446                                                  */
1447                                                 Z->split_next = NULL;
1448                                                 R             = Z;
1449                                                 S             = NULL;
1450                                                 for (input = arity - 1; input >= -1; --input) {
1451                                                         do {
1452                                                                 partition_t *Z_prime = R;
1453
1454                                                                 R = R->split_next;
1455                                                                 if (Z_prime->n_leader > 1) {
1456                                                                         env->lambda_input = input;
1457                                                                         DB((dbg, LEVEL_2, "WHAT = lambda n.(n[%d].partition) on part%d\n", input, Z_prime->nr));
1458                                                                         S = split_by_what(Z_prime, lambda_partition, &S, env);
1459                                                                 } else {
1460                                                                         Z_prime->split_next = S;
1461                                                                         S                   = Z_prime;
1462                                                                 }
1463                                                         } while (R != NULL);
1464                                                         R = S;
1465                                                         S = NULL;
1466                                                 }
1467                                         }
1468                                 } while (Q != NULL);
1469                         }
1470                 }
1471         } while (P != NULL);
1472 }  /* split_by */
1473
1474 /**
1475  * (Re-)compute the type for a given node.
1476  *
1477  * @param node  the node
1478  */
1479 static void default_compute(node_t *node) {
1480         int     i;
1481         ir_node *irn = node->node;
1482         node_t  *block = get_irn_node(get_nodes_block(irn));
1483
1484         if (block->type.tv == tarval_unreachable) {
1485                 node->type.tv = tarval_top;
1486                 return;
1487         }
1488
1489         /* if any of the data inputs have type top, the result is type top */
1490         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
1491                 ir_node *pred = get_irn_n(irn, i);
1492                 node_t  *p    = get_irn_node(pred);
1493
1494                 if (p->type.tv == tarval_top) {
1495                         node->type.tv = tarval_top;
1496                         return;
1497                 }
1498         }
1499
1500         if (get_irn_mode(node->node) == mode_X)
1501                 node->type.tv = tarval_reachable;
1502         else
1503                 node->type.tv = computed_value(irn);
1504 }  /* default_compute */
1505
1506 /**
1507  * (Re-)compute the type for a Block node.
1508  *
1509  * @param node  the node
1510  */
1511 static void compute_Block(node_t *node) {
1512         int     i;
1513         ir_node *block = node->node;
1514
1515         if (block == get_irg_start_block(current_ir_graph)) {
1516                 /* start block is always reachable */
1517                 node->type.tv = tarval_reachable;
1518                 return;
1519         }
1520
1521         for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i) {
1522                 node_t *pred = get_irn_node(get_Block_cfgpred(block, i));
1523
1524                 if (pred->type.tv == tarval_reachable) {
1525                         /* A block is reachable, if at least of predecessor is reachable. */
1526                         node->type.tv = tarval_reachable;
1527                         return;
1528                 }
1529         }
1530         node->type.tv = tarval_top;
1531 }  /* compute_Block */
1532
1533 /**
1534  * (Re-)compute the type for a Bad node.
1535  *
1536  * @param node  the node
1537  */
1538 static void compute_Bad(node_t *node) {
1539         /* Bad nodes ALWAYS compute Top */
1540         node->type.tv = tarval_top;
1541 }  /* compute_Bad */
1542
1543 /**
1544  * (Re-)compute the type for an Unknown node.
1545  *
1546  * @param node  the node
1547  */
1548 static void compute_Unknown(node_t *node) {
1549         /* While Unknown nodes should compute Top this is dangerous:
1550          * a Top input to a Cond would lead to BOTH control flows unreachable.
1551          * While this is correct in the given semantics, it would destroy the Firm
1552          * graph.
1553          *
1554          * It would be safe to compute Top IF it can be assured, that only Cmp
1555          * nodes are inputs to Conds. We check that first.
1556          * This is the way Frontends typically build Firm, but some optimizations
1557          * (cond_eval for instance) might replace them by Phib's...
1558          *
1559          * For now, we compute bottom here.
1560          */
1561         node->type.tv = tarval_bottom;
1562 }  /* compute_Unknown */
1563
1564 /**
1565  * (Re-)compute the type for a Jmp node.
1566  *
1567  * @param node  the node
1568  */
1569 static void compute_Jmp(node_t *node) {
1570         node_t *block = get_irn_node(get_nodes_block(node->node));
1571
1572         node->type = block->type;
1573 }  /* compute_Jmp */
1574
1575 /**
1576  * (Re-)compute the type for the End node.
1577  *
1578  * @param node  the node
1579  */
1580 static void compute_End(node_t *node) {
1581         /* the End node is NOT dead of course */
1582         node->type.tv = tarval_reachable;
1583 }
1584
1585 /**
1586  * (Re-)compute the type for a SymConst node.
1587  *
1588  * @param node  the node
1589  */
1590 static void compute_SymConst(node_t *node) {
1591         ir_node *irn = node->node;
1592         node_t  *block = get_irn_node(get_nodes_block(irn));
1593
1594         if (block->type.tv == tarval_unreachable) {
1595                 node->type.tv = tarval_top;
1596                 return;
1597         }
1598         switch (get_SymConst_kind(irn)) {
1599         case symconst_addr_ent:
1600         /* case symconst_addr_name: cannot handle this yet */
1601                 node->type.sym = get_SymConst_symbol(irn);
1602                 break;
1603         default:
1604                 node->type.tv = computed_value(irn);
1605         }
1606 }  /* compute_SymConst */
1607
1608 /**
1609  * (Re-)compute the type for a Phi node.
1610  *
1611  * @param node  the node
1612  */
1613 static void compute_Phi(node_t *node) {
1614         int            i;
1615         ir_node        *phi = node->node;
1616         lattice_elem_t type;
1617
1618         /* if a Phi is in a unreachable block, its type is TOP */
1619         node_t *block = get_irn_node(get_nodes_block(phi));
1620
1621         if (block->type.tv == tarval_unreachable) {
1622                 node->type.tv = tarval_top;
1623                 return;
1624         }
1625
1626         /* Phi implements the Meet operation */
1627         type.tv = tarval_top;
1628         for (i = get_Phi_n_preds(phi) - 1; i >= 0; --i) {
1629                 node_t *pred   = get_irn_node(get_Phi_pred(phi, i));
1630                 node_t *pred_X = get_irn_node(get_Block_cfgpred(block->node, i));
1631
1632                 if (pred_X->type.tv == tarval_unreachable || pred->type.tv == tarval_top) {
1633                         /* ignore TOP inputs: We must check here for unreachable blocks,
1634                            because Firm constants live in the Start Block are NEVER Top.
1635                            Else, a Phi (1,2) will produce Bottom, even if the 2 for instance
1636                            comes from a unreachable input. */
1637                         continue;
1638                 }
1639                 if (pred->type.tv == tarval_bottom) {
1640                         node->type.tv = tarval_bottom;
1641                         return;
1642                 } else if (type.tv == tarval_top) {
1643                         /* first constant found */
1644                         type = pred->type;
1645                 } else if (type.tv != pred->type.tv) {
1646                         /* different constants or tarval_bottom */
1647                         node->type.tv = tarval_bottom;
1648                         return;
1649                 }
1650                 /* else nothing, constants are the same */
1651         }
1652         node->type = type;
1653 }  /* compute_Phi */
1654
1655 /**
1656  * (Re-)compute the type for an Add. Special case: one nodes is a Zero Const.
1657  *
1658  * @param node  the node
1659  */
1660 static void compute_Add(node_t *node) {
1661         ir_node        *sub = node->node;
1662         node_t         *l   = get_irn_node(get_Add_left(sub));
1663         node_t         *r   = get_irn_node(get_Add_right(sub));
1664         lattice_elem_t a    = l->type;
1665         lattice_elem_t b    = r->type;
1666         ir_mode        *mode;
1667
1668         if (a.tv == tarval_top || b.tv == tarval_top) {
1669                 node->type.tv = tarval_top;
1670         } else if (a.tv == tarval_bottom || b.tv == tarval_bottom) {
1671                 node->type.tv = tarval_bottom;
1672         } else {
1673                 /* x + 0 = 0 + x = x, but beware of floating point +0 + -0, so we
1674                    must call tarval_add() first to handle this case! */
1675                 if (is_tarval(a.tv)) {
1676                         if (is_tarval(b.tv)) {
1677                                 node->type.tv = tarval_add(a.tv, b.tv);
1678                                 return;
1679                         }
1680                         mode = get_tarval_mode(a.tv);
1681                         if (a.tv == get_mode_null(mode)) {
1682                                 node->type = b;
1683                                 return;
1684                         }
1685                 } else if (is_tarval(b.tv)) {
1686                         mode = get_tarval_mode(b.tv);
1687                         if (b.tv == get_mode_null(mode)) {
1688                                 node->type = a;
1689                                 return;
1690                         }
1691                 }
1692                 node->type.tv = tarval_bottom;
1693         }
1694 }  /* compute_Add */
1695
1696 /**
1697  * (Re-)compute the type for a Sub. Special case: both nodes are congruent.
1698  *
1699  * @param node  the node
1700  */
1701 static void compute_Sub(node_t *node) {
1702         ir_node        *sub = node->node;
1703         node_t         *l   = get_irn_node(get_Sub_left(sub));
1704         node_t         *r   = get_irn_node(get_Sub_right(sub));
1705         lattice_elem_t a    = l->type;
1706         lattice_elem_t b    = r->type;
1707         tarval         *tv;
1708
1709         if (a.tv == tarval_top || b.tv == tarval_top) {
1710                 node->type.tv = tarval_top;
1711         } else if (is_con(a) && is_con(b)) {
1712                 if (is_tarval(a.tv) && is_tarval(b.tv)) {
1713                         node->type.tv = tarval_sub(a.tv, b.tv, get_irn_mode(sub));
1714                 } else if (is_tarval(a.tv) && tarval_is_null(a.tv)) {
1715                         node->type = b;
1716                 } else if (is_tarval(b.tv) && tarval_is_null(b.tv)) {
1717                         node->type = a;
1718                 } else {
1719                         node->type.tv = tarval_bottom;
1720                 }
1721                 node->by_all_const = 1;
1722         } else if (r->part == l->part &&
1723                    (!mode_is_float(get_irn_mode(l->node)))) {
1724                 /*
1725                  * BEWARE: a - a is NOT always 0 for floating Point values, as
1726                  * NaN op NaN = NaN, so we must check this here.
1727                  */
1728                 ir_mode *mode = get_irn_mode(sub);
1729                 tv = get_mode_null(mode);
1730
1731                 /* if the node was ONCE evaluated by all constants, but now
1732                    this breakes AND we cat by partition a different result, switch to bottom.
1733                    This happens because initially all nodes are in the same partition ... */
1734                 if (node->by_all_const && node->type.tv != tv)
1735                         tv = tarval_bottom;
1736                 node->type.tv = tv;
1737         } else {
1738                 node->type.tv = tarval_bottom;
1739         }
1740 }  /* compute_Sub */
1741
1742 /**
1743  * (Re-)compute the type for Cmp.
1744  *
1745  * @param node  the node
1746  */
1747 static void compute_Cmp(node_t *node) {
1748         ir_node        *cmp  = node->node;
1749         node_t         *l    = get_irn_node(get_Cmp_left(cmp));
1750         node_t         *r    = get_irn_node(get_Cmp_right(cmp));
1751         lattice_elem_t a     = l->type;
1752         lattice_elem_t b     = r->type;
1753
1754         if (a.tv == tarval_top || b.tv == tarval_top) {
1755                 node->type.tv = tarval_top;
1756         } else if (is_con(a) && is_con(b)) {
1757                 /* both nodes are constants, we can probably do something */
1758                 node->type.tv = tarval_b_true;
1759         } else if (r->part == l->part) {
1760                 /* both nodes congruent, we can probably do something */
1761                 node->type.tv = tarval_b_true;
1762         } else {
1763                 node->type.tv = tarval_bottom;
1764         }
1765 }  /* compute_Proj_Cmp */
1766
1767 /**
1768  * (Re-)compute the type for a Proj(Cmp).
1769  *
1770  * @param node  the node
1771  * @param cond  the predecessor Cmp node
1772  */
1773 static void compute_Proj_Cmp(node_t *node, ir_node *cmp) {
1774         ir_node        *proj = node->node;
1775         node_t         *l    = get_irn_node(get_Cmp_left(cmp));
1776         node_t         *r    = get_irn_node(get_Cmp_right(cmp));
1777         lattice_elem_t a     = l->type;
1778         lattice_elem_t b     = r->type;
1779         pn_Cmp         pnc   = get_Proj_proj(proj);
1780         tarval         *tv;
1781
1782         if (a.tv == tarval_top || b.tv == tarval_top) {
1783                 node->type.tv = tarval_top;
1784         } else if (is_con(a) && is_con(b)) {
1785                 default_compute(node);
1786                 node->by_all_const = 1;
1787         } else if (r->part == l->part &&
1788                    (!mode_is_float(get_irn_mode(l->node)) || pnc == pn_Cmp_Lt || pnc == pn_Cmp_Gt)) {
1789                 /*
1790                  * BEWARE: a == a is NOT always True for floating Point values, as
1791                  * NaN != NaN is defined, so we must check this here.
1792                  */
1793                 tv = new_tarval_from_long(pnc & pn_Cmp_Eq, mode_b);
1794
1795                 /* if the node was ONCE evaluated by all constants, but now
1796                    this breakes AND we cat by partition a different result, switch to bottom.
1797                    This happens because initially all nodes are in the same partition ... */
1798                 if (node->by_all_const && node->type.tv != tv)
1799                         tv = tarval_bottom;
1800                 node->type.tv = tv;
1801         } else {
1802                 node->type.tv = tarval_bottom;
1803         }
1804 }  /* compute_Proj_Cmp */
1805
1806 /**
1807  * (Re-)compute the type for a Proj(Cond).
1808  *
1809  * @param node  the node
1810  * @param cond  the predecessor Cond node
1811  */
1812 static void compute_Proj_Cond(node_t *node, ir_node *cond) {
1813         ir_node *proj     = node->node;
1814         long    pnc       = get_Proj_proj(proj);
1815         ir_node *sel      = get_Cond_selector(cond);
1816         node_t  *selector = get_irn_node(sel);
1817
1818         if (get_irn_mode(sel) == mode_b) {
1819                 /* an IF */
1820                 if (pnc == pn_Cond_true) {
1821                         if (selector->type.tv == tarval_b_false) {
1822                                 node->type.tv = tarval_unreachable;
1823                         } else if (selector->type.tv == tarval_b_true) {
1824                                 node->type.tv = tarval_reachable;
1825                         } else if (selector->type.tv == tarval_bottom) {
1826                                 node->type.tv = tarval_reachable;
1827                         } else {
1828                                 assert(selector->type.tv == tarval_top);
1829                                 node->type.tv = tarval_unreachable;
1830                         }
1831                 } else {
1832                         assert(pnc == pn_Cond_false);
1833
1834                         if (selector->type.tv == tarval_b_false) {
1835                                 node->type.tv = tarval_reachable;
1836                         } else if (selector->type.tv == tarval_b_true) {
1837                                 node->type.tv = tarval_unreachable;
1838                         } else if (selector->type.tv == tarval_bottom) {
1839                                 node->type.tv = tarval_reachable;
1840                         } else {
1841                                 assert(selector->type.tv == tarval_top);
1842                                 node->type.tv = tarval_unreachable;
1843                         }
1844                 }
1845         } else {
1846                 /* an SWITCH */
1847                 if (selector->type.tv == tarval_bottom) {
1848                         node->type.tv = tarval_reachable;
1849                 } else if (selector->type.tv == tarval_top) {
1850                         node->type.tv = tarval_unreachable;
1851                 } else {
1852                         long value = get_tarval_long(selector->type.tv);
1853                         if (pnc == get_Cond_defaultProj(cond)) {
1854                                 /* default switch, have to check ALL other cases */
1855                                 int i;
1856
1857                                 for (i = get_irn_n_outs(cond) - 1; i >= 0; --i) {
1858                                         ir_node *succ = get_irn_out(cond, i);
1859
1860                                         if (succ == proj)
1861                                                 continue;
1862                                         if (value == get_Proj_proj(succ)) {
1863                                                 /* we found a match, will NOT take the default case */
1864                                                 node->type.tv = tarval_unreachable;
1865                                                 return;
1866                                         }
1867                                 }
1868                                 /* all cases checked, no match, will take default case */
1869                                 node->type.tv = tarval_reachable;
1870                         } else {
1871                                 /* normal case */
1872                                 node->type.tv = value == pnc ? tarval_reachable : tarval_unreachable;
1873                         }
1874                 }
1875         }
1876 }  /* compute_Proj_Cond */
1877
1878 /**
1879  * (Re-)compute the type for a Proj-Node.
1880  *
1881  * @param node  the node
1882  */
1883 static void compute_Proj(node_t *node) {
1884         ir_node *proj = node->node;
1885         ir_mode *mode = get_irn_mode(proj);
1886         node_t  *block = get_irn_node(get_nodes_block(skip_Proj(proj)));
1887         ir_node *pred  = get_Proj_pred(proj);
1888
1889         if (block->type.tv == tarval_unreachable) {
1890                 /* a Proj in a unreachable Block stay Top */
1891                 node->type.tv = tarval_top;
1892                 return;
1893         }
1894         if (get_irn_node(pred)->type.tv == tarval_top) {
1895                 /* if the predecessor is Top, its Proj follow */
1896                 node->type.tv = tarval_top;
1897                 return;
1898         }
1899
1900         if (mode == mode_M) {
1901                 /* mode M is always bottom */
1902                 node->type.tv = tarval_bottom;
1903                 return;
1904         }
1905         if (mode != mode_X) {
1906                 if (is_Cmp(pred))
1907                         compute_Proj_Cmp(node, pred);
1908                 else
1909                         default_compute(node);
1910                 return;
1911         }
1912         /* handle mode_X nodes */
1913
1914         switch (get_irn_opcode(pred)) {
1915         case iro_Start:
1916                 /* the Proj_X from the Start is always reachable.
1917                    However this is already handled at the top. */
1918                 node->type.tv = tarval_reachable;
1919                 break;
1920         case iro_Cond:
1921                 compute_Proj_Cond(node, pred);
1922                 break;
1923         default:
1924                 default_compute(node);
1925         }
1926 }  /* compute_Proj */
1927
1928 /**
1929  * (Re-)compute the type for a Confirm.
1930  *
1931  * @param node  the node
1932  */
1933 static void compute_Confirm(node_t *node) {
1934         ir_node *confirm = node->node;
1935         node_t  *pred = get_irn_node(get_Confirm_value(confirm));
1936
1937         if (get_Confirm_cmp(confirm) == pn_Cmp_Eq) {
1938                 node_t *bound = get_irn_node(get_Confirm_bound(confirm));
1939
1940                 if (is_con(bound->type)) {
1941                         /* is equal to a constant */
1942                         node->type = bound->type;
1943                         return;
1944                 }
1945         }
1946         /* a Confirm is a copy OR a Const */
1947         node->type = pred->type;
1948 }  /* compute_Confirm */
1949
1950 /**
1951  * (Re-)compute the type for a Max.
1952  *
1953  * @param node  the node
1954  */
1955 static void compute_Max(node_t *node) {
1956         ir_node        *op   = node->node;
1957         node_t         *l    = get_irn_node(get_binop_left(op));
1958         node_t         *r    = get_irn_node(get_binop_right(op));
1959         lattice_elem_t a     = l->type;
1960         lattice_elem_t b     = r->type;
1961
1962         if (a.tv == tarval_top || b.tv == tarval_top) {
1963                 node->type.tv = tarval_top;
1964         } else if (is_con(a) && is_con(b)) {
1965                 /* both nodes are constants, we can probably do something */
1966                 if (a.tv == b.tv) {
1967                         /* this case handles symconsts as well */
1968                         node->type = a;
1969                 } else {
1970                         ir_mode *mode   = get_irn_mode(op);
1971                         tarval  *tv_min = get_mode_min(mode);
1972
1973                         if (a.tv == tv_min)
1974                                 node->type = b;
1975                         else if (b.tv == tv_min)
1976                                 node->type = a;
1977                         else if (is_tarval(a.tv) && is_tarval(b.tv)) {
1978                                 if (tarval_cmp(a.tv, b.tv) & pn_Cmp_Gt)
1979                                         node->type.tv = a.tv;
1980                                 else
1981                                         node->type.tv = b.tv;
1982                         } else {
1983                                 node->type.tv = tarval_bad;
1984                         }
1985                 }
1986         } else if (r->part == l->part) {
1987                 /* both nodes congruent, we can probably do something */
1988                 node->type = a;
1989         } else {
1990                 node->type.tv = tarval_bottom;
1991         }
1992 }  /* compute_Max */
1993
1994 /**
1995  * (Re-)compute the type for a Min.
1996  *
1997  * @param node  the node
1998  */
1999 static void compute_Min(node_t *node) {
2000         ir_node        *op   = node->node;
2001         node_t         *l    = get_irn_node(get_binop_left(op));
2002         node_t         *r    = get_irn_node(get_binop_right(op));
2003         lattice_elem_t a     = l->type;
2004         lattice_elem_t b     = r->type;
2005
2006         if (a.tv == tarval_top || b.tv == tarval_top) {
2007                 node->type.tv = tarval_top;
2008         } else if (is_con(a) && is_con(b)) {
2009                 /* both nodes are constants, we can probably do something */
2010                 if (a.tv == b.tv) {
2011                         /* this case handles symconsts as well */
2012                         node->type = a;
2013                 } else {
2014                         ir_mode *mode   = get_irn_mode(op);
2015                         tarval  *tv_max = get_mode_max(mode);
2016
2017                         if (a.tv == tv_max)
2018                                 node->type = b;
2019                         else if (b.tv == tv_max)
2020                                 node->type = a;
2021                         else if (is_tarval(a.tv) && is_tarval(b.tv)) {
2022                                 if (tarval_cmp(a.tv, b.tv) & pn_Cmp_Gt)
2023                                         node->type.tv = a.tv;
2024                                 else
2025                                         node->type.tv = b.tv;
2026                         } else {
2027                                 node->type.tv = tarval_bad;
2028                         }
2029                 }
2030         } else if (r->part == l->part) {
2031                 /* both nodes congruent, we can probably do something */
2032                 node->type = a;
2033         } else {
2034                 node->type.tv = tarval_bottom;
2035         }
2036 }  /* compute_Min */
2037
2038 /**
2039  * (Re-)compute the type for a given node.
2040  *
2041  * @param node  the node
2042  */
2043 static void compute(node_t *node) {
2044         compute_func func;
2045
2046         if (is_no_Block(node->node)) {
2047                 node_t *block = get_irn_node(get_nodes_block(node->node));
2048
2049                 if (block->type.tv == tarval_unreachable) {
2050                         node->type.tv = tarval_top;
2051                         return;
2052                 }
2053         }
2054
2055         func = (compute_func)node->node->op->ops.generic;
2056         if (func != NULL)
2057                 func(node);
2058 }  /* compute */
2059
2060 /*
2061  * Identity functions: Note that one might thing that identity() is just a
2062  * synonym for equivalent_node(). While this is true, we cannot use it for the algorithm
2063  * here, because it expects that the identity node is one of the inputs, which is NOT
2064  * always true for equivalent_node() which can handle (and does sometimes) DAGs.
2065  * So, we have our own implementation, which copies some parts of equivalent_node()
2066  */
2067
2068 /**
2069  * Calculates the Identity for Phi nodes
2070  */
2071 static node_t *identity_Phi(node_t *node) {
2072         ir_node *phi    = node->node;
2073         ir_node *block  = get_nodes_block(phi);
2074         node_t  *n_part = NULL;
2075         int     i;
2076
2077         for (i = get_Phi_n_preds(phi) - 1; i >= 0; --i) {
2078                 node_t *pred_X = get_irn_node(get_Block_cfgpred(block, i));
2079
2080                 if (pred_X->type.tv == tarval_reachable) {
2081                         node_t *pred = get_irn_node(get_Phi_pred(phi, i));
2082
2083                         if (n_part == NULL)
2084                                 n_part = pred;
2085                         else if (n_part->part != pred->part) {
2086                                 /* incongruent inputs, not a follower */
2087                                 return node;
2088                         }
2089                 }
2090         }
2091         /* if n_part is NULL here, all inputs path are dead, the Phi computes
2092          * tarval_top, is in the TOP partition and should NOT being split! */
2093         assert(n_part != NULL);
2094         return n_part;
2095 }  /* identity_Phi */
2096
2097 /**
2098  * Calculates the Identity for commutative 0 neutral nodes.
2099  */
2100 static node_t *identity_comm_zero_binop(node_t *node) {
2101         ir_node *op   = node->node;
2102         node_t  *a    = get_irn_node(get_binop_left(op));
2103         node_t  *b    = get_irn_node(get_binop_right(op));
2104         ir_mode *mode = get_irn_mode(op);
2105         tarval  *zero;
2106
2107         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2108         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2109                 return node;
2110
2111         /* node: no input should be tarval_top, else the binop would be also
2112          * Top and not being split. */
2113         zero = get_mode_null(mode);
2114         if (a->type.tv == zero)
2115                 return b;
2116         if (b->type.tv == zero)
2117                 return a;
2118         return node;
2119 }  /* identity_comm_zero_binop */
2120
2121 #define identity_Add  identity_comm_zero_binop
2122 #define identity_Or   identity_comm_zero_binop
2123
2124 /**
2125  * Calculates the Identity for Mul nodes.
2126  */
2127 static node_t *identity_Mul(node_t *node) {
2128         ir_node *op   = node->node;
2129         node_t  *a    = get_irn_node(get_Mul_left(op));
2130         node_t  *b    = get_irn_node(get_Mul_right(op));
2131         ir_mode *mode = get_irn_mode(op);
2132         tarval  *one;
2133
2134         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2135         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2136                 return node;
2137
2138         /* node: no input should be tarval_top, else the binop would be also
2139          * Top and not being split. */
2140         one = get_mode_one(mode);
2141         if (a->type.tv == one)
2142                 return b;
2143         if (b->type.tv == one)
2144                 return a;
2145         return node;
2146 }  /* identity_Mul */
2147
2148 /**
2149  * Calculates the Identity for Sub nodes.
2150  */
2151 static node_t *identity_Sub(node_t *node) {
2152         ir_node *sub  = node->node;
2153         node_t  *b    = get_irn_node(get_Sub_right(sub));
2154         ir_mode *mode = get_irn_mode(sub);
2155
2156         /* for FP these optimizations are only allowed if fp_strict_algebraic is disabled */
2157         if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
2158                 return node;
2159
2160         /* node: no input should be tarval_top, else the binop would be also
2161          * Top and not being split. */
2162         if (b->type.tv == get_mode_null(mode))
2163                 return get_irn_node(get_Sub_left(sub));
2164         return node;
2165 }  /* identity_Mul */
2166
2167 /**
2168  * Calculates the Identity for And nodes.
2169  */
2170 static node_t *identity_And(node_t *node) {
2171         ir_node *and = node->node;
2172         node_t  *a   = get_irn_node(get_And_left(and));
2173         node_t  *b   = get_irn_node(get_And_right(and));
2174         tarval  *neutral = get_mode_all_one(get_irn_mode(and));
2175
2176         /* node: no input should be tarval_top, else the And would be also
2177          * Top and not being split. */
2178         if (a->type.tv == neutral)
2179                 return b;
2180         if (b->type.tv == neutral)
2181                 return a;
2182         return node;
2183 }  /* identity_And */
2184
2185 /**
2186  * Calculates the Identity for Confirm nodes.
2187  */
2188 static node_t *identity_Confirm(node_t *node) {
2189         ir_node *confirm = node->node;
2190
2191         /* a Confirm is always a Copy */
2192         return get_irn_node(get_Confirm_value(confirm));
2193 }  /* identity_Confirm */
2194
2195 /**
2196  * Calculates the Identity for Mux nodes.
2197  */
2198 static node_t *identity_Mux(node_t *node) {
2199         ir_node *mux = node->node;
2200         node_t  *t   = get_irn_node(get_Mux_true(mux));
2201         node_t  *f   = get_irn_node(get_Mux_false(mux));
2202         /*node_t  *sel; */
2203
2204         if (t->part == f->part)
2205                 return t;
2206
2207         /* for now, the 1-input identity is not supported */
2208 #if 0
2209         sel = get_irn_node(get_Mux_sel(mux));
2210
2211         /* Mux sel input is mode_b, so it is always a tarval */
2212         if (sel->type.tv == tarval_b_true)
2213                 return t;
2214         if (sel->type.tv == tarval_b_false)
2215                 return f;
2216 #endif
2217         return node;
2218 }  /* identity_Mux */
2219
2220 /**
2221  * Calculates the Identity for Min nodes.
2222  */
2223 static node_t *identity_Min(node_t *node) {
2224         ir_node *op   = node->node;
2225         node_t  *a    = get_irn_node(get_binop_left(op));
2226         node_t  *b    = get_irn_node(get_binop_right(op));
2227         ir_mode *mode = get_irn_mode(op);
2228         tarval  *tv_max;
2229
2230         if (a->part == b->part) {
2231                 /* leader of multiple predecessors */
2232                 return a;
2233         }
2234
2235         /* works even with NaN */
2236         tv_max = get_mode_max(mode);
2237         if (a->type.tv == tv_max)
2238                 return b;
2239         if (b->type.tv == tv_max)
2240                 return a;
2241         return node;
2242 }  /* identity_Min */
2243
2244 /**
2245  * Calculates the Identity for Max nodes.
2246  */
2247 static node_t *identity_Max(node_t *node) {
2248         ir_node *op   = node->node;
2249         node_t  *a    = get_irn_node(get_binop_left(op));
2250         node_t  *b    = get_irn_node(get_binop_right(op));
2251         ir_mode *mode = get_irn_mode(op);
2252         tarval  *tv_min;
2253
2254         if (a->part == b->part) {
2255                 /* leader of multiple predecessors */
2256                 return a;
2257         }
2258
2259         /* works even with NaN */
2260         tv_min = get_mode_min(mode);
2261         if (a->type.tv == tv_min)
2262                 return b;
2263         if (b->type.tv == tv_min)
2264                 return a;
2265         return node;
2266 }  /* identity_Max */
2267
2268 /**
2269  * Calculates the Identity for nodes.
2270  */
2271 static node_t *identity(node_t *node) {
2272         ir_node *irn = node->node;
2273
2274         switch (get_irn_opcode(irn)) {
2275         case iro_Phi:
2276                 return identity_Phi(node);
2277         case iro_Add:
2278                 return identity_Add(node);
2279         case iro_Mul:
2280                 return identity_Mul(node);
2281         case iro_Or:
2282                 return identity_Or(node);
2283         case iro_And:
2284                 return identity_And(node);
2285         case iro_Sub:
2286                 return identity_Sub(node);
2287         case iro_Confirm:
2288                 return identity_Confirm(node);
2289         case iro_Mux:
2290                 return identity_Mux(node);
2291         case iro_Min:
2292                 return identity_Min(node);
2293         case iro_Max:
2294                 return identity_Max(node);
2295         default:
2296                 return node;
2297         }
2298 }  /* identity */
2299
2300 /**
2301  * Node follower is a (new) follower of leader, segregate Leader
2302  * out edges.
2303  */
2304 static void segregate_def_use_chain_1(const ir_node *follower, node_t *leader) {
2305         ir_node *l   = leader->node;
2306         int     j, i, n = get_irn_n_outs(l);
2307
2308         DB((dbg, LEVEL_2, "%+F is a follower of %+F\n", follower, leader->node));
2309         /* The leader edges must remain sorted, but follower edges can
2310            be unsorted. */
2311         for (i = leader->n_followers + 1; i <= n; ++i) {
2312                 if (l->out[i].use == follower) {
2313                         ir_def_use_edge t = l->out[i];
2314
2315                         for (j = i - 1; j >= leader->n_followers + 1; --j)
2316                                 l->out[j + 1] = l->out[j];
2317                         ++leader->n_followers;
2318                         l->out[leader->n_followers] = t;
2319                         break;
2320                 }
2321         }
2322 }  /* segregate_def_use_chain_1 */
2323
2324 /**
2325  * Node follower is a (new) follower of leader, segregate Leader
2326  * out edges. If follower is a n-congruent Input identity, all follower
2327  * inputs congruent to follower are also leader.
2328  *
2329  * @param follower  the follower IR node
2330  */
2331 static void segregate_def_use_chain(const ir_node *follower) {
2332         int i;
2333
2334         for (i = get_irn_arity(follower) - 1; i >= 0; --i) {
2335                 node_t *pred = get_irn_node(get_irn_n(follower, i));
2336
2337                 segregate_def_use_chain_1(follower, pred);
2338         }
2339 }  /* segregate_def_use_chain */
2340
2341 /**
2342  * Propagate constant evaluation.
2343  *
2344  * @param env  the environment
2345  */
2346 static void propagate(environment_t *env) {
2347         partition_t    *X, *Y;
2348         node_t         *x;
2349         lattice_elem_t old_type;
2350         node_t         *fallen;
2351         unsigned       n_fallen, old_type_was_T_or_C;
2352         int            i;
2353
2354         while (env->cprop != NULL) {
2355                 void *oldopcode = NULL;
2356
2357                 /* remove the first partition X from cprop */
2358                 X           = env->cprop;
2359                 X->on_cprop = 0;
2360                 env->cprop  = X->cprop_next;
2361
2362                 old_type_was_T_or_C = X->type_is_T_or_C;
2363
2364                 DB((dbg, LEVEL_2, "Propagate type on part%d\n", X->nr));
2365                 fallen   = NULL;
2366                 n_fallen = 0;
2367                 while (! list_empty(&X->cprop)) {
2368                         /* remove the first Node x from X.cprop */
2369                         x = list_entry(X->cprop.next, node_t, cprop_list);
2370                         //assert(x->part == X);
2371                         list_del(&x->cprop_list);
2372                         x->on_cprop = 0;
2373
2374                         if (x->is_follower && identity(x) == x) {
2375                                 /* check the opcode first */
2376                                 if (oldopcode == NULL) {
2377                                         oldopcode = lambda_opcode(get_first_node(X), env);
2378                                 }
2379                                 if (oldopcode != lambda_opcode(x, env)) {
2380                                         if (x->on_fallen == 0) {
2381                                                 /* different opcode -> x falls out of this partition */
2382                                                 x->next      = fallen;
2383                                                 x->on_fallen = 1;
2384                                                 fallen       = x;
2385                                                 ++n_fallen;
2386                                                 DB((dbg, LEVEL_2, "Add node %+F to fallen\n", x->node));
2387                                         }
2388                                 }
2389
2390                                 /* x will make the follower -> leader transition */
2391                                 follower_to_leader(x);
2392                         }
2393
2394                         /* compute a new type for x */
2395                         old_type = x->type;
2396                         DB((dbg, LEVEL_3, "computing type of %+F\n", x->node));
2397                         compute(x);
2398                         if (x->type.tv != old_type.tv) {
2399                                 verify_type(old_type, x->type);
2400                                 DB((dbg, LEVEL_2, "node %+F has changed type from %+F to %+F\n", x->node, old_type, x->type));
2401
2402                                 if (x->on_fallen == 0) {
2403                                         /* Add x to fallen. Nodes might fall from T -> const -> _|_, so check that they are
2404                                            not already on the list. */
2405                                         x->next      = fallen;
2406                                         x->on_fallen = 1;
2407                                         fallen       = x;
2408                                         ++n_fallen;
2409                                         DB((dbg, LEVEL_2, "Add node %+F to fallen\n", x->node));
2410                                 }
2411                                 for (i = get_irn_n_outs(x->node) - 1; i >= 0; --i) {
2412                                         ir_node *succ = get_irn_out(x->node, i);
2413                                         node_t  *y    = get_irn_node(succ);
2414
2415                                         /* Add y to y.partition.cprop. */
2416                                         add_to_cprop(y, env);
2417                                 }
2418                         }
2419                 }
2420
2421                 if (n_fallen > 0 && n_fallen != X->n_leader) {
2422                         DB((dbg, LEVEL_2, "Splitting part%d by fallen\n", X->nr));
2423                         Y = split(&X, fallen, env);
2424                 } else {
2425                         Y = X;
2426                 }
2427                 /* remove the flags from the fallen list */
2428                 for (x = fallen; x != NULL; x = x->next)
2429                         x->on_fallen = 0;
2430
2431 #ifndef NO_FOLLOWER
2432                 if (old_type_was_T_or_C) {
2433                         node_t *y, *tmp;
2434
2435                         if (Y->on_worklist == 0)
2436                                 add_to_worklist(Y, env);
2437
2438                         /* check if some nodes will make the leader -> follower transition */
2439                         list_for_each_entry_safe(node_t, y, tmp, &Y->Leader, node_list) {
2440                                 if (y->type.tv != tarval_top && ! is_con(y->type)) {
2441                                         node_t *eq_node = identity(y);
2442
2443                                         if (eq_node != y && eq_node->part == y->part) {
2444                                                 DB((dbg, LEVEL_2, "Node %+F is a follower of %+F\n", y->node, eq_node->node));
2445                                                 /* move to Follower */
2446                                                 y->is_follower = 1;
2447                                                 list_del(&y->node_list);
2448                                                 list_add_tail(&y->node_list, &Y->Follower);
2449                                                 --Y->n_leader;
2450
2451                                                 segregate_def_use_chain(y->node);
2452                                         }
2453                                 }
2454                         }
2455                 }
2456 #endif
2457                 split_by(Y, env);
2458         }
2459 }  /* propagate */
2460
2461 /**
2462  * Get the leader for a given node from its congruence class.
2463  *
2464  * @param irn  the node
2465  */
2466 static ir_node *get_leader(node_t *node) {
2467         partition_t *part = node->part;
2468
2469         if (part->n_leader > 1 || node->is_follower) {
2470                 if (node->is_follower) {
2471                         DB((dbg, LEVEL_2, "Replacing follower %+F\n", node->node));
2472                 }
2473                 else
2474                         DB((dbg, LEVEL_2, "Found congruence class for %+F\n", node->node));
2475
2476                 return get_first_node(part)->node;
2477         }
2478         return node->node;
2479 }  /* get_leader */
2480
2481 /**
2482  * Return non-zero if the control flow predecessor node pred
2483  * is the only reachable control flow exit of its block.
2484  *
2485  * @param pred  the control flow exit
2486  */
2487 static int can_exchange(ir_node *pred) {
2488         if (is_Start(pred))
2489                 return 0;
2490         else if (is_Jmp(pred))
2491                 return 1;
2492         else if (get_irn_mode(pred) == mode_T) {
2493                 int i, k;
2494
2495                 /* if the predecessor block has more than one
2496                 reachable outputs we cannot remove the block */
2497                 k = 0;
2498                 for (i = get_irn_n_outs(pred) - 1; i >= 0; --i) {
2499                         ir_node *proj = get_irn_out(pred, i);
2500                         node_t  *node;
2501
2502                         /* skip non-control flow Proj's */
2503                         if (get_irn_mode(proj) != mode_X)
2504                                 continue;
2505
2506                         node = get_irn_node(proj);
2507                         if (node->type.tv == tarval_reachable) {
2508                                 if (++k > 1)
2509                                         return 0;
2510                         }
2511                 }
2512                 return 1;
2513         }
2514         return 0;
2515 }
2516
2517 /**
2518  * Block Post-Walker, apply the analysis results on control flow by
2519  * shortening Phi's and Block inputs.
2520  */
2521 static void apply_cf(ir_node *block, void *ctx) {
2522         environment_t *env = ctx;
2523         node_t        *node = get_irn_node(block);
2524         int           i, j, k, n;
2525         ir_node       **ins, **in_X;
2526         ir_node       *phi, *next;
2527
2528         if (block == get_irg_end_block(current_ir_graph) ||
2529             block == get_irg_start_block(current_ir_graph)) {
2530                 /* the EndBlock is always reachable even if the analysis
2531                    finds out the opposite :-) */
2532                 return;
2533         }
2534         if (node->type.tv == tarval_unreachable) {
2535                 /* mark dead blocks */
2536                 set_Block_dead(block);
2537                 return;
2538         }
2539
2540         n = get_Block_n_cfgpreds(block);
2541
2542         if (n == 1) {
2543                 /* only one predecessor combine */
2544                 ir_node *pred = skip_Proj(get_Block_cfgpred(block, 0));
2545
2546                 if (can_exchange(pred)) {
2547                         exchange(block, get_nodes_block(pred));
2548                         env->modified = 1;
2549                 }
2550                 return;
2551         }
2552
2553         NEW_ARR_A(ir_node *, in_X, n);
2554         k = 0;
2555         for (i = 0; i < n; ++i) {
2556                 ir_node *pred = get_Block_cfgpred(block, i);
2557                 node_t  *node = get_irn_node(pred);
2558
2559                 if (node->type.tv == tarval_reachable) {
2560                         in_X[k++] = pred;
2561                 }
2562         }
2563         if (k >= n)
2564                 return;
2565
2566         NEW_ARR_A(ir_node *, ins, n);
2567         for (phi = get_Block_phis(block); phi != NULL; phi = next) {
2568                 node_t *node = get_irn_node(phi);
2569
2570                 next = get_Phi_next(phi);
2571                 if (is_tarval(node->type.tv) && tarval_is_constant(node->type.tv)) {
2572                         /* this Phi is replaced by a constant */
2573                         tarval  *tv = node->type.tv;
2574                         ir_node *c  = new_r_Const(current_ir_graph, block, get_tarval_mode(tv), tv);
2575
2576                         set_irn_node(c, node);
2577                         node->node = c;
2578                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", phi, c));
2579                         exchange(phi, c);
2580                         env->modified = 1;
2581                 } else {
2582                         j = 0;
2583                         for (i = 0; i < n; ++i) {
2584                                 node_t *pred = get_irn_node(get_Block_cfgpred(block, i));
2585
2586                                 if (pred->type.tv == tarval_reachable) {
2587                                         ins[j++] = get_Phi_pred(phi, i);
2588                                 }
2589                         }
2590                         if (j <= 1) {
2591                                 /* this Phi is replaced by a single predecessor */
2592                                 ir_node *s = ins[0];
2593
2594                                 node->node = s;
2595                                 DB((dbg, LEVEL_1, "%+F is replaced by %+F because of cf change\n", phi, s));
2596                                 exchange(phi, s);
2597                                 env->modified = 1;
2598                         } else {
2599                                 set_irn_in(phi, j, ins);
2600                                 env->modified = 1;
2601                         }
2602                 }
2603         }
2604
2605         if (k <= 1) {
2606                 /* this Block has only one live predecessor */
2607                 ir_node *pred = skip_Proj(in_X[0]);
2608
2609                 if (can_exchange(pred)) {
2610                         exchange(block, get_nodes_block(pred));
2611                         env->modified = 1;
2612                 }
2613         } else {
2614                 set_irn_in(block, k, in_X);
2615                 env->modified = 1;
2616         }
2617 }
2618
2619 /**
2620  * Post-Walker, apply the analysis results;
2621  */
2622 static void apply_result(ir_node *irn, void *ctx) {
2623         environment_t *env = ctx;
2624         node_t        *node = get_irn_node(irn);
2625
2626         if (is_Block(irn) || is_End(irn) || is_Bad(irn)) {
2627                 /* blocks already handled, do not touch the End node */
2628         } else {
2629                 node_t *block = get_irn_node(get_nodes_block(irn));
2630
2631                 if (block->type.tv == tarval_unreachable) {
2632                         ir_node *bad = get_irg_bad(current_ir_graph);
2633
2634                         /* here, bad might already have a node, but this can be safely ignored
2635                            as long as bad has at least ONE valid node */
2636                         set_irn_node(bad, node);
2637                         node->node = bad;
2638                         DB((dbg, LEVEL_1, "%+F is unreachable\n", irn));
2639                         exchange(irn, bad);
2640                         env->modified = 1;
2641                 }
2642                 else if (node->type.tv == tarval_unreachable) {
2643                         ir_node *bad = get_irg_bad(current_ir_graph);
2644
2645                         /* see comment above */
2646                         set_irn_node(bad, node);
2647                         node->node = bad;
2648                         DB((dbg, LEVEL_1, "%+F is unreachable\n", irn));
2649                         exchange(irn, bad);
2650                         env->modified = 1;
2651                 }
2652                 else if (get_irn_mode(irn) == mode_X) {
2653                         if (is_Proj(irn)) {
2654                                 /* leave or Jmp */
2655                                 ir_node *cond = get_Proj_pred(irn);
2656
2657                                 if (is_Cond(cond)) {
2658                                         node_t *sel = get_irn_node(get_Cond_selector(cond));
2659
2660                                         if (is_tarval(sel->type.tv) && tarval_is_constant(sel->type.tv)) {
2661                                                 /* Cond selector is a constant, make a Jmp */
2662                                                 ir_node *jmp = new_r_Jmp(current_ir_graph, block->node);
2663                                                 set_irn_node(jmp, node);
2664                                                 node->node = jmp;
2665                                                 DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, jmp));
2666                                                 exchange(irn, jmp);
2667                                                 env->modified = 1;
2668                                         }
2669                                 }
2670                         }
2671                 } else {
2672                         /* normal data node */
2673                         if (is_tarval(node->type.tv) && tarval_is_constant(node->type.tv)) {
2674                                 tarval *tv = node->type.tv;
2675
2676                                 /*
2677                                  * Beware: never replace mode_T nodes by constants. Currently we must mark
2678                                  * mode_T nodes with constants, but do NOT replace them.
2679                                  */
2680                                 if (! is_Const(irn) && get_irn_mode(irn) != mode_T) {
2681                                         /* can be replaced by a constant */
2682                                         ir_node *c = new_r_Const(current_ir_graph, block->node, get_tarval_mode(tv), tv);
2683                                         set_irn_node(c, node);
2684                                         node->node = c;
2685                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, c));
2686                                         exchange(irn, c);
2687                                         env->modified = 1;
2688                                 }
2689                         } else if (is_entity(node->type.sym.entity_p)) {
2690                                 if (! is_SymConst(irn)) {
2691                                         /* can be replaced by a Symconst */
2692                                         ir_node *symc = new_r_SymConst(current_ir_graph, block->node, get_irn_mode(irn), node->type.sym, symconst_addr_ent);
2693                                         set_irn_node(symc, node);
2694                                         node->node = symc;
2695
2696                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, symc));
2697                                         exchange(irn, symc);
2698                                         env->modified = 1;
2699                                 }
2700                         } else if (is_Confirm(irn)) {
2701                                 /* Confirms are always follower, but do not kill them here */
2702                         } else {
2703                                 ir_node *leader = get_leader(node);
2704
2705                                 if (leader != irn) {
2706                                         DB((dbg, LEVEL_1, "%+F from part%d is replaced by %+F\n", irn, node->part->nr, leader));
2707                                         exchange(irn, leader);
2708                                         env->modified = 1;
2709                                 }
2710                         }
2711                 }
2712         }
2713 }  /* apply_result */
2714
2715 /**
2716  * Fix the keep-alives by deleting unreachable ones.
2717  */
2718 static void apply_end(ir_node *end, environment_t *env) {
2719         int i, j,  n = get_End_n_keepalives(end);
2720         ir_node **in;
2721
2722         if (n > 0)
2723                 NEW_ARR_A(ir_node *, in, n);
2724
2725         /* fix the keep alive */
2726         for (i = j = 0; i < n; i++) {
2727                 ir_node *ka   = get_End_keepalive(end, i);
2728                 node_t  *node = get_irn_node(ka);
2729
2730                 /* Use the flagged bits to mark already visited nodes.
2731                  * This should not be ready but better safe than sorry. */
2732                 if (node->flagged == 0) {
2733                         node->flagged = 3;
2734
2735                         if (! is_Block(ka))
2736                                 node = get_irn_node(get_nodes_block(ka));
2737
2738                         if (node->type.tv != tarval_unreachable)
2739                                 in[j++] = ka;
2740                 }
2741         }
2742         if (j != n) {
2743                 set_End_keepalives(end, j, in);
2744                 env->modified = 1;
2745         }
2746 }  /* apply_end */
2747
2748 #define SET(code) op_##code->ops.generic = (op_func)compute_##code
2749
2750 /**
2751  * sets the generic functions to compute.
2752  */
2753 static void set_compute_functions(void) {
2754         int i;
2755
2756         /* set the default compute function */
2757         for (i = get_irp_n_opcodes() - 1; i >= 0; --i) {
2758                 ir_op *op = get_irp_opcode(i);
2759                 op->ops.generic = (op_func)default_compute;
2760         }
2761
2762         /* set specific functions */
2763         SET(Block);
2764         SET(Unknown);
2765         SET(Bad);
2766         SET(Jmp);
2767         SET(Phi);
2768         SET(Add);
2769         SET(Sub);
2770         SET(SymConst);
2771         SET(Cmp);
2772         SET(Proj);
2773         SET(Confirm);
2774         SET(End);
2775
2776         if (op_Max != NULL)
2777                 SET(Max);
2778         if (op_Min != NULL)
2779                 SET(Min);
2780
2781 }  /* set_compute_functions */
2782
2783 static int dump_partition_hook(FILE *F, ir_node *n, ir_node *local) {
2784         ir_node *irn = local != NULL ? local : n;
2785         node_t *node = get_irn_node(irn);
2786
2787         ir_fprintf(F, "info2 : \"partition %u type %+F\"\n", node->part->nr, node->type);
2788         return 1;
2789 }
2790
2791 void combo(ir_graph *irg) {
2792         environment_t env;
2793         ir_node       *initial_bl;
2794         node_t        *start;
2795         ir_graph      *rem = current_ir_graph;
2796
2797         current_ir_graph = irg;
2798
2799         /* register a debug mask */
2800         FIRM_DBG_REGISTER(dbg, "firm.opt.combo");
2801         //firm_dbg_set_mask(dbg, SET_LEVEL_3);
2802
2803         DB((dbg, LEVEL_1, "Doing COMBO for %+F\n", irg));
2804
2805         obstack_init(&env.obst);
2806         env.worklist       = NULL;
2807         env.cprop          = NULL;
2808         env.touched        = NULL;
2809         env.initial        = NULL;
2810 #ifdef DEBUG_libfirm
2811         env.dbg_list       = NULL;
2812 #endif
2813         env.opcode2id_map  = new_set(cmp_opcode, iro_Last * 4);
2814         env.type2id_map    = pmap_create();
2815         env.end_idx        = get_opt_global_cse() ? 0 : -1;
2816         env.lambda_input   = 0;
2817         env.modified       = 0;
2818
2819         assure_irg_outs(irg);
2820
2821         /* we have our own value_of function */
2822         set_value_of_func(get_node_tarval);
2823
2824         set_compute_functions();
2825         DEBUG_ONLY(part_nr = 0);
2826
2827         /* create the initial partition and place it on the work list */
2828         env.initial = new_partition(&env);
2829         add_to_worklist(env.initial, &env);
2830         irg_walk_graph(irg, init_block_phis, create_initial_partitions, &env);
2831
2832         /* all nodes on the initial partition have type Top */
2833         env.initial->type_is_T_or_C = 1;
2834
2835         /* Place the START Node's partition on cprop.
2836            Place the START Node on its local worklist. */
2837         initial_bl = get_irg_start_block(irg);
2838         start      = get_irn_node(initial_bl);
2839         add_to_cprop(start, &env);
2840
2841         do {
2842                 propagate(&env);
2843                 if (env.worklist != NULL)
2844                         cause_splits(&env);
2845         } while (env.cprop != NULL || env.worklist != NULL);
2846
2847         dump_all_partitions(&env);
2848         check_all_partitions(&env);
2849
2850 #if 0
2851         set_dump_node_vcgattr_hook(dump_partition_hook);
2852         dump_ir_block_graph(irg, "-partition");
2853         set_dump_node_vcgattr_hook(NULL);
2854 #else
2855         (void)dump_partition_hook;
2856 #endif
2857
2858         /* apply the result */
2859         irg_block_walk_graph(irg, NULL, apply_cf, &env);
2860         irg_walk_graph(irg, NULL, apply_result, &env);
2861         apply_end(get_irg_end(irg), &env);
2862
2863         if (env.modified) {
2864                 /* control flow might changed */
2865                 set_irg_outs_inconsistent(irg);
2866                 set_irg_extblk_inconsistent(irg);
2867                 set_irg_doms_inconsistent(irg);
2868                 set_irg_loopinfo_inconsistent(irg);
2869         }
2870
2871         pmap_destroy(env.type2id_map);
2872         del_set(env.opcode2id_map);
2873         obstack_free(&env.obst, NULL);
2874
2875         /* restore value_of() default behavior */
2876         set_value_of_func(NULL);
2877         current_ir_graph = rem;
2878 }  /* combo */