fix trailing whitespaces and tabulators in the middle of a line
[libfirm] / ir / opt / ldstopt.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   Load/Store optimizations.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <string.h>
29
30 #include "iroptimize.h"
31 #include "irnode_t.h"
32 #include "irgraph_t.h"
33 #include "irmode_t.h"
34 #include "iropt_t.h"
35 #include "ircons_t.h"
36 #include "irgmod.h"
37 #include "irgwalk.h"
38 #include "tv_t.h"
39 #include "dbginfo_t.h"
40 #include "iropt_dbg.h"
41 #include "irflag_t.h"
42 #include "array_t.h"
43 #include "irhooks.h"
44 #include "iredges.h"
45 #include "irpass.h"
46 #include "opt_polymorphy.h"
47 #include "irmemory.h"
48 #include "irphase_t.h"
49 #include "irgopt.h"
50 #include "set.h"
51 #include "debug.h"
52
53 /** The debug handle. */
54 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
55
56 #ifdef DO_CACHEOPT
57 #include "cacheopt/cachesim.h"
58 #endif
59
60 #undef IMAX
61 #define IMAX(a,b)   ((a) > (b) ? (a) : (b))
62
63 #define MAX_PROJ    IMAX(IMAX(pn_Load_max, pn_Store_max), pn_Call_max)
64
65 enum changes_t {
66         DF_CHANGED = 1,       /**< data flow changed */
67         CF_CHANGED = 2,       /**< control flow changed */
68 };
69
70 /**
71  * walker environment
72  */
73 typedef struct walk_env_t {
74         struct obstack obst;          /**< list of all stores */
75         unsigned changes;             /**< a bitmask of graph changes */
76 } walk_env_t;
77
78 /** A Load/Store info. */
79 typedef struct ldst_info_t {
80         ir_node  *projs[MAX_PROJ];    /**< list of Proj's of this node */
81         ir_node  *exc_block;          /**< the exception block if available */
82         int      exc_idx;             /**< predecessor index in the exception block */
83         unsigned visited;             /**< visited counter for breaking loops */
84 } ldst_info_t;
85
86 /**
87  * flags for control flow.
88  */
89 enum block_flags_t {
90         BLOCK_HAS_COND = 1,      /**< Block has conditional control flow */
91         BLOCK_HAS_EXC  = 2       /**< Block has exceptional control flow */
92 };
93
94 /**
95  * a Block info.
96  */
97 typedef struct block_info_t {
98         unsigned flags;               /**< flags for the block */
99 } block_info_t;
100
101 /** the master visited flag for loop detection. */
102 static unsigned master_visited = 0;
103
104 #define INC_MASTER()       ++master_visited
105 #define MARK_NODE(info)    (info)->visited = master_visited
106 #define NODE_VISITED(info) (info)->visited >= master_visited
107
108 /**
109  * get the Load/Store info of a node
110  */
111 static ldst_info_t *get_ldst_info(ir_node *node, struct obstack *obst)
112 {
113         ldst_info_t *info = get_irn_link(node);
114
115         if (! info) {
116                 info = OALLOCZ(obst, ldst_info_t);
117                 set_irn_link(node, info);
118         }
119         return info;
120 }  /* get_ldst_info */
121
122 /**
123  * get the Block info of a node
124  */
125 static block_info_t *get_block_info(ir_node *node, struct obstack *obst)
126 {
127         block_info_t *info = get_irn_link(node);
128
129         if (! info) {
130                 info = OALLOCZ(obst, block_info_t);
131                 set_irn_link(node, info);
132         }
133         return info;
134 }  /* get_block_info */
135
136 /**
137  * update the projection info for a Load/Store
138  */
139 static unsigned update_projs(ldst_info_t *info, ir_node *proj)
140 {
141         long nr = get_Proj_proj(proj);
142
143         assert(0 <= nr && nr <= MAX_PROJ && "Wrong proj from LoadStore");
144
145         if (info->projs[nr]) {
146                 /* there is already one, do CSE */
147                 exchange(proj, info->projs[nr]);
148                 return DF_CHANGED;
149         }
150         else {
151                 info->projs[nr] = proj;
152                 return 0;
153         }
154 }  /* update_projs */
155
156 /**
157  * update the exception block info for a Load/Store node.
158  *
159  * @param info   the load/store info struct
160  * @param block  the exception handler block for this load/store
161  * @param pos    the control flow input of the block
162  */
163 static unsigned update_exc(ldst_info_t *info, ir_node *block, int pos)
164 {
165         assert(info->exc_block == NULL && "more than one exception block found");
166
167         info->exc_block = block;
168         info->exc_idx   = pos;
169         return 0;
170 }  /* update_exc */
171
172 /** Return the number of uses of an address node */
173 #define get_irn_n_uses(adr)     get_irn_n_edges(adr)
174
175 /**
176  * walker, collects all Load/Store/Proj nodes
177  *
178  * walks from Start -> End
179  */
180 static void collect_nodes(ir_node *node, void *env)
181 {
182         ir_opcode   opcode = get_irn_opcode(node);
183         ir_node     *pred, *blk, *pred_blk;
184         ldst_info_t *ldst_info;
185         walk_env_t  *wenv = env;
186
187         if (opcode == iro_Proj) {
188                 pred   = get_Proj_pred(node);
189                 opcode = get_irn_opcode(pred);
190
191                 if (opcode == iro_Load || opcode == iro_Store || opcode == iro_Call) {
192                         ldst_info = get_ldst_info(pred, &wenv->obst);
193
194                         wenv->changes |= update_projs(ldst_info, node);
195
196                         /*
197                          * Place the Proj's to the same block as the
198                          * predecessor Load. This is always ok and prevents
199                          * "non-SSA" form after optimizations if the Proj
200                          * is in a wrong block.
201                          */
202                         blk      = get_nodes_block(node);
203                         pred_blk = get_nodes_block(pred);
204                         if (blk != pred_blk) {
205                                 wenv->changes |= DF_CHANGED;
206                                 set_nodes_block(node, pred_blk);
207                         }
208                 }
209         } else if (opcode == iro_Block) {
210                 int i;
211
212                 for (i = get_Block_n_cfgpreds(node) - 1; i >= 0; --i) {
213                         ir_node      *pred_block, *proj;
214                         block_info_t *bl_info;
215                         int          is_exc = 0;
216
217                         pred = proj = get_Block_cfgpred(node, i);
218
219                         if (is_Proj(proj)) {
220                                 pred   = get_Proj_pred(proj);
221                                 is_exc = get_Proj_proj(proj) == pn_Generic_X_except;
222                         }
223
224                         /* ignore Bad predecessors, they will be removed later */
225                         if (is_Bad(pred))
226                                 continue;
227
228                         pred_block = get_nodes_block(pred);
229                         bl_info    = get_block_info(pred_block, &wenv->obst);
230
231                         if (is_fragile_op(pred) && is_exc)
232                                 bl_info->flags |= BLOCK_HAS_EXC;
233                         else if (is_irn_forking(pred))
234                                 bl_info->flags |= BLOCK_HAS_COND;
235
236                         opcode = get_irn_opcode(pred);
237                         if (is_exc && (opcode == iro_Load || opcode == iro_Store || opcode == iro_Call)) {
238                                 ldst_info = get_ldst_info(pred, &wenv->obst);
239
240                                 wenv->changes |= update_exc(ldst_info, node, i);
241                         }
242                 }
243         }
244 }  /* collect_nodes */
245
246 /**
247  * Returns an entity if the address ptr points to a constant one.
248  *
249  * @param ptr  the address
250  *
251  * @return an entity or NULL
252  */
253 static ir_entity *find_constant_entity(ir_node *ptr)
254 {
255         for (;;) {
256                 if (is_SymConst(ptr) && get_SymConst_kind(ptr) == symconst_addr_ent) {
257                         return get_SymConst_entity(ptr);
258                 } else if (is_Sel(ptr)) {
259                         ir_entity *ent = get_Sel_entity(ptr);
260                         ir_type   *tp  = get_entity_owner(ent);
261
262                         /* Do not fiddle with polymorphism. */
263                         if (is_Class_type(get_entity_owner(ent)) &&
264                                 ((get_entity_n_overwrites(ent)    != 0) ||
265                                 (get_entity_n_overwrittenby(ent) != 0)   ) )
266                                 return NULL;
267
268                         if (is_Array_type(tp)) {
269                                 /* check bounds */
270                                 int i, n;
271
272                                 for (i = 0, n = get_Sel_n_indexs(ptr); i < n; ++i) {
273                                         ir_node *bound;
274                                         tarval *tlower, *tupper;
275                                         ir_node *index = get_Sel_index(ptr, i);
276                                         tarval *tv     = computed_value(index);
277
278                                         /* check if the index is constant */
279                                         if (tv == tarval_bad)
280                                                 return NULL;
281
282                                         bound  = get_array_lower_bound(tp, i);
283                                         tlower = computed_value(bound);
284                                         bound  = get_array_upper_bound(tp, i);
285                                         tupper = computed_value(bound);
286
287                                         if (tlower == tarval_bad || tupper == tarval_bad)
288                                                 return NULL;
289
290                                         if (tarval_cmp(tv, tlower) & pn_Cmp_Lt)
291                                                 return NULL;
292                                         if (tarval_cmp(tupper, tv) & pn_Cmp_Lt)
293                                                 return NULL;
294
295                                         /* ok, bounds check finished */
296                                 }
297                         }
298
299                         if (get_entity_linkage(ent) & IR_LINKAGE_CONSTANT)
300                                 return ent;
301
302                         /* try next */
303                         ptr = get_Sel_ptr(ptr);
304                 } else if (is_Add(ptr)) {
305                         ir_node *l = get_Add_left(ptr);
306                         ir_node *r = get_Add_right(ptr);
307
308                         if (get_irn_mode(l) == get_irn_mode(ptr) && is_Const(r))
309                                 ptr = l;
310                         else if (get_irn_mode(r) == get_irn_mode(ptr) && is_Const(l))
311                                 ptr = r;
312                         else
313                                 return NULL;
314
315                         /* for now, we support only one addition, reassoc should fold all others */
316                         if (! is_SymConst(ptr) && !is_Sel(ptr))
317                                 return NULL;
318                 } else if (is_Sub(ptr)) {
319                         ir_node *l = get_Sub_left(ptr);
320                         ir_node *r = get_Sub_right(ptr);
321
322                         if (get_irn_mode(l) == get_irn_mode(ptr) && is_Const(r))
323                                 ptr = l;
324                         else
325                                 return NULL;
326                         /* for now, we support only one substraction, reassoc should fold all others */
327                         if (! is_SymConst(ptr) && !is_Sel(ptr))
328                                 return NULL;
329                 } else
330                         return NULL;
331         }
332 }  /* find_constant_entity */
333
334 /**
335  * Return the Selection index of a Sel node from dimension n
336  */
337 static long get_Sel_array_index_long(ir_node *n, int dim)
338 {
339         ir_node *index = get_Sel_index(n, dim);
340         assert(is_Const(index));
341         return get_tarval_long(get_Const_tarval(index));
342 }  /* get_Sel_array_index_long */
343
344 /**
345  * Returns the accessed component graph path for an
346  * node computing an address.
347  *
348  * @param ptr    the node computing the address
349  * @param depth  current depth in steps upward from the root
350  *               of the address
351  */
352 static compound_graph_path *rec_get_accessed_path(ir_node *ptr, int depth)
353 {
354         compound_graph_path *res = NULL;
355         ir_entity           *root, *field, *ent;
356         int                 path_len, pos, idx;
357         tarval              *tv;
358         ir_type             *tp;
359
360         if (is_SymConst(ptr)) {
361                 /* a SymConst. If the depth is 0, this is an access to a global
362                  * entity and we don't need a component path, else we know
363                  * at least its length.
364                  */
365                 assert(get_SymConst_kind(ptr) == symconst_addr_ent);
366                 root = get_SymConst_entity(ptr);
367                 res = (depth == 0) ? NULL : new_compound_graph_path(get_entity_type(root), depth);
368         } else if (is_Sel(ptr)) {
369                 /* it's a Sel, go up until we find the root */
370                 res = rec_get_accessed_path(get_Sel_ptr(ptr), depth+1);
371                 if (res == NULL)
372                         return NULL;
373
374                 /* fill up the step in the path at the current position */
375                 field    = get_Sel_entity(ptr);
376                 path_len = get_compound_graph_path_length(res);
377                 pos      = path_len - depth - 1;
378                 set_compound_graph_path_node(res, pos, field);
379
380                 if (is_Array_type(get_entity_owner(field))) {
381                         assert(get_Sel_n_indexs(ptr) == 1 && "multi dim arrays not implemented");
382                         set_compound_graph_path_array_index(res, pos, get_Sel_array_index_long(ptr, 0));
383                 }
384         } else if (is_Add(ptr)) {
385                 ir_node *l    = get_Add_left(ptr);
386                 ir_node *r    = get_Add_right(ptr);
387                 ir_mode *mode = get_irn_mode(ptr);
388                 tarval  *tmp;
389
390                 if (is_Const(r) && get_irn_mode(l) == mode) {
391                         ptr = l;
392                         tv  = get_Const_tarval(r);
393                 } else {
394                         ptr = r;
395                         tv  = get_Const_tarval(l);
396                 }
397 ptr_arith:
398                 mode = get_tarval_mode(tv);
399                 tmp  = tv;
400
401                 /* ptr must be a Sel or a SymConst, this was checked in find_constant_entity() */
402                 if (is_Sel(ptr)) {
403                         field = get_Sel_entity(ptr);
404                 } else {
405                         field = get_SymConst_entity(ptr);
406                 }
407                 idx = 0;
408                 for (ent = field;;) {
409                         unsigned size;
410                         tarval   *sz, *tv_index, *tlower, *tupper;
411                         ir_node  *bound;
412
413                         tp = get_entity_type(ent);
414                         if (! is_Array_type(tp))
415                                 break;
416                         ent = get_array_element_entity(tp);
417                         size = get_type_size_bytes(get_entity_type(ent));
418                         sz   = new_tarval_from_long(size, mode);
419
420                         tv_index = tarval_div(tmp, sz);
421                         tmp      = tarval_mod(tmp, sz);
422
423                         if (tv_index == tarval_bad || tmp == tarval_bad)
424                                 return NULL;
425
426                         assert(get_array_n_dimensions(tp) == 1 && "multiarrays not implemented");
427                         bound  = get_array_lower_bound(tp, 0);
428                         tlower = computed_value(bound);
429                         bound  = get_array_upper_bound(tp, 0);
430                         tupper = computed_value(bound);
431
432                         if (tlower == tarval_bad || tupper == tarval_bad)
433                                 return NULL;
434
435                         if (tarval_cmp(tv_index, tlower) & pn_Cmp_Lt)
436                                 return NULL;
437                         if (tarval_cmp(tupper, tv_index) & pn_Cmp_Lt)
438                                 return NULL;
439
440                         /* ok, bounds check finished */
441                         ++idx;
442                 }
443                 if (! tarval_is_null(tmp)) {
444                         /* access to some struct/union member */
445                         return NULL;
446                 }
447
448                 /* should be at least ONE array */
449                 if (idx == 0)
450                         return NULL;
451
452                 res = rec_get_accessed_path(ptr, depth + idx);
453                 if (res == NULL)
454                         return NULL;
455
456                 path_len = get_compound_graph_path_length(res);
457                 pos      = path_len - depth - idx;
458
459                 for (ent = field;;) {
460                         unsigned size;
461                         tarval   *sz, *tv_index;
462                         long     index;
463
464                         tp = get_entity_type(ent);
465                         if (! is_Array_type(tp))
466                                 break;
467                         ent = get_array_element_entity(tp);
468                         set_compound_graph_path_node(res, pos, ent);
469
470                         size = get_type_size_bytes(get_entity_type(ent));
471                         sz   = new_tarval_from_long(size, mode);
472
473                         tv_index = tarval_div(tv, sz);
474                         tv       = tarval_mod(tv, sz);
475
476                         /* worked above, should work again */
477                         assert(tv_index != tarval_bad && tv != tarval_bad);
478
479                         /* bounds already checked above */
480                         index = get_tarval_long(tv_index);
481                         set_compound_graph_path_array_index(res, pos, index);
482                         ++pos;
483                 }
484         } else if (is_Sub(ptr)) {
485                 ir_node *l = get_Sub_left(ptr);
486                 ir_node *r = get_Sub_right(ptr);
487
488                 ptr = l;
489                 tv  = get_Const_tarval(r);
490                 tv  = tarval_neg(tv);
491                 goto ptr_arith;
492         }
493         return res;
494 }  /* rec_get_accessed_path */
495
496 /**
497  * Returns an access path or NULL.  The access path is only
498  * valid, if the graph is in phase_high and _no_ address computation is used.
499  */
500 static compound_graph_path *get_accessed_path(ir_node *ptr)
501 {
502         compound_graph_path *gr = rec_get_accessed_path(ptr, 0);
503         return gr;
504 }  /* get_accessed_path */
505
506 typedef struct path_entry {
507         ir_entity         *ent;
508         struct path_entry *next;
509         long              index;
510 } path_entry;
511
512 static ir_node *rec_find_compound_ent_value(ir_node *ptr, path_entry *next)
513 {
514         path_entry       entry, *p;
515         ir_entity        *ent, *field;
516         ir_initializer_t *initializer;
517         tarval           *tv;
518         ir_type          *tp;
519         unsigned         n;
520
521         entry.next = next;
522         if (is_SymConst(ptr)) {
523                 /* found the root */
524                 ent         = get_SymConst_entity(ptr);
525                 initializer = get_entity_initializer(ent);
526                 for (p = next; p != NULL;) {
527                         if (initializer->kind != IR_INITIALIZER_COMPOUND)
528                                 return NULL;
529                         n  = get_initializer_compound_n_entries(initializer);
530                         tp = get_entity_type(ent);
531
532                         if (is_Array_type(tp)) {
533                                 ent = get_array_element_entity(tp);
534                                 if (ent != p->ent) {
535                                         /* a missing [0] */
536                                         if (0 >= n)
537                                                 return NULL;
538                                         initializer = get_initializer_compound_value(initializer, 0);
539                                         continue;
540                                 }
541                         }
542                         if (p->index >= (int) n)
543                                 return NULL;
544                         initializer = get_initializer_compound_value(initializer, p->index);
545
546                         ent = p->ent;
547                         p   = p->next;
548                 }
549                 tp = get_entity_type(ent);
550                 while (is_Array_type(tp)) {
551                         ent = get_array_element_entity(tp);
552                         tp = get_entity_type(ent);
553                         /* a missing [0] */
554                         n  = get_initializer_compound_n_entries(initializer);
555                         if (0 >= n)
556                                 return NULL;
557                         initializer = get_initializer_compound_value(initializer, 0);
558                 }
559
560                 switch (initializer->kind) {
561                 case IR_INITIALIZER_CONST:
562                         return get_initializer_const_value(initializer);
563                 case IR_INITIALIZER_TARVAL:
564                 case IR_INITIALIZER_NULL:
565                 default:
566                         return NULL;
567                 }
568         } else if (is_Sel(ptr)) {
569                 entry.ent = field = get_Sel_entity(ptr);
570                 tp = get_entity_owner(field);
571                 if (is_Array_type(tp)) {
572                         assert(get_Sel_n_indexs(ptr) == 1 && "multi dim arrays not implemented");
573                         entry.index = get_Sel_array_index_long(ptr, 0) - get_array_lower_bound_int(tp, 0);
574                 } else {
575                         int i, n_members = get_compound_n_members(tp);
576                         for (i = 0; i < n_members; ++i) {
577                                 if (get_compound_member(tp, i) == field)
578                                         break;
579                         }
580                         if (i >= n_members) {
581                                 /* not found: should NOT happen */
582                                 return NULL;
583                         }
584                         entry.index = i;
585                 }
586                 return rec_find_compound_ent_value(get_Sel_ptr(ptr), &entry);
587         }  else if (is_Add(ptr)) {
588                 ir_node  *l = get_Add_left(ptr);
589                 ir_node  *r = get_Add_right(ptr);
590                 ir_mode  *mode;
591                 unsigned pos;
592
593                 if (is_Const(r)) {
594                         ptr = l;
595                         tv  = get_Const_tarval(r);
596                 } else {
597                         ptr = r;
598                         tv  = get_Const_tarval(l);
599                 }
600 ptr_arith:
601                 mode = get_tarval_mode(tv);
602
603                 /* ptr must be a Sel or a SymConst, this was checked in find_constant_entity() */
604                 if (is_Sel(ptr)) {
605                         field = get_Sel_entity(ptr);
606                 } else {
607                         field = get_SymConst_entity(ptr);
608                 }
609
610                 /* count needed entries */
611                 pos = 0;
612                 for (ent = field;;) {
613                         tp = get_entity_type(ent);
614                         if (! is_Array_type(tp))
615                                 break;
616                         ent = get_array_element_entity(tp);
617                         ++pos;
618                 }
619                 /* should be at least ONE entry */
620                 if (pos == 0)
621                         return NULL;
622
623                 /* allocate the right number of entries */
624                 NEW_ARR_A(path_entry, p, pos);
625
626                 /* fill them up */
627                 pos = 0;
628                 for (ent = field;;) {
629                         unsigned size;
630                         tarval   *sz, *tv_index, *tlower, *tupper;
631                         long     index;
632                         ir_node  *bound;
633
634                         tp = get_entity_type(ent);
635                         if (! is_Array_type(tp))
636                                 break;
637                         ent = get_array_element_entity(tp);
638                         p[pos].ent  = ent;
639                         p[pos].next = &p[pos + 1];
640
641                         size = get_type_size_bytes(get_entity_type(ent));
642                         sz   = new_tarval_from_long(size, mode);
643
644                         tv_index = tarval_div(tv, sz);
645                         tv       = tarval_mod(tv, sz);
646
647                         if (tv_index == tarval_bad || tv == tarval_bad)
648                                 return NULL;
649
650                         assert(get_array_n_dimensions(tp) == 1 && "multiarrays not implemented");
651                         bound  = get_array_lower_bound(tp, 0);
652                         tlower = computed_value(bound);
653                         bound  = get_array_upper_bound(tp, 0);
654                         tupper = computed_value(bound);
655
656                         if (tlower == tarval_bad || tupper == tarval_bad)
657                                 return NULL;
658
659                         if (tarval_cmp(tv_index, tlower) & pn_Cmp_Lt)
660                                 return NULL;
661                         if (tarval_cmp(tupper, tv_index) & pn_Cmp_Lt)
662                                 return NULL;
663
664                         /* ok, bounds check finished */
665                         index = get_tarval_long(tv_index);
666                         p[pos].index = index;
667                         ++pos;
668                 }
669                 if (! tarval_is_null(tv)) {
670                         /* hmm, wrong access */
671                         return NULL;
672                 }
673                 p[pos - 1].next = next;
674                 return rec_find_compound_ent_value(ptr, p);
675         } else if (is_Sub(ptr)) {
676                 ir_node *l = get_Sub_left(ptr);
677                 ir_node *r = get_Sub_right(ptr);
678
679                 ptr = l;
680                 tv  = get_Const_tarval(r);
681                 tv  = tarval_neg(tv);
682                 goto ptr_arith;
683         }
684         return NULL;
685 }
686
687 static ir_node *find_compound_ent_value(ir_node *ptr)
688 {
689         return rec_find_compound_ent_value(ptr, NULL);
690 }
691
692 /* forward */
693 static void reduce_adr_usage(ir_node *ptr);
694
695 /**
696  * Update a Load that may have lost its users.
697  */
698 static void handle_load_update(ir_node *load)
699 {
700         ldst_info_t *info = get_irn_link(load);
701
702         /* do NOT touch volatile loads for now */
703         if (get_Load_volatility(load) == volatility_is_volatile)
704                 return;
705
706         if (! info->projs[pn_Load_res] && ! info->projs[pn_Load_X_except]) {
707                 ir_node *ptr = get_Load_ptr(load);
708                 ir_node *mem = get_Load_mem(load);
709
710                 /* a Load whose value is neither used nor exception checked, remove it */
711                 exchange(info->projs[pn_Load_M], mem);
712                 if (info->projs[pn_Load_X_regular])
713                         exchange(info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
714                 kill_node(load);
715                 reduce_adr_usage(ptr);
716         }
717 }  /* handle_load_update */
718
719 /**
720  * A use of an address node has vanished. Check if this was a Proj
721  * node and update the counters.
722  */
723 static void reduce_adr_usage(ir_node *ptr)
724 {
725         ir_node *pred;
726         if (!is_Proj(ptr))
727                 return;
728         if (get_irn_n_edges(ptr) > 0)
729                 return;
730
731         /* this Proj is dead now */
732         pred = get_Proj_pred(ptr);
733         if (is_Load(pred)) {
734                 ldst_info_t *info = get_irn_link(pred);
735                 info->projs[get_Proj_proj(ptr)] = NULL;
736
737                 /* this node lost its result proj, handle that */
738                 handle_load_update(pred);
739         }
740 }  /* reduce_adr_usage */
741
742 /**
743  * Check, if an already existing value of mode old_mode can be converted
744  * into the needed one new_mode without loss.
745  */
746 static int can_use_stored_value(ir_mode *old_mode, ir_mode *new_mode)
747 {
748         if (old_mode == new_mode)
749                 return 1;
750
751         /* if both modes are two-complement ones, we can always convert the
752            Stored value into the needed one. */
753         if (get_mode_size_bits(old_mode) >= get_mode_size_bits(new_mode) &&
754                   get_mode_arithmetic(old_mode) == irma_twos_complement &&
755                   get_mode_arithmetic(new_mode) == irma_twos_complement)
756                 return 1;
757         return 0;
758 }  /* can_use_stored_value */
759
760 /**
761  * Check whether a Call is at least pure, ie. does only read memory.
762  */
763 static unsigned is_Call_pure(ir_node *call)
764 {
765         ir_type *call_tp = get_Call_type(call);
766         unsigned prop = get_method_additional_properties(call_tp);
767
768         /* check first the call type */
769         if ((prop & (mtp_property_const|mtp_property_pure)) == 0) {
770                 /* try the called entity */
771                 ir_node *ptr = get_Call_ptr(call);
772
773                 if (is_Global(ptr)) {
774                         ir_entity *ent = get_Global_entity(ptr);
775
776                         prop = get_entity_additional_properties(ent);
777                 }
778         }
779         return (prop & (mtp_property_const|mtp_property_pure)) != 0;
780 }  /* is_Call_pure */
781
782 static ir_node *get_base_and_offset(ir_node *ptr, long *pOffset)
783 {
784         ir_mode *mode  = get_irn_mode(ptr);
785         long    offset = 0;
786
787         /* TODO: long might not be enough, we should probably use some tarval thingy... */
788         for (;;) {
789                 if (is_Add(ptr)) {
790                         ir_node *l = get_Add_left(ptr);
791                         ir_node *r = get_Add_right(ptr);
792
793                         if (get_irn_mode(l) != mode || !is_Const(r))
794                                 break;
795
796                         offset += get_tarval_long(get_Const_tarval(r));
797                         ptr     = l;
798                 } else if (is_Sub(ptr)) {
799                         ir_node *l = get_Sub_left(ptr);
800                         ir_node *r = get_Sub_right(ptr);
801
802                         if (get_irn_mode(l) != mode || !is_Const(r))
803                                 break;
804
805                         offset -= get_tarval_long(get_Const_tarval(r));
806                         ptr     = l;
807                 } else if (is_Sel(ptr)) {
808                         ir_entity *ent = get_Sel_entity(ptr);
809                         ir_type   *tp  = get_entity_owner(ent);
810
811                         if (is_Array_type(tp)) {
812                                 int     size;
813                                 ir_node *index;
814
815                                 /* only one dimensional arrays yet */
816                                 if (get_Sel_n_indexs(ptr) != 1)
817                                         break;
818                                 index = get_Sel_index(ptr, 0);
819                                 if (! is_Const(index))
820                                         break;
821
822                                 tp = get_entity_type(ent);
823                                 if (get_type_state(tp) != layout_fixed)
824                                         break;
825
826                                 size    = get_type_size_bytes(tp);
827                                 offset += size * get_tarval_long(get_Const_tarval(index));
828                         } else {
829                                 if (get_type_state(tp) != layout_fixed)
830                                         break;
831                                 offset += get_entity_offset(ent);
832                         }
833                         ptr = get_Sel_ptr(ptr);
834                 } else
835                         break;
836         }
837
838         *pOffset = offset;
839         return ptr;
840 }
841
842 static int try_load_after_store(ir_node *load,
843                 ir_node *load_base_ptr, long load_offset, ir_node *store)
844 {
845         ldst_info_t *info;
846         ir_node *store_ptr      = get_Store_ptr(store);
847         long     store_offset;
848         ir_node *store_base_ptr = get_base_and_offset(store_ptr, &store_offset);
849         ir_node *store_value;
850         ir_mode *store_mode;
851         ir_node *load_ptr;
852         ir_mode *load_mode;
853         long     load_mode_len;
854         long     store_mode_len;
855         long     delta;
856         int      res;
857
858         if (load_base_ptr != store_base_ptr)
859                 return 0;
860
861         load_mode      = get_Load_mode(load);
862         load_mode_len  = get_mode_size_bytes(load_mode);
863         store_mode     = get_irn_mode(get_Store_value(store));
864         store_mode_len = get_mode_size_bytes(store_mode);
865         delta          = load_offset - store_offset;
866         store_value    = get_Store_value(store);
867
868         if (delta != 0 || store_mode != load_mode) {
869                 if (delta < 0 || delta + load_mode_len > store_mode_len)
870                         return 0;
871
872                 if (get_mode_arithmetic(store_mode) != irma_twos_complement ||
873                         get_mode_arithmetic(load_mode)  != irma_twos_complement)
874                         return 0;
875
876
877                 /* produce a shift to adjust offset delta */
878                 if (delta > 0) {
879                         ir_node *cnst;
880
881                         /* FIXME: only true for little endian */
882                         cnst        = new_Const_long(mode_Iu, delta * 8);
883                         store_value = new_r_Shr(get_nodes_block(load),
884                                                                         store_value, cnst, store_mode);
885                 }
886
887                 /* add an convert if needed */
888                 if (store_mode != load_mode) {
889                         store_value = new_r_Conv(get_nodes_block(load), store_value, load_mode);
890                 }
891         }
892
893         DBG_OPT_RAW(load, store_value);
894
895         info = get_irn_link(load);
896         if (info->projs[pn_Load_M])
897                 exchange(info->projs[pn_Load_M], get_Load_mem(load));
898
899         res = 0;
900         /* no exception */
901         if (info->projs[pn_Load_X_except]) {
902                 exchange( info->projs[pn_Load_X_except], new_Bad());
903                 res |= CF_CHANGED;
904         }
905         if (info->projs[pn_Load_X_regular]) {
906                 exchange( info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
907                 res |= CF_CHANGED;
908         }
909
910         if (info->projs[pn_Load_res])
911                 exchange(info->projs[pn_Load_res], store_value);
912
913         load_ptr = get_Load_ptr(load);
914         kill_node(load);
915         reduce_adr_usage(load_ptr);
916         return res | DF_CHANGED;
917 }
918
919 /**
920  * Follow the memory chain as long as there are only Loads,
921  * alias free Stores, and constant Calls and try to replace the
922  * current Load by a previous ones.
923  * Note that in unreachable loops it might happen that we reach
924  * load again, as well as we can fall into a cycle.
925  * We break such cycles using a special visited flag.
926  *
927  * INC_MASTER() must be called before dive into
928  */
929 static unsigned follow_Mem_chain(ir_node *load, ir_node *curr)
930 {
931         unsigned    res = 0;
932         ldst_info_t *info = get_irn_link(load);
933         ir_node     *pred;
934         ir_node     *ptr       = get_Load_ptr(load);
935         ir_node     *mem       = get_Load_mem(load);
936         ir_mode     *load_mode = get_Load_mode(load);
937
938         for (pred = curr; load != pred; ) {
939                 ldst_info_t *pred_info = get_irn_link(pred);
940
941                 /*
942                  * a Load immediately after a Store -- a read after write.
943                  * We may remove the Load, if both Load & Store does not have an
944                  * exception handler OR they are in the same Block. In the latter
945                  * case the Load cannot throw an exception when the previous Store was
946                  * quiet.
947                  *
948                  * Why we need to check for Store Exception? If the Store cannot
949                  * be executed (ROM) the exception handler might simply jump into
950                  * the load Block :-(
951                  * We could make it a little bit better if we would know that the
952                  * exception handler of the Store jumps directly to the end...
953                  */
954                 if (is_Store(pred) && ((pred_info->projs[pn_Store_X_except] == NULL
955                                 && info->projs[pn_Load_X_except] == NULL)
956                                 || get_nodes_block(load) == get_nodes_block(pred)))
957                 {
958                         long    load_offset;
959                         ir_node *base_ptr = get_base_and_offset(ptr, &load_offset);
960                         int     changes   = try_load_after_store(load, base_ptr, load_offset, pred);
961
962                         if (changes != 0)
963                                 return res | changes;
964                 } else if (is_Load(pred) && get_Load_ptr(pred) == ptr &&
965                            can_use_stored_value(get_Load_mode(pred), load_mode)) {
966                         /*
967                          * a Load after a Load -- a read after read.
968                          * We may remove the second Load, if it does not have an exception
969                          * handler OR they are in the same Block. In the later case
970                          * the Load cannot throw an exception when the previous Load was
971                          * quiet.
972                          *
973                          * Here, there is no need to check if the previous Load has an
974                          * exception hander because they would have exact the same
975                          * exception...
976                          */
977                         if (info->projs[pn_Load_X_except] == NULL
978                                         || get_nodes_block(load) == get_nodes_block(pred)) {
979                                 ir_node *value;
980
981                                 DBG_OPT_RAR(load, pred);
982
983                                 /* the result is used */
984                                 if (info->projs[pn_Load_res]) {
985                                         if (pred_info->projs[pn_Load_res] == NULL) {
986                                                 /* create a new Proj again */
987                                                 pred_info->projs[pn_Load_res] = new_r_Proj(pred, get_Load_mode(pred), pn_Load_res);
988                                         }
989                                         value = pred_info->projs[pn_Load_res];
990
991                                         /* add an convert if needed */
992                                         if (get_Load_mode(pred) != load_mode) {
993                                                 value = new_r_Conv(get_nodes_block(load), value, load_mode);
994                                         }
995
996                                         exchange(info->projs[pn_Load_res], value);
997                                 }
998
999                                 if (info->projs[pn_Load_M])
1000                                         exchange(info->projs[pn_Load_M], mem);
1001
1002                                 /* no exception */
1003                                 if (info->projs[pn_Load_X_except]) {
1004                                         exchange(info->projs[pn_Load_X_except], new_Bad());
1005                                         res |= CF_CHANGED;
1006                                 }
1007                                 if (info->projs[pn_Load_X_regular]) {
1008                                         exchange( info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
1009                                         res |= CF_CHANGED;
1010                                 }
1011
1012                                 kill_node(load);
1013                                 reduce_adr_usage(ptr);
1014                                 return res |= DF_CHANGED;
1015                         }
1016                 }
1017
1018                 if (is_Store(pred)) {
1019                         /* check if we can pass through this store */
1020                         ir_alias_relation rel = get_alias_relation(
1021                                 current_ir_graph,
1022                                 get_Store_ptr(pred),
1023                                 get_irn_mode(get_Store_value(pred)),
1024                                 ptr, load_mode);
1025                         /* if the might be an alias, we cannot pass this Store */
1026                         if (rel != ir_no_alias)
1027                                 break;
1028                         pred = skip_Proj(get_Store_mem(pred));
1029                 } else if (is_Load(pred)) {
1030                         pred = skip_Proj(get_Load_mem(pred));
1031                 } else if (is_Call(pred)) {
1032                         if (is_Call_pure(pred)) {
1033                                 /* The called graph is at least pure, so there are no Store's
1034                                    in it. We can handle it like a Load and skip it. */
1035                                 pred = skip_Proj(get_Call_mem(pred));
1036                         } else {
1037                                 /* there might be Store's in the graph, stop here */
1038                                 break;
1039                         }
1040                 } else {
1041                         /* follow only Load chains */
1042                         break;
1043                 }
1044
1045                 /* check for cycles */
1046                 if (NODE_VISITED(pred_info))
1047                         break;
1048                 MARK_NODE(pred_info);
1049         }
1050
1051         if (is_Sync(pred)) {
1052                 int i;
1053
1054                 /* handle all Sync predecessors */
1055                 for (i = get_Sync_n_preds(pred) - 1; i >= 0; --i) {
1056                         res |= follow_Mem_chain(load, skip_Proj(get_Sync_pred(pred, i)));
1057                         if (res)
1058                                 return res;
1059                 }
1060         }
1061
1062         return res;
1063 }  /* follow_Mem_chain */
1064
1065 /*
1066  * Check if we can replace the load by a given const from
1067  * the const code irg.
1068  */
1069 ir_node *can_replace_load_by_const(const ir_node *load, ir_node *c)
1070 {
1071         ir_mode *c_mode = get_irn_mode(c);
1072         ir_mode *l_mode = get_Load_mode(load);
1073         ir_node *res    = NULL;
1074
1075         if (c_mode != l_mode) {
1076                 /* check, if the mode matches OR can be easily converted info */
1077                 if (is_reinterpret_cast(c_mode, l_mode)) {
1078                         /* we can safely cast */
1079                         dbg_info *dbg   = get_irn_dbg_info(load);
1080                         ir_node  *block = get_nodes_block(load);
1081
1082                         /* copy the value from the const code irg and cast it */
1083                         res = copy_const_value(dbg, c);
1084                         res = new_rd_Conv(dbg, block, res, l_mode);
1085                 }
1086         } else {
1087                 /* copy the value from the const code irg */
1088                 res = copy_const_value(get_irn_dbg_info(load), c);
1089         }
1090         return res;
1091 }  /* can_replace_load_by_const */
1092
1093 /**
1094  * optimize a Load
1095  *
1096  * @param load  the Load node
1097  */
1098 static unsigned optimize_load(ir_node *load)
1099 {
1100         ldst_info_t *info = get_irn_link(load);
1101         ir_node     *mem, *ptr, *value;
1102         ir_entity   *ent;
1103         long        dummy;
1104         unsigned    res = 0;
1105
1106         /* do NOT touch volatile loads for now */
1107         if (get_Load_volatility(load) == volatility_is_volatile)
1108                 return 0;
1109
1110         /* the address of the load to be optimized */
1111         ptr = get_Load_ptr(load);
1112
1113         /* The mem of the Load. Must still be returned after optimization. */
1114         mem = get_Load_mem(load);
1115
1116         if (info->projs[pn_Load_res] == NULL
1117                         && info->projs[pn_Load_X_except] == NULL) {
1118                 /* the value is never used and we don't care about exceptions, remove */
1119                 exchange(info->projs[pn_Load_M], mem);
1120
1121                 if (info->projs[pn_Load_X_regular]) {
1122                         /* should not happen, but if it does, remove it */
1123                         exchange(info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
1124                         res |= CF_CHANGED;
1125                 }
1126                 kill_node(load);
1127                 reduce_adr_usage(ptr);
1128                 return res | DF_CHANGED;
1129         }
1130
1131         /* Load from a constant polymorphic field, where we can resolve
1132            polymorphism. */
1133         value = transform_polymorph_Load(load);
1134         if (value == load) {
1135                 value = NULL;
1136                 /* check if we can determine the entity that will be loaded */
1137                 ent = find_constant_entity(ptr);
1138                 if (ent != NULL
1139                                 && get_entity_visibility(ent) != ir_visibility_external) {
1140                         /* a static allocation that is not external: there should be NO
1141                          * exception when loading even if we cannot replace the load itself.
1142                          */
1143
1144                         /* no exception, clear the info field as it might be checked later again */
1145                         if (info->projs[pn_Load_X_except]) {
1146                                 exchange(info->projs[pn_Load_X_except], new_Bad());
1147                                 info->projs[pn_Load_X_except] = NULL;
1148                                 res |= CF_CHANGED;
1149                         }
1150                         if (info->projs[pn_Load_X_regular]) {
1151                                 exchange(info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
1152                                 info->projs[pn_Load_X_regular] = NULL;
1153                                 res |= CF_CHANGED;
1154                         }
1155
1156                         if (get_entity_linkage(ent) & IR_LINKAGE_CONSTANT) {
1157                                 if (ent->initializer != NULL) {
1158                                         /* new style initializer */
1159                                         value = find_compound_ent_value(ptr);
1160                                 } else if (entity_has_compound_ent_values(ent)) {
1161                                         /* old style initializer */
1162                                         compound_graph_path *path = get_accessed_path(ptr);
1163
1164                                         if (path != NULL) {
1165                                                 assert(is_proper_compound_graph_path(path, get_compound_graph_path_length(path)-1));
1166
1167                                                 value = get_compound_ent_value_by_path(ent, path);
1168                                                 DB((dbg, LEVEL_1, "  Constant access at %F%F resulted in %+F\n", ent, path, value));
1169                                                 free_compound_graph_path(path);
1170                                         }
1171                                 }
1172                                 if (value != NULL)
1173                                         value = can_replace_load_by_const(load, value);
1174                         }
1175                 }
1176         }
1177         if (value != NULL) {
1178                 /* we completely replace the load by this value */
1179                 if (info->projs[pn_Load_X_except]) {
1180                         exchange(info->projs[pn_Load_X_except], new_Bad());
1181                         info->projs[pn_Load_X_except] = NULL;
1182                         res |= CF_CHANGED;
1183                 }
1184                 if (info->projs[pn_Load_X_regular]) {
1185                         exchange(info->projs[pn_Load_X_regular], new_r_Jmp(get_nodes_block(load)));
1186                         info->projs[pn_Load_X_regular] = NULL;
1187                         res |= CF_CHANGED;
1188                 }
1189                 if (info->projs[pn_Load_M]) {
1190                         exchange(info->projs[pn_Load_M], mem);
1191                         res |= DF_CHANGED;
1192                 }
1193                 if (info->projs[pn_Load_res]) {
1194                         exchange(info->projs[pn_Load_res], value);
1195                         res |= DF_CHANGED;
1196                 }
1197                 kill_node(load);
1198                 reduce_adr_usage(ptr);
1199                 return res;
1200         }
1201
1202         /* Check, if the address of this load is used more than once.
1203          * If not, more load cannot be removed in any case. */
1204         if (get_irn_n_uses(ptr) <= 1 && get_irn_n_uses(get_base_and_offset(ptr, &dummy)) <= 1)
1205                 return res;
1206
1207         /*
1208          * follow the memory chain as long as there are only Loads
1209          * and try to replace current Load or Store by a previous one.
1210          * Note that in unreachable loops it might happen that we reach
1211          * load again, as well as we can fall into a cycle.
1212          * We break such cycles using a special visited flag.
1213          */
1214         INC_MASTER();
1215         res = follow_Mem_chain(load, skip_Proj(mem));
1216         return res;
1217 }  /* optimize_load */
1218
1219 /**
1220  * Check whether a value of mode new_mode would completely overwrite a value
1221  * of mode old_mode in memory.
1222  */
1223 static int is_completely_overwritten(ir_mode *old_mode, ir_mode *new_mode)
1224 {
1225         return get_mode_size_bits(new_mode) >= get_mode_size_bits(old_mode);
1226 }  /* is_completely_overwritten */
1227
1228 /**
1229  * Check whether small is a part of large (starting at same address).
1230  */
1231 static int is_partially_same(ir_node *small, ir_node *large)
1232 {
1233         ir_mode *sm = get_irn_mode(small);
1234         ir_mode *lm = get_irn_mode(large);
1235
1236         /* FIXME: Check endianness */
1237         return is_Conv(small) && get_Conv_op(small) == large
1238             && get_mode_size_bytes(sm) < get_mode_size_bytes(lm)
1239             && get_mode_arithmetic(sm) == irma_twos_complement
1240             && get_mode_arithmetic(lm) == irma_twos_complement;
1241 }  /* is_partially_same */
1242
1243 /**
1244  * follow the memory chain as long as there are only Loads and alias free Stores.
1245  *
1246  * INC_MASTER() must be called before dive into
1247  */
1248 static unsigned follow_Mem_chain_for_Store(ir_node *store, ir_node *curr)
1249 {
1250         unsigned res = 0;
1251         ldst_info_t *info = get_irn_link(store);
1252         ir_node *pred;
1253         ir_node *ptr = get_Store_ptr(store);
1254         ir_node *mem = get_Store_mem(store);
1255         ir_node *value = get_Store_value(store);
1256         ir_mode *mode  = get_irn_mode(value);
1257         ir_node *block = get_nodes_block(store);
1258
1259         for (pred = curr; pred != store;) {
1260                 ldst_info_t *pred_info = get_irn_link(pred);
1261
1262                 /*
1263                  * BEWARE: one might think that checking the modes is useless, because
1264                  * if the pointers are identical, they refer to the same object.
1265                  * This is only true in strong typed languages, not is C were the following
1266                  * is possible *(ir_type1 *)p = a; *(ir_type2 *)p = b ...
1267                  * However, if the size of the mode that is written is bigger or equal the
1268                  * size of the old one, the old value is completely overwritten and can be
1269                  * killed ...
1270                  */
1271                 if (is_Store(pred) && get_Store_ptr(pred) == ptr &&
1272             get_nodes_block(pred) == block) {
1273                         /*
1274                          * a Store after a Store in the same Block -- a write after write.
1275                          */
1276
1277                         /*
1278                          * We may remove the first Store, if the old value is completely
1279                          * overwritten or the old value is a part of the new value,
1280                          * and if it does not have an exception handler.
1281                          *
1282                          * TODO: What, if both have the same exception handler ???
1283                          */
1284                         if (get_Store_volatility(pred) != volatility_is_volatile
1285                                 && !pred_info->projs[pn_Store_X_except]) {
1286                                 ir_node *predvalue = get_Store_value(pred);
1287                                 ir_mode *predmode  = get_irn_mode(predvalue);
1288
1289                                 if (is_completely_overwritten(predmode, mode)
1290                                         || is_partially_same(predvalue, value)) {
1291                                         DBG_OPT_WAW(pred, store);
1292                                         exchange(pred_info->projs[pn_Store_M], get_Store_mem(pred));
1293                                         kill_node(pred);
1294                                         reduce_adr_usage(ptr);
1295                                         return DF_CHANGED;
1296                                 }
1297                         }
1298
1299                         /*
1300                          * We may remove the Store, if the old value already contains
1301                          * the new value, and if it does not have an exception handler.
1302                          *
1303                          * TODO: What, if both have the same exception handler ???
1304                          */
1305                         if (get_Store_volatility(store) != volatility_is_volatile
1306                                 && !info->projs[pn_Store_X_except]) {
1307                                 ir_node *predvalue = get_Store_value(pred);
1308
1309                                 if (is_partially_same(value, predvalue)) {
1310                                         DBG_OPT_WAW(pred, store);
1311                                         exchange(info->projs[pn_Store_M], mem);
1312                                         kill_node(store);
1313                                         reduce_adr_usage(ptr);
1314                                         return DF_CHANGED;
1315                                 }
1316                         }
1317                 } else if (is_Load(pred) && get_Load_ptr(pred) == ptr &&
1318                            value == pred_info->projs[pn_Load_res]) {
1319                         /*
1320                          * a Store of a value just loaded from the same address
1321                          * -- a write after read.
1322                          * We may remove the Store, if it does not have an exception
1323                          * handler.
1324                          */
1325                         if (! info->projs[pn_Store_X_except]) {
1326                                 DBG_OPT_WAR(store, pred);
1327                                 exchange(info->projs[pn_Store_M], mem);
1328                                 kill_node(store);
1329                                 reduce_adr_usage(ptr);
1330                                 return DF_CHANGED;
1331                         }
1332                 }
1333
1334                 if (is_Store(pred)) {
1335                         /* check if we can pass through this store */
1336                         ir_alias_relation rel = get_alias_relation(
1337                                 current_ir_graph,
1338                                 get_Store_ptr(pred),
1339                                 get_irn_mode(get_Store_value(pred)),
1340                                 ptr, mode);
1341                         /* if the might be an alias, we cannot pass this Store */
1342                         if (rel != ir_no_alias)
1343                                 break;
1344                         pred = skip_Proj(get_Store_mem(pred));
1345                 } else if (is_Load(pred)) {
1346                         ir_alias_relation rel = get_alias_relation(
1347                                 current_ir_graph, get_Load_ptr(pred), get_Load_mode(pred),
1348                                 ptr, mode);
1349                         if (rel != ir_no_alias)
1350                                 break;
1351
1352                         pred = skip_Proj(get_Load_mem(pred));
1353                 } else {
1354                         /* follow only Load chains */
1355                         break;
1356                 }
1357
1358                 /* check for cycles */
1359                 if (NODE_VISITED(pred_info))
1360                         break;
1361                 MARK_NODE(pred_info);
1362         }
1363
1364         if (is_Sync(pred)) {
1365                 int i;
1366
1367                 /* handle all Sync predecessors */
1368                 for (i = get_Sync_n_preds(pred) - 1; i >= 0; --i) {
1369                         res |= follow_Mem_chain_for_Store(store, skip_Proj(get_Sync_pred(pred, i)));
1370                         if (res)
1371                                 break;
1372                 }
1373         }
1374         return res;
1375 }  /* follow_Mem_chain_for_Store */
1376
1377 /** find entity used as base for an address calculation */
1378 static ir_entity *find_entity(ir_node *ptr)
1379 {
1380         switch (get_irn_opcode(ptr)) {
1381         case iro_SymConst:
1382                 return get_SymConst_entity(ptr);
1383         case iro_Sel: {
1384                 ir_node *pred = get_Sel_ptr(ptr);
1385                 if (get_irg_frame(get_irn_irg(ptr)) == pred)
1386                         return get_Sel_entity(ptr);
1387
1388                 return find_entity(pred);
1389         }
1390         case iro_Sub:
1391         case iro_Add: {
1392                 ir_node *left = get_binop_left(ptr);
1393                 ir_node *right;
1394                 if (mode_is_reference(get_irn_mode(left)))
1395                         return find_entity(left);
1396                 right = get_binop_right(ptr);
1397                 if (mode_is_reference(get_irn_mode(right)))
1398                         return find_entity(right);
1399                 return NULL;
1400         }
1401         default:
1402                 return NULL;
1403         }
1404 }
1405
1406 /**
1407  * optimize a Store
1408  *
1409  * @param store  the Store node
1410  */
1411 static unsigned optimize_store(ir_node *store)
1412 {
1413         ir_node   *ptr;
1414         ir_node   *mem;
1415         ir_entity *entity;
1416
1417         if (get_Store_volatility(store) == volatility_is_volatile)
1418                 return 0;
1419
1420         ptr    = get_Store_ptr(store);
1421         entity = find_entity(ptr);
1422
1423         /* a store to an entity which is never read is unnecessary */
1424         if (entity != NULL && !(get_entity_usage(entity) & ir_usage_read)) {
1425                 ldst_info_t *info = get_irn_link(store);
1426                 if (info->projs[pn_Store_X_except] == NULL) {
1427                         DB((dbg, LEVEL_1, "  Killing useless %+F to never read entity %+F\n", store, entity));
1428                         exchange(info->projs[pn_Store_M], get_Store_mem(store));
1429                         kill_node(store);
1430                         reduce_adr_usage(ptr);
1431                         return DF_CHANGED;
1432                 }
1433         }
1434
1435         /* Check, if the address of this Store is used more than once.
1436          * If not, this Store cannot be removed in any case. */
1437         if (get_irn_n_uses(ptr) <= 1)
1438                 return 0;
1439
1440         mem = get_Store_mem(store);
1441
1442         /* follow the memory chain as long as there are only Loads */
1443         INC_MASTER();
1444
1445         return follow_Mem_chain_for_Store(store, skip_Proj(mem));
1446 }  /* optimize_store */
1447
1448 /**
1449  * walker, optimizes Phi after Stores to identical places:
1450  * Does the following optimization:
1451  * @verbatim
1452  *
1453  *   val1   val2   val3          val1  val2  val3
1454  *    |      |      |               \    |    /
1455  *  Store  Store  Store              \   |   /
1456  *      \    |    /                   PhiData
1457  *       \   |   /                       |
1458  *        \  |  /                      Store
1459  *          PhiM
1460  *
1461  * @endverbatim
1462  * This reduces the number of stores and allows for predicated execution.
1463  * Moves Stores back to the end of a function which may be bad.
1464  *
1465  * This is only possible if the predecessor blocks have only one successor.
1466  */
1467 static unsigned optimize_phi(ir_node *phi, walk_env_t *wenv)
1468 {
1469         int i, n;
1470         ir_node *store, *old_store, *ptr, *block, *phi_block, *phiM, *phiD, *exc, *projM;
1471         ir_mode *mode;
1472         ir_node **inM, **inD, **projMs;
1473         int *idx;
1474         dbg_info *db = NULL;
1475         ldst_info_t *info;
1476         block_info_t *bl_info;
1477         unsigned res = 0;
1478
1479         /* Must be a memory Phi */
1480         if (get_irn_mode(phi) != mode_M)
1481                 return 0;
1482
1483         n = get_Phi_n_preds(phi);
1484         if (n <= 0)
1485                 return 0;
1486
1487         /* must be only one user */
1488         projM = get_Phi_pred(phi, 0);
1489         if (get_irn_n_edges(projM) != 1)
1490                 return 0;
1491
1492         store = skip_Proj(projM);
1493         old_store = store;
1494         if (!is_Store(store))
1495                 return 0;
1496
1497         block = get_nodes_block(store);
1498
1499         /* abort on dead blocks */
1500         if (is_Block_dead(block))
1501                 return 0;
1502
1503         /* check if the block is post dominated by Phi-block
1504            and has no exception exit */
1505         bl_info = get_irn_link(block);
1506         if (bl_info->flags & BLOCK_HAS_EXC)
1507                 return 0;
1508
1509         phi_block = get_nodes_block(phi);
1510         if (! block_strictly_postdominates(phi_block, block))
1511                 return 0;
1512
1513         /* this is the address of the store */
1514         ptr  = get_Store_ptr(store);
1515         mode = get_irn_mode(get_Store_value(store));
1516         info = get_irn_link(store);
1517         exc  = info->exc_block;
1518
1519         for (i = 1; i < n; ++i) {
1520                 ir_node *pred = get_Phi_pred(phi, i);
1521
1522                 if (get_irn_n_edges(pred) != 1)
1523                         return 0;
1524
1525                 pred = skip_Proj(pred);
1526                 if (!is_Store(pred))
1527                         return 0;
1528
1529                 if (ptr != get_Store_ptr(pred) || mode != get_irn_mode(get_Store_value(pred)))
1530                         return 0;
1531
1532                 info = get_irn_link(pred);
1533
1534                 /* check, if all stores have the same exception flow */
1535                 if (exc != info->exc_block)
1536                         return 0;
1537
1538                 /* abort on dead blocks */
1539                 block = get_nodes_block(pred);
1540                 if (is_Block_dead(block))
1541                         return 0;
1542
1543                 /* check if the block is post dominated by Phi-block
1544                    and has no exception exit. Note that block must be different from
1545                    Phi-block, else we would move a Store from end End of a block to its
1546                    Start... */
1547                 bl_info = get_irn_link(block);
1548                 if (bl_info->flags & BLOCK_HAS_EXC)
1549                         return 0;
1550                 if (block == phi_block || ! block_postdominates(phi_block, block))
1551                         return 0;
1552         }
1553
1554         /*
1555          * ok, when we are here, we found all predecessors of a Phi that
1556          * are Stores to the same address and size. That means whatever
1557          * we do before we enter the block of the Phi, we do a Store.
1558          * So, we can move the Store to the current block:
1559          *
1560          *   val1    val2    val3          val1  val2  val3
1561          *    |       |       |               \    |    /
1562          * | Str | | Str | | Str |             \   |   /
1563          *      \     |     /                   PhiData
1564          *       \    |    /                       |
1565          *        \   |   /                       Str
1566          *           PhiM
1567          *
1568          * Is only allowed if the predecessor blocks have only one successor.
1569          */
1570
1571         NEW_ARR_A(ir_node *, projMs, n);
1572         NEW_ARR_A(ir_node *, inM, n);
1573         NEW_ARR_A(ir_node *, inD, n);
1574         NEW_ARR_A(int, idx, n);
1575
1576         /* Prepare: Collect all Store nodes.  We must do this
1577            first because we otherwise may loose a store when exchanging its
1578            memory Proj.
1579          */
1580         for (i = n - 1; i >= 0; --i) {
1581                 ir_node *store;
1582
1583                 projMs[i] = get_Phi_pred(phi, i);
1584                 assert(is_Proj(projMs[i]));
1585
1586                 store = get_Proj_pred(projMs[i]);
1587                 info  = get_irn_link(store);
1588
1589                 inM[i] = get_Store_mem(store);
1590                 inD[i] = get_Store_value(store);
1591                 idx[i] = info->exc_idx;
1592         }
1593         block = get_nodes_block(phi);
1594
1595         /* second step: create a new memory Phi */
1596         phiM = new_rd_Phi(get_irn_dbg_info(phi), block, n, inM, mode_M);
1597
1598         /* third step: create a new data Phi */
1599         phiD = new_rd_Phi(get_irn_dbg_info(phi), block, n, inD, mode);
1600
1601         /* rewire memory and kill the node */
1602         for (i = n - 1; i >= 0; --i) {
1603                 ir_node *proj  = projMs[i];
1604
1605                 if (is_Proj(proj)) {
1606                         ir_node *store = get_Proj_pred(proj);
1607                         exchange(proj, inM[i]);
1608                         kill_node(store);
1609                 }
1610         }
1611
1612         /* fourth step: create the Store */
1613         store = new_rd_Store(db, block, phiM, ptr, phiD, 0);
1614 #ifdef DO_CACHEOPT
1615         co_set_irn_name(store, co_get_irn_ident(old_store));
1616 #endif
1617
1618         projM = new_rd_Proj(NULL, store, mode_M, pn_Store_M);
1619
1620         info = get_ldst_info(store, &wenv->obst);
1621         info->projs[pn_Store_M] = projM;
1622
1623         /* fifths step: repair exception flow */
1624         if (exc) {
1625                 ir_node *projX = new_rd_Proj(NULL, store, mode_X, pn_Store_X_except);
1626
1627                 info->projs[pn_Store_X_except] = projX;
1628                 info->exc_block                = exc;
1629                 info->exc_idx                  = idx[0];
1630
1631                 for (i = 0; i < n; ++i) {
1632                         set_Block_cfgpred(exc, idx[i], projX);
1633                 }
1634
1635                 if (n > 1) {
1636                         /* the exception block should be optimized as some inputs are identical now */
1637                 }
1638
1639                 res |= CF_CHANGED;
1640         }
1641
1642         /* sixth step: replace old Phi */
1643         exchange(phi, projM);
1644
1645         return res | DF_CHANGED;
1646 }  /* optimize_phi */
1647
1648 /**
1649  * walker, do the optimizations
1650  */
1651 static void do_load_store_optimize(ir_node *n, void *env)
1652 {
1653         walk_env_t *wenv = env;
1654
1655         switch (get_irn_opcode(n)) {
1656
1657         case iro_Load:
1658                 wenv->changes |= optimize_load(n);
1659                 break;
1660
1661         case iro_Store:
1662                 wenv->changes |= optimize_store(n);
1663                 break;
1664
1665         case iro_Phi:
1666                 wenv->changes |= optimize_phi(n, wenv);
1667                 break;
1668
1669         default:
1670                 ;
1671         }
1672 }  /* do_load_store_optimize */
1673
1674 /** A scc. */
1675 typedef struct scc {
1676         ir_node *head;      /**< the head of the list */
1677 } scc;
1678
1679 /** A node entry. */
1680 typedef struct node_entry {
1681         unsigned DFSnum;    /**< the DFS number of this node */
1682         unsigned low;       /**< the low number of this node */
1683         int      in_stack;  /**< flag, set if the node is on the stack */
1684         ir_node  *next;     /**< link to the next node the the same scc */
1685         scc      *pscc;     /**< the scc of this node */
1686         unsigned POnum;     /**< the post order number for blocks */
1687 } node_entry;
1688
1689 /** A loop entry. */
1690 typedef struct loop_env {
1691         ir_phase ph;           /**< the phase object */
1692         ir_node  **stack;      /**< the node stack */
1693         int      tos;          /**< tos index */
1694         unsigned nextDFSnum;   /**< the current DFS number */
1695         unsigned POnum;        /**< current post order number */
1696
1697         unsigned changes;      /**< a bitmask of graph changes */
1698 } loop_env;
1699
1700 /**
1701 * Gets the node_entry of a node
1702 */
1703 static node_entry *get_irn_ne(ir_node *irn, loop_env *env)
1704 {
1705         ir_phase   *ph = &env->ph;
1706         node_entry *e  = phase_get_irn_data(&env->ph, irn);
1707
1708         if (! e) {
1709                 e = phase_alloc(ph, sizeof(*e));
1710                 memset(e, 0, sizeof(*e));
1711                 phase_set_irn_data(ph, irn, e);
1712         }
1713         return e;
1714 }  /* get_irn_ne */
1715
1716 /**
1717  * Push a node onto the stack.
1718  *
1719  * @param env   the loop environment
1720  * @param n     the node to push
1721  */
1722 static void push(loop_env *env, ir_node *n)
1723 {
1724         node_entry *e;
1725
1726         if (env->tos == ARR_LEN(env->stack)) {
1727                 int nlen = ARR_LEN(env->stack) * 2;
1728                 ARR_RESIZE(ir_node *, env->stack, nlen);
1729         }
1730         env->stack[env->tos++] = n;
1731         e = get_irn_ne(n, env);
1732         e->in_stack = 1;
1733 }  /* push */
1734
1735 /**
1736  * pop a node from the stack
1737  *
1738  * @param env   the loop environment
1739  *
1740  * @return  The topmost node
1741  */
1742 static ir_node *pop(loop_env *env)
1743 {
1744         ir_node *n = env->stack[--env->tos];
1745         node_entry *e = get_irn_ne(n, env);
1746
1747         e->in_stack = 0;
1748         return n;
1749 }  /* pop */
1750
1751 /**
1752  * Check if irn is a region constant.
1753  * The block or irn must strictly dominate the header block.
1754  *
1755  * @param irn           the node to check
1756  * @param header_block  the header block of the induction variable
1757  */
1758 static int is_rc(ir_node *irn, ir_node *header_block)
1759 {
1760         ir_node *block = get_nodes_block(irn);
1761
1762         return (block != header_block) && block_dominates(block, header_block);
1763 }  /* is_rc */
1764
1765 typedef struct phi_entry phi_entry;
1766 struct phi_entry {
1767         ir_node   *phi;    /**< A phi with a region const memory. */
1768         int       pos;     /**< The position of the region const memory */
1769         ir_node   *load;   /**< the newly created load for this phi */
1770         phi_entry *next;
1771 };
1772
1773 /**
1774  * An entry in the avail set.
1775  */
1776 typedef struct avail_entry_t {
1777         ir_node *ptr;   /**< the address pointer */
1778         ir_mode *mode;  /**< the load mode */
1779         ir_node *load;  /**< the associated Load */
1780 } avail_entry_t;
1781
1782 /**
1783  * Compare two avail entries.
1784  */
1785 static int cmp_avail_entry(const void *elt, const void *key, size_t size)
1786 {
1787         const avail_entry_t *a = elt;
1788         const avail_entry_t *b = key;
1789         (void) size;
1790
1791         return a->ptr != b->ptr || a->mode != b->mode;
1792 }  /* cmp_avail_entry */
1793
1794 /**
1795  * Calculate the hash value of an avail entry.
1796  */
1797 static unsigned hash_cache_entry(const avail_entry_t *entry)
1798 {
1799         return get_irn_idx(entry->ptr) * 9 + HASH_PTR(entry->mode);
1800 }  /* hash_cache_entry */
1801
1802 /**
1803  * Move loops out of loops if possible.
1804  *
1805  * @param pscc   the loop described by an SCC
1806  * @param env    the loop environment
1807  */
1808 static void move_loads_out_of_loops(scc *pscc, loop_env *env)
1809 {
1810         ir_node   *phi, *load, *next, *other, *next_other;
1811         ir_entity *ent;
1812         int       j;
1813         phi_entry *phi_list = NULL;
1814         set       *avail;
1815
1816         avail = new_set(cmp_avail_entry, 8);
1817
1818         /* collect all outer memories */
1819         for (phi = pscc->head; phi != NULL; phi = next) {
1820                 node_entry *ne = get_irn_ne(phi, env);
1821                 next = ne->next;
1822
1823                 /* check all memory Phi's */
1824                 if (! is_Phi(phi))
1825                         continue;
1826
1827                 assert(get_irn_mode(phi) == mode_M && "DFS return non-memory Phi");
1828
1829                 for (j = get_irn_arity(phi) - 1; j >= 0; --j) {
1830                         ir_node    *pred = get_irn_n(phi, j);
1831                         node_entry *pe   = get_irn_ne(pred, env);
1832
1833                         if (pe->pscc != ne->pscc) {
1834                                 /* not in the same SCC, is region const */
1835                                 phi_entry *pe = phase_alloc(&env->ph, sizeof(*pe));
1836
1837                                 pe->phi  = phi;
1838                                 pe->pos  = j;
1839                                 pe->next = phi_list;
1840                                 phi_list = pe;
1841                         }
1842                 }
1843         }
1844         /* no Phis no fun */
1845         assert(phi_list != NULL && "DFS found a loop without Phi");
1846
1847         /* for now, we cannot handle more than one input (only reducible cf) */
1848         if (phi_list->next != NULL)
1849                 return;
1850
1851         for (load = pscc->head; load; load = next) {
1852                 ir_mode *load_mode;
1853                 node_entry *ne = get_irn_ne(load, env);
1854                 next = ne->next;
1855
1856                 if (is_Load(load)) {
1857                         ldst_info_t *info = get_irn_link(load);
1858                         ir_node     *ptr = get_Load_ptr(load);
1859
1860                         /* for now, we cannot handle Loads with exceptions */
1861                         if (info->projs[pn_Load_res] == NULL || info->projs[pn_Load_X_regular] != NULL || info->projs[pn_Load_X_except] != NULL)
1862                                 continue;
1863
1864                         /* for now, we can only move Load(Global) */
1865                         if (! is_Global(ptr))
1866                                 continue;
1867                         ent       = get_Global_entity(ptr);
1868                         load_mode = get_Load_mode(load);
1869                         for (other = pscc->head; other != NULL; other = next_other) {
1870                                 node_entry *ne = get_irn_ne(other, env);
1871                                 next_other = ne->next;
1872
1873                                 if (is_Store(other)) {
1874                                         ir_alias_relation rel = get_alias_relation(
1875                                                 current_ir_graph,
1876                                                 get_Store_ptr(other),
1877                                                 get_irn_mode(get_Store_value(other)),
1878                                                 ptr, load_mode);
1879                                         /* if the might be an alias, we cannot pass this Store */
1880                                         if (rel != ir_no_alias)
1881                                                 break;
1882                                 }
1883                                 /* only Phis and pure Calls are allowed here, so ignore them */
1884                         }
1885                         if (other == NULL) {
1886                                 ldst_info_t *ninfo = NULL;
1887                                 phi_entry   *pe;
1888                                 dbg_info    *db;
1889
1890                                 /* yep, no aliasing Store found, Load can be moved */
1891                                 DB((dbg, LEVEL_1, "  Found a Load that could be moved: %+F\n", load));
1892
1893                                 db   = get_irn_dbg_info(load);
1894                                 for (pe = phi_list; pe != NULL; pe = pe->next) {
1895                                         int     pos   = pe->pos;
1896                                         ir_node *phi  = pe->phi;
1897                                         ir_node *blk  = get_nodes_block(phi);
1898                                         ir_node *pred = get_Block_cfgpred_block(blk, pos);
1899                                         ir_node *irn, *mem;
1900                                         avail_entry_t entry, *res;
1901
1902                                         entry.ptr  = ptr;
1903                                         entry.mode = load_mode;
1904                                         res = set_find(avail, &entry, sizeof(entry), hash_cache_entry(&entry));
1905                                         if (res != NULL) {
1906                                                 irn = res->load;
1907                                         } else {
1908                                                 irn = new_rd_Load(db, pred, get_Phi_pred(phi, pos), ptr, load_mode, 0);
1909                                                 entry.load = irn;
1910                                                 set_insert(avail, &entry, sizeof(entry), hash_cache_entry(&entry));
1911                                                 DB((dbg, LEVEL_1, "  Created %+F in %+F\n", irn, pred));
1912                                         }
1913                                         pe->load = irn;
1914                                         ninfo = get_ldst_info(irn, phase_obst(&env->ph));
1915
1916                                         ninfo->projs[pn_Load_M] = mem = new_r_Proj(irn, mode_M, pn_Load_M);
1917                                         set_Phi_pred(phi, pos, mem);
1918
1919                                         ninfo->projs[pn_Load_res] = new_r_Proj(irn, load_mode, pn_Load_res);
1920                                 }
1921
1922                                 /* now kill the old Load */
1923                                 exchange(info->projs[pn_Load_M], get_Load_mem(load));
1924                                 exchange(info->projs[pn_Load_res], ninfo->projs[pn_Load_res]);
1925
1926                                 env->changes |= DF_CHANGED;
1927                         }
1928                 }
1929         }
1930         del_set(avail);
1931 }  /* move_loads_out_of_loops */
1932
1933 /**
1934  * Process a loop SCC.
1935  *
1936  * @param pscc  the SCC
1937  * @param env   the loop environment
1938  */
1939 static void process_loop(scc *pscc, loop_env *env)
1940 {
1941         ir_node *irn, *next, *header = NULL;
1942         node_entry *b, *h = NULL;
1943         int j, only_phi, num_outside, process = 0;
1944         ir_node *out_rc;
1945
1946         /* find the header block for this scc */
1947         for (irn = pscc->head; irn; irn = next) {
1948                 node_entry *e = get_irn_ne(irn, env);
1949                 ir_node *block = get_nodes_block(irn);
1950
1951                 next = e->next;
1952                 b = get_irn_ne(block, env);
1953
1954                 if (header != NULL) {
1955                         if (h->POnum < b->POnum) {
1956                                 header = block;
1957                                 h      = b;
1958                         }
1959                 } else {
1960                         header = block;
1961                         h      = b;
1962                 }
1963         }
1964
1965         /* check if this scc contains only Phi, Loads or Stores nodes */
1966         only_phi    = 1;
1967         num_outside = 0;
1968         out_rc      = NULL;
1969         for (irn = pscc->head; irn; irn = next) {
1970                 node_entry *e = get_irn_ne(irn, env);
1971
1972                 next = e->next;
1973                 switch (get_irn_opcode(irn)) {
1974                 case iro_Call:
1975                         if (is_Call_pure(irn)) {
1976                                 /* pure calls can be treated like loads */
1977                                 only_phi = 0;
1978                                 break;
1979                         }
1980                         /* non-pure calls must be handle like may-alias Stores */
1981                         goto fail;
1982                 case iro_CopyB:
1983                         /* cannot handle CopyB yet */
1984                         goto fail;
1985                 case iro_Load:
1986                         process = 1;
1987                         if (get_Load_volatility(irn) == volatility_is_volatile) {
1988                                 /* cannot handle loops with volatile Loads */
1989                                 goto fail;
1990                         }
1991                         only_phi = 0;
1992                         break;
1993                 case iro_Store:
1994                         if (get_Store_volatility(irn) == volatility_is_volatile) {
1995                                 /* cannot handle loops with volatile Stores */
1996                                 goto fail;
1997                         }
1998                         only_phi = 0;
1999                         break;
2000                 default:
2001                         only_phi = 0;
2002                         break;
2003                 case iro_Phi:
2004                         for (j = get_irn_arity(irn) - 1; j >= 0; --j) {
2005                                 ir_node *pred  = get_irn_n(irn, j);
2006                                 node_entry *pe = get_irn_ne(pred, env);
2007
2008                                 if (pe->pscc != e->pscc) {
2009                                         /* not in the same SCC, must be a region const */
2010                                         if (! is_rc(pred, header)) {
2011                                                 /* not a memory loop */
2012                                                 goto fail;
2013                                         }
2014                                         if (out_rc == NULL) {
2015                                                 /* first region constant */
2016                                                 out_rc = pred;
2017                                                 ++num_outside;
2018                                         } else if (out_rc != pred) {
2019                                                 /* another region constant */
2020                                                 ++num_outside;
2021                                         }
2022                                 }
2023                         }
2024                         break;
2025                 }
2026         }
2027         if (! process)
2028                 goto fail;
2029
2030         /* found a memory loop */
2031         DB((dbg, LEVEL_2, "  Found a memory loop:\n  "));
2032         if (only_phi && num_outside == 1) {
2033                 /* a phi cycle with only one real predecessor can be collapsed */
2034                 DB((dbg, LEVEL_2, "  Found an USELESS Phi cycle:\n  "));
2035
2036                 for (irn = pscc->head; irn; irn = next) {
2037                         node_entry *e = get_irn_ne(irn, env);
2038                         next = e->next;
2039                         exchange(irn, out_rc);
2040                 }
2041                 env->changes |= DF_CHANGED;
2042                 return;
2043         }
2044
2045 #ifdef DEBUG_libfirm
2046         for (irn = pscc->head; irn; irn = next) {
2047                 node_entry *e = get_irn_ne(irn, env);
2048                 next = e->next;
2049                 DB((dbg, LEVEL_2, " %+F,", irn));
2050         }
2051         DB((dbg, LEVEL_2, "\n"));
2052 #endif
2053         move_loads_out_of_loops(pscc, env);
2054
2055 fail:
2056         ;
2057 }  /* process_loop */
2058
2059 /**
2060  * Process a SCC.
2061  *
2062  * @param pscc  the SCC
2063  * @param env   the loop environment
2064  */
2065 static void process_scc(scc *pscc, loop_env *env)
2066 {
2067         ir_node *head = pscc->head;
2068         node_entry *e = get_irn_ne(head, env);
2069
2070 #ifdef DEBUG_libfirm
2071         {
2072                 ir_node *irn, *next;
2073
2074                 DB((dbg, LEVEL_4, " SCC at %p:\n ", pscc));
2075                 for (irn = pscc->head; irn; irn = next) {
2076                         node_entry *e = get_irn_ne(irn, env);
2077
2078                         next = e->next;
2079
2080                         DB((dbg, LEVEL_4, " %+F,", irn));
2081                 }
2082                 DB((dbg, LEVEL_4, "\n"));
2083         }
2084 #endif
2085
2086         if (e->next != NULL) {
2087                 /* this SCC has more than one member */
2088                 process_loop(pscc, env);
2089         }
2090 }  /* process_scc */
2091
2092 /**
2093  * Do Tarjan's SCC algorithm and drive load/store optimization.
2094  *
2095  * @param irn  start at this node
2096  * @param env  the loop environment
2097  */
2098 static void dfs(ir_node *irn, loop_env *env)
2099 {
2100         int i, n;
2101         node_entry *node = get_irn_ne(irn, env);
2102
2103         mark_irn_visited(irn);
2104
2105         node->DFSnum = env->nextDFSnum++;
2106         node->low    = node->DFSnum;
2107         push(env, irn);
2108
2109         /* handle preds */
2110         if (is_Phi(irn) || is_Sync(irn)) {
2111                 n = get_irn_arity(irn);
2112                 for (i = 0; i < n; ++i) {
2113                         ir_node *pred = get_irn_n(irn, i);
2114                         node_entry *o = get_irn_ne(pred, env);
2115
2116                         if (!irn_visited(pred)) {
2117                                 dfs(pred, env);
2118                                 node->low = MIN(node->low, o->low);
2119                         }
2120                         if (o->DFSnum < node->DFSnum && o->in_stack)
2121                                 node->low = MIN(o->DFSnum, node->low);
2122                 }
2123         } else if (is_fragile_op(irn)) {
2124                 ir_node *pred = get_fragile_op_mem(irn);
2125                 node_entry *o = get_irn_ne(pred, env);
2126
2127                 if (!irn_visited(pred)) {
2128                         dfs(pred, env);
2129                         node->low = MIN(node->low, o->low);
2130                 }
2131                 if (o->DFSnum < node->DFSnum && o->in_stack)
2132                         node->low = MIN(o->DFSnum, node->low);
2133         } else if (is_Proj(irn)) {
2134                 ir_node *pred = get_Proj_pred(irn);
2135                 node_entry *o = get_irn_ne(pred, env);
2136
2137                 if (!irn_visited(pred)) {
2138                         dfs(pred, env);
2139                         node->low = MIN(node->low, o->low);
2140                 }
2141                 if (o->DFSnum < node->DFSnum && o->in_stack)
2142                         node->low = MIN(o->DFSnum, node->low);
2143         }
2144         else {
2145                  /* IGNORE predecessors */
2146         }
2147
2148         if (node->low == node->DFSnum) {
2149                 scc *pscc = phase_alloc(&env->ph, sizeof(*pscc));
2150                 ir_node *x;
2151
2152                 pscc->head = NULL;
2153                 do {
2154                         node_entry *e;
2155
2156                         x = pop(env);
2157                         e = get_irn_ne(x, env);
2158                         e->pscc    = pscc;
2159                         e->next    = pscc->head;
2160                         pscc->head = x;
2161                 } while (x != irn);
2162
2163                 process_scc(pscc, env);
2164         }
2165 }  /* dfs */
2166
2167 /**
2168  * Do the DFS on the memory edges a graph.
2169  *
2170  * @param irg  the graph to process
2171  * @param env  the loop environment
2172  */
2173 static void do_dfs(ir_graph *irg, loop_env *env)
2174 {
2175         ir_graph *rem = current_ir_graph;
2176         ir_node  *endblk, *end;
2177         int      i;
2178
2179         current_ir_graph = irg;
2180         inc_irg_visited(irg);
2181
2182         /* visit all memory nodes */
2183         endblk = get_irg_end_block(irg);
2184         for (i = get_Block_n_cfgpreds(endblk) - 1; i >= 0; --i) {
2185                 ir_node *pred = get_Block_cfgpred(endblk, i);
2186
2187                 pred = skip_Proj(pred);
2188                 if (is_Return(pred))
2189                         dfs(get_Return_mem(pred), env);
2190                 else if (is_Raise(pred))
2191                         dfs(get_Raise_mem(pred), env);
2192                 else if (is_fragile_op(pred))
2193                         dfs(get_fragile_op_mem(pred), env);
2194                 else {
2195                         assert(0 && "Unknown EndBlock predecessor");
2196                 }
2197         }
2198
2199         /* visit the keep-alives */
2200         end = get_irg_end(irg);
2201         for (i = get_End_n_keepalives(end) - 1; i >= 0; --i) {
2202                 ir_node *ka = get_End_keepalive(end, i);
2203
2204                 if (is_Phi(ka) && !irn_visited(ka))
2205                         dfs(ka, env);
2206         }
2207         current_ir_graph = rem;
2208 }  /* do_dfs */
2209
2210 /**
2211  * Optimize Loads/Stores in loops.
2212  *
2213  * @param irg  the graph
2214  */
2215 static int optimize_loops(ir_graph *irg)
2216 {
2217         loop_env env;
2218
2219         env.stack         = NEW_ARR_F(ir_node *, 128);
2220         env.tos           = 0;
2221         env.nextDFSnum    = 0;
2222         env.POnum         = 0;
2223         env.changes       = 0;
2224         phase_init(&env.ph, irg, phase_irn_init_default);
2225
2226         /* calculate the SCC's and drive loop optimization. */
2227         do_dfs(irg, &env);
2228
2229         DEL_ARR_F(env.stack);
2230         phase_deinit(&env.ph);
2231
2232         return env.changes;
2233 }  /* optimize_loops */
2234
2235 /*
2236  * do the load store optimization
2237  */
2238 int optimize_load_store(ir_graph *irg)
2239 {
2240         walk_env_t env;
2241
2242         FIRM_DBG_REGISTER(dbg, "firm.opt.ldstopt");
2243
2244         assert(get_irg_phase_state(irg) != phase_building);
2245         assert(get_irg_pinned(irg) != op_pin_state_floats &&
2246                 "LoadStore optimization needs pinned graph");
2247
2248         /* we need landing pads */
2249         remove_critical_cf_edges(irg);
2250
2251         edges_assure(irg);
2252
2253         /* for Phi optimization post-dominators are needed ... */
2254         assure_postdoms(irg);
2255
2256         if (get_opt_alias_analysis()) {
2257                 assure_irg_entity_usage_computed(irg);
2258                 assure_irp_globals_entity_usage_computed();
2259         }
2260
2261         obstack_init(&env.obst);
2262         env.changes = 0;
2263
2264         /* init the links, then collect Loads/Stores/Proj's in lists */
2265         master_visited = 0;
2266         irg_walk_graph(irg, firm_clear_link, collect_nodes, &env);
2267
2268         /* now we have collected enough information, optimize */
2269         irg_walk_graph(irg, NULL, do_load_store_optimize, &env);
2270
2271         env.changes |= optimize_loops(irg);
2272
2273         obstack_free(&env.obst, NULL);
2274
2275         /* Handle graph state */
2276         if (env.changes) {
2277                 set_irg_outs_inconsistent(irg);
2278                 set_irg_entity_usage_state(irg, ir_entity_usage_not_computed);
2279         }
2280
2281         if (env.changes & CF_CHANGED) {
2282                 /* is this really needed: Yes, control flow changed, block might
2283                 have Bad() predecessors. */
2284                 set_irg_doms_inconsistent(irg);
2285         }
2286         return env.changes != 0;
2287 }  /* optimize_load_store */
2288
2289 ir_graph_pass_t *optimize_load_store_pass(const char *name)
2290 {
2291         return def_graph_pass_ret(name ? name : "ldst", optimize_load_store);
2292 }  /* optimize_load_store_pass */