fixed some bugs
[libfirm] / ir / be / ia32 / ia32_optimize.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #include "irnode.h"
6 #include "irprog_t.h"
7 #include "ircons.h"
8 #include "firm_types.h"
9 #include "iredges.h"
10 #include "tv.h"
11 #include "irgmod.h"
12
13 #include "../be_t.h"
14 #include "../beabi.h"
15
16 #include "ia32_new_nodes.h"
17 #include "bearch_ia32_t.h"
18 #include "gen_ia32_regalloc_if.h"     /* the generated interface (register type and class defenitions) */
19
20 #undef is_NoMem
21 #define is_NoMem(irn) (get_irn_op(irn) == op_NoMem)
22
23 static int be_is_NoReg(be_abi_irg_t *babi, const ir_node *irn) {
24         if (be_abi_get_callee_save_irn(babi, &ia32_gp_regs[REG_XXX]) == irn ||
25                 be_abi_get_callee_save_irn(babi, &ia32_fp_regs[REG_XXXX]) == irn)
26         {
27                 return 1;
28         }
29
30         return 0;
31 }
32
33 /**
34  * creates a unique ident by adding a number to a tag
35  *
36  * @param tag   the tag string, must contain a %d if a number
37  *              should be added
38  */
39 static ident *unique_id(const char *tag)
40 {
41         static unsigned id = 0;
42         char str[256];
43
44         snprintf(str, sizeof(str), tag, ++id);
45         return new_id_from_str(str);
46 }
47
48
49
50 /**
51  * Transforms a SymConst.
52  *
53  * @param mod     the debug module
54  * @param block   the block the new node should belong to
55  * @param node    the ir SymConst node
56  * @param mode    mode of the SymConst
57  * @return the created ia32 Const node
58  */
59 static ir_node *gen_SymConst(ia32_transform_env_t *env) {
60         ir_node  *cnst;
61         dbg_info *dbg   = env->dbg;
62         ir_mode  *mode  = env->mode;
63         ir_graph *irg   = env->irg;
64         ir_node  *block = env->block;
65
66         cnst = new_rd_ia32_Const(dbg, irg, block, mode);
67         set_ia32_Const_attr(cnst, env->irn);
68         return cnst;
69 }
70
71 /**
72  * Get a primitive type for a mode.
73  */
74 static ir_type *get_prim_type(pmap *types, ir_mode *mode)
75 {
76         pmap_entry *e = pmap_find(types, mode);
77         ir_type *res;
78
79         if (! e) {
80                 char buf[64];
81                 snprintf(buf, sizeof(buf), "prim_type_%s", get_mode_name(mode));
82                 res = new_type_primitive(new_id_from_str(buf), mode);
83                 pmap_insert(types, mode, res);
84         }
85         else
86                 res = e->value;
87         return res;
88 }
89
90 /**
91  * Get an entity that is initialized with a tarval
92  */
93 static entity *get_entity_for_tv(ia32_code_gen_t *cg, ir_node *cnst)
94 {
95         tarval *tv    = get_Const_tarval(cnst);
96         pmap_entry *e = pmap_find(cg->tv_ent, tv);
97         entity *res;
98         ir_graph *rem;
99
100         if (! e) {
101                 ir_mode *mode = get_irn_mode(cnst);
102                 ir_type *tp = get_Const_type(cnst);
103                 if (tp == firm_unknown_type)
104                         tp = get_prim_type(cg->types, mode);
105
106                 res = new_entity(get_glob_type(), unique_id("ia32FloatCnst_%u"), tp);
107
108                 set_entity_ld_ident(res, get_entity_ident(res));
109                 set_entity_visibility(res, visibility_local);
110                 set_entity_variability(res, variability_constant);
111                 set_entity_allocation(res, allocation_static);
112
113                  /* we create a new entity here: It's initialization must resist on the
114                     const code irg */
115                 rem = current_ir_graph;
116                 current_ir_graph = get_const_code_irg();
117                 set_atomic_ent_value(res, new_Const_type(tv, tp));
118                 current_ir_graph = rem;
119         }
120         else
121                 res = e->value;
122         return res;
123 }
124
125 /**
126  * Transforms a Const.
127  *
128  * @param mod     the debug module
129  * @param block   the block the new node should belong to
130  * @param node    the ir Const node
131  * @param mode    mode of the Const
132  * @return the created ia32 Const node
133  */
134 static ir_node *gen_Const(ia32_transform_env_t *env) {
135         ir_node *cnst;
136         symconst_symbol sym;
137         ir_graph *irg   = env->irg;
138         ir_node  *block = env->block;
139         ir_node  *node  = env->irn;
140         dbg_info *dbg   = env->dbg;
141         ir_mode  *mode  = env->mode;
142
143         if (mode_is_float(mode)) {
144                 sym.entity_p = get_entity_for_tv(env->cg, node);
145
146                 cnst = new_rd_SymConst(dbg, irg, block, sym, symconst_addr_ent);
147                 env->irn = cnst;
148                 cnst = gen_SymConst(env);
149         }
150         else {
151                 cnst = new_rd_ia32_Const(dbg, irg, block, get_irn_mode(node));
152                 set_ia32_Const_attr(cnst, node);
153         }
154         return cnst;
155 }
156
157
158
159 /**
160  * Transforms (all) Const's into ia32_Const and places them in the
161  * block where they are used (or in the cfg-pred Block in case of Phi's)
162  */
163 void ia32_place_consts(ir_node *irn, void *env) {
164         ia32_code_gen_t      *cg = env;
165         ia32_transform_env_t  tenv;
166         ir_mode              *mode;
167         ir_node              *pred, *cnst;
168         int                   i;
169         opcode                opc;
170
171         if (is_Block(irn))
172                 return;
173
174         mode = get_irn_mode(irn);
175
176         tenv.block    = get_nodes_block(irn);
177         tenv.cg       = cg;
178         tenv.irg      = cg->irg;
179         tenv.mod      = cg->mod;
180
181         /* Loop over all predecessors and check for Sym/Const nodes */
182         for (i = get_irn_arity(irn) - 1; i >= 0; --i) {
183                 pred      = get_irn_n(irn, i);
184                 cnst      = NULL;
185                 opc       = get_irn_opcode(pred);
186                 tenv.irn  = pred;
187                 tenv.mode = get_irn_mode(pred);
188                 tenv.dbg  = get_irn_dbg_info(pred);
189
190                 /* If it's a Phi, then we need to create the */
191                 /* new Const in it's predecessor block       */
192                 if (is_Phi(irn)) {
193                         tenv.block = get_Block_cfgpred_block(get_nodes_block(irn), i);
194                 }
195
196                 /* put the const into the block where the original const was */
197                 if (! cg->opt.placecnst) {
198                         tenv.block = get_nodes_block(pred);
199                 }
200
201                 switch (opc) {
202                         case iro_Const:
203                                 cnst = gen_Const(&tenv);
204                                 break;
205                         case iro_SymConst:
206                                 cnst = gen_SymConst(&tenv);
207                                 break;
208                         default:
209                                 break;
210                 }
211
212                 /* if we found a const, then set it */
213                 if (cnst) {
214                         set_irn_n(irn, i, cnst);
215                 }
216         }
217 }
218
219
220 /******************************************************************
221  *              _     _                   __  __           _
222  *     /\      | |   | |                 |  \/  |         | |
223  *    /  \   __| | __| |_ __ ___  ___ ___| \  / | ___   __| | ___
224  *   / /\ \ / _` |/ _` | '__/ _ \/ __/ __| |\/| |/ _ \ / _` |/ _ \
225  *  / ____ \ (_| | (_| | | |  __/\__ \__ \ |  | | (_) | (_| |  __/
226  * /_/    \_\__,_|\__,_|_|  \___||___/___/_|  |_|\___/ \__,_|\___|
227  *
228  ******************************************************************/
229
230 static int node_is_comm(const ir_node *irn) {
231         return is_ia32_irn(irn) ? is_ia32_commutative(irn) : 0;
232 }
233
234 static int ia32_get_irn_n_edges(const ir_node *irn) {
235         const ir_edge_t *edge;
236         int cnt = 0;
237
238         foreach_out_edge(irn, edge) {
239                 cnt++;
240         }
241
242         return cnt;
243 }
244
245 /**
246  * Returns the first mode_M Proj connected to irn.
247  */
248 static ir_node *get_mem_proj(const ir_node *irn) {
249         const ir_edge_t *edge;
250         ir_node         *src;
251
252         assert(get_irn_mode(irn) == mode_T && "expected mode_T node");
253
254         foreach_out_edge(irn, edge) {
255                 src = get_edge_src_irn(edge);
256
257                 assert(is_Proj(src) && "Proj expected");
258
259                 if (get_irn_mode(src) == mode_M)
260                         return src;
261         }
262
263         return NULL;
264 }
265
266 /**
267  * Returns the Proj with number 0 connected to irn.
268  */
269 static ir_node *get_res_proj(const ir_node *irn) {
270         const ir_edge_t *edge;
271         ir_node         *src;
272
273         assert(get_irn_mode(irn) == mode_T && "expected mode_T node");
274
275         foreach_out_edge(irn, edge) {
276                 src = get_edge_src_irn(edge);
277
278                 assert(is_Proj(src) && "Proj expected");
279
280                 if (get_Proj_proj(src) == 0)
281                         return src;
282         }
283
284         return NULL;
285 }
286
287 /**
288  * Determines if pred is a Proj and if is_op_func returns true for it's predecessor.
289  *
290  * @param pred       The node to be checked
291  * @param is_op_func The check-function
292  * @return 1 if conditions are fulfilled, 0 otherwise
293  */
294 static int pred_is_specific_node(const ir_node *pred, int (*is_op_func)(const ir_node *n)) {
295         if (is_Proj(pred) && is_op_func(get_Proj_pred(pred))) {
296                 return 1;
297         }
298
299         return 0;
300 }
301
302 /**
303  * Determines if pred is a Proj and if is_op_func returns true for it's predecessor
304  * and if the predecessor is in block bl.
305  *
306  * @param bl         The block
307  * @param pred       The node to be checked
308  * @param is_op_func The check-function
309  * @return 1 if conditions are fulfilled, 0 otherwise
310  */
311 static int pred_is_specific_nodeblock(const ir_node *bl, const ir_node *pred,
312         int (*is_op_func)(const ir_node *n))
313 {
314         if (is_Proj(pred)) {
315                 pred = get_Proj_pred(pred);
316                 if ((bl == get_nodes_block(pred)) && is_op_func(pred)) {
317                         return 1;
318                 }
319         }
320
321         return 0;
322 }
323
324 /**
325  * Checks if irn is a candidate for address calculation or address mode.
326  *
327  * address calculation (AC):
328  * - none of the operand must be a Load  within the same block OR
329  * - all Loads must have more than one user                    OR
330  * - the irn has a frame entity (it's a former FrameAddr)
331  *
332  * address mode (AM):
333  * - at least one operand has to be a Load within the same block AND
334  * - the load must not have other users than the irn             AND
335  * - the irn must not have a frame entity set
336  *
337  * @param block       The block the Loads must/not be in
338  * @param irn         The irn to check
339  * @param check_addr  1 if to check for address calculation, 0 otherwise
340  * return 1 if irn is a candidate for AC or AM, 0 otherwise
341  */
342 static int is_candidate(const ir_node *block, const ir_node *irn, int check_addr) {
343         ir_node *load_proj;
344         int      n, is_cand = check_addr;
345
346         if (pred_is_specific_nodeblock(block, get_irn_n(irn, 2), is_ia32_Load)) {
347                 load_proj = get_irn_n(irn, 2);
348                 n         = ia32_get_irn_n_edges(load_proj);
349                 is_cand   = check_addr ? (n == 1 ? 0 : is_cand) : (n == 1 ? 1 : is_cand);
350         }
351
352         if (pred_is_specific_nodeblock(block, get_irn_n(irn, 3), is_ia32_Load)) {
353                 load_proj = get_irn_n(irn, 3);
354                 n         = ia32_get_irn_n_edges(load_proj);
355                 is_cand   = check_addr ? (n == 1 ? 0 : is_cand) : (n == 1 ? 1 : is_cand);
356         }
357
358         is_cand = get_ia32_frame_ent(irn) ? (check_addr ? 1 : 0) : (check_addr ? 0 : 1);
359
360         return is_cand;
361 }
362
363 /**
364  * Compares the base and index addr and the load/store entities
365  * and returns 1 if they are equal.
366  */
367 static int load_store_addr_is_equal(const ir_node *load, const ir_node *store,
368                                                                         const ir_node *addr_b, const ir_node *addr_i)
369 {
370         int     is_equal = (addr_b == get_irn_n(load, 0)) && (addr_i == get_irn_n(load, 1));
371         entity *lent     = get_ia32_frame_ent(load);
372         entity *sent     = get_ia32_frame_ent(store);
373
374         /* are both entities set and equal? */
375         is_equal = (lent && sent && (lent == sent)) ? 1 : is_equal;
376
377         return is_equal;
378 }
379
380 /**
381  * Folds Add or Sub to LEA if possible
382  */
383 static ir_node *fold_addr(be_abi_irg_t *babi, ir_node *irn, firm_dbg_module_t *mod, ir_node *noreg) {
384         ir_graph *irg       = get_irn_irg(irn);
385         ir_mode  *mode      = get_irn_mode(irn);
386         dbg_info *dbg       = get_irn_dbg_info(irn);
387         ir_node  *block     = get_nodes_block(irn);
388         ir_node  *res       = irn;
389         char     *offs      = NULL;
390         char     *offs_cnst = NULL;
391         char     *offs_lea  = NULL;
392         int       scale     = 0;
393         int       isadd     = 0;
394         int       dolea     = 0;
395         ir_node  *left, *right, *temp;
396         ir_node  *base, *index;
397         ia32_am_flavour_t am_flav;
398
399         if (is_ia32_Add(irn))
400                 isadd = 1;
401
402         left  = get_irn_n(irn, 2);
403         right = get_irn_n(irn, 3);
404
405         base    = left;
406         index   = noreg;
407         offs    = NULL;
408         scale   = 0;
409         am_flav = 0;
410
411         /* "normalize" arguments in case of add with two operands */
412         if  (isadd && ! be_is_NoReg(babi, right)) {
413                 /* put LEA == ia32_am_O as right operand */
414                 if (is_ia32_Lea(left) && get_ia32_am_flavour(left) == ia32_am_O) {
415                         set_irn_n(irn, 2, right);
416                         set_irn_n(irn, 3, left);
417                         temp  = left;
418                         left  = right;
419                         right = temp;
420                 }
421
422                 /* put LEA != ia32_am_O as left operand */
423                 if (is_ia32_Lea(right) && get_ia32_am_flavour(right) != ia32_am_O) {
424                         set_irn_n(irn, 2, right);
425                         set_irn_n(irn, 3, left);
426                         temp  = left;
427                         left  = right;
428                         right = temp;
429                 }
430
431                 /* put SHL as left operand iff left is NOT a LEA */
432                 if (! is_ia32_Lea(left) && pred_is_specific_node(right, is_ia32_Shl)) {
433                         set_irn_n(irn, 2, right);
434                         set_irn_n(irn, 3, left);
435                         temp  = left;
436                         left  = right;
437                         right = temp;
438                 }
439         }
440
441         /* check if operand is either const */
442         if (get_ia32_cnst(irn)) {
443                 DBG((mod, LEVEL_1, "\tfound op with imm"));
444
445                 offs_cnst = get_ia32_cnst(irn);
446                 dolea     = 1;
447         }
448
449         /* determine the operand which needs to be checked */
450         if (be_is_NoReg(babi, right)) {
451                 temp = left;
452         }
453         else {
454                 temp = right;
455         }
456
457         /* check if right operand is AMConst (LEA with ia32_am_O) */
458         if (is_ia32_Lea(temp) && get_ia32_am_flavour(temp) == ia32_am_O) {
459                 DBG((mod, LEVEL_1, "\tgot op with LEA am_O"));
460
461                 offs_lea = get_ia32_am_offs(temp);
462                 dolea    = 1;
463         }
464
465         if (isadd) {
466                 /* default for add -> make right operand to index */
467                 index = right;
468                 dolea = 1;
469
470                 DBG((mod, LEVEL_1, "\tgot LEA candidate with index %+F\n", index));
471
472                 /* determine the operand which needs to be checked */
473                 temp = left;
474                 if (is_ia32_Lea(left)) {
475                         temp = right;
476                 }
477
478                 /* check for SHL 1,2,3 */
479                 if (pred_is_specific_node(temp, is_ia32_Shl)) {
480                         temp = get_Proj_pred(temp);
481
482                         if (get_ia32_Immop_tarval(temp)) {
483                                 scale = get_tarval_long(get_ia32_Immop_tarval(temp));
484
485                                 if (scale <= 3) {
486                                         index = get_irn_n(temp, 2);
487
488                                         DBG((mod, LEVEL_1, "\tgot scaled index %+F\n", index));
489                                 }
490                         }
491                 }
492
493                 /* fix base */
494                 if (! be_is_NoReg(babi, index)) {
495                         /* if we have index, but left == right -> no base */
496                         if (left == right) {
497                                 base = noreg;
498                         }
499                         else if (! is_ia32_Lea(left) && (index != right)) {
500                                 /* index != right -> we found a good Shl           */
501                                 /* left  != LEA   -> this Shl was the left operand */
502                                 /* -> base is right operand                        */
503                                 base = right;
504                         }
505                 }
506         }
507
508         /* Try to assimilate a LEA as left operand */
509         if (is_ia32_Lea(left) && (get_ia32_am_flavour(left) != ia32_am_O)) {
510                 am_flav = get_ia32_am_flavour(left);
511
512                 /* If we have an Add with a real right operand (not NoReg) and  */
513                 /* the LEA contains already an index calculation then we create */
514                 /* a new LEA.                                                   */
515                 /* If the LEA contains already a frame_entity then we also      */
516                 /* create a new one  otherwise we would loose it.               */
517                 if (isadd && ((!be_is_NoReg(babi, index) && (am_flav & ia32_am_I)) || get_ia32_frame_ent(left))) {
518                         DBG((mod, LEVEL_1, "\tleave old LEA, creating new one\n"));
519                 }
520                 else {
521                         DBG((mod, LEVEL_1, "\tgot LEA as left operand ... assimilating\n"));
522                         offs  = get_ia32_am_offs(left);
523                         base  = get_irn_n(left, 0);
524                         index = get_irn_n(left, 1);
525                         scale = get_ia32_am_scale(left);
526                 }
527         }
528
529         /* ok, we can create a new LEA */
530         if (dolea) {
531                 res = new_rd_ia32_Lea(dbg, irg, block, base, index, mode_Is);
532
533                 /* add the old offset of a previous LEA */
534                 if (offs) {
535                         add_ia32_am_offs(res, offs);
536                 }
537
538                 /* add the new offset */
539                 if (isadd) {
540                         if (offs_cnst) {
541                                 add_ia32_am_offs(res, offs_cnst);
542                         }
543                         if (offs_lea) {
544                                 add_ia32_am_offs(res, offs_lea);
545                         }
546                 }
547                 else {
548                         /* either lea_O-cnst, -cnst or -lea_O  */
549                         if (offs_cnst) {
550                                 if (offs_lea) {
551                                         add_ia32_am_offs(res, offs_lea);
552                                 }
553
554                                 sub_ia32_am_offs(res, offs_cnst);
555                         }
556                         else {
557                                 sub_ia32_am_offs(res, offs_lea);
558                         }
559                 }
560
561                 /* copy the frame entity (could be set in case of Add */
562                 /* which was a FrameAddr) */
563                 set_ia32_frame_ent(res, get_ia32_frame_ent(irn));
564
565                 if (is_ia32_use_frame(irn))
566                         set_ia32_use_frame(res);
567
568                 /* set scale */
569                 set_ia32_am_scale(res, scale);
570
571                 am_flav = ia32_am_N;
572                 /* determine new am flavour */
573                 if (offs || offs_cnst || offs_lea) {
574                         am_flav |= ia32_O;
575                 }
576                 if (! be_is_NoReg(babi, base)) {
577                         am_flav |= ia32_B;
578                 }
579                 if (! be_is_NoReg(babi, index)) {
580                         am_flav |= ia32_I;
581                 }
582                 if (scale > 0) {
583                         am_flav |= ia32_S;
584                 }
585                 set_ia32_am_flavour(res, am_flav);
586
587                 set_ia32_op_type(res, ia32_AddrModeS);
588
589                 DBG((mod, LEVEL_1, "\tLEA [%+F + %+F * %d + %s]\n", base, index, scale, get_ia32_am_offs(res)));
590
591                 /* get the result Proj of the Add/Sub */
592                 irn = get_res_proj(irn);
593
594                 assert(irn && "Couldn't find result proj");
595
596                 /* exchange the old op with the new LEA */
597                 exchange(irn, res);
598         }
599
600         return res;
601 }
602
603 /**
604  * Optimizes a pattern around irn to address mode if possible.
605  */
606 void ia32_optimize_am(ir_node *irn, void *env) {
607         ia32_code_gen_t   *cg   = env;
608         ir_graph          *irg  = cg->irg;
609         firm_dbg_module_t *mod  = cg->mod;
610         ir_node           *res  = irn;
611         be_abi_irg_t      *babi = cg->birg->abi;
612         dbg_info          *dbg;
613         ir_mode           *mode;
614         ir_node           *block, *noreg_gp, *noreg_fp;
615         ir_node           *left, *right, *temp;
616         ir_node           *store, *load, *mem_proj;
617         ir_node           *succ, *addr_b, *addr_i;
618         int                check_am_src = 0;
619
620         if (! is_ia32_irn(irn))
621                 return;
622
623         dbg      = get_irn_dbg_info(irn);
624         mode     = get_irn_mode(irn);
625         block    = get_nodes_block(irn);
626         noreg_gp = ia32_new_NoReg_gp(cg);
627         noreg_fp = ia32_new_NoReg_fp(cg);
628
629         DBG((mod, LEVEL_1, "checking for AM\n"));
630
631         /* 1st part: check for address calculations and transform the into Lea */
632
633         /* Following cases can occur:                                  */
634         /* - Sub (l, imm) -> LEA [base - offset]                       */
635         /* - Sub (l, r == LEA with ia32_am_O)   -> LEA [base - offset] */
636         /* - Add (l, imm) -> LEA [base + offset]                       */
637         /* - Add (l, r == LEA with ia32_am_O)  -> LEA [base + offset]  */
638         /* - Add (l == LEA with ia32_am_O, r)  -> LEA [base + offset]  */
639         /* - Add (l, r) -> LEA [base + index * scale]                  */
640         /*              with scale > 1 iff l/r == shl (1,2,3)          */
641
642         if (is_ia32_Sub(irn) || is_ia32_Add(irn)) {
643                 left  = get_irn_n(irn, 2);
644                 right = get_irn_n(irn, 3);
645
646             /* Do not try to create a LEA if one of the operands is a Load. */
647                 /* check is irn is a candidate for address calculation */
648                 if (is_candidate(block, irn, 1)) {
649                         res = fold_addr(babi, irn, mod, noreg_gp);
650                 }
651         }
652
653         /* 2nd part: fold following patterns:                                               */
654         /* - Load  -> LEA into Load  } TODO: If the LEA is used by more than one Load/Store */
655         /* - Store -> LEA into Store }       it might be better to keep the LEA             */
656         /* - op -> Load into AMop with am_Source                                            */
657         /*   conditions:                                                                    */
658         /*     - op is am_Source capable AND                                                */
659         /*     - the Load is only used by this op AND                                       */
660         /*     - the Load is in the same block                                              */
661         /* - Store -> op -> Load  into AMop with am_Dest                                    */
662         /*   conditions:                                                                    */
663         /*     - op is am_Dest capable AND                                                  */
664         /*     - the Store uses the same address as the Load AND                            */
665         /*     - the Load is only used by this op AND                                       */
666         /*     - the Load and Store are in the same block AND                               */
667         /*     - nobody else uses the result of the op                                      */
668
669         if ((res == irn) && (get_ia32_am_support(irn) != ia32_am_None) && !is_ia32_Lea(irn)) {
670                 /* 1st: check for Load/Store -> LEA   */
671                 if (is_ia32_Ld(irn) || is_ia32_St(irn)) {
672                         left = get_irn_n(irn, 0);
673
674                         if (is_ia32_Lea(left)) {
675                                 /* get the AM attributes from the LEA */
676                                 add_ia32_am_offs(irn, get_ia32_am_offs(left));
677                                 set_ia32_am_scale(irn, get_ia32_am_scale(left));
678                                 set_ia32_am_flavour(irn, get_ia32_am_flavour(left));
679
680                                 set_ia32_op_type(irn, is_ia32_St(irn) ? ia32_AddrModeD : ia32_AddrModeS);
681
682                                 /* set base and index */
683                                 set_irn_n(irn, 0, get_irn_n(left, 0));
684                                 set_irn_n(irn, 1, get_irn_n(left, 1));
685                         }
686                 }
687                 /* check if the node is an address mode candidate */
688                 else if (is_candidate(block, irn, 0)) {
689                         left  = get_irn_n(irn, 2);
690                         if (get_irn_arity(irn) == 4) {
691                                 /* it's an "unary" operation */
692                                 right = left;
693                         }
694                         else {
695                                 right = get_irn_n(irn, 3);
696                         }
697
698                         /* normalize commutative ops */
699                         if (node_is_comm(irn)) {
700                                 /* Assure that right operand is always a Load if there is one    */
701                                 /* because non-commutative ops can only use Dest AM if the right */
702                                 /* operand is a load, so we only need to check right operand.    */
703                                 if (pred_is_specific_nodeblock(block, left, is_ia32_Ld))
704                                 {
705                                         set_irn_n(irn, 2, right);
706                                         set_irn_n(irn, 3, left);
707
708                                         temp  = left;
709                                         left  = right;
710                                         right = temp;
711                                 }
712                         }
713
714                         /* check for Store -> op -> Load */
715
716                         /* Store -> op -> Load optimization is only possible if supported by op */
717                         /* and if right operand is a Load                                       */
718                         if ((get_ia32_am_support(irn) & ia32_am_Dest) &&
719                                  pred_is_specific_nodeblock(block, right, is_ia32_Ld))
720                         {
721
722                                 /* An address mode capable op always has a result Proj.                  */
723                                 /* If this Proj is used by more than one other node, we don't need to    */
724                                 /* check further, otherwise we check for Store and remember the address, */
725                                 /* the Store points to. */
726
727                                 succ = get_res_proj(irn);
728                                 assert(succ && "Couldn't find result proj");
729
730                                 addr_b = NULL;
731                                 addr_i = NULL;
732                                 store  = NULL;
733
734                                 /* now check for users and Store */
735                                 if (ia32_get_irn_n_edges(succ) == 1) {
736                                         succ = get_edge_src_irn(get_irn_out_edge_first(succ));
737
738                                         if (is_ia32_fStore(succ) || is_ia32_Store(succ)) {
739                                                 store  = succ;
740                                                 addr_b = get_irn_n(store, 0);
741
742                                                 /* Could be that the Store is connected to the address    */
743                                                 /* calculating LEA while the Load is already transformed. */
744                                                 if (is_ia32_Lea(addr_b)) {
745                                                         succ   = addr_b;
746                                                         addr_b = get_irn_n(succ, 0);
747                                                         addr_i = get_irn_n(succ, 1);
748                                                 }
749                                                 else {
750                                                         addr_i = noreg_gp;
751                                                 }
752                                         }
753                                 }
754
755                                 if (store) {
756                                         /* we found a Store as single user: Now check for Load */
757
758                                         /* Extra check for commutative ops with two Loads */
759                                         /* -> put the interesting Load right              */
760                                         if (node_is_comm(irn) &&
761                                                 pred_is_specific_nodeblock(block, left, is_ia32_Ld))
762                                         {
763                                                 if ((addr_b == get_irn_n(get_Proj_pred(left), 0)) &&
764                                                         (addr_i == get_irn_n(get_Proj_pred(left), 1)))
765                                                 {
766                                                         /* We exchange left and right, so it's easier to kill     */
767                                                         /* the correct Load later and to handle unary operations. */
768                                                         set_irn_n(irn, 2, right);
769                                                         set_irn_n(irn, 3, left);
770
771                                                         temp  = left;
772                                                         left  = right;
773                                                         right = temp;
774                                                 }
775                                         }
776
777                                         /* skip the Proj for easier access */
778                                         load = get_Proj_pred(right);
779
780                                         /* Compare Load and Store address */
781                                         if (load_store_addr_is_equal(load, store, addr_b, addr_i)) {
782                                                 /* Right Load is from same address, so we can */
783                                                 /* disconnect the Load and Store here        */
784
785                                                 /* set new base, index and attributes */
786                                                 set_irn_n(irn, 0, addr_b);
787                                                 set_irn_n(irn, 1, addr_i);
788                                                 add_ia32_am_offs(irn, get_ia32_am_offs(load));
789                                                 set_ia32_am_scale(irn, get_ia32_am_scale(load));
790                                                 set_ia32_am_flavour(irn, get_ia32_am_flavour(load));
791                                                 set_ia32_op_type(irn, ia32_AddrModeD);
792                                                 set_ia32_frame_ent(irn, get_ia32_frame_ent(load));
793                                                 set_ia32_ls_mode(irn, get_ia32_ls_mode(load));
794
795                                                 if (is_ia32_use_frame(load))
796                                                         set_ia32_use_frame(irn);
797
798                                                 /* connect to Load memory and disconnect Load */
799                                                 if (get_irn_arity(irn) == 5) {
800                                                         /* binary AMop */
801                                                         set_irn_n(irn, 4, get_irn_n(load, 2));
802                                                         set_irn_n(irn, 3, noreg_gp);
803                                                 }
804                                                 else {
805                                                         /* unary AMop */
806                                                         set_irn_n(irn, 3, get_irn_n(load, 2));
807                                                         set_irn_n(irn, 2, noreg_gp);
808                                                 }
809
810                                                 /* connect the memory Proj of the Store to the op */
811                                                 mem_proj = get_mem_proj(store);
812                                                 set_Proj_pred(mem_proj, irn);
813                                                 set_Proj_proj(mem_proj, 1);
814                                         }
815                                 } /* if (store) */
816                                 else if (get_ia32_am_support(irn) & ia32_am_Source) {
817                                         /* There was no store, check if we still can optimize for source address mode */
818                                         check_am_src = 1;
819                                 }
820                         } /* if (support AM Dest) */
821                         else if (get_ia32_am_support(irn) & ia32_am_Source) {
822                                 /* op doesn't support am AM Dest -> check for AM Source */
823                                 check_am_src = 1;
824                         }
825
826                         /* normalize commutative ops */
827                         if (node_is_comm(irn)) {
828                                 /* Assure that left operand is always a Load if there is one */
829                                 /* because non-commutative ops can only use Source AM if the */
830                                 /* left operand is a Load, so we only need to check the left */
831                                 /* operand afterwards.                                       */
832                                 if (pred_is_specific_nodeblock(block, right, is_ia32_Ld))       {
833                                         set_irn_n(irn, 2, right);
834                                         set_irn_n(irn, 3, left);
835
836                                         temp  = left;
837                                         left  = right;
838                                         right = temp;
839                                 }
840                         }
841
842                         /* optimize op -> Load iff Load is only used by this op   */
843                         /* and left operand is a Load which only used by this irn */
844                         if (check_am_src                                        &&
845                                 pred_is_specific_nodeblock(block, left, is_ia32_Ld) &&
846                                 (ia32_get_irn_n_edges(left) == 1))
847                         {
848                                 left = get_Proj_pred(left);
849
850                                 addr_b = get_irn_n(left, 0);
851                                 addr_i = get_irn_n(left, 1);
852
853                                 /* set new base, index and attributes */
854                                 set_irn_n(irn, 0, addr_b);
855                                 set_irn_n(irn, 1, addr_i);
856                                 add_ia32_am_offs(irn, get_ia32_am_offs(left));
857                                 set_ia32_am_scale(irn, get_ia32_am_scale(left));
858                                 set_ia32_am_flavour(irn, get_ia32_am_flavour(left));
859                                 set_ia32_op_type(irn, ia32_AddrModeS);
860                                 set_ia32_frame_ent(irn, get_ia32_frame_ent(left));
861                                 set_ia32_ls_mode(irn, get_ia32_ls_mode(left));
862
863                                 if (is_ia32_use_frame(left))
864                                         set_ia32_use_frame(irn);
865
866                                 /* connect to Load memory */
867                                 if (get_irn_arity(irn) == 5) {
868                                         /* binary AMop */
869                                         set_irn_n(irn, 4, get_irn_n(left, 2));
870                                 }
871                                 else {
872                                         /* unary AMop */
873                                         set_irn_n(irn, 3, get_irn_n(left, 2));
874                                 }
875
876                                 /* disconnect from Load */
877                                 set_irn_n(irn, 2, noreg_gp);
878
879                                 /* If Load has a memory Proj, connect it to the op */
880                                 mem_proj = get_mem_proj(left);
881                                 if (mem_proj) {
882                                         set_Proj_pred(mem_proj, irn);
883                                         set_Proj_proj(mem_proj, 1);
884                                 }
885                         }
886                 }
887         }
888 }