- can handle some hidden reinterpret casts when doing const load replacement
[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 != NULL) {
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                                                 /* check, if the mode matches OR can be easily converted info */
1119                                                 ir_mode *c_mode = get_irn_mode(c);
1120                                                 ir_mode *l_mode = get_Load_mode(load);
1121
1122                                                 if (c_mode != l_mode) {
1123                                                         if (is_reinterpret_cast(c_mode, l_mode)) {
1124                                                                 /* we can safely cast */
1125                                                                 dbg_info *dbg   = get_irn_dbg_info(load);
1126                                                                 ir_node  *block = get_nodes_block(load);
1127
1128                                                                 /* copy the value from the const code irg and cast it */
1129                                                                 c = copy_const_value(dbg, c);
1130                                                                 c = new_rd_Conv(dbg, current_ir_graph, block, c, l_mode);
1131                                                         } else {
1132                                                                 /* must be some operation */
1133                                                                 c = NULL;
1134                                                         }
1135                                                 } else {
1136                                                         /* copy the value from the const code irg */
1137                                                         c = copy_const_value(get_irn_dbg_info(load), c);
1138                                                 }
1139                                         }
1140                                         if (c != NULL) {
1141                                                 if (info->projs[pn_Load_M]) {
1142                                                         exchange(info->projs[pn_Load_M], mem);
1143                                                         res |= DF_CHANGED;
1144                                                 }
1145                                                 if (info->projs[pn_Load_res]) {
1146                                                         exchange(info->projs[pn_Load_res], c);
1147                                                         res |= DF_CHANGED;
1148                                                 }
1149                                                 kill_node(load);
1150                                                 reduce_adr_usage(ptr);
1151                                                 return res;
1152                                         } else {
1153                                                 /*  We can not determine a correct access path.  E.g., in jack, we load
1154                                                 a byte from an object to generate an exception.   Happens in test program
1155                                                 Reflectiontest.
1156                                                 printf(">>>>>>>>>>>>> Found access to constant entity %s in function %s\n", get_entity_name(ent),
1157                                                 get_entity_name(get_irg_entity(current_ir_graph)));
1158                                                 ir_printf("  load: %+F\n", load);
1159                                                 ir_printf("  ptr:  %+F\n", ptr);
1160                                                 */
1161                                         }
1162                                 }
1163                         }
1164                 }
1165         }
1166
1167         /* Check, if the address of this load is used more than once.
1168          * If not, this load cannot be removed in any case. */
1169         if (get_irn_n_uses(ptr) <= 1)
1170                 return res;
1171
1172         /*
1173          * follow the memory chain as long as there are only Loads
1174          * and try to replace current Load or Store by a previous one.
1175          * Note that in unreachable loops it might happen that we reach
1176          * load again, as well as we can fall into a cycle.
1177          * We break such cycles using a special visited flag.
1178          */
1179         INC_MASTER();
1180         res = follow_Mem_chain(load, skip_Proj(mem));
1181         return res;
1182 }  /* optimize_load */
1183
1184 /**
1185  * Check whether a value of mode new_mode would completely overwrite a value
1186  * of mode old_mode in memory.
1187  */
1188 static int is_completely_overwritten(ir_mode *old_mode, ir_mode *new_mode)
1189 {
1190         return get_mode_size_bits(new_mode) >= get_mode_size_bits(old_mode);
1191 }  /* is_completely_overwritten */
1192
1193 /**
1194  * follow the memory chain as long as there are only Loads and alias free Stores.
1195  *
1196  * INC_MASTER() must be called before dive into
1197  */
1198 static unsigned follow_Mem_chain_for_Store(ir_node *store, ir_node *curr) {
1199         unsigned res = 0;
1200         ldst_info_t *info = get_irn_link(store);
1201         ir_node *pred;
1202         ir_node *ptr = get_Store_ptr(store);
1203         ir_node *mem = get_Store_mem(store);
1204         ir_node *value = get_Store_value(store);
1205         ir_mode *mode  = get_irn_mode(value);
1206         ir_node *block = get_nodes_block(store);
1207         ir_node *mblk  = get_Block_MacroBlock(block);
1208
1209         for (pred = curr; pred != store;) {
1210                 ldst_info_t *pred_info = get_irn_link(pred);
1211
1212                 /*
1213                  * BEWARE: one might think that checking the modes is useless, because
1214                  * if the pointers are identical, they refer to the same object.
1215                  * This is only true in strong typed languages, not is C were the following
1216                  * is possible *(ir_type1 *)p = a; *(ir_type2 *)p = b ...
1217                  * However, if the mode that is written have a bigger  or equal size the the old
1218                  * one, the old value is completely overwritten and can be killed ...
1219                  */
1220                 if (is_Store(pred) && get_Store_ptr(pred) == ptr &&
1221                     get_nodes_MacroBlock(pred) == mblk &&
1222                     is_completely_overwritten(get_irn_mode(get_Store_value(pred)), mode)) {
1223                         /*
1224                          * a Store after a Store in the same MacroBlock -- a write after write.
1225                          * We may remove the first Store, if it does not have an exception handler.
1226                          *
1227                          * TODO: What, if both have the same exception handler ???
1228                          */
1229                         if (get_Store_volatility(pred) != volatility_is_volatile && !pred_info->projs[pn_Store_X_except]) {
1230                                 DBG_OPT_WAW(pred, store);
1231                                 exchange(pred_info->projs[pn_Store_M], get_Store_mem(pred));
1232                                 kill_node(pred);
1233                                 reduce_adr_usage(ptr);
1234                                 return DF_CHANGED;
1235                         }
1236                 } else if (is_Load(pred) && get_Load_ptr(pred) == ptr &&
1237                            value == pred_info->projs[pn_Load_res]) {
1238                         /*
1239                          * a Store of a value just loaded from the same address
1240                          * -- a write after read.
1241                          * We may remove the Store, if it does not have an exception
1242                          * handler.
1243                          */
1244                         if (! info->projs[pn_Store_X_except]) {
1245                                 DBG_OPT_WAR(store, pred);
1246                                 exchange(info->projs[pn_Store_M], mem);
1247                                 kill_node(store);
1248                                 reduce_adr_usage(ptr);
1249                                 return DF_CHANGED;
1250                         }
1251                 }
1252
1253                 if (is_Store(pred)) {
1254                         /* check if we can pass thru this store */
1255                         ir_alias_relation rel = get_alias_relation(
1256                                 current_ir_graph,
1257                                 get_Store_ptr(pred),
1258                                 get_irn_mode(get_Store_value(pred)),
1259                                 ptr, mode);
1260                         /* if the might be an alias, we cannot pass this Store */
1261                         if (rel != ir_no_alias)
1262                                 break;
1263                         pred = skip_Proj(get_Store_mem(pred));
1264                 } else if (is_Load(pred)) {
1265                         ir_alias_relation rel = get_alias_relation(
1266                                 current_ir_graph, get_Load_ptr(pred), get_Load_mode(pred),
1267                                 ptr, mode);
1268                         if (rel != ir_no_alias)
1269                                 break;
1270
1271                         pred = skip_Proj(get_Load_mem(pred));
1272                 } else {
1273                         /* follow only Load chains */
1274                         break;
1275                 }
1276
1277                 /* check for cycles */
1278                 if (NODE_VISITED(pred_info))
1279                         break;
1280                 MARK_NODE(pred_info);
1281         }
1282
1283         if (is_Sync(pred)) {
1284                 int i;
1285
1286                 /* handle all Sync predecessors */
1287                 for (i = get_Sync_n_preds(pred) - 1; i >= 0; --i) {
1288                         res |= follow_Mem_chain_for_Store(store, skip_Proj(get_Sync_pred(pred, i)));
1289                         if (res)
1290                                 break;
1291                 }
1292         }
1293         return res;
1294 }  /* follow_Mem_chain_for_Store */
1295
1296 /**
1297  * optimize a Store
1298  *
1299  * @param store  the Store node
1300  */
1301 static unsigned optimize_store(ir_node *store) {
1302         ir_node *ptr, *mem;
1303
1304         if (get_Store_volatility(store) == volatility_is_volatile)
1305                 return 0;
1306
1307         ptr = get_Store_ptr(store);
1308
1309         /* Check, if the address of this Store is used more than once.
1310          * If not, this Store cannot be removed in any case. */
1311         if (get_irn_n_uses(ptr) <= 1)
1312                 return 0;
1313
1314         mem = get_Store_mem(store);
1315
1316         /* follow the memory chain as long as there are only Loads */
1317         INC_MASTER();
1318
1319         return follow_Mem_chain_for_Store(store, skip_Proj(mem));
1320 }  /* optimize_store */
1321
1322 /**
1323  * walker, optimizes Phi after Stores to identical places:
1324  * Does the following optimization:
1325  * @verbatim
1326  *
1327  *   val1   val2   val3          val1  val2  val3
1328  *    |      |      |               \    |    /
1329  *  Store  Store  Store              \   |   /
1330  *      \    |    /                   PhiData
1331  *       \   |   /                       |
1332  *        \  |  /                      Store
1333  *          PhiM
1334  *
1335  * @endverbatim
1336  * This reduces the number of stores and allows for predicated execution.
1337  * Moves Stores back to the end of a function which may be bad.
1338  *
1339  * This is only possible if the predecessor blocks have only one successor.
1340  */
1341 static unsigned optimize_phi(ir_node *phi, walk_env_t *wenv)
1342 {
1343         int i, n;
1344         ir_node *store, *old_store, *ptr, *block, *phi_block, *phiM, *phiD, *exc, *projM;
1345         ir_mode *mode;
1346         ir_node **inM, **inD, **projMs;
1347         int *idx;
1348         dbg_info *db = NULL;
1349         ldst_info_t *info;
1350         block_info_t *bl_info;
1351         unsigned res = 0;
1352
1353         /* Must be a memory Phi */
1354         if (get_irn_mode(phi) != mode_M)
1355                 return 0;
1356
1357         n = get_Phi_n_preds(phi);
1358         if (n <= 0)
1359                 return 0;
1360
1361         /* must be only one user */
1362         projM = get_Phi_pred(phi, 0);
1363         if (get_irn_n_edges(projM) != 1)
1364                 return 0;
1365
1366         store = skip_Proj(projM);
1367         old_store = store;
1368         if (!is_Store(store))
1369                 return 0;
1370
1371         block = get_nodes_block(store);
1372
1373         /* abort on dead blocks */
1374         if (is_Block_dead(block))
1375                 return 0;
1376
1377         /* check if the block is post dominated by Phi-block
1378            and has no exception exit */
1379         bl_info = get_irn_link(block);
1380         if (bl_info->flags & BLOCK_HAS_EXC)
1381                 return 0;
1382
1383         phi_block = get_nodes_block(phi);
1384         if (! block_strictly_postdominates(phi_block, block))
1385                 return 0;
1386
1387         /* this is the address of the store */
1388         ptr  = get_Store_ptr(store);
1389         mode = get_irn_mode(get_Store_value(store));
1390         info = get_irn_link(store);
1391         exc  = info->exc_block;
1392
1393         for (i = 1; i < n; ++i) {
1394                 ir_node *pred = get_Phi_pred(phi, i);
1395
1396                 if (get_irn_n_edges(pred) != 1)
1397                         return 0;
1398
1399                 pred = skip_Proj(pred);
1400                 if (!is_Store(pred))
1401                         return 0;
1402
1403                 if (ptr != get_Store_ptr(pred) || mode != get_irn_mode(get_Store_value(pred)))
1404                         return 0;
1405
1406                 info = get_irn_link(pred);
1407
1408                 /* check, if all stores have the same exception flow */
1409                 if (exc != info->exc_block)
1410                         return 0;
1411
1412                 /* abort on dead blocks */
1413                 block = get_nodes_block(pred);
1414                 if (is_Block_dead(block))
1415                         return 0;
1416
1417                 /* check if the block is post dominated by Phi-block
1418                    and has no exception exit. Note that block must be different from
1419                    Phi-block, else we would move a Store from end End of a block to its
1420                    Start... */
1421                 bl_info = get_irn_link(block);
1422                 if (bl_info->flags & BLOCK_HAS_EXC)
1423                         return 0;
1424                 if (block == phi_block || ! block_postdominates(phi_block, block))
1425                         return 0;
1426         }
1427
1428         /*
1429          * ok, when we are here, we found all predecessors of a Phi that
1430          * are Stores to the same address and size. That means whatever
1431          * we do before we enter the block of the Phi, we do a Store.
1432          * So, we can move the Store to the current block:
1433          *
1434          *   val1    val2    val3          val1  val2  val3
1435          *    |       |       |               \    |    /
1436          * | Str | | Str | | Str |             \   |   /
1437          *      \     |     /                   PhiData
1438          *       \    |    /                       |
1439          *        \   |   /                       Str
1440          *           PhiM
1441          *
1442          * Is only allowed if the predecessor blocks have only one successor.
1443          */
1444
1445         NEW_ARR_A(ir_node *, projMs, n);
1446         NEW_ARR_A(ir_node *, inM, n);
1447         NEW_ARR_A(ir_node *, inD, n);
1448         NEW_ARR_A(int, idx, n);
1449
1450         /* Prepare: Collect all Store nodes.  We must do this
1451            first because we otherwise may loose a store when exchanging its
1452            memory Proj.
1453          */
1454         for (i = n - 1; i >= 0; --i) {
1455                 ir_node *store;
1456
1457                 projMs[i] = get_Phi_pred(phi, i);
1458                 assert(is_Proj(projMs[i]));
1459
1460                 store = get_Proj_pred(projMs[i]);
1461                 info  = get_irn_link(store);
1462
1463                 inM[i] = get_Store_mem(store);
1464                 inD[i] = get_Store_value(store);
1465                 idx[i] = info->exc_idx;
1466         }
1467         block = get_nodes_block(phi);
1468
1469         /* second step: create a new memory Phi */
1470         phiM = new_rd_Phi(get_irn_dbg_info(phi), current_ir_graph, block, n, inM, mode_M);
1471
1472         /* third step: create a new data Phi */
1473         phiD = new_rd_Phi(get_irn_dbg_info(phi), current_ir_graph, block, n, inD, mode);
1474
1475         /* rewire memory and kill the node */
1476         for (i = n - 1; i >= 0; --i) {
1477                 ir_node *proj  = projMs[i];
1478
1479                 if(is_Proj(proj)) {
1480                         ir_node *store = get_Proj_pred(proj);
1481                         exchange(proj, inM[i]);
1482                         kill_node(store);
1483                 }
1484         }
1485
1486         /* fourth step: create the Store */
1487         store = new_rd_Store(db, current_ir_graph, block, phiM, ptr, phiD);
1488 #ifdef DO_CACHEOPT
1489         co_set_irn_name(store, co_get_irn_ident(old_store));
1490 #endif
1491
1492         projM = new_rd_Proj(NULL, current_ir_graph, block, store, mode_M, pn_Store_M);
1493
1494         info = get_ldst_info(store, &wenv->obst);
1495         info->projs[pn_Store_M] = projM;
1496
1497         /* fifths step: repair exception flow */
1498         if (exc) {
1499                 ir_node *projX = new_rd_Proj(NULL, current_ir_graph, block, store, mode_X, pn_Store_X_except);
1500
1501                 info->projs[pn_Store_X_except] = projX;
1502                 info->exc_block                = exc;
1503                 info->exc_idx                  = idx[0];
1504
1505                 for (i = 0; i < n; ++i) {
1506                         set_Block_cfgpred(exc, idx[i], projX);
1507                 }
1508
1509                 if (n > 1) {
1510                         /* the exception block should be optimized as some inputs are identical now */
1511                 }
1512
1513                 res |= CF_CHANGED;
1514         }
1515
1516         /* sixth step: replace old Phi */
1517         exchange(phi, projM);
1518
1519         return res | DF_CHANGED;
1520 }  /* optimize_phi */
1521
1522 /**
1523  * walker, do the optimizations
1524  */
1525 static void do_load_store_optimize(ir_node *n, void *env) {
1526         walk_env_t *wenv = env;
1527
1528         switch (get_irn_opcode(n)) {
1529
1530         case iro_Load:
1531                 wenv->changes |= optimize_load(n);
1532                 break;
1533
1534         case iro_Store:
1535                 wenv->changes |= optimize_store(n);
1536                 break;
1537
1538         case iro_Phi:
1539                 wenv->changes |= optimize_phi(n, wenv);
1540                 break;
1541
1542         default:
1543                 ;
1544         }
1545 }  /* do_load_store_optimize */
1546
1547 /** A scc. */
1548 typedef struct scc {
1549         ir_node *head;          /**< the head of the list */
1550 } scc;
1551
1552 /** A node entry. */
1553 typedef struct node_entry {
1554         unsigned DFSnum;    /**< the DFS number of this node */
1555         unsigned low;       /**< the low number of this node */
1556         ir_node  *header;   /**< the header of this node */
1557         int      in_stack;  /**< flag, set if the node is on the stack */
1558         ir_node  *next;     /**< link to the next node the the same scc */
1559         scc      *pscc;     /**< the scc of this node */
1560         unsigned POnum;     /**< the post order number for blocks */
1561 } node_entry;
1562
1563 /** A loop entry. */
1564 typedef struct loop_env {
1565         ir_phase ph;           /**< the phase object */
1566         ir_node  **stack;      /**< the node stack */
1567         int      tos;          /**< tos index */
1568         unsigned nextDFSnum;   /**< the current DFS number */
1569         unsigned POnum;        /**< current post order number */
1570
1571         unsigned changes;      /**< a bitmask of graph changes */
1572 } loop_env;
1573
1574 /**
1575 * Gets the node_entry of a node
1576 */
1577 static node_entry *get_irn_ne(ir_node *irn, loop_env *env) {
1578         ir_phase   *ph = &env->ph;
1579         node_entry *e  = phase_get_irn_data(&env->ph, irn);
1580
1581         if (! e) {
1582                 e = phase_alloc(ph, sizeof(*e));
1583                 memset(e, 0, sizeof(*e));
1584                 phase_set_irn_data(ph, irn, e);
1585         }
1586         return e;
1587 }  /* get_irn_ne */
1588
1589 /**
1590  * Push a node onto the stack.
1591  *
1592  * @param env   the loop environment
1593  * @param n     the node to push
1594  */
1595 static void push(loop_env *env, ir_node *n) {
1596         node_entry *e;
1597
1598         if (env->tos == ARR_LEN(env->stack)) {
1599                 int nlen = ARR_LEN(env->stack) * 2;
1600                 ARR_RESIZE(ir_node *, env->stack, nlen);
1601         }
1602         env->stack[env->tos++] = n;
1603         e = get_irn_ne(n, env);
1604         e->in_stack = 1;
1605 }  /* push */
1606
1607 /**
1608  * pop a node from the stack
1609  *
1610  * @param env   the loop environment
1611  *
1612  * @return  The topmost node
1613  */
1614 static ir_node *pop(loop_env *env) {
1615         ir_node *n = env->stack[--env->tos];
1616         node_entry *e = get_irn_ne(n, env);
1617
1618         e->in_stack = 0;
1619         return n;
1620 }  /* pop */
1621
1622 /**
1623  * Check if irn is a region constant.
1624  * The block or irn must strictly dominate the header block.
1625  *
1626  * @param irn           the node to check
1627  * @param header_block  the header block of the induction variable
1628  */
1629 static int is_rc(ir_node *irn, ir_node *header_block) {
1630         ir_node *block = get_nodes_block(irn);
1631
1632         return (block != header_block) && block_dominates(block, header_block);
1633 }  /* is_rc */
1634
1635 typedef struct phi_entry phi_entry;
1636 struct phi_entry {
1637         ir_node   *phi;    /**< A phi with a region const memory. */
1638         int       pos;     /**< The position of the region const memory */
1639         ir_node   *load;   /**< the newly created load for this phi */
1640         phi_entry *next;
1641 };
1642
1643 /**
1644  * Move loops out of loops if possible.
1645  *
1646  * @param pscc   the loop described by an SCC
1647  * @param env    the loop environment
1648  */
1649 static void move_loads_out_of_loops(scc *pscc, loop_env *env) {
1650         ir_node   *phi, *load, *next, *other, *next_other;
1651         ir_entity *ent;
1652         int       j;
1653         phi_entry *phi_list = NULL;
1654
1655         /* collect all outer memories */
1656         for (phi = pscc->head; phi != NULL; phi = next) {
1657                 node_entry *ne = get_irn_ne(phi, env);
1658                 next = ne->next;
1659
1660                 /* check all memory Phi's */
1661                 if (! is_Phi(phi))
1662                         continue;
1663
1664                 assert(get_irn_mode(phi) == mode_M && "DFS geturn non-memory Phi");
1665
1666                 for (j = get_irn_arity(phi) - 1; j >= 0; --j) {
1667                         ir_node    *pred = get_irn_n(phi, j);
1668                         node_entry *pe   = get_irn_ne(pred, env);
1669
1670                         if (pe->pscc != ne->pscc) {
1671                                 /* not in the same SCC, is region const */
1672                                 phi_entry *pe = phase_alloc(&env->ph, sizeof(*pe));
1673
1674                                 pe->phi  = phi;
1675                                 pe->pos  = j;
1676                                 pe->next = phi_list;
1677                                 phi_list = pe;
1678                         }
1679                 }
1680         }
1681         /* no Phis no fun */
1682         assert(phi_list != NULL && "DFS found a loop without Phi");
1683
1684         for (load = pscc->head; load; load = next) {
1685                 ir_mode *load_mode;
1686                 node_entry *ne = get_irn_ne(load, env);
1687                 next = ne->next;
1688
1689                 if (is_Load(load)) {
1690                         ldst_info_t *info = get_irn_link(load);
1691                         ir_node     *ptr = get_Load_ptr(load);
1692
1693                         /* for now, we cannot handle Loads with exceptions */
1694                         if (info->projs[pn_Load_res] == NULL || info->projs[pn_Load_X_regular] != NULL || info->projs[pn_Load_X_except] != NULL)
1695                                 continue;
1696
1697                         /* for now, we can only handle Load(Global) */
1698                         if (! is_Global(ptr))
1699                                 continue;
1700                         ent = get_Global_entity(ptr);
1701                         load_mode = get_Load_mode(load);
1702                         for (other = pscc->head; other != NULL; other = next_other) {
1703                                 node_entry *ne = get_irn_ne(other, env);
1704                                 next_other = ne->next;
1705
1706                                 if (is_Store(other)) {
1707                                         ir_alias_relation rel = get_alias_relation(
1708                                                 current_ir_graph,
1709                                                 get_Store_ptr(other),
1710                                                 get_irn_mode(get_Store_value(other)),
1711                                                 ptr, load_mode);
1712                                         /* if the might be an alias, we cannot pass this Store */
1713                                         if (rel != ir_no_alias)
1714                                                 break;
1715                                 }
1716                                 /* only pure Calls are allowed here, so ignore them */
1717                         }
1718                         if (other == NULL) {
1719                                 ldst_info_t *ninfo;
1720                                 phi_entry   *pe;
1721                                 dbg_info    *db;
1722
1723                                 /* for now, we cannot handle more than one input */
1724                                 if (phi_list->next != NULL)
1725                                         return;
1726
1727                                 /* yep, no aliasing Store found, Load can be moved */
1728                                 DB((dbg, LEVEL_1, "  Found a Load that could be moved: %+F\n", load));
1729
1730                                 db   = get_irn_dbg_info(load);
1731                                 for (pe = phi_list; pe != NULL; pe = pe->next) {
1732                                         int     pos   = pe->pos;
1733                                         ir_node *phi  = pe->phi;
1734                                         ir_node *blk  = get_nodes_block(phi);
1735                                         ir_node *pred = get_Block_cfgpred_block(blk, pos);
1736                                         ir_node *irn, *mem;
1737
1738                                         pe->load = irn = new_rd_Load(db, current_ir_graph, pred, get_Phi_pred(phi, pos), ptr, load_mode);
1739                                         ninfo = get_ldst_info(irn, phase_obst(&env->ph));
1740
1741                                         ninfo->projs[pn_Load_M] = mem = new_r_Proj(current_ir_graph, pred, irn, mode_M, pn_Load_M);
1742                                         set_Phi_pred(phi, pos, mem);
1743
1744                                         ninfo->projs[pn_Load_res] = new_r_Proj(current_ir_graph, pred, irn, load_mode, pn_Load_res);
1745
1746                                         DB((dbg, LEVEL_1, "  Created %+F in %+F\n", irn, pred));
1747                                 }
1748
1749                                 /* now kill the old Load */
1750                                 exchange(info->projs[pn_Load_M], get_Load_mem(load));
1751                                 exchange(info->projs[pn_Load_res], ninfo->projs[pn_Load_res]);
1752
1753                                 env->changes |= DF_CHANGED;
1754                         }
1755                 }
1756         }
1757 }  /* move_loads_out_of_loops */
1758
1759 /**
1760  * Process a loop SCC.
1761  *
1762  * @param pscc  the SCC
1763  * @param env   the loop environment
1764  */
1765 static void process_loop(scc *pscc, loop_env *env) {
1766         ir_node *irn, *next, *header = NULL;
1767         node_entry *b, *h = NULL;
1768         int j, only_phi, num_outside, process = 0;
1769         ir_node *out_rc;
1770
1771         /* find the header block for this scc */
1772         for (irn = pscc->head; irn; irn = next) {
1773                 node_entry *e = get_irn_ne(irn, env);
1774                 ir_node *block = get_nodes_block(irn);
1775
1776                 next = e->next;
1777                 b = get_irn_ne(block, env);
1778
1779                 if (header) {
1780                         if (h->POnum < b->POnum) {
1781                                 header = block;
1782                                 h      = b;
1783                         }
1784                 }
1785                 else {
1786                         header = block;
1787                         h      = b;
1788                 }
1789         }
1790
1791         /* check if this scc contains only Phi, Loads or Stores nodes */
1792         only_phi    = 1;
1793         num_outside = 0;
1794         out_rc      = NULL;
1795         for (irn = pscc->head; irn; irn = next) {
1796                 node_entry *e = get_irn_ne(irn, env);
1797
1798                 next = e->next;
1799                 switch (get_irn_opcode(irn)) {
1800                 case iro_Call:
1801                         if (is_Call_pure(irn)) {
1802                                 /* pure calls can be treated like loads */
1803                                 only_phi = 0;
1804                                 break;
1805                         }
1806                         /* non-pure calls must be handle like may-alias Stores */
1807                         goto fail;
1808                 case iro_CopyB:
1809                         /* cannot handle CopyB yet */
1810                         goto fail;
1811                 case iro_Load:
1812                         process = 1;
1813                         if (get_Load_volatility(irn) == volatility_is_volatile) {
1814                                 /* cannot handle loops with volatile Loads */
1815                                 goto fail;
1816                         }
1817                         only_phi = 0;
1818                         break;
1819                 case iro_Store:
1820                         if (get_Store_volatility(irn) == volatility_is_volatile) {
1821                                 /* cannot handle loops with volatile Stores */
1822                                 goto fail;
1823                         }
1824                         only_phi = 0;
1825                         break;
1826                 default:
1827                         only_phi = 0;
1828                         break;
1829                 case iro_Phi:
1830                         for (j = get_irn_arity(irn) - 1; j >= 0; --j) {
1831                                 ir_node *pred  = get_irn_n(irn, j);
1832                                 node_entry *pe = get_irn_ne(pred, env);
1833
1834                                 if (pe->pscc != e->pscc) {
1835                                         /* not in the same SCC, must be a region const */
1836                                         if (! is_rc(pred, header)) {
1837                                                 /* not a memory loop */
1838                                                 goto fail;
1839                                         }
1840                                         if (! out_rc) {
1841                                                 out_rc = pred;
1842                                                 ++num_outside;
1843                                         } else if (out_rc != pred) {
1844                                                 ++num_outside;
1845                                         }
1846                                 }
1847                         }
1848                         break;
1849                 }
1850         }
1851         if (! process)
1852                 goto fail;
1853
1854         /* found a memory loop */
1855         DB((dbg, LEVEL_2, "  Found a memory loop:\n  "));
1856         if (only_phi && num_outside == 1) {
1857                 /* a phi cycle with only one real predecessor can be collapsed */
1858                 DB((dbg, LEVEL_2, "  Found an USELESS Phi cycle:\n  "));
1859
1860                 for (irn = pscc->head; irn; irn = next) {
1861                         node_entry *e = get_irn_ne(irn, env);
1862                         next = e->next;
1863                         e->header = NULL;
1864                         exchange(irn, out_rc);
1865                 }
1866                 env->changes |= DF_CHANGED;
1867                 return;
1868         }
1869
1870         /* set the header for every node in this scc */
1871         for (irn = pscc->head; irn; irn = next) {
1872                 node_entry *e = get_irn_ne(irn, env);
1873                 e->header = header;
1874                 next = e->next;
1875                 DB((dbg, LEVEL_2, " %+F,", irn));
1876         }
1877         DB((dbg, LEVEL_2, "\n"));
1878
1879         move_loads_out_of_loops(pscc, env);
1880
1881 fail:
1882         ;
1883 }  /* process_loop */
1884
1885 /**
1886  * Process a SCC.
1887  *
1888  * @param pscc  the SCC
1889  * @param env   the loop environment
1890  */
1891 static void process_scc(scc *pscc, loop_env *env) {
1892         ir_node *head = pscc->head;
1893         node_entry *e = get_irn_ne(head, env);
1894
1895 #ifdef DEBUG_libfirm
1896         {
1897                 ir_node *irn, *next;
1898
1899                 DB((dbg, LEVEL_4, " SCC at %p:\n ", pscc));
1900                 for (irn = pscc->head; irn; irn = next) {
1901                         node_entry *e = get_irn_ne(irn, env);
1902
1903                         next = e->next;
1904
1905                         DB((dbg, LEVEL_4, " %+F,", irn));
1906                 }
1907                 DB((dbg, LEVEL_4, "\n"));
1908         }
1909 #endif
1910
1911         if (e->next != NULL) {
1912                 /* this SCC has more than one member */
1913                 process_loop(pscc, env);
1914         }
1915 }  /* process_scc */
1916
1917 /**
1918  * Do Tarjan's SCC algorithm and drive load/store optimization.
1919  *
1920  * @param irn  start at this node
1921  * @param env  the loop environment
1922  */
1923 static void dfs(ir_node *irn, loop_env *env)
1924 {
1925         int i, n;
1926         node_entry *node = get_irn_ne(irn, env);
1927
1928         mark_irn_visited(irn);
1929
1930         node->DFSnum = env->nextDFSnum++;
1931         node->low    = node->DFSnum;
1932         push(env, irn);
1933
1934         /* handle preds */
1935         if (is_Phi(irn) || is_Sync(irn)) {
1936                 n = get_irn_arity(irn);
1937                 for (i = 0; i < n; ++i) {
1938                         ir_node *pred = get_irn_n(irn, i);
1939                         node_entry *o = get_irn_ne(pred, env);
1940
1941                         if (irn_not_visited(pred)) {
1942                                 dfs(pred, env);
1943                                 node->low = MIN(node->low, o->low);
1944                         }
1945                         if (o->DFSnum < node->DFSnum && o->in_stack)
1946                                 node->low = MIN(o->DFSnum, node->low);
1947                 }
1948         } else if (is_fragile_op(irn)) {
1949                 ir_node *pred = get_fragile_op_mem(irn);
1950                 node_entry *o = get_irn_ne(pred, env);
1951
1952                 if (irn_not_visited(pred)) {
1953                         dfs(pred, env);
1954                         node->low = MIN(node->low, o->low);
1955                 }
1956                 if (o->DFSnum < node->DFSnum && o->in_stack)
1957                         node->low = MIN(o->DFSnum, node->low);
1958         } else if (is_Proj(irn)) {
1959                 ir_node *pred = get_Proj_pred(irn);
1960                 node_entry *o = get_irn_ne(pred, env);
1961
1962                 if (irn_not_visited(pred)) {
1963                         dfs(pred, env);
1964                         node->low = MIN(node->low, o->low);
1965                 }
1966                 if (o->DFSnum < node->DFSnum && o->in_stack)
1967                         node->low = MIN(o->DFSnum, node->low);
1968         }
1969         else {
1970                  /* IGNORE predecessors */
1971         }
1972
1973         if (node->low == node->DFSnum) {
1974                 scc *pscc = phase_alloc(&env->ph, sizeof(*pscc));
1975                 ir_node *x;
1976
1977                 pscc->head = NULL;
1978                 do {
1979                         node_entry *e;
1980
1981                         x = pop(env);
1982                         e = get_irn_ne(x, env);
1983                         e->pscc    = pscc;
1984                         e->next    = pscc->head;
1985                         pscc->head = x;
1986                 } while (x != irn);
1987
1988                 process_scc(pscc, env);
1989         }
1990 }  /* dfs */
1991
1992 /**
1993  * Do the DFS on the memory edges a graph.
1994  *
1995  * @param irg  the graph to process
1996  * @param env  the loop environment
1997  */
1998 static void do_dfs(ir_graph *irg, loop_env *env) {
1999         ir_graph *rem = current_ir_graph;
2000         ir_node  *endblk, *end;
2001         int      i;
2002
2003         current_ir_graph = irg;
2004         inc_irg_visited(irg);
2005
2006         /* visit all memory nodes */
2007         endblk = get_irg_end_block(irg);
2008         for (i = get_Block_n_cfgpreds(endblk) - 1; i >= 0; --i) {
2009                 ir_node *pred = get_Block_cfgpred(endblk, i);
2010
2011                 pred = skip_Proj(pred);
2012                 if (is_Return(pred))
2013                         dfs(get_Return_mem(pred), env);
2014                 else if (is_Raise(pred))
2015                         dfs(get_Raise_mem(pred), env);
2016                 else if (is_fragile_op(pred))
2017                         dfs(get_fragile_op_mem(pred), env);
2018                 else {
2019                         assert(0 && "Unknown EndBlock predecessor");
2020                 }
2021         }
2022
2023         /* visit the keep-alives */
2024         end = get_irg_end(irg);
2025         for (i = get_End_n_keepalives(end) - 1; i >= 0; --i) {
2026                 ir_node *ka = get_End_keepalive(end, i);
2027
2028                 if (is_Phi(ka) && irn_not_visited(ka))
2029                         dfs(ka, env);
2030         }
2031         current_ir_graph = rem;
2032 }  /* do_dfs */
2033
2034 /**
2035  * Initialize new phase data. We do this always explicit, so return NULL here
2036  */
2037 static void *init_loop_data(ir_phase *ph, const ir_node *irn, void *data) {
2038         (void)ph;
2039         (void)irn;
2040         (void)data;
2041         return NULL;
2042 }  /* init_loop_data */
2043
2044 /**
2045  * Optimize Loads/Stores in loops.
2046  *
2047  * @param irg  the graph
2048  */
2049 static int optimize_loops(ir_graph *irg) {
2050         loop_env env;
2051
2052         env.stack         = NEW_ARR_F(ir_node *, 128);
2053         env.tos           = 0;
2054         env.nextDFSnum    = 0;
2055         env.POnum         = 0;
2056         env.changes       = 0;
2057         phase_init(&env.ph, "ldstopt", irg, PHASE_DEFAULT_GROWTH, init_loop_data, NULL);
2058
2059         /* calculate the SCC's and drive loop optimization. */
2060         do_dfs(irg, &env);
2061
2062         DEL_ARR_F(env.stack);
2063         phase_free(&env.ph);
2064
2065         return env.changes;
2066 }  /* optimize_loops */
2067
2068 /*
2069  * do the load store optimization
2070  */
2071 void optimize_load_store(ir_graph *irg) {
2072         walk_env_t env;
2073
2074         FIRM_DBG_REGISTER(dbg, "firm.opt.ldstopt");
2075
2076         assert(get_irg_phase_state(irg) != phase_building);
2077         assert(get_irg_pinned(irg) != op_pin_state_floats &&
2078                 "LoadStore optimization needs pinned graph");
2079
2080         /* we need landing pads */
2081         remove_critical_cf_edges(irg);
2082
2083         edges_assure(irg);
2084
2085         /* for Phi optimization post-dominators are needed ... */
2086         assure_postdoms(irg);
2087
2088         if (get_opt_alias_analysis()) {
2089                 assure_irg_address_taken_computed(irg);
2090                 assure_irp_globals_address_taken_computed();
2091         }
2092
2093         obstack_init(&env.obst);
2094         env.changes = 0;
2095
2096         /* init the links, then collect Loads/Stores/Proj's in lists */
2097         master_visited = 0;
2098         irg_walk_graph(irg, firm_clear_link, collect_nodes, &env);
2099
2100         /* now we have collected enough information, optimize */
2101         irg_walk_graph(irg, NULL, do_load_store_optimize, &env);
2102
2103         env.changes |= optimize_loops(irg);
2104
2105         obstack_free(&env.obst, NULL);
2106
2107         /* Handle graph state */
2108         if (env.changes) {
2109                 set_irg_outs_inconsistent(irg);
2110         }
2111
2112         if (env.changes & CF_CHANGED) {
2113                 /* is this really needed: Yes, control flow changed, block might
2114                 have Bad() predecessors. */
2115                 set_irg_doms_inconsistent(irg);
2116         }
2117 }  /* optimize_load_store */