8d12143752932c095e8cb4d3fbcd5bbd2d34b11c
[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 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 "irflag.h"
38 #include "ircons.h"
39 #include "list.h"
40 #include "array.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 typedef struct node_t            node_t;
63 typedef struct partition_t       partition_t;
64 typedef struct opcode_key_t      opcode_key_t;
65 typedef struct listmap_entry_t   listmap_entry_t;
66
67 /** The type of the compute function. */
68 typedef void (*compute_func)(node_t *node);
69
70 /**
71  * An opcode map key.
72  */
73 struct opcode_key_t {
74         ir_opcode   code;   /**< The Firm opcode. */
75         ir_mode     *mode;  /**< The mode of all nodes in the partition. */
76         union {
77                 long      proj;   /**< For Proj nodes, its proj number */
78                 ir_entity *ent;   /**< For Sel Nodes, its entity */
79         } u;
80 };
81
82 /**
83  * An entry in the list_map.
84  */
85 struct listmap_entry_t {
86         void            *id;    /**< The id. */
87         node_t          *list;  /**< The associated list for this id. */
88         listmap_entry_t *next;  /**< Link to the next entry in the map. */
89 };
90
91 /** We must map id's to lists. */
92 typedef struct listmap_t {
93         set             *map;    /**< Map id's to listmap_entry_t's */
94         listmap_entry_t *values; /**< List of all values in the map. */
95 } listmap_t;
96
97 /**
98  * A lattice element. Because we handle constants and symbolic constants different, we
99  * have to use this union.
100  */
101 typedef union {
102         tarval          *tv;
103         symconst_symbol sym;
104 } lattice_elem_t;
105
106 /**
107  * A node.
108  */
109 struct node_t {
110         ir_node         *node;          /**< The IR-node itself. */
111         list_head       node_list;      /**< Double-linked list of entries. */
112         list_head       cprop_list;     /**< Double-linked partition.cprop list. */
113         partition_t     *part;          /**< points to the partition this node belongs to */
114         node_t          *next;          /**< Next node on local list (partition.touched, fallen). */
115         lattice_elem_t  type;           /**< The associated lattice element "type". */
116         int             max_user_input; /**< Maximum input number of Def-Use edges. */
117         int             next_edge;      /**< Index of the next Def-Use edge to use. */
118         unsigned        on_touched:1;   /**< Set, if this node is on the partition.touched set. */
119         unsigned        on_cprop:1;     /**< Set, if this node is on the partition.cprop list. */
120         unsigned        on_fallen:1;    /**< Set, if this node is on the fallen list. */
121 };
122
123 /**
124  * A partition containing congruent nodes.
125  */
126 struct partition_t {
127         list_head         entries;         /**< The head of partition node list. */
128         list_head         cprop;           /**< The head of partition.cprop list. */
129         partition_t       *wl_next;        /**< Next entry in the work list if any. */
130         partition_t       *touched_next;   /**< Points to the next partition in the touched set. */
131         partition_t       *cprop_next;     /**< Points to the next partition in the cprop list. */
132         node_t            *touched;        /**< The partition.touched set of this partition. */
133         unsigned          n_nodes;         /**< Number of entries in this partition. */
134         unsigned          n_touched;       /**< Number of entries in the partition.touched. */
135         int               max_arity;       /**< Maximum arity of all entries. */
136         int               max_user_inputs; /**< Maximum number of user inputs of all entries. */
137         unsigned          on_worklist:1;   /**< Set, if this partition is in the work list. */
138         unsigned          on_touched:1;    /**< Set, if this partition is on the touched set. */
139         unsigned          on_cprop:1;      /**< Set, if this partition is on the cprop list. */
140 #ifdef DEBUG_libfirm
141         partition_t       *dbg_next;       /**< Link all partitions for debugging */
142         unsigned          nr;              /**< A unique number for (what-)mapping, >0. */
143 #endif
144 };
145
146 typedef struct environment_t {
147         struct obstack  obst;           /**< obstack to allocate data structures. */
148         partition_t     *worklist;      /**< The work list. */
149         partition_t     *cprop;         /**< The constant propagation list. */
150         partition_t     *touched;       /**< the touched set. */
151         partition_t     *initial;       /**< The initial partition. */
152         set             *opcode2id_map; /**< The opcodeMode->id map. */
153         pmap            *type2id_map;   /**< The type->id map. */
154         int             end_idx;        /**< -1 for local and 0 for global congruences. */
155         int             lambda_input;   /**< Captured argument for lambda_partition(). */
156 #ifdef DEBUG_libfirm
157         partition_t     *dbg_list;      /**< List of all partitions. */
158 #endif
159 } environment_t;
160
161 /** Type of the what function. */
162 typedef void *(*what_func)(const node_t *node, environment_t *env);
163
164 #define get_irn_node(irn)         ((node_t *)get_irn_link(irn))
165 #define set_irn_node(irn, node)   set_irn_link(irn, node)
166
167 /* we do NOT use tarval_unreachable here, instead we use Top for this purpose */
168 #undef tarval_unreachable
169 #define tarval_unreachable tarval_top
170
171
172 /** The debug module handle. */
173 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
174
175 /** Next partition number. */
176 DEBUG_ONLY(static unsigned part_nr = 0);
177
178 #ifdef DEBUG_libfirm
179 static INLINE lattice_elem_t get_partition_type(const partition_t *X);
180
181 /**
182  * Dump partition to output.
183  */
184 static void dump_partition(const char *msg, const partition_t *part) {
185         const node_t   *node;
186         int            first = 1;
187         lattice_elem_t type = get_partition_type(part);
188
189         DB((dbg, LEVEL_2, "%s part%u (%u, %+F) {\n  ", msg, part->nr, part->n_nodes, type));
190         list_for_each_entry(node_t, node, &part->entries, node_list) {
191                 DB((dbg, LEVEL_2, "%s%+F", first ? "" : ", ", node->node));
192                 first = 0;
193         }
194         DB((dbg, LEVEL_2, "\n}\n"));
195 }
196
197 /**
198  * Dump all partitions.
199  */
200 static void dump_all_partitions(const environment_t *env) {
201         const partition_t *P;
202
203         DB((dbg, LEVEL_2, "All partitions\n===============\n"));
204         for (P = env->dbg_list; P != NULL; P = P->dbg_next)
205                 dump_partition("", P);
206 }
207
208 #else
209 #define dump_partition(msg, part)
210 #define dump_all_partitions(env)
211 #endif
212
213 #if defined(VERIFY_MONOTONE) && defined (DEBUG_libfirm)
214 /**
215  * Verify that a type transition is monotone
216  */
217 static void verify_type(const lattice_elem_t old_type, const lattice_elem_t new_type) {
218         if (old_type.tv == new_type.tv) {
219                 /* no change */
220                 return;
221         }
222         if (old_type.tv == tarval_top) {
223                 /* from Top down-to is always allowed */
224                 return;
225         }
226         if (old_type.tv == tarval_reachable) {
227                 panic("verify_type(): wrong translation from %+F to %+F", old_type, new_type);
228         }
229         if (new_type.tv == tarval_bottom || new_type.tv == tarval_reachable) {
230                 /* bottom reached */
231                 return;
232         }
233         panic("verify_type(): wrong translation from %+F to %+F", old_type, new_type);
234 }
235 #else
236 #define verify_type(old_type, new_type)
237 #endif
238
239 /**
240  * Compare two pointer values of a listmap.
241  */
242 static int listmap_cmp_ptr(const void *elt, const void *key, size_t size) {
243         const listmap_entry_t *e1 = elt;
244         const listmap_entry_t *e2 = key;
245
246         (void) size;
247         return e1->id != e2->id;
248 }  /* listmap_cmp_ptr */
249
250 /**
251  * Initializes a listmap.
252  *
253  * @param map  the listmap
254  */
255 static void listmap_init(listmap_t *map) {
256         map->map    = new_set(listmap_cmp_ptr, 16);
257         map->values = NULL;
258 }  /* listmap_init */
259
260 /**
261  * Terminates a listmap.
262  *
263  * @param map  the listmap
264  */
265 static void listmap_term(listmap_t *map) {
266         del_set(map->map);
267 }  /* listmap_term */
268
269 /**
270  * Return the associated listmap entry for a given id.
271  *
272  * @param map  the listmap
273  * @param id   the id to search for
274  *
275  * @return the asociated listmap entry for the given id
276  */
277 static listmap_entry_t *listmap_find(listmap_t *map, void *id) {
278         listmap_entry_t key, *entry;
279
280         key.id   = id;
281         key.list = NULL;
282         key.next = NULL;
283         entry = set_insert(map->map, &key, sizeof(key), HASH_PTR(id));
284
285         if (entry->list == NULL) {
286                 /* a new entry, put into the list */
287                 entry->next = map->values;
288                 map->values = entry;
289         }
290         return entry;
291 }  /* listmap_find */
292
293 /**
294  * Calculate the hash value for an opcode map entry.
295  *
296  * @param entry  an opcode map entry
297  *
298  * @return a hash value for the given opcode map entry
299  */
300 static unsigned opcode_hash(const opcode_key_t *entry) {
301         return (entry->mode - (ir_mode *)0) * 9 + entry->code + entry->u.proj * 3 + HASH_PTR(entry->u.ent);
302 }  /* opcode_hash */
303
304 /**
305  * Compare two entries in the opcode map.
306  */
307 static int cmp_opcode(const void *elt, const void *key, size_t size) {
308         const opcode_key_t *o1 = elt;
309         const opcode_key_t *o2 = key;
310
311         (void) size;
312         return o1->code != o2->code || o1->mode != o2->mode ||
313                o1->u.proj != o2->u.proj || o1->u.ent != o2->u.ent;
314 }  /* cmp_opcode */
315
316 /**
317  * Compare two Def-Use edges for input position.
318  */
319 static int cmp_def_use_edge(const void *a, const void *b) {
320         const ir_def_use_edge *ea = a;
321         const ir_def_use_edge *eb = b;
322
323         /* no overrun, because range is [-1, MAXINT] */
324         return ea->pos - eb->pos;
325 }  /* cmp_def_use_edge */
326
327 /**
328  * We need the Def-Use edges sorted.
329  */
330 static void sort_irn_outs(node_t *node) {
331         ir_node *irn = node->node;
332         int n_outs = get_irn_n_outs(irn);
333
334         if (n_outs > 1) {
335                 qsort(&irn->out[1], n_outs, sizeof(irn->out[0]), cmp_def_use_edge);
336         }
337         node->max_user_input = irn->out[n_outs].pos;
338 }  /* sort_irn_outs */
339
340 /**
341  * Return the type of a node.
342  *
343  * @param irn  an IR-node
344  *
345  * @return the associated type of this node
346  */
347 static INLINE lattice_elem_t get_node_type(const ir_node *irn) {
348         return get_irn_node(irn)->type;
349 }  /* get_node_type */
350
351 /**
352  * Return the tarval of a node.
353  *
354  * @param irn  an IR-node
355  *
356  * @return the associated type of this node
357  */
358 static INLINE tarval *get_node_tarval(const ir_node *irn) {
359         lattice_elem_t type = get_node_type(irn);
360
361         if (is_tarval(type.tv))
362                 return type.tv;
363         return tarval_bottom;
364 }  /* get_node_type */
365
366 /**
367  * Add a partition to the worklist.
368  */
369 static INLINE void add_to_worklist(partition_t *X, environment_t *env) {
370         assert(X->on_worklist == 0);
371         X->wl_next     = env->worklist;
372         X->on_worklist = 1;
373         env->worklist  = X;
374 }
375
376 /**
377  * Create a new empty partition.
378  *
379  * @param env   the environment
380  *
381  * @return a newly allocated partition
382  */
383 static INLINE partition_t *new_partition(environment_t *env) {
384         partition_t *part = obstack_alloc(&env->obst, sizeof(*part));
385
386         INIT_LIST_HEAD(&part->entries);
387         INIT_LIST_HEAD(&part->cprop);
388         part->wl_next         = NULL;
389         part->touched_next    = NULL;
390         part->cprop_next      = NULL;
391         part->touched         = NULL;
392         part->n_nodes         = 0;
393         part->n_touched       = 0;
394         part->max_arity       = 0;
395         part->max_user_inputs = 0;
396         part->on_worklist     = 0;
397         part->on_touched      = 0;
398         part->on_cprop        = 0;
399 #ifdef DEBUG_libfirm
400         part->dbg_next        = env->dbg_list;
401         env->dbg_list         = part;
402         part->nr              = part_nr++;
403 #endif
404
405         return part;
406 }  /* new_partition */
407
408 /**
409  * Get the first node from a partition.
410  */
411 static INLINE node_t *get_first_node(const partition_t *X) {
412         return list_entry(X->entries.next, node_t, node_list);
413 }
414
415 /**
416  * Return the type of a partition (assuming partition is non-empty and
417  * all elements have the same type).
418  *
419  * @param X  a partition
420  *
421  * @return the type of the first element of the partition
422  */
423 static INLINE lattice_elem_t get_partition_type(const partition_t *X) {
424         const node_t *first = get_first_node(X);
425         return first->type;
426 }  /* get_partition_type */
427
428 /**
429  * Creates a partition node for the given IR-node and place it
430  * into the given partition.
431  *
432  * @param irn   an IR-node
433  * @param part  a partition to place the node in
434  * @param env   the environment
435  *
436  * @return the created node
437  */
438 static node_t *create_partition_node(ir_node *irn, partition_t *part, environment_t *env) {
439         /* create a partition node and place it in the partition */
440         node_t *node = obstack_alloc(&env->obst, sizeof(*node));
441
442         INIT_LIST_HEAD(&node->node_list);
443         INIT_LIST_HEAD(&node->cprop_list);
444         node->node           = irn;
445         node->part           = part;
446         node->next           = NULL;
447         node->type.tv        = tarval_top;
448         node->max_user_input = 0;
449         node->next_edge      = 0;
450         node->on_touched     = 0;
451         node->on_cprop       = 0;
452         node->on_fallen      = 0;
453         set_irn_node(irn, node);
454
455         list_add_tail(&node->node_list, &part->entries);
456         ++part->n_nodes;
457
458         return node;
459 }  /* create_partition_node */
460
461 /**
462  * Pre-Walker, init all Block-Phi lists.
463  */
464 static void init_block_phis(ir_node *irn, void *env) {
465         (void) env;
466
467         if (is_Block(irn)) {
468                 set_Block_phis(irn, NULL);
469         }
470 }
471
472 /**
473  * Post-Walker, initialize all Nodes' type to U or top and place
474  * all nodes into the TOP partition.
475  */
476 static void create_initial_partitions(ir_node *irn, void *ctx) {
477         environment_t *env  = ctx;
478         partition_t   *part = env->initial;
479         node_t        *node;
480         int           arity;
481
482         node = create_partition_node(irn, part, env);
483         sort_irn_outs(node);
484         arity = get_irn_arity(irn);
485         if (arity > part->max_arity)
486                 part->max_arity = arity;
487         if (node->max_user_input > part->max_user_inputs)
488                 part->max_user_inputs = node->max_user_input;
489
490         if (is_Phi(irn)) {
491                 add_Block_phi(get_nodes_block(irn), irn);
492         }
493 }  /* create_initial_partitions */
494
495 /**
496  * Add a partition to the touched set if not already there.
497  *
498  * @param part  the partition
499  * @param env   the environment
500  */
501 static INLINE void add_to_touched(partition_t *part, environment_t *env) {
502         if (part->on_touched == 0) {
503                 part->touched_next = env->touched;
504                 env->touched       = part;
505                 part->on_touched   = 1;
506         }
507 }  /* add_to_touched */
508
509 /**
510  * Add a node to the entry.partition.touched set if not already there.
511  *
512  * @param y  a node
513  */
514 static INLINE void add_to_partition_touched(node_t *y) {
515         if (y->on_touched == 0) {
516                 partition_t *part = y->part;
517
518                 y->next       = part->touched;
519                 part->touched = y;
520                 y->on_touched = 1;
521                 ++part->n_touched;
522         }
523 }  /* add_to_partition_touched */
524
525 /**
526  * Update the worklist: If Z is on worklist then add Z' to worklist.
527  * Else add the smaller of Z and Z' to worklist.
528  *
529  * @param Z        the Z partition
530  * @param Z_prime  the Z' partition, a previous part of Z
531  * @param env      the environment
532  */
533 static void update_worklist(partition_t *Z, partition_t *Z_prime, environment_t *env) {
534         if (Z->on_worklist || Z_prime->n_nodes < Z->n_nodes) {
535                 add_to_worklist(Z_prime, env);
536         } else {
537                 add_to_worklist(Z, env);
538         }
539 }  /* update_worklist */
540
541 /**
542  * Split a partition by a local list.
543  *
544  * @param Z    the Z partition to split
545  * @param g    a (non-empty) node list
546  * @param env  the environment
547  *
548  * @return  a new partition containing the nodes of g
549  */
550 static partition_t *split(partition_t *Z, node_t *g, environment_t *env) {
551         partition_t *Z_prime;
552         node_t      *node;
553         unsigned    n = 0;
554         int         max_input, max_arity, arity;
555
556         dump_partition("Splitting ", Z);
557
558         assert(g != NULL);
559
560         /* Remove g from Z. */
561         for (node = g; node != NULL; node = node->next) {
562                 list_del(&node->node_list);
563                 ++n;
564         }
565         assert(n < Z->n_nodes);
566         Z->n_nodes -= n;
567
568         /* Move g to a new partition, Z\92. */
569         Z_prime = new_partition(env);
570         max_arity = max_input = 0;
571         for (node = g; node != NULL; node = node->next) {
572                 list_add(&node->node_list, &Z_prime->entries);
573                 node->part = Z_prime;
574                 arity = get_irn_arity(node->node);
575                 if (arity > max_arity)
576                         max_arity = arity;
577                 if (node->max_user_input > max_input)
578                         max_input = node->max_user_input;
579         }
580         Z_prime->max_arity       = max_arity;
581         Z_prime->max_user_inputs = max_input;
582         Z_prime->n_nodes         = n;
583
584         update_worklist(Z, Z_prime, env);
585
586         dump_partition("Now ", Z);
587         dump_partition("Created new ", Z_prime);
588         return Z_prime;
589 }  /* split */
590
591 /**
592  * Returns non-zero if the i'th input of a Phi node is live.
593  *
594  * @param phi  a Phi-node
595  * @param i    an input number
596  *
597  * @return non-zero if the i'th input of the given Phi node is live
598  */
599 static int is_live_input(ir_node *phi, int i) {
600         if (i >= 0) {
601                 ir_node        *block = get_nodes_block(phi);
602                 ir_node        *pred  = get_Block_cfgpred(block, i);
603                 lattice_elem_t type   = get_node_type(pred);
604
605                 return type.tv != tarval_unreachable;
606         }
607         /* else it's the control input, always live */
608         return 1;
609 }  /* is_live_input */
610
611 /**
612  * Return non-zero if a type is a constant.
613  */
614 static int is_constant_type(lattice_elem_t type) {
615         if (type.tv != tarval_bottom && type.tv != tarval_top)
616                 return 1;
617         return 0;
618 }  /* is_constant_type */
619
620 /**
621  * Place a node on the cprop list.
622  *
623  * @param y    the node
624  * @param env  the environment
625  */
626 static void add_node_to_cprop(node_t *y, environment_t *env) {
627         /* Add y to y.partition.cprop. */
628         if (y->on_cprop == 0) {
629                 partition_t *Y = y->part;
630
631                 list_add_tail(&y->cprop_list, &Y->cprop);
632                 y->on_cprop   = 1;
633
634                 DB((dbg, LEVEL_3, "Add %+F to part%u.cprop\n", y->node, Y->nr));
635
636                 /* place its partition on the cprop list */
637                 if (Y->on_cprop == 0) {
638                         Y->cprop_next = env->cprop;
639                         env->cprop    = Y;
640                         Y->on_cprop   = 1;
641                 }
642         }
643         if (get_irn_mode(y->node) == mode_T) {
644                 /* mode_T nodes always produce tarval_bottom, so we must explicitly
645                    add it's Proj's to get constant evaluation to work */
646                 int i;
647
648                 for (i = get_irn_n_outs(y->node) - 1; i >= 0; --i) {
649                         node_t *proj = get_irn_node(get_irn_out(y->node, i));
650
651                         add_node_to_cprop(proj, env);
652                 }
653         }
654
655         if (is_Block(y->node)) {
656                 /* Due to the way we handle Phi's, we must place all Phis of a block on the list
657                  * if someone placed the block. The Block is only placed if the reachability
658                  * changes, and this must be re-evaluated in compute_Phi(). */
659                 ir_node *phi;
660                 for (phi = get_Block_phis(y->node); phi != NULL; phi = get_Phi_next(phi)) {
661                         node_t *p = get_irn_node(phi);
662                         add_node_to_cprop(p, env);
663                 }
664         }
665 }  /* add_node_to_cprop */
666
667 /**
668  * Check whether a type is neither Top or a constant.
669  * Note: U is handled like Top here, R is a constant.
670  *
671  * @param type  the type to check
672  */
673 static int type_is_neither_top_nor_const(const lattice_elem_t type) {
674         if (is_tarval(type.tv)) {
675                 if (type.tv == tarval_top)
676                         return 0;
677                 if (tarval_is_constant(type.tv))
678                         return 0;
679         } else {
680                 /* is a symconst */
681                 return 0;
682         }
683         return 1;
684 }
685
686 /**
687  * Split the partitions if caused by the first entry on the worklist.
688  *
689  * @param env  the environment
690  */
691 static void cause_splits(environment_t *env) {
692         partition_t *X, *Y, *Z;
693         node_t      *x, *y, *e;
694         int         i, end_idx;
695         ir_opcode   code;
696         ir_node     *succ;
697
698         /* remove the first partition from the worklist */
699         X = env->worklist;
700         env->worklist  = X->wl_next;
701         X->on_worklist = 0;
702
703         dump_partition("Cause_split: ", X);
704         end_idx = env->end_idx;
705         for (i = -1; i <= X->max_user_inputs; ++i) {
706                 /* empty the touched set: already done, just clear the list */
707                 env->touched = NULL;
708
709                 list_for_each_entry(node_t, x, &X->entries, node_list) {
710                         int num_edges;
711
712                         if (i == -1) {
713                                 x->next_edge = 1;
714                         }
715                         num_edges = get_irn_n_outs(x->node);
716
717                         while (x->next_edge <= num_edges) {
718                                 ir_def_use_edge *edge = &x->node->out[x->next_edge];
719
720                                 /* check if we have necessary edges */
721                                 if (edge->pos > i)
722                                         break;
723
724                                 ++x->next_edge;
725
726                                 succ = edge->use;
727
728                                 /* ignore the "control input" for non-pinned nodes
729                                    if we are running in GCSE mode */
730                                 if (i < end_idx && get_irn_pinned(succ) != op_pin_state_pinned)
731                                         continue;
732
733                                 y = get_irn_node(succ);
734                                 if (is_constant_type(y->type)) {
735                                         code = get_irn_opcode(succ);
736                                         if (code == iro_Sub || (code == iro_Proj && is_Cmp(get_Proj_pred(succ))))
737                                                 add_node_to_cprop(y, env);
738                                 }
739
740                                 /* Partitions of constants should not be split simply because their Nodes have unequal
741                                    functions or incongruent inputs. */
742                                 if (type_is_neither_top_nor_const(y->type) &&
743                                         (! is_Phi(y->node) || is_live_input(y->node, i))) {
744                                         Y = y->part;
745                                         add_to_touched(Y, env);
746                                         add_to_partition_touched(y);
747                                 }
748                         }
749                 }
750
751                 for (Z = env->touched; Z != NULL; Z = Z->touched_next) {
752                         /* remove it from the touched set */
753                         Z->on_touched = 0;
754
755                         if (Z->n_nodes != Z->n_touched) {
756                                 DB((dbg, LEVEL_2, "Split part%d by touched\n", Z->nr));
757                                 split(Z, Z->touched, env);
758                         }
759                         /* Empty local Z.touched. */
760                         for (e = Z->touched; e != NULL; e = e->next) {
761                                 e->on_touched = 0;
762                         }
763                         Z->touched   = NULL;
764                         Z->n_touched = 0;
765                 }
766         }
767 }  /* cause_splits */
768
769 /**
770  * Implements split_by_what(): Split a partition by characteristics given
771  * by the what function.
772  *
773  * @param X     the partition to split
774  * @param What  a function returning an Id for every node of the partition X
775  * @param P     an flexible array to store the result partitions or NULL
776  * @param env   the environment
777  *
778  * @return if P != NULL P will be filled with the resulting partitions and returned
779  */
780 static partition_t **split_by_what(partition_t *X, what_func What,
781                                    partition_t **P, environment_t *env) {
782         node_t          *x, *S;
783         listmap_t       map;
784         listmap_entry_t *iter;
785         partition_t     *R;
786
787         /* Let map be an empty mapping from the range of What to (local) list of Nodes. */
788         listmap_init(&map);
789         list_for_each_entry(node_t, x, &X->entries, node_list) {
790                 void            *id = What(x, env);
791                 listmap_entry_t *entry;
792
793                 if (id == NULL) {
794                         /* input not allowed, ignore */
795                         continue;
796                 }
797                 /* Add x to map[What(x)]. */
798                 entry = listmap_find(&map, id);
799                 x->next     = entry->list;
800                 entry->list = x;
801         }
802         /* Let P be a set of Partitions. */
803
804         /* for all sets S except one in the range of map do */
805         for (iter = map.values; iter != NULL; iter = iter->next) {
806                 if (iter->next == NULL) {
807                         /* this is the last entry, ignore */
808                         break;
809                 }
810                 S = iter->list;
811
812                 /* Add SPLIT( X, S ) to P. */
813                 DB((dbg, LEVEL_2, "Split part%d by what\n", X->nr));
814                 R = split(X, S, env);
815                 if (P != NULL) {
816                         ARR_APP1(partition_t *, P, R);
817                 }
818         }
819         /* Add X to P. */
820         if (P != NULL) {
821                 ARR_APP1(partition_t *, P, X);
822         }
823
824         listmap_term(&map);
825         return P;
826 }  /* split_by_what */
827
828 /** lambda n.(n.type) */
829 static void *lambda_type(const node_t *node, environment_t *env) {
830         (void)env;
831         return node->type.tv;
832 }  /* lambda_type */
833
834 /** lambda n.(n.opcode) */
835 static void *lambda_opcode(const node_t *node, environment_t *env) {
836         opcode_key_t key, *entry;
837         ir_node      *irn = node->node;
838
839         key.code   = get_irn_opcode(irn);
840         key.mode   = get_irn_mode(irn);
841         key.u.proj = 0;
842         key.u.ent  = NULL;
843
844         switch (get_irn_opcode(irn)) {
845         case iro_Proj:
846                 key.u.proj = get_Proj_proj(irn);
847                 break;
848         case iro_Sel:
849                 key.u.ent = get_Sel_entity(irn);
850                 break;
851         default:
852                 break;
853         }
854
855         entry = set_insert(env->opcode2id_map, &key, sizeof(key), opcode_hash(&key));
856         return entry;
857 }  /* lambda_opcode */
858
859 /** lambda n.(n[i].partition) */
860 static void *lambda_partition(const node_t *node, environment_t *env) {
861         ir_node *skipped = skip_Proj(node->node);
862         ir_node *pred;
863         node_t  *p;
864         int     i = env->lambda_input;
865
866         if (i >= get_irn_arity(node->node)) {
867                 /* we are outside the allowed range */
868                 return NULL;
869         }
870
871         /* ignore the "control input" for non-pinned nodes
872            if we are running in GCSE mode */
873         if (i < env->end_idx && get_irn_pinned(skipped) != op_pin_state_pinned)
874                 return NULL;
875
876         pred = i == -1 ? get_irn_n(skipped, i) : get_irn_n(node->node, i);
877         p    = get_irn_node(pred);
878
879         return p->part;
880 }  /* lambda_partition */
881
882 /**
883  * Checks whether a type is a constant.
884  */
885 static int is_type_constant(lattice_elem_t type) {
886         if (is_tarval(type.tv))
887                 return tarval_is_constant(type.tv);
888         /* else it is a symconst */
889         return 1;
890 }
891
892 /**
893  * Implements split_by().
894  *
895  * @param X    the partition to split
896  * @param env  the environment
897  */
898 static void split_by(partition_t *X, environment_t *env) {
899         partition_t **P = NEW_ARR_F(partition_t *, 0);
900         int         i, j, k;
901
902         DB((dbg, LEVEL_2, "WHAT = lambda n.(n.type) on part%d\n", X->nr));
903         P = split_by_what(X, lambda_type, P, env);
904         for (i = ARR_LEN(P) - 1; i >= 0; --i) {
905                 partition_t *Y = P[i];
906
907                 if (Y->n_nodes > 1) {
908                         lattice_elem_t type = get_partition_type(Y);
909
910                         /* we do not want split the TOP or constant partitions */
911                         if (type.tv != tarval_top && !is_type_constant(type)) {
912                                 partition_t **Q = NEW_ARR_F(partition_t *, 0);
913
914                                 DB((dbg, LEVEL_2, "WHAT = lambda n.(n.opcode) on part%d\n", Y->nr));
915                                 Q = split_by_what(Y, lambda_opcode, Q, env);
916
917                                 for (j = ARR_LEN(Q) - 1; j >= 0; --j) {
918                                         partition_t *Z = Q[j];
919
920                                         for (k = Z->max_arity - 1; k >= -1; --k) {
921                                                 if (Z->n_nodes > 1) {
922                                                         env->lambda_input = k;
923                                                         DB((dbg, LEVEL_2, "WHAT = lambda n.(n[%d].partition) on part%d\n", k, Z->nr));
924                                                         split_by_what(Z, lambda_partition, NULL, env);
925                                                 }
926                                         }
927                                 }
928                                 DEL_ARR_F(Q);
929                         }
930                 }
931         }
932         DEL_ARR_F(P);
933 }  /* split_by */
934
935 /**
936  * (Re-)compute the type for a given node.
937  *
938  * @param node  the node
939  */
940 static void default_compute(node_t *node) {
941         int     i;
942         ir_node *irn = node->node;
943         node_t  *block = get_irn_node(get_nodes_block(irn));
944
945         if (block->type.tv == tarval_unreachable) {
946                 node->type.tv = tarval_top;
947                 return;
948         }
949
950         /* if any of the data inputs have type top, the result is type top */
951         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
952                 ir_node *pred = get_irn_n(irn, i);
953                 node_t  *p    = get_irn_node(pred);
954
955                 if (p->type.tv == tarval_top) {
956                         node->type.tv = tarval_top;
957                         return;
958                 }
959         }
960
961         if (get_irn_mode(node->node) == mode_X)
962                 node->type.tv = tarval_reachable;
963         else
964                 node->type.tv = computed_value(irn);
965 }  /* default_compute */
966
967 /**
968  * (Re-)compute the type for a Block node.
969  *
970  * @param node  the node
971  */
972 static void compute_Block(node_t *node) {
973         int     i;
974         ir_node *block = node->node;
975
976         for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i) {
977                 node_t *pred = get_irn_node(get_Block_cfgpred(block, i));
978
979                 if (pred->type.tv == tarval_reachable) {
980                         /* A block is reachable, if at least of predecessor is reachable. */
981                         node->type.tv = tarval_reachable;
982                         return;
983                 }
984         }
985         node->type.tv = tarval_top;
986 }  /* compute_Block */
987
988 /**
989  * (Re-)compute the type for a Jmp node.
990  *
991  * @param node  the node
992  */
993 static void compute_Jmp(node_t *node) {
994         node_t *block = get_irn_node(get_nodes_block(node->node));
995
996         node->type = block->type;
997 }  /* compute_Jmp */
998
999 /**
1000  * (Re-)compute the type for the End node.
1001  *
1002  * @param node  the node
1003  */
1004 static void compute_End(node_t *node) {
1005         /* the End node is NOT dead of course */
1006         node->type.tv = tarval_reachable;
1007 }
1008
1009 /**
1010  * (Re-)compute the type for a SymConst node.
1011  *
1012  * @param node  the node
1013  */
1014 static void compute_SymConst(node_t *node) {
1015         ir_node *irn = node->node;
1016         node_t  *block = get_irn_node(get_nodes_block(irn));
1017
1018         if (block->type.tv == tarval_unreachable) {
1019                 node->type.tv = tarval_top;
1020                 return;
1021         }
1022         switch (get_SymConst_kind(irn)) {
1023         case symconst_addr_ent:
1024         /* case symconst_addr_name: cannot handle this yet */
1025                 node->type.sym = get_SymConst_symbol(irn);
1026                 break;
1027         default:
1028                 node->type.tv = computed_value(irn);
1029         }
1030 }  /* compute_SymConst */
1031
1032 /**
1033  * (Re-)compute the type for a Phi node.
1034  *
1035  * @param node  the node
1036  */
1037 static void compute_Phi(node_t *node) {
1038         int            i;
1039         ir_node        *phi = node->node;
1040         lattice_elem_t type;
1041
1042         /* if a Phi is in a unreachable block, its type is TOP */
1043         node_t *block = get_irn_node(get_nodes_block(phi));
1044
1045         if (block->type.tv == tarval_unreachable) {
1046                 node->type.tv = tarval_top;
1047                 return;
1048         }
1049
1050         /* Phi implements the Meet operation */
1051         type.tv = tarval_top;
1052         for (i = get_Phi_n_preds(phi) - 1; i >= 0; --i) {
1053                 node_t *pred   = get_irn_node(get_Phi_pred(phi, i));
1054                 node_t *pred_X = get_irn_node(get_Block_cfgpred(block->node, i));
1055
1056                 if (pred_X->type.tv == tarval_unreachable || pred->type.tv == tarval_top) {
1057                         /* ignore TOP inputs: We must check here for unreachable blocks,
1058                            because Firm constants live in the Start Block are NEVER Top.
1059                            Else, a Phi (1,2) will produce Bottom, even if the 2 for instance
1060                            comes from a unreachable input. */
1061                         continue;
1062                 }
1063                 if (pred->type.tv == tarval_bottom) {
1064                         node->type.tv = tarval_bottom;
1065                         return;
1066                 } else if (type.tv == tarval_top) {
1067                         /* first constant found */
1068                         type = pred->type;
1069                 } else if (type.tv != pred->type.tv) {
1070                         /* different constants or tarval_bottom */
1071                         node->type.tv = tarval_bottom;
1072                         return;
1073                 }
1074                 /* else nothing, constants are the same */
1075         }
1076         node->type = type;
1077 }  /* compute_Phi */
1078
1079 /**
1080  * (Re-)compute the type for an Add. Special case: one nodes is a Zero Const.
1081  *
1082  * @param node  the node
1083  */
1084 static void compute_Add(node_t *node) {
1085         ir_node        *sub = node->node;
1086         node_t         *l   = get_irn_node(get_Add_left(sub));
1087         node_t         *r   = get_irn_node(get_Add_right(sub));
1088         lattice_elem_t a    = l->type;
1089         lattice_elem_t b    = r->type;
1090         node_t         *block = get_irn_node(get_nodes_block(sub));
1091         ir_mode        *mode;
1092
1093         if (block->type.tv == tarval_unreachable) {
1094                 node->type.tv = tarval_top;
1095                 return;
1096         }
1097
1098         if (a.tv == tarval_top || b.tv == tarval_top) {
1099                 node->type.tv = tarval_top;
1100         } else if (a.tv == tarval_bottom || b.tv == tarval_bottom) {
1101                 node->type.tv = tarval_bottom;
1102         } else {
1103                 /* x + 0 = 0 + x = x, but beware of floating point +0 + -0, so we
1104                    must call tarval_add() first to handle this case! */
1105                 if (is_tarval(a.tv)) {
1106                         if (is_tarval(b.tv)) {
1107                                 node->type.tv = tarval_add(a.tv, b.tv);
1108                                 return;
1109                         }
1110                         mode = get_tarval_mode(a.tv);
1111                         if (a.tv == get_mode_null(mode)) {
1112                                 node->type = b;
1113                                 return;
1114                         }
1115                 } else if (is_tarval(b.tv)) {
1116                         mode = get_tarval_mode(b.tv);
1117                         if (b.tv == get_mode_null(mode)) {
1118                                 node->type = a;
1119                                 return;
1120                         }
1121                 }
1122                 node->type.tv = tarval_bottom;
1123         }
1124 }  /* compute_Add */
1125
1126 /**
1127  * Returns true if a type is a constant.
1128  */
1129 static int is_con(const lattice_elem_t type) {
1130         return is_entity(type.sym.entity_p) || tarval_is_constant(type.tv);
1131 }
1132
1133 /**
1134  * (Re-)compute the type for a Sub. Special case: both nodes are congruent.
1135  *
1136  * @param node  the node
1137  */
1138 static void compute_Sub(node_t *node) {
1139         ir_node        *sub = node->node;
1140         node_t         *l   = get_irn_node(get_Sub_left(sub));
1141         node_t         *r   = get_irn_node(get_Sub_right(sub));
1142         lattice_elem_t a    = l->type;
1143         lattice_elem_t b    = r->type;
1144         node_t         *block = get_irn_node(get_nodes_block(sub));
1145
1146         if (block->type.tv == tarval_unreachable) {
1147                 node->type.tv = tarval_top;
1148                 return;
1149         }
1150         if (a.tv == tarval_top || b.tv == tarval_top) {
1151                 node->type.tv = tarval_top;
1152         } else if (is_con(a) && is_con(b)) {
1153                 if (is_tarval(a.tv) && is_tarval(b.tv)) {
1154                         node->type.tv = tarval_sub(a.tv, b.tv);
1155                 } else if (is_tarval(a.tv) && tarval_is_null(a.tv)) {
1156                         node->type = b;
1157                 } else if (is_tarval(b.tv) && tarval_is_null(b.tv)) {
1158                         node->type = a;
1159                 } else {
1160                         node->type.tv = tarval_bottom;
1161                 }
1162         } else if (r->part == l->part &&
1163                    (!mode_is_float(get_irn_mode(l->node)))) {
1164                 if (node->type.tv == tarval_top) {
1165                         /*
1166                          * BEWARE: a - a is NOT always 0 for floating Point values, as
1167                          * NaN op NaN = NaN, so we must check this here.
1168                          */
1169                         ir_mode *mode = get_irn_mode(sub);
1170                         node->type.tv = get_mode_null(mode);
1171                 } else {
1172                         node->type.tv = tarval_bottom;
1173                 }
1174         } else {
1175                 node->type.tv = tarval_bottom;
1176         }
1177 }  /* compute_Sub */
1178
1179 /**
1180  * (Re-)compute the type for a Proj(Cmp).
1181  *
1182  * @param node  the node
1183  * @param cond  the predecessor Cmp node
1184  */
1185 static void compute_Proj_Cmp(node_t *node, ir_node *cmp) {
1186         ir_node        *proj = node->node;
1187         node_t         *l    = get_irn_node(get_Cmp_left(cmp));
1188         node_t         *r    = get_irn_node(get_Cmp_right(cmp));
1189         lattice_elem_t a     = l->type;
1190         lattice_elem_t b     = r->type;
1191         pn_Cmp         pnc   = get_Proj_proj(proj);
1192
1193         if (a.tv == tarval_top || b.tv == tarval_top) {
1194                 node->type.tv = tarval_top;
1195         } else if (is_con(a) && is_con(b)) {
1196                 default_compute(node);
1197         } else if (r->part == l->part &&
1198                    (!mode_is_float(get_irn_mode(l->node)) || pnc == pn_Cmp_Lt || pnc == pn_Cmp_Gt)) {
1199                 if (node->type.tv == tarval_top) {
1200                         /*
1201                          * BEWARE: a == a is NOT always True for floating Point values, as
1202                          * NaN != NaN is defined, so we must check this here.
1203                          */
1204                         node->type.tv = new_tarval_from_long(pnc & pn_Cmp_Eq, mode_b);
1205                 } else {
1206                         node->type.tv = tarval_bottom;
1207                 }
1208         } else {
1209                 node->type.tv = tarval_bottom;
1210         }
1211 }  /* compute_Proj_Cmp */
1212
1213 /**
1214  * (Re-)compute the type for a Proj(Cond).
1215  *
1216  * @param node  the node
1217  * @param cond  the predecessor Cond node
1218  */
1219 static void compute_Proj_Cond(node_t *node, ir_node *cond) {
1220         ir_node *proj     = node->node;
1221         long    pnc       = get_Proj_proj(proj);
1222         ir_node *sel      = get_Cond_selector(cond);
1223         node_t  *selector = get_irn_node(sel);
1224
1225         if (get_irn_mode(sel) == mode_b) {
1226                 /* an IF */
1227                 if (pnc == pn_Cond_true) {
1228                         if (selector->type.tv == tarval_b_false) {
1229                                 node->type.tv = tarval_unreachable;
1230                         } else if (selector->type.tv == tarval_b_true) {
1231                                 node->type.tv = tarval_reachable;
1232                         } else if (selector->type.tv == tarval_bottom) {
1233                                 node->type.tv = tarval_reachable;
1234                         } else {
1235                                 assert(selector->type.tv == tarval_top);
1236                                 node->type.tv = tarval_unreachable;
1237                         }
1238                 } else {
1239                         assert(pnc == pn_Cond_false);
1240
1241                         if (selector->type.tv == tarval_b_false) {
1242                                 node->type.tv = tarval_reachable;
1243                         } else if (selector->type.tv == tarval_b_true) {
1244                                 node->type.tv = tarval_unreachable;
1245                         } else if (selector->type.tv == tarval_bottom) {
1246                                 node->type.tv = tarval_reachable;
1247                         } else {
1248                                 assert(selector->type.tv == tarval_top);
1249                                 node->type.tv = tarval_unreachable;
1250                         }
1251                 }
1252         } else {
1253                 /* an SWITCH */
1254                 if (selector->type.tv == tarval_bottom) {
1255                         node->type.tv = tarval_reachable;
1256                 } else if (selector->type.tv == tarval_top) {
1257                         node->type.tv = tarval_unreachable;
1258                 } else {
1259                         long value = get_tarval_long(selector->type.tv);
1260                         if (pnc == get_Cond_defaultProj(cond)) {
1261                                 /* default switch, have to check ALL other cases */
1262                                 int i;
1263
1264                                 for (i = get_irn_n_outs(cond) - 1; i >= 0; --i) {
1265                                         ir_node *succ = get_irn_out(cond, i);
1266
1267                                         if (succ == proj)
1268                                                 continue;
1269                                         if (value == get_Proj_proj(succ)) {
1270                                                 /* we found a match, will NOT take the default case */
1271                                                 node->type.tv = tarval_unreachable;
1272                                                 return;
1273                                         }
1274                                 }
1275                                 /* all cases checked, no match, will take default case */
1276                                 node->type.tv = tarval_reachable;
1277                         } else {
1278                                 /* normal case */
1279                                 node->type.tv = value == pnc ? tarval_reachable : tarval_unreachable;
1280                         }
1281                 }
1282         }
1283 }  /* compute_Proj_Cond */
1284
1285 /**
1286  * (Re-)compute the type for a Proj-Nodes.
1287  *
1288  * @param node  the node
1289  */
1290 static void compute_Proj(node_t *node) {
1291         ir_node *proj = node->node;
1292         ir_mode *mode = get_irn_mode(proj);
1293         node_t  *block = get_irn_node(get_nodes_block(skip_Proj(proj)));
1294         ir_node *pred  = get_Proj_pred(proj);
1295
1296         if (get_Proj_proj(proj) == pn_Start_X_initial_exec && is_Start(pred)) {
1297                 /* The initial_exec node is ALWAYS reachable. */
1298                 node->type.tv = tarval_reachable;
1299                 return;
1300         }
1301
1302         if (block->type.tv == tarval_unreachable) {
1303                 /* a Proj in a unreachable Block stay Top */
1304                 node->type.tv = tarval_top;
1305                 return;
1306         }
1307         if (get_irn_node(pred)->type.tv == tarval_top) {
1308                 /* if the predecessor is Top, its Proj follow */
1309                 node->type.tv = tarval_top;
1310                 return;
1311         }
1312
1313         if (mode == mode_M) {
1314                 /* mode M is always bottom */
1315                 node->type.tv = tarval_bottom;
1316                 return;
1317         }
1318         if (mode != mode_X) {
1319                 if (is_Cmp(pred))
1320                         compute_Proj_Cmp(node, pred);
1321                 else
1322                         default_compute(node);
1323                 return;
1324         }
1325         /* handle mode_X nodes */
1326
1327         switch (get_irn_opcode(pred)) {
1328         case iro_Start:
1329                 /* the Proj_X from the Start is always reachable.
1330                    However this is already handled at the top. */
1331                 node->type.tv = tarval_reachable;
1332                 break;
1333         case iro_Cond:
1334                 compute_Proj_Cond(node, pred);
1335                 break;
1336         default:
1337                 default_compute(node);
1338         }
1339 }  /* compute_Proj */
1340
1341 /**
1342  * (Re-)compute the type for a given node.
1343  *
1344  * @param node  the node
1345  */
1346 static void compute(node_t *node) {
1347         compute_func func = (compute_func)node->node->op->ops.generic;
1348
1349         if (func != NULL)
1350                 func(node);
1351 }  /* compute */
1352
1353 /**
1354  * Propagate constant evaluation.
1355  *
1356  * @param env  the environment
1357  */
1358 static void propagate(environment_t *env) {
1359         partition_t    *X, *Y;
1360         node_t         *x;
1361         lattice_elem_t old_type;
1362         node_t         *fallen;
1363         unsigned       n_fallen;
1364         int            i;
1365
1366         while (env->cprop != NULL) {
1367                 /* remove the first partition X from cprop */
1368                 X          = env->cprop;
1369                 X->on_cprop = 0;
1370                 env->cprop = X->cprop_next;
1371
1372                 DB((dbg, LEVEL_2, "Propagate type on part%d\n", X->nr));
1373                 fallen   = NULL;
1374                 n_fallen = 0;
1375                 while (! list_empty(&X->cprop)) {
1376                         /* remove the first Node x from X.cprop */
1377                         x = list_entry(X->cprop.next, node_t, cprop_list);
1378                         list_del(&x->cprop_list);
1379                         x->on_cprop = 0;
1380
1381                         /* compute a new type for x */
1382                         old_type = x->type;
1383                         DB((dbg, LEVEL_3, "computing type of %+F\n", x->node));
1384                         compute(x);
1385                         if (x->type.tv != old_type.tv) {
1386                                 verify_type(old_type, x->type);
1387                                 DB((dbg, LEVEL_2, "node %+F has changed type from %+F to %+F\n", x->node, old_type, x->type));
1388
1389                                 if (x->on_fallen == 0) {
1390                                         /* Add x to fallen. Nodes might fall from T -> const -> _|_, so check that they are
1391                                            not already on the list. */
1392                                         x->next      = fallen;
1393                                         x->on_fallen = 1;
1394                                         fallen       = x;
1395                                         ++n_fallen;
1396                                         DB((dbg, LEVEL_2, "Add node %+F to fallen\n", x->node));
1397                                 }
1398                                 for (i = get_irn_n_outs(x->node) - 1; i >= 0; --i) {
1399                                         ir_node *succ = get_irn_out(x->node, i);
1400                                         node_t  *y    = get_irn_node(succ);
1401
1402                                         /* Add y to y.partition.cprop. */
1403                                         add_node_to_cprop(y, env);
1404                                 }
1405                         }
1406                 }
1407
1408                 if (n_fallen > 0 && n_fallen != X->n_nodes) {
1409                         DB((dbg, LEVEL_2, "Splitting part%d by fallen\n", X->nr));
1410                         Y = split(X, fallen, env);
1411                 } else {
1412                         Y = X;
1413                 }
1414                 /* remove the nodes from the fallen list */
1415                 for (x = fallen; x != NULL; x = x->next)
1416                         x->on_fallen = 0;
1417
1418                 if (Y->n_nodes > 1)
1419                         split_by(Y, env);
1420         }
1421 }  /* propagate */
1422
1423 /**
1424  * Get the leader for a given node from its congruence class.
1425  *
1426  * @param irn  the node
1427  */
1428 static ir_node *get_leader(node_t *node) {
1429         partition_t *part = node->part;
1430
1431         if (part->n_nodes > 1) {
1432                 DB((dbg, LEVEL_2, "Found congruence class for %+F\n", node->node));
1433
1434                 return get_first_node(part)->node;
1435         }
1436         return node->node;
1437 }
1438
1439 /**
1440  * Post-Walker, apply the analysis results;
1441  */
1442 static void apply_result(ir_node *irn, void *ctx) {
1443         node_t *node = get_irn_node(irn);
1444
1445         (void) ctx;
1446         if (is_Block(irn)) {
1447                 if (irn == get_irg_end_block(current_ir_graph)) {
1448                         /* the EndBlock is always reachable even if the analysis
1449                            finds out the opposite :-) */
1450                         return;
1451                 }
1452
1453                 if (node->type.tv == tarval_unreachable) {
1454                         /* mark dead blocks */
1455                         set_Block_dead(irn);
1456                 }
1457         } else if (is_End(irn)) {
1458                 /* do not touch the End node */
1459         } else {
1460                 node_t *block = get_irn_node(get_nodes_block(irn));
1461
1462                 if (block->type.tv == tarval_unreachable) {
1463                         if (! is_Bad(irn)) {
1464                                 ir_node *bad = get_irg_bad(current_ir_graph);
1465
1466                                 /* here, bad might already have a node, but this can be safely ignored
1467                                    as long as bad has at least ONE valid node */
1468                                 set_irn_node(bad, node);
1469                                 node->node = bad;
1470                                 DB((dbg, LEVEL_1, "%+F is unreachable\n", irn));
1471                                 exchange(irn, bad);
1472                         }
1473                 }
1474                 else if (get_irn_mode(irn) == mode_X) {
1475                         if (node->type.tv == tarval_unreachable) {
1476                                 ir_node *bad = get_irg_bad(current_ir_graph);
1477
1478                                 /* see comment above */
1479                                 set_irn_node(bad, node);
1480                                 node->node = bad;
1481                                 DB((dbg, LEVEL_1, "%+F is unreachable\n", irn));
1482                                 exchange(irn, bad);
1483                         }
1484                         else if (is_Proj(irn)) {
1485                                 /* leave or Jmp */
1486                                 ir_node *cond = get_Proj_pred(irn);
1487
1488                                 if (is_Cond(cond)) {
1489                                         node_t *sel = get_irn_node(get_Cond_selector(cond));
1490
1491                                         if (is_tarval(sel->type.tv) && tarval_is_constant(sel->type.tv)) {
1492                                                 /* Cond selector is a constant, make a Jmp */
1493                                                 ir_node *jmp = new_r_Jmp(current_ir_graph, block->node);
1494                                                 set_irn_node(jmp, node);
1495                                                 node->node = jmp;
1496                                                 DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, jmp));
1497                                                 exchange(irn, jmp);
1498                                         }
1499                                 }
1500                         }
1501                 } else {
1502                         /* normal data node */
1503                         if (is_tarval(node->type.tv) && tarval_is_constant(node->type.tv)) {
1504                                 tarval *tv = node->type.tv;
1505
1506                                 if (! is_Const(irn)) {
1507                                         /* can be replaced by a constant */
1508                                         ir_node *c = new_r_Const(current_ir_graph, block->node, get_tarval_mode(tv), tv);
1509                                         set_irn_node(c, node);
1510                                         node->node = c;
1511                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, c));
1512                                         exchange(irn, c);
1513                                 }
1514                         } else if (is_entity(node->type.sym.entity_p)) {
1515                                 if (! is_SymConst(irn)) {
1516                                         /* can be replaced by a Symconst */
1517                                         ir_node *symc = new_r_SymConst(current_ir_graph, block->node, get_irn_mode(irn), node->type.sym, symconst_addr_ent);
1518                                         set_irn_node(symc, node);
1519                                         node->node = symc;
1520
1521                                         DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, symc));
1522                                         exchange(irn, symc);
1523                                 }
1524                         } else {
1525                                 ir_node *leader = get_leader(node);
1526
1527                                 if (leader != irn) {
1528                                         DB((dbg, LEVEL_1, "%+F from part%d is replaced by %+F\n", irn, node->part->nr, leader));
1529                                         exchange(irn, leader);
1530                                 }
1531                         }
1532                 }
1533         }
1534 }  /* static void apply_result(ir_node *irn, void *ctx) {
1535  */
1536
1537 #define SET(code) op_##code->ops.generic = (op_func)compute_##code
1538
1539 /**
1540  * sets the generic functions to compute.
1541  */
1542 static void set_compute_functions(void) {
1543         int i;
1544
1545         /* set the default compute function */
1546         for (i = get_irp_n_opcodes() - 1; i >= 0; --i) {
1547                 ir_op *op = get_irp_opcode(i);
1548                 op->ops.generic = (op_func)default_compute;
1549         }
1550
1551         /* set specific functions */
1552         SET(Block);
1553         SET(Jmp);
1554         SET(Phi);
1555         SET(Add);
1556         SET(Sub);
1557         SET(SymConst);
1558         SET(Proj);
1559         SET(End);
1560 }  /* set_compute_functions */
1561
1562 static int dump_partition_hook(FILE *F, ir_node *n, ir_node *local) {
1563         ir_node *irn = local != NULL ? local : n;
1564         node_t *node = get_irn_node(irn);
1565
1566         ir_fprintf(F, "info2 : \"partition %u type %+F\"\n", node->part->nr, node->type);
1567         return 1;
1568 }
1569
1570 void combo(ir_graph *irg) {
1571         environment_t env;
1572         ir_node       *initial_X;
1573         node_t        *start;
1574         ir_graph      *rem = current_ir_graph;
1575
1576         current_ir_graph = irg;
1577
1578         /* register a debug mask */
1579         FIRM_DBG_REGISTER(dbg, "firm.opt.combo");
1580         //firm_dbg_set_mask(dbg, SET_LEVEL_1);
1581
1582         DB((dbg, LEVEL_1, "Doing COMBO for %+F\n", irg));
1583
1584         obstack_init(&env.obst);
1585         env.worklist       = NULL;
1586         env.cprop          = NULL;
1587         env.touched        = NULL;
1588         env.initial        = NULL;
1589 #ifdef DEBUG_libfirm
1590         env.dbg_list       = NULL;
1591 #endif
1592         env.opcode2id_map  = new_set(cmp_opcode, iro_Last * 4);
1593         env.type2id_map    = pmap_create();
1594         env.end_idx        = get_opt_global_cse() ? 0 : -1;
1595         env.lambda_input   = 0;
1596
1597         assure_irg_outs(irg);
1598
1599         /* we have our own value_of function */
1600         set_value_of_func(get_node_tarval);
1601
1602         set_compute_functions();
1603         DEBUG_ONLY(part_nr = 0);
1604
1605         /* create the initial partition and place it on the work list */
1606         env.initial = new_partition(&env);
1607         add_to_worklist(env.initial, &env);
1608         irg_walk_graph(irg, init_block_phis, create_initial_partitions, &env);
1609
1610         /* Place the START Node's partition on cprop.
1611            Place the START Node on its local worklist. */
1612         initial_X = get_irg_initial_exec(irg);
1613         start     = get_irn_node(initial_X);
1614         add_node_to_cprop(start, &env);
1615
1616         do {
1617                 propagate(&env);
1618                 if (env.worklist != NULL)
1619                         cause_splits(&env);
1620         } while (env.cprop != NULL || env.worklist != NULL);
1621
1622         dump_all_partitions(&env);
1623
1624         set_dump_node_vcgattr_hook(dump_partition_hook);
1625         dump_ir_block_graph(irg, "-partition");
1626         set_dump_node_vcgattr_hook(NULL);
1627
1628
1629         /* apply the result */
1630         irg_walk_graph(irg, NULL, apply_result, &env);
1631
1632         pmap_destroy(env.type2id_map);
1633         del_set(env.opcode2id_map);
1634         obstack_free(&env.obst, NULL);
1635
1636         /* restore value_of() default behavior */
1637         set_value_of_func(NULL);
1638         current_ir_graph = rem;
1639 }  /* combo */