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