build TestJmp for compares with zero
[libfirm] / ir / be / ia32 / ia32_optimize.c
1 /*
2  * Copyright (C) 1995-2007 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       Implements several optimizations for IA32.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "irnode.h"
31 #include "irprog_t.h"
32 #include "ircons.h"
33 #include "firm_types.h"
34 #include "iredges.h"
35 #include "tv.h"
36 #include "irgmod.h"
37 #include "irgwalk.h"
38 #include "height.h"
39 #include "irbitset.h"
40
41 #include "../be_t.h"
42 #include "../beabi.h"
43 #include "../benode_t.h"
44 #include "../besched_t.h"
45
46 #include "ia32_new_nodes.h"
47 #include "bearch_ia32_t.h"
48 #include "gen_ia32_regalloc_if.h"
49 #include "ia32_transform.h"
50 #include "ia32_dbg_stat.h"
51 #include "ia32_util.h"
52
53 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
54
55 #define AGGRESSIVE_AM
56
57 typedef enum {
58         IA32_AM_CAND_NONE  = 0,  /**< no addressmode possible with irn inputs */
59         IA32_AM_CAND_LEFT  = 1,  /**< addressmode possible with left input */
60         IA32_AM_CAND_RIGHT = 2,  /**< addressmode possible with right input */
61         IA32_AM_CAND_BOTH  = 3   /**< addressmode possible with both inputs */
62 } ia32_am_cand_t;
63
64 typedef int is_op_func_t(const ir_node *n);
65 typedef ir_node *load_func_t(dbg_info *db, ir_graph *irg, ir_node *block, ir_node *base, ir_node *index, ir_node *mem);
66
67 /**
68  * checks if a node represents the NOREG value
69  */
70 static INLINE int be_is_NoReg(ia32_code_gen_t *cg, const ir_node *irn) {
71         return irn == cg->noreg_gp || irn == cg->noreg_xmm || irn == cg->noreg_vfp;
72 }
73
74 /********************************************************************************************************
75  *  _____                _           _         ____        _   _           _          _   _
76  * |  __ \              | |         | |       / __ \      | | (_)         (_)        | | (_)
77  * | |__) |__  ___ _ __ | |__   ___ | | ___  | |  | |_ __ | |_ _ _ __ ___  _ ______ _| |_ _  ___  _ __
78  * |  ___/ _ \/ _ \ '_ \| '_ \ / _ \| |/ _ \ | |  | | '_ \| __| | '_ ` _ \| |_  / _` | __| |/ _ \| '_ \
79  * | |  |  __/  __/ |_) | | | | (_) | |  __/ | |__| | |_) | |_| | | | | | | |/ / (_| | |_| | (_) | | | |
80  * |_|   \___|\___| .__/|_| |_|\___/|_|\___|  \____/| .__/ \__|_|_| |_| |_|_/___\__,_|\__|_|\___/|_| |_|
81  *                | |                               | |
82  *                |_|                               |_|
83  ********************************************************************************************************/
84
85 /**
86  * NOTE: THESE PEEPHOLE OPTIMIZATIONS MUST BE CALLED AFTER SCHEDULING AND REGISTER ALLOCATION.
87  */
88
89 static int ia32_const_equal(const ir_node *n1, const ir_node *n2) {
90         if(get_ia32_immop_type(n1) != get_ia32_immop_type(n2))
91                 return 0;
92
93         if(get_ia32_immop_type(n1) == ia32_ImmConst) {
94                 return get_ia32_Immop_tarval(n1) == get_ia32_Immop_tarval(n2);
95         } else if(get_ia32_immop_type(n1) == ia32_ImmSymConst) {
96                 return get_ia32_Immop_symconst(n1) == get_ia32_Immop_symconst(n2);
97         }
98
99         assert(get_ia32_immop_type(n1) == ia32_ImmNone);
100         return 1;
101 }
102
103 /**
104  * Checks for potential CJmp/CJmpAM optimization candidates.
105  */
106 static ir_node *ia32_determine_cjmp_cand(ir_node *irn, is_op_func_t *is_op_func) {
107         ir_node *cand = NULL;
108         ir_node *prev = sched_prev(irn);
109
110         if (is_Block(prev)) {
111                 if (get_Block_n_cfgpreds(prev) == 1)
112                         prev = get_Block_cfgpred(prev, 0);
113                 else
114                         prev = NULL;
115         }
116
117         /* The predecessor must be a ProjX. */
118         if (prev && is_Proj(prev) && get_irn_mode(prev) == mode_X) {
119                 prev = get_Proj_pred(prev);
120
121                 if (is_op_func(prev))
122                         cand = prev;
123         }
124
125         return cand;
126 }
127
128 static int is_TestJmp_cand(const ir_node *irn) {
129         return is_ia32_TestJmp(irn) || is_ia32_And(irn);
130 }
131
132 /**
133  * Checks if two consecutive arguments of cand matches
134  * the two arguments of irn (TestJmp).
135  */
136 static int is_TestJmp_replacement(ir_node *cand, ir_node *irn) {
137         ir_node *in1       = get_irn_n(irn, 0);
138         ir_node *in2       = get_irn_n(irn, 1);
139         int      i, n      = get_irn_arity(cand);
140         int      same_args = 0;
141
142         for (i = 0; i < n - 1; i++) {
143                 if (get_irn_n(cand, i)     == in1 &&
144                         get_irn_n(cand, i + 1) == in2)
145                 {
146                         same_args = 1;
147                         break;
148                 }
149         }
150
151         if (!same_args)
152                 return 0;
153
154         return ia32_const_equal(cand, irn);
155 }
156
157 /**
158  * Tries to replace a TestJmp by a CJmp or CJmpAM (in case of And)
159  */
160 static void ia32_optimize_TestJmp(ir_node *irn)
161 {
162         ir_node *cand    = ia32_determine_cjmp_cand(irn, is_TestJmp_cand);
163         int      replace = 0;
164
165         /* we found a possible candidate */
166         replace = cand ? is_TestJmp_replacement(cand, irn) : 0;
167
168         if (replace) {
169                 DBG((dbg, LEVEL_1, "replacing %+F by ", irn));
170
171                 if (is_ia32_And(cand))
172                         set_irn_op(irn, op_ia32_CJmpAM);
173                 else
174                         set_irn_op(irn, op_ia32_CJmp);
175
176                 DB((dbg, LEVEL_1, "%+F\n", irn));
177         }
178 }
179
180 static int is_CondJmp_cand(const ir_node *irn) {
181         return is_ia32_CondJmp(irn) || is_ia32_Sub(irn);
182 }
183
184 /**
185  * Checks if the arguments of cand are the same of irn.
186  */
187 static int is_CondJmp_replacement(ir_node *cand, ir_node *irn) {
188         int i, arity;
189
190         arity = get_irn_arity(cand);
191         for (i = 0; i < arity; i++) {
192                 if (get_irn_n(cand, i) != get_irn_n(irn, i)) {
193                         return 0;
194                 }
195         }
196
197         return ia32_const_equal(cand, irn);
198 }
199
200 /**
201  * Tries to replace a CondJmp by a CJmpAM
202  */
203 static void ia32_optimize_CondJmp(ir_node *irn)
204 {
205         ir_node *cand    = ia32_determine_cjmp_cand(irn, is_CondJmp_cand);
206         int      replace = 0;
207
208         /* we found a possible candidate */
209         replace = cand ? is_CondJmp_replacement(cand, irn) : 0;
210
211         if (replace) {
212                 DBG((dbg, LEVEL_1, "replacing %+F by ", irn));
213                 DBG_OPT_CJMP(irn);
214
215                 set_irn_op(irn, op_ia32_CJmpAM);
216
217                 DB((dbg, LEVEL_1, "%+F\n", irn));
218         }
219 }
220
221 // only optimize up to 48 stores behind IncSPs
222 #define MAXPUSH_OPTIMIZE        48
223
224 /**
225  * Tries to create pushs from IncSP,Store combinations
226  */
227 static void ia32_create_Pushs(ir_node *irn, ia32_code_gen_t *cg) {
228         int i;
229         int offset;
230         ir_node *node;
231         ir_node *stores[MAXPUSH_OPTIMIZE];
232         ir_node *block = get_nodes_block(irn);
233         ir_graph *irg = cg->irg;
234         ir_node *curr_sp;
235         ir_mode *spmode = get_irn_mode(irn);
236
237         memset(stores, 0, sizeof(stores));
238
239         assert(be_is_IncSP(irn));
240
241         offset = be_get_IncSP_offset(irn);
242         if(offset < 4)
243                 return;
244
245         /*
246          * We first walk the schedule after the IncSP node as long as we find
247          * suitable stores that could be transformed to a push.
248          * We save them into the stores array which is sorted by the frame offset/4
249          * attached to the node
250          */
251         for(node = sched_next(irn); !sched_is_end(node); node = sched_next(node)) {
252                 ir_node *mem;
253                 int offset;
254                 int storeslot;
255
256                 // it has to be a store
257                 if(!is_ia32_Store(node))
258                         break;
259
260                 // it has to use our sp value
261                 if(get_irn_n(node, 0) != irn)
262                         continue;
263                 // store has to be attached to NoMem
264                 mem = get_irn_n(node, 3);
265                 if(!is_NoMem(mem)) {
266                         continue;
267                 }
268
269                 if( (get_ia32_am_flavour(node) & ia32_am_IS) != 0)
270                         break;
271
272                 offset = get_ia32_am_offs_int(node);
273
274                 storeslot = offset / 4;
275                 if(storeslot >= MAXPUSH_OPTIMIZE)
276                         continue;
277
278                 // storing into the same slot twice is bad (and shouldn't happen...)
279                 if(stores[storeslot] != NULL)
280                         break;
281
282                 // storing at half-slots is bad
283                 if(offset % 4 != 0)
284                         break;
285
286                 stores[storeslot] = node;
287         }
288
289         curr_sp = get_irn_n(irn, 0);
290
291         // walk the stores in inverse order and create pushs for them
292         i = (offset / 4) - 1;
293         if(i >= MAXPUSH_OPTIMIZE) {
294                 i = MAXPUSH_OPTIMIZE - 1;
295         }
296
297         for( ; i >= 0; --i) {
298                 const arch_register_t *spreg;
299                 ir_node *push;
300                 ir_node *val, *mem, *mem_proj;
301                 ir_node *store = stores[i];
302                 ir_node *noreg = ia32_new_NoReg_gp(cg);
303
304                 if(store == NULL || is_Bad(store))
305                         break;
306
307                 val = get_irn_n(store, 2);
308                 mem = get_irn_n(store, 3);
309                 spreg = arch_get_irn_register(cg->arch_env, curr_sp);
310
311                 // create a push
312                 push = new_rd_ia32_Push(NULL, irg, block, noreg, noreg, val, curr_sp, mem);
313
314                 set_ia32_am_support(push, ia32_am_Source, ia32_am_unary);
315                 copy_ia32_Immop_attr(push, store);
316
317                 sched_add_before(irn, push);
318
319                 // create stackpointer proj
320                 curr_sp = new_r_Proj(irg, block, push, spmode, pn_ia32_Push_stack);
321                 arch_set_irn_register(cg->arch_env, curr_sp, spreg);
322 #ifdef SCHEDULE_PROJS
323                 sched_add_before(irn, curr_sp);
324 #endif
325                 // create memory proj
326                 mem_proj = new_r_Proj(irg, block, push, mode_M, pn_ia32_Push_M);
327
328                 // use the memproj now
329                 exchange(store, mem_proj);
330
331                 // we can remove the store now
332                 sched_remove(store);
333
334                 offset -= 4;
335         }
336
337         be_set_IncSP_offset(irn, offset);
338
339         // can we remove the IncSP now?
340         if(offset == 0) {
341                 const ir_edge_t *edge, *next;
342
343                 foreach_out_edge_safe(irn, edge, next) {
344                         ir_node *arg = get_edge_src_irn(edge);
345                         int pos = get_edge_src_pos(edge);
346
347                         set_irn_n(arg, pos, curr_sp);
348                 }
349
350                 set_irn_n(irn, 0, new_Bad());
351                 sched_remove(irn);
352         } else {
353                 set_irn_n(irn, 0, curr_sp);
354         }
355 }
356
357 #if 0
358 /**
359  * Tries to optimize two following IncSP.
360  */
361 static void ia32_optimize_IncSP(ir_node *irn, ia32_code_gen_t *cg) {
362         ir_node *prev = be_get_IncSP_pred(irn);
363         int real_uses = get_irn_n_edges(prev);
364
365         if (be_is_IncSP(prev) && real_uses == 1) {
366                 /* first IncSP has only one IncSP user, kill the first one */
367                 int prev_offs = be_get_IncSP_offset(prev);
368                 int curr_offs = be_get_IncSP_offset(irn);
369
370                 be_set_IncSP_offset(prev, prev_offs + curr_offs);
371
372                 /* Omit the optimized IncSP */
373                 be_set_IncSP_pred(irn, be_get_IncSP_pred(prev));
374
375                 set_irn_n(prev, 0, new_Bad());
376                 sched_remove(prev);
377         }
378 }
379 #endif
380
381 /**
382  * Performs Peephole Optimizations.
383  */
384 static void ia32_peephole_optimize_node(ir_node *irn, void *env) {
385         ia32_code_gen_t *cg = env;
386
387         /* AMD CPUs want explicit compare before conditional jump  */
388         if (! ARCH_AMD(cg->opt_arch)) {
389                 if (is_ia32_TestJmp(irn))
390                         ia32_optimize_TestJmp(irn);
391                 else if (is_ia32_CondJmp(irn))
392                         ia32_optimize_CondJmp(irn);
393         }
394
395         if (be_is_IncSP(irn)) {
396                 // optimize_IncSP doesn't respect dependency edges yet...
397                 //ia32_optimize_IncSP(irn, cg);
398
399                 if (cg->opt & IA32_OPT_PUSHARGS)
400                         ia32_create_Pushs(irn, cg);
401         }
402 }
403
404 void ia32_peephole_optimization(ir_graph *irg, ia32_code_gen_t *cg) {
405         irg_walk_graph(irg, ia32_peephole_optimize_node, NULL, cg);
406 }
407
408 /******************************************************************
409  *              _     _                   __  __           _
410  *     /\      | |   | |                 |  \/  |         | |
411  *    /  \   __| | __| |_ __ ___  ___ ___| \  / | ___   __| | ___
412  *   / /\ \ / _` |/ _` | '__/ _ \/ __/ __| |\/| |/ _ \ / _` |/ _ \
413  *  / ____ \ (_| | (_| | | |  __/\__ \__ \ |  | | (_) | (_| |  __/
414  * /_/    \_\__,_|\__,_|_|  \___||___/___/_|  |_|\___/ \__,_|\___|
415  *
416  ******************************************************************/
417
418 typedef struct {
419         ia32_code_gen_t *cg;
420         heights_t       *h;
421 } ia32_am_opt_env_t;
422
423 static int node_is_ia32_comm(const ir_node *irn) {
424         return is_ia32_irn(irn) ? is_ia32_commutative(irn) : 0;
425 }
426
427 static int ia32_get_irn_n_edges(const ir_node *irn) {
428         const ir_edge_t *edge;
429         int cnt = 0;
430
431         foreach_out_edge(irn, edge) {
432                 cnt++;
433         }
434
435         return cnt;
436 }
437
438 /**
439  * Determines if pred is a Proj and if is_op_func returns true for it's predecessor.
440  *
441  * @param pred       The node to be checked
442  * @param is_op_func The check-function
443  * @return 1 if conditions are fulfilled, 0 otherwise
444  */
445 static int pred_is_specific_node(const ir_node *pred, is_op_func_t *is_op_func) {
446         return is_op_func(pred);
447 }
448
449 /**
450  * Determines if pred is a Proj and if is_op_func returns true for it's predecessor
451  * and if the predecessor is in block bl.
452  *
453  * @param bl         The block
454  * @param pred       The node to be checked
455  * @param is_op_func The check-function
456  * @return 1 if conditions are fulfilled, 0 otherwise
457  */
458 static int pred_is_specific_nodeblock(const ir_node *bl, const ir_node *pred,
459         int (*is_op_func)(const ir_node *n))
460 {
461         if (is_Proj(pred)) {
462                 pred = get_Proj_pred(pred);
463                 if ((bl == get_nodes_block(pred)) && is_op_func(pred)) {
464                         return 1;
465                 }
466         }
467
468         return 0;
469 }
470
471 /**
472  * Checks if irn is a candidate for address calculation. We avoid transforming
473  * adds to leas if they have a load as pred, because then we can use AM mode
474  * for the add later.
475  *
476  * - none of the operand must be a Load  within the same block OR
477  * - all Loads must have more than one user                    OR
478  *
479  * @param block   The block the Loads must/mustnot be in
480  * @param irn     The irn to check
481  * return 1 if irn is a candidate, 0 otherwise
482  */
483 static int is_addr_candidate(const ir_node *irn)
484 {
485 #ifndef AGGRESSIVE_AM
486         const ir_node *block = get_nodes_block(irn);
487         ir_node *left, *right;
488         int      n;
489
490         left  = get_irn_n(irn, 2);
491         right = get_irn_n(irn, 3);
492
493         if (pred_is_specific_nodeblock(block, left, is_ia32_Ld)) {
494                 n         = ia32_get_irn_n_edges(left);
495                 /* load with only one user: don't create LEA */
496                 if(n == 1)
497                         return 0;
498         }
499
500         if (pred_is_specific_nodeblock(block, right, is_ia32_Ld)) {
501                 n         = ia32_get_irn_n_edges(right);
502                 if(n == 1)
503                         return 0;
504         }
505 #endif
506
507         (void) irn;
508         return 1;
509 }
510
511 /**
512  * Checks if irn is a candidate for address mode.
513  *
514  * address mode (AM):
515  * - at least one operand has to be a Load within the same block AND
516  * - the load must not have other users than the irn             AND
517  * - the irn must not have a frame entity set
518  *
519  * @param cg          The ia32 code generator
520  * @param h           The height information of the irg
521  * @param block       The block the Loads must/mustnot be in
522  * @param irn         The irn to check
523  * return 0 if irn is no candidate, 1 if left load can be used, 2 if right one, 3 for both
524  */
525 static ia32_am_cand_t is_am_candidate(heights_t *h, const ir_node *block, ir_node *irn) {
526         ir_node *in, *load, *other, *left, *right;
527         int      is_cand = 0, cand;
528         int arity;
529
530         if (is_ia32_Ld(irn) || is_ia32_St(irn) ||
531                 is_ia32_vfild(irn) || is_ia32_vfist(irn) ||
532                 is_ia32_GetST0(irn) || is_ia32_SetST0(irn) || is_ia32_xStoreSimple(irn))
533                 return 0;
534
535         if(get_ia32_frame_ent(irn) != NULL)
536                 return IA32_AM_CAND_NONE;
537
538         left  = get_irn_n(irn, 2);
539         arity = get_irn_arity(irn);
540         if(get_ia32_am_arity(irn) == ia32_am_binary) {
541                 /* binary op */
542                 right = get_irn_n(irn, 3);
543         } else {
544                 assert(get_ia32_am_arity(irn) == ia32_am_unary);
545                 /* unary op */
546                 right = left;
547         }
548
549         in = left;
550
551         if (pred_is_specific_nodeblock(block, in, is_ia32_Ld)) {
552 #ifndef AGGRESSIVE_AM
553                 int n;
554                 n         = ia32_get_irn_n_edges(in);
555                 is_cand   = (n == 1) ? 1 : is_cand;  /* load with more than one user: no AM */
556 #else
557                 is_cand   = 1;
558 #endif
559
560                 load  = get_Proj_pred(in);
561                 other = right;
562
563                 /* 8bit Loads are not supported (for binary ops),
564                  * they cannot be used with every register */
565                 if (get_irn_arity(irn) != 4 && get_mode_size_bits(get_ia32_ls_mode(load)) < 16) {
566                         assert(get_irn_arity(irn) == 5);
567                         is_cand = 0;
568                 }
569
570                 /* If there is a data dependency of other irn from load: cannot use AM */
571                 if (is_cand && get_nodes_block(other) == block) {
572                         other   = skip_Proj(other);
573                         is_cand = heights_reachable_in_block(h, other, load) ? 0 : is_cand;
574                         /* this could happen in loops */
575                         is_cand = heights_reachable_in_block(h, load, irn) ? 0 : is_cand;
576                 }
577         }
578
579         cand    = is_cand ? IA32_AM_CAND_LEFT : IA32_AM_CAND_NONE;
580         in      = right;
581         is_cand = 0;
582
583         if (pred_is_specific_nodeblock(block, in, is_ia32_Ld)) {
584 #ifndef AGGRESSIVE_AM
585                 int n;
586                 n         = ia32_get_irn_n_edges(in);
587                 is_cand   = (n == 1) ? 1 : is_cand;  /* load with more than one user: no AM */
588 #else
589                 is_cand = 1;
590 #endif
591
592                 load  = get_Proj_pred(in);
593                 other = left;
594
595                 /* 8bit Loads are not supported, they cannot be used with every register */
596                 if (get_mode_size_bits(get_ia32_ls_mode(load)) < 16)
597                         is_cand = 0;
598
599                 /* If there is a data dependency of other irn from load: cannot use load */
600                 if (is_cand && get_nodes_block(other) == block) {
601                         other   = skip_Proj(other);
602                         is_cand = heights_reachable_in_block(h, other, load) ? 0 : is_cand;
603                         /* this could happen in loops */
604                         is_cand = heights_reachable_in_block(h, load, irn) ? 0 : is_cand;
605                 }
606         }
607
608         cand = is_cand ? (cand | IA32_AM_CAND_RIGHT) : cand;
609
610         /* if the irn has a frame entity: we do not use address mode */
611         return cand;
612 }
613
614 /**
615  * Compares the base and index addr and the load/store entities
616  * and returns 1 if they are equal.
617  */
618 static int load_store_addr_is_equal(const ir_node *load, const ir_node *store,
619                                                                         const ir_node *addr_b, const ir_node *addr_i)
620 {
621         if(get_irn_n(load, 0) != addr_b)
622                 return 0;
623         if(get_irn_n(load, 1) != addr_i)
624                 return 0;
625
626         if(get_ia32_frame_ent(load) != get_ia32_frame_ent(store))
627                 return 0;
628
629         if(get_ia32_am_sc(load) != get_ia32_am_sc(store))
630                 return 0;
631         if(is_ia32_am_sc_sign(load) != is_ia32_am_sc_sign(store))
632                 return 0;
633         if(get_ia32_am_offs_int(load) != get_ia32_am_offs_int(store))
634                 return 0;
635         if(get_ia32_ls_mode(load) != get_ia32_ls_mode(store))
636                 return 0;
637
638         return 1;
639 }
640
641 typedef enum _ia32_take_lea_attr {
642         IA32_LEA_ATTR_NONE  = 0,
643         IA32_LEA_ATTR_BASE  = (1 << 0),
644         IA32_LEA_ATTR_INDEX = (1 << 1),
645         IA32_LEA_ATTR_OFFS  = (1 << 2),
646         IA32_LEA_ATTR_SCALE = (1 << 3),
647         IA32_LEA_ATTR_AMSC  = (1 << 4),
648         IA32_LEA_ATTR_FENT  = (1 << 5)
649 } ia32_take_lea_attr;
650
651 /**
652  * Decides if we have to keep the LEA operand or if we can assimilate it.
653  */
654 static int do_new_lea(ir_node *irn, ir_node *base, ir_node *index, ir_node *lea,
655                 int have_am_sc, ia32_code_gen_t *cg)
656 {
657         ir_entity *irn_ent  = get_ia32_frame_ent(irn);
658         ir_entity *lea_ent  = get_ia32_frame_ent(lea);
659         int        ret_val  = 0;
660         int        is_noreg_base  = be_is_NoReg(cg, base);
661         int        is_noreg_index = be_is_NoReg(cg, index);
662         ia32_am_flavour_t am_flav = get_ia32_am_flavour(lea);
663
664         /* If the Add and the LEA both have a different frame entity set: keep */
665         if (irn_ent && lea_ent && (irn_ent != lea_ent))
666                 return IA32_LEA_ATTR_NONE;
667         else if (! irn_ent && lea_ent)
668                 ret_val |= IA32_LEA_ATTR_FENT;
669
670         /* If the Add and the LEA both have already an address mode symconst: keep */
671         if (have_am_sc && get_ia32_am_sc(lea))
672                 return IA32_LEA_ATTR_NONE;
673         else if (get_ia32_am_sc(lea))
674                 ret_val |= IA32_LEA_ATTR_AMSC;
675
676         /* Check the different base-index combinations */
677
678         if (! is_noreg_base && ! is_noreg_index) {
679                 /* Assimilate if base is the lea and the LEA is just a Base + Offset calculation */
680                 if ((base == lea) && ! (am_flav & ia32_I ? 1 : 0)) {
681                         if (am_flav & ia32_O)
682                                 ret_val |= IA32_LEA_ATTR_OFFS;
683
684                         ret_val |= IA32_LEA_ATTR_BASE;
685                 }
686                 else
687                         return IA32_LEA_ATTR_NONE;
688         }
689         else if (! is_noreg_base && is_noreg_index) {
690                 /* Base is set but index not */
691                 if (base == lea) {
692                         /* Base points to LEA: assimilate everything */
693                         if (am_flav & ia32_O)
694                                 ret_val |= IA32_LEA_ATTR_OFFS;
695                         if (am_flav & ia32_S)
696                                 ret_val |= IA32_LEA_ATTR_SCALE;
697                         if (am_flav & ia32_I)
698                                 ret_val |= IA32_LEA_ATTR_INDEX;
699
700                         ret_val |= IA32_LEA_ATTR_BASE;
701                 }
702                 else if (am_flav & ia32_B ? 0 : 1) {
703                         /* Base is not the LEA but the LEA is an index only calculation: assimilate */
704                         if (am_flav & ia32_O)
705                                 ret_val |= IA32_LEA_ATTR_OFFS;
706                         if (am_flav & ia32_S)
707                                 ret_val |= IA32_LEA_ATTR_SCALE;
708
709                         ret_val |= IA32_LEA_ATTR_INDEX;
710                 }
711                 else
712                         return IA32_LEA_ATTR_NONE;
713         }
714         else if (is_noreg_base && ! is_noreg_index) {
715                 /* Index is set but not base */
716                 if (index == lea) {
717                         /* Index points to LEA: assimilate everything */
718                         if (am_flav & ia32_O)
719                                 ret_val |= IA32_LEA_ATTR_OFFS;
720                         if (am_flav & ia32_S)
721                                 ret_val |= IA32_LEA_ATTR_SCALE;
722                         if (am_flav & ia32_B)
723                                 ret_val |= IA32_LEA_ATTR_BASE;
724
725                         ret_val |= IA32_LEA_ATTR_INDEX;
726                 }
727                 else if (am_flav & ia32_I ? 0 : 1) {
728                         /* Index is not the LEA but the LEA is a base only calculation: assimilate */
729                         if (am_flav & ia32_O)
730                                 ret_val |= IA32_LEA_ATTR_OFFS;
731                         if (am_flav & ia32_S)
732                                 ret_val |= IA32_LEA_ATTR_SCALE;
733
734                         ret_val |= IA32_LEA_ATTR_BASE;
735                 }
736                 else
737                         return IA32_LEA_ATTR_NONE;
738         }
739         else {
740                 assert(0 && "There must have been set base or index");
741         }
742
743         return ret_val;
744 }
745
746 /**
747  * Adds res before irn into schedule if irn was scheduled.
748  * @param irn  The schedule point
749  * @param res  The node to be scheduled
750  */
751 static INLINE void try_add_to_sched(ir_node *irn, ir_node *res) {
752         if (sched_is_scheduled(irn))
753                 sched_add_before(irn, res);
754 }
755
756 /**
757  * Removes node from schedule if it is not used anymore. If irn is a mode_T node
758  * all it's Projs are removed as well.
759  * @param irn  The irn to be removed from schedule
760  */
761 static INLINE void try_remove_from_sched(ir_node *node) {
762         int i, arity;
763
764 #ifdef SCHEDULE_PROJS
765         if(get_irn_mode(node) == mode_T) {
766                 const ir_edge_t *edge, *next;
767                 foreach_out_edge_safe(node, edge, next) {
768                         ir_node *proj = get_edge_src_irn(edge);
769                         try_remove_from_sched(proj);
770                 }
771         }
772 #endif
773
774         if(get_irn_n_edges(node) != 0)
775                 return;
776
777         if (sched_is_scheduled(node)) {
778                 sched_remove(node);
779         }
780
781         arity = get_irn_arity(node);
782         for(i = 0; i < arity; ++i) {
783                 set_irn_n(node, i, new_Bad());
784         }
785 }
786
787 /**
788  * Folds Add or Sub to LEA if possible
789  */
790 static ir_node *fold_addr(ia32_code_gen_t *cg, ir_node *irn) {
791         ir_graph   *irg        = get_irn_irg(irn);
792         dbg_info   *dbg_info   = get_irn_dbg_info(irn);
793         ir_node    *block      = get_nodes_block(irn);
794         ir_node    *res        = irn;
795         ir_node    *shift      = NULL;
796         ir_node    *lea_o      = NULL;
797         ir_node    *lea        = NULL;
798         long        offs       = 0;
799         long        offs_cnst  = 0;
800         long        offs_lea   = 0;
801         int         scale      = 0;
802         int         isadd      = 0;
803         int         dolea      = 0;
804         int         have_am_sc = 0;
805         int         am_sc_sign = 0;
806         ir_entity  *am_sc      = NULL;
807         ir_entity  *lea_ent    = NULL;
808         ir_node    *noreg      = ia32_new_NoReg_gp(cg);
809         ir_node    *left, *right, *temp;
810         ir_node    *base, *index;
811         int consumed_left_shift;
812         ia32_am_flavour_t am_flav;
813
814         if (is_ia32_Add(irn))
815                 isadd = 1;
816
817         left  = get_irn_n(irn, 2);
818         right = get_irn_n(irn, 3);
819
820         /* "normalize" arguments in case of add with two operands */
821         if  (isadd && ! be_is_NoReg(cg, right)) {
822                 /* put LEA == ia32_am_O as right operand */
823                 if (is_ia32_Lea(left) && get_ia32_am_flavour(left) == ia32_am_O) {
824                         set_irn_n(irn, 2, right);
825                         set_irn_n(irn, 3, left);
826                         temp  = left;
827                         left  = right;
828                         right = temp;
829                 }
830
831                 /* put LEA != ia32_am_O as left operand */
832                 if (is_ia32_Lea(right) && get_ia32_am_flavour(right) != ia32_am_O) {
833                         set_irn_n(irn, 2, right);
834                         set_irn_n(irn, 3, left);
835                         temp  = left;
836                         left  = right;
837                         right = temp;
838                 }
839
840                 /* put SHL as left operand iff left is NOT a LEA */
841                 if (! is_ia32_Lea(left) && pred_is_specific_node(right, is_ia32_Shl)) {
842                         set_irn_n(irn, 2, right);
843                         set_irn_n(irn, 3, left);
844                         temp  = left;
845                         left  = right;
846                         right = temp;
847                 }
848         }
849
850         base    = left;
851         index   = noreg;
852         offs    = 0;
853         scale   = 0;
854         am_flav = 0;
855
856         /* check for operation with immediate */
857         if (is_ia32_ImmConst(irn)) {
858                 tarval *tv = get_ia32_Immop_tarval(irn);
859
860                 DBG((dbg, LEVEL_1, "\tfound op with imm const"));
861
862                 offs_cnst = get_tarval_long(tv);
863                 dolea     = 1;
864         }
865         else if (isadd && is_ia32_ImmSymConst(irn)) {
866                 DBG((dbg, LEVEL_1, "\tfound op with imm symconst"));
867
868                 have_am_sc = 1;
869                 dolea      = 1;
870                 am_sc      = get_ia32_Immop_symconst(irn);
871                 am_sc_sign = is_ia32_am_sc_sign(irn);
872         }
873
874         /* determine the operand which needs to be checked */
875         temp = be_is_NoReg(cg, right) ? left : right;
876
877         /* check if right operand is AMConst (LEA with ia32_am_O)  */
878         /* but we can only eat it up if there is no other symconst */
879         /* because the linker won't accept two symconsts           */
880         if (! have_am_sc && is_ia32_Lea(temp) && get_ia32_am_flavour(temp) == ia32_am_O) {
881                 DBG((dbg, LEVEL_1, "\tgot op with LEA am_O"));
882
883                 offs_lea   = get_ia32_am_offs_int(temp);
884                 am_sc      = get_ia32_am_sc(temp);
885                 am_sc_sign = is_ia32_am_sc_sign(temp);
886                 have_am_sc = 1;
887                 dolea      = 1;
888                 lea_o      = temp;
889
890                 if (temp == base)
891                         base = noreg;
892                 else if (temp == right)
893                         right = noreg;
894         }
895
896         if (isadd) {
897                 /* default for add -> make right operand to index */
898                 index               = right;
899                 dolea               = 1;
900                 consumed_left_shift = -1;
901
902                 DBG((dbg, LEVEL_1, "\tgot LEA candidate with index %+F\n", index));
903
904                 /* determine the operand which needs to be checked */
905                 temp = left;
906                 if (is_ia32_Lea(left)) {
907                         temp = right;
908                         consumed_left_shift = 0;
909                 }
910
911                 /* check for SHL 1,2,3 */
912                 if (pred_is_specific_node(temp, is_ia32_Shl)) {
913                         ir_node *right = get_irn_n(temp, n_ia32_Shl_right);
914
915                         if (is_ia32_Immediate(right)) {
916                                 const ia32_immediate_attr_t *attr
917                                         = get_ia32_immediate_attr_const(right);
918                                 long shiftval = attr->offset;
919
920                                 if (shiftval <= 3) {
921                                         index               = get_irn_n(temp, 2);
922                                         consumed_left_shift = consumed_left_shift < 0 ? 1 : 0;
923                                         shift = temp;
924                                         scale = shiftval;
925
926                                         DBG((dbg, LEVEL_1, "\tgot scaled index %+F\n", index));
927                                 }
928                         }
929                 }
930
931                 /* fix base */
932                 if (! be_is_NoReg(cg, index)) {
933                         /* if we have index, but left == right -> no base */
934                         if (left == right) {
935                                 base = noreg;
936                         }
937                         else if (consumed_left_shift == 1) {
938                                 /* -> base is right operand  */
939                                 base = (right == lea_o) ? noreg : right;
940                         }
941                 }
942         }
943
944         /* Try to assimilate a LEA as left operand */
945         if (is_ia32_Lea(left) && (get_ia32_am_flavour(left) != ia32_am_O)) {
946                 /* check if we can assimilate the LEA */
947                 int take_attr = do_new_lea(irn, base, index, left, have_am_sc, cg);
948
949                 if (take_attr == IA32_LEA_ATTR_NONE) {
950                         DBG((dbg, LEVEL_1, "\tleave old LEA, creating new one\n"));
951                 }
952                 else {
953                         DBG((dbg, LEVEL_1, "\tgot LEA as left operand ... assimilating\n"));
954                         lea = left; /* for statistics */
955
956                         if (take_attr & IA32_LEA_ATTR_OFFS)
957                                 offs = get_ia32_am_offs_int(left);
958
959                         if (take_attr & IA32_LEA_ATTR_AMSC) {
960                                 am_sc      = get_ia32_am_sc(left);
961                                 have_am_sc = 1;
962                                 am_sc_sign = is_ia32_am_sc_sign(left);
963                         }
964
965                         if (take_attr & IA32_LEA_ATTR_SCALE)
966                                 scale = get_ia32_am_scale(left);
967
968                         if (take_attr & IA32_LEA_ATTR_BASE)
969                                 base = get_irn_n(left, 0);
970
971                         if (take_attr & IA32_LEA_ATTR_INDEX)
972                                 index = get_irn_n(left, 1);
973
974                         if (take_attr & IA32_LEA_ATTR_FENT)
975                                 lea_ent = get_ia32_frame_ent(left);
976                 }
977         }
978
979         /* ok, we can create a new LEA */
980         if (dolea) {
981                 res = new_rd_ia32_Lea(dbg_info, irg, block, base, index);
982                 /* we don't want stuff before the barrier... */
983                 if(be_is_NoReg(cg, base) && be_is_NoReg(cg, index)) {
984                         add_irn_dep(res, get_irg_frame(irg));
985                 }
986
987                 /* add the old offset of a previous LEA */
988                 add_ia32_am_offs_int(res, offs);
989
990                 /* add the new offset */
991                 if (isadd) {
992                         add_ia32_am_offs_int(res, offs_cnst);
993                         add_ia32_am_offs_int(res, offs_lea);
994                 } else {
995                         /* either lea_O-cnst, -cnst or -lea_O  */
996                         if (offs_cnst != 0) {
997                                 add_ia32_am_offs_int(res, offs_lea);
998                                 add_ia32_am_offs_int(res, -offs_cnst);
999                         } else {
1000                                 add_ia32_am_offs_int(res, offs_lea);
1001                         }
1002                 }
1003
1004                 /* set the address mode symconst */
1005                 if (have_am_sc) {
1006                         set_ia32_am_sc(res, am_sc);
1007                         if (am_sc_sign)
1008                                 set_ia32_am_sc_sign(res);
1009                 }
1010
1011                 /* copy the frame entity (could be set in case of Add */
1012                 /* which was a FrameAddr) */
1013                 if (lea_ent != NULL) {
1014                         set_ia32_frame_ent(res, lea_ent);
1015                         set_ia32_use_frame(res);
1016                 } else {
1017                         set_ia32_frame_ent(res, get_ia32_frame_ent(irn));
1018                         if(is_ia32_use_frame(irn))
1019                                 set_ia32_use_frame(res);
1020                 }
1021
1022                 /* set scale */
1023                 set_ia32_am_scale(res, scale);
1024
1025                 am_flav = ia32_am_N;
1026                 /* determine new am flavour */
1027                 if (offs || offs_cnst || offs_lea || have_am_sc) {
1028                         am_flav |= ia32_O;
1029                 }
1030                 if (! be_is_NoReg(cg, base)) {
1031                         am_flav |= ia32_B;
1032                 }
1033                 if (! be_is_NoReg(cg, index)) {
1034                         am_flav |= ia32_I;
1035                 }
1036                 if (scale > 0) {
1037                         am_flav |= ia32_S;
1038                 }
1039                 set_ia32_am_flavour(res, am_flav);
1040
1041                 set_ia32_op_type(res, ia32_AddrModeS);
1042
1043                 SET_IA32_ORIG_NODE(res, ia32_get_old_node_name(cg, irn));
1044
1045                 DBG((dbg, LEVEL_1, "\tLEA [%+F + %+F * %d + %d]\n", base, index, scale, get_ia32_am_offs_int(res)));
1046
1047                 assert(irn && "Couldn't find result proj");
1048
1049                 /* get the result Proj of the Add/Sub */
1050                 try_add_to_sched(irn, res);
1051
1052                 /* exchange the old op with the new LEA */
1053                 try_remove_from_sched(irn);
1054                 exchange(irn, res);
1055
1056                 /* we will exchange it, report here before the Proj is created */
1057                 if (shift && lea && lea_o) {
1058                         try_remove_from_sched(shift);
1059                         try_remove_from_sched(lea);
1060                         try_remove_from_sched(lea_o);
1061                         DBG_OPT_LEA4(irn, lea_o, lea, shift, res);
1062                 } else if (shift && lea) {
1063                         try_remove_from_sched(shift);
1064                         try_remove_from_sched(lea);
1065                         DBG_OPT_LEA3(irn, lea, shift, res);
1066                 } else if (shift && lea_o) {
1067                         try_remove_from_sched(shift);
1068                         try_remove_from_sched(lea_o);
1069                         DBG_OPT_LEA3(irn, lea_o, shift, res);
1070                 } else if (lea && lea_o) {
1071                         try_remove_from_sched(lea);
1072                         try_remove_from_sched(lea_o);
1073                         DBG_OPT_LEA3(irn, lea_o, lea, res);
1074                 } else if (shift) {
1075                         try_remove_from_sched(shift);
1076                         DBG_OPT_LEA2(irn, shift, res);
1077                 } else if (lea) {
1078                         try_remove_from_sched(lea);
1079                         DBG_OPT_LEA2(irn, lea, res);
1080                 } else if (lea_o) {
1081                         try_remove_from_sched(lea_o);
1082                         DBG_OPT_LEA2(irn, lea_o, res);
1083                 } else {
1084                         DBG_OPT_LEA1(irn, res);
1085                 }
1086         }
1087
1088         return res;
1089 }
1090
1091
1092 /**
1093  * Merges a Load/Store node with a LEA.
1094  * @param irn The Load/Store node
1095  * @param lea The LEA
1096  */
1097 static void merge_loadstore_lea(ir_node *irn, ir_node *lea) {
1098         ir_entity *irn_ent = get_ia32_frame_ent(irn);
1099         ir_entity *lea_ent = get_ia32_frame_ent(lea);
1100
1101         /* If the irn and the LEA both have a different frame entity set: do not merge */
1102         if (irn_ent != NULL && lea_ent != NULL && (irn_ent != lea_ent))
1103                 return;
1104         else if (irn_ent == NULL && lea_ent != NULL) {
1105                 set_ia32_frame_ent(irn, lea_ent);
1106                 set_ia32_use_frame(irn);
1107         }
1108
1109         /* get the AM attributes from the LEA */
1110         add_ia32_am_offs_int(irn, get_ia32_am_offs_int(lea));
1111         set_ia32_am_scale(irn, get_ia32_am_scale(lea));
1112         set_ia32_am_flavour(irn, get_ia32_am_flavour(lea));
1113
1114         set_ia32_am_sc(irn, get_ia32_am_sc(lea));
1115         if (is_ia32_am_sc_sign(lea))
1116                 set_ia32_am_sc_sign(irn);
1117
1118         set_ia32_op_type(irn, is_ia32_Ld(irn) ? ia32_AddrModeS : ia32_AddrModeD);
1119
1120         /* set base and index */
1121         set_irn_n(irn, 0, get_irn_n(lea, 0));
1122         set_irn_n(irn, 1, get_irn_n(lea, 1));
1123
1124         try_remove_from_sched(lea);
1125
1126         /* clear remat flag */
1127         set_ia32_flags(irn, get_ia32_flags(irn) & ~arch_irn_flags_rematerializable);
1128
1129         if (is_ia32_Ld(irn))
1130                 DBG_OPT_LOAD_LEA(lea, irn);
1131         else
1132                 DBG_OPT_STORE_LEA(lea, irn);
1133
1134 }
1135
1136 /**
1137  * Sets new_right index of irn to right and new_left index to left.
1138  * Also exchange left and right
1139  */
1140 static void exchange_left_right(ir_node *irn, ir_node **left, ir_node **right,
1141                                 int new_left, int new_right)
1142 {
1143         ir_node *temp;
1144
1145         set_irn_n(irn, new_right, *right);
1146         set_irn_n(irn, new_left, *left);
1147
1148         temp   = *left;
1149         *left  = *right;
1150         *right = temp;
1151
1152         /* this is only needed for Compares, but currently ALL nodes
1153          * have this attribute :-) */
1154         set_ia32_pncode(irn, get_inversed_pnc(get_ia32_pncode(irn)));
1155 }
1156
1157 /**
1158  * Performs address calculation optimization (create LEAs if possible)
1159  */
1160 static void optimize_lea(ia32_code_gen_t *cg, ir_node *irn) {
1161         if (! is_ia32_irn(irn))
1162                 return;
1163
1164         /* Following cases can occur:                                  */
1165         /* - Sub (l, imm) -> LEA [base - offset]                       */
1166         /* - Sub (l, r == LEA with ia32_am_O)   -> LEA [base - offset] */
1167         /* - Add (l, imm) -> LEA [base + offset]                       */
1168         /* - Add (l, r == LEA with ia32_am_O)  -> LEA [base + offset]  */
1169         /* - Add (l == LEA with ia32_am_O, r)  -> LEA [base + offset]  */
1170         /* - Add (l, r) -> LEA [base + index * scale]                  */
1171         /*              with scale > 1 iff l/r == shl (1,2,3)          */
1172         if (is_ia32_Sub(irn) || is_ia32_Add(irn)) {
1173                 ir_node *res;
1174
1175                 if(!is_addr_candidate(irn))
1176                         return;
1177
1178                 DBG((dbg, LEVEL_1, "\tfound address calculation candidate %+F ... ", irn));
1179                 res = fold_addr(cg, irn);
1180
1181                 if (res != irn)
1182                         DB((dbg, LEVEL_1, "transformed into %+F\n", res));
1183                 else
1184                         DB((dbg, LEVEL_1, "not transformed\n"));
1185         } else if (is_ia32_Ld(irn) || is_ia32_St(irn)) {
1186                 /* - Load  -> LEA into Load  } TODO: If the LEA is used by more than one Load/Store */
1187                 /* - Store -> LEA into Store }       it might be better to keep the LEA             */
1188                 ir_node *left = get_irn_n(irn, 0);
1189
1190                 if (is_ia32_Lea(left)) {
1191                         const ir_edge_t *edge, *ne;
1192                         ir_node *src;
1193
1194                         /* merge all Loads/Stores connected to this LEA with the LEA */
1195                         foreach_out_edge_safe(left, edge, ne) {
1196                                 src = get_edge_src_irn(edge);
1197
1198                                 if (src && (get_edge_src_pos(edge) == 0) && (is_ia32_Ld(src) || is_ia32_St(src))) {
1199                                         DBG((dbg, LEVEL_1, "\nmerging %+F into %+F\n", left, irn));
1200                                         if (! is_ia32_got_lea(src))
1201                                                 merge_loadstore_lea(src, left);
1202                                         set_ia32_got_lea(src);
1203                                 }
1204                         }
1205                 }
1206         }
1207 }
1208
1209 static void optimize_conv_store(ir_node *node)
1210 {
1211         ir_node *pred;
1212         ir_mode *conv_mode;
1213         ir_mode *store_mode;
1214
1215         if(!is_ia32_Store(node) && !is_ia32_Store8Bit(node))
1216                 return;
1217
1218         pred = get_irn_n(node, 2);
1219         if(!is_ia32_Conv_I2I(pred) && !is_ia32_Conv_I2I8Bit(pred))
1220                 return;
1221
1222         /* the store only stores the lower bits, so we only need the conv
1223          * it it shrinks the mode */
1224         conv_mode  = get_ia32_ls_mode(pred);
1225         store_mode = get_ia32_ls_mode(node);
1226         if(get_mode_size_bits(conv_mode) < get_mode_size_bits(store_mode))
1227                 return;
1228
1229         set_irn_n(node, 2, get_irn_n(pred, 2));
1230         if(get_irn_n_edges(pred) == 0) {
1231                 be_kill_node(pred);
1232         }
1233 }
1234
1235 static void optimize_load_conv(ir_node *node)
1236 {
1237         ir_node *pred, *predpred;
1238         ir_mode *load_mode;
1239         ir_mode *conv_mode;
1240
1241         if (!is_ia32_Conv_I2I(node) && !is_ia32_Conv_I2I8Bit(node))
1242                 return;
1243
1244         pred = get_irn_n(node, 2);
1245         if(!is_Proj(pred))
1246                 return;
1247
1248         predpred = get_Proj_pred(pred);
1249         if(!is_ia32_Load(predpred))
1250                 return;
1251
1252         /* the load is sign extending the upper bits, so we only need the conv
1253          * if it shrinks the mode */
1254         load_mode = get_ia32_ls_mode(predpred);
1255         conv_mode = get_ia32_ls_mode(node);
1256         if(get_mode_size_bits(conv_mode) < get_mode_size_bits(load_mode))
1257                 return;
1258
1259         if(get_mode_sign(conv_mode) != get_mode_sign(load_mode)) {
1260                 /* change the load if it has only 1 user */
1261                 if(get_irn_n_edges(pred) == 1) {
1262                         ir_mode *newmode;
1263                         if(get_mode_sign(conv_mode)) {
1264                                 newmode = find_signed_mode(load_mode);
1265                         } else {
1266                                 newmode = find_unsigned_mode(load_mode);
1267                         }
1268                         assert(newmode != NULL);
1269                         set_ia32_ls_mode(predpred, newmode);
1270                 } else {
1271                         /* otherwise we have to keep the conv */
1272                         return;
1273                 }
1274         }
1275
1276         /* kill the conv */
1277         exchange(node, pred);
1278 }
1279
1280 static void optimize_conv_conv(ir_node *node)
1281 {
1282         ir_node *pred;
1283         ir_mode *pred_mode;
1284         ir_mode *conv_mode;
1285
1286         if (!is_ia32_Conv_I2I(node) && !is_ia32_Conv_I2I8Bit(node))
1287                 return;
1288
1289         assert(n_ia32_Conv_I2I_val == n_ia32_Conv_I2I8Bit_val);
1290         pred = get_irn_n(node, n_ia32_Conv_I2I_val);
1291         if(!is_ia32_Conv_I2I(pred) && !is_ia32_Conv_I2I8Bit(pred))
1292                 return;
1293
1294         /* we know that after a conv, the upper bits are sign extended
1295          * so we only need the 2nd conv if it shrinks the mode */
1296         conv_mode = get_ia32_ls_mode(node);
1297         pred_mode = get_ia32_ls_mode(pred);
1298         if(get_mode_size_bits(conv_mode) < get_mode_size_bits(pred_mode))
1299                 return;
1300
1301         /* we can't eliminate an upconv signed->unsigned  */
1302         if (get_mode_size_bits(conv_mode) != get_mode_size_bits(pred_mode) &&
1303                 !get_mode_sign(conv_mode) && get_mode_sign(pred_mode))
1304                 return;
1305
1306         /* kill the conv */
1307         exchange(node, pred);
1308 }
1309
1310 static void optimize_node(ir_node *node, void *env)
1311 {
1312         ia32_code_gen_t *cg = env;
1313
1314         optimize_load_conv(node);
1315         optimize_conv_store(node);
1316         optimize_conv_conv(node);
1317         optimize_lea(cg, node);
1318 }
1319
1320 /**
1321  * Checks for address mode patterns and performs the
1322  * necessary transformations.
1323  * This function is called by a walker.
1324  */
1325 static void optimize_am(ir_node *irn, void *env) {
1326         ia32_am_opt_env_t *am_opt_env = env;
1327         ia32_code_gen_t   *cg         = am_opt_env->cg;
1328         ir_graph          *irg        = get_irn_irg(irn);
1329         heights_t         *h          = am_opt_env->h;
1330         ir_node           *block, *left, *right;
1331         ir_node           *store, *load, *mem_proj;
1332         ir_node           *addr_b, *addr_i;
1333         int               need_exchange_on_fail = 0;
1334         ia32_am_type_t    am_support;
1335         ia32_am_arity_t   am_arity;
1336         ia32_am_cand_t cand;
1337         ia32_am_cand_t orig_cand;
1338         int               dest_possible;
1339         int               source_possible;
1340
1341         static const arch_register_req_t dest_out_reg_req_0 = {
1342                 arch_register_req_type_none,
1343                 NULL,        /* regclass */
1344                 NULL,        /* limit bitset */
1345                 -1,          /* same pos */
1346                 -1           /* different pos */
1347         };
1348         static const arch_register_req_t *dest_am_out_reqs[] = {
1349                 &dest_out_reg_req_0
1350         };
1351
1352         if (!is_ia32_irn(irn) || is_ia32_Ld(irn) || is_ia32_St(irn))
1353                 return;
1354         if (is_ia32_Lea(irn))
1355                 return;
1356
1357         am_support = get_ia32_am_support(irn);
1358         am_arity   = get_ia32_am_arity(irn);
1359         block = get_nodes_block(irn);
1360
1361         /* fold following patterns:
1362          * - op -> Load into AMop with am_Source
1363          *   conditions:
1364          *     - op is am_Source capable AND
1365          *     - the Load is only used by this op AND
1366          *     - the Load is in the same block
1367          * - Store -> op -> Load  into AMop with am_Dest
1368          *   conditions:
1369          *     - op is am_Dest capable AND
1370          *     - the Store uses the same address as the Load AND
1371          *     - the Load is only used by this op AND
1372          *     - the Load and Store are in the same block AND
1373          *     - nobody else uses the result of the op
1374          */
1375         if (am_support == ia32_am_None)
1376                 return;
1377
1378         assert(am_arity == ia32_am_unary || am_arity == ia32_am_binary);
1379
1380         cand = is_am_candidate(h, block, irn);
1381         if (cand == IA32_AM_CAND_NONE)
1382                 return;
1383
1384         orig_cand = cand;
1385         DBG((dbg, LEVEL_1, "\tfound address mode candidate %+F (candleft %d candright %d)... \n", irn,
1386              cand & IA32_AM_CAND_LEFT, cand & IA32_AM_CAND_RIGHT));
1387
1388         left  = get_irn_n(irn, 2);
1389         if (am_arity == ia32_am_unary) {
1390                 right = left;
1391                 assert(cand == IA32_AM_CAND_BOTH);
1392         } else {
1393                 right = get_irn_n(irn, 3);
1394         }
1395
1396         dest_possible = am_support & ia32_am_Dest ? 1 : 0;
1397         source_possible = am_support & ia32_am_Source ? 1 : 0;
1398
1399         DBG((dbg, LEVEL_2, "\tdest_possible %d source_possible %d ... \n", dest_possible, source_possible));
1400
1401         if (dest_possible) {
1402                 addr_b = NULL;
1403                 addr_i = NULL;
1404                 store  = NULL;
1405
1406                 /* we should only have 1 user which is a store */
1407                 if (ia32_get_irn_n_edges(irn) == 1) {
1408                         ir_node *succ = get_edge_src_irn(get_irn_out_edge_first(irn));
1409
1410                         if (is_ia32_xStore(succ) || is_ia32_Store(succ)) {
1411                                 store  = succ;
1412                                 addr_b = get_irn_n(store, 0);
1413                                 addr_i = get_irn_n(store, 1);
1414                         }
1415                 }
1416
1417                 if (store == NULL) {
1418                         DBG((dbg, LEVEL_2, "\tno store found, not using dest_mode\n"));
1419                         dest_possible = 0;
1420                 }
1421         }
1422
1423         if (dest_possible) {
1424                 /* normalize nodes, we need the interesting load on the left side */
1425                 if (cand & IA32_AM_CAND_RIGHT) {
1426                         load = get_Proj_pred(right);
1427                         if (load_store_addr_is_equal(load, store, addr_b, addr_i)
1428                                         && node_is_ia32_comm(irn)) {
1429                                 DBG((dbg, LEVEL_2, "\texchanging left/right\n"));
1430                                 exchange_left_right(irn, &left, &right, 3, 2);
1431                                 need_exchange_on_fail ^= 1;
1432                                 if (cand == IA32_AM_CAND_RIGHT)
1433                                         cand = IA32_AM_CAND_LEFT;
1434                         }
1435                 }
1436         }
1437
1438         if (dest_possible) {
1439                 if(cand & IA32_AM_CAND_LEFT && is_Proj(left)) {
1440                         load = get_Proj_pred(left);
1441
1442 #ifndef AGGRESSIVE_AM
1443                         /* we have to be the only user of the load */
1444                         if (get_irn_n_edges(left) > 1) {
1445                                 DBG((dbg, LEVEL_2, "\tmatching load has too may users, not using dest_mode\n"));
1446                                 dest_possible = 0;
1447                         }
1448 #endif
1449                 } else {
1450                         DBG((dbg, LEVEL_2, "\tno matching load found, not using dest_mode"));
1451                         dest_possible = 0;
1452                 }
1453         }
1454
1455         if (dest_possible) {
1456                 /* the store has to use the loads memory or the same memory
1457                  * as the load */
1458                 ir_node *loadmem = get_irn_n(load, 2);
1459                 ir_node *storemem = get_irn_n(store, 3);
1460                 assert(get_irn_mode(loadmem) == mode_M);
1461                 assert(get_irn_mode(storemem) == mode_M);
1462                 /* TODO there could be a sync between store and load... */
1463                 if(storemem != loadmem && (!is_Proj(storemem) || get_Proj_pred(storemem) != load)) {
1464                         DBG((dbg, LEVEL_2, "\tload/store using different memories, not using dest_mode"));
1465                         dest_possible = 0;
1466                 }
1467         }
1468
1469         if (dest_possible) {
1470                 /* Compare Load and Store address */
1471                 if (!load_store_addr_is_equal(load, store, addr_b, addr_i)) {
1472                         DBG((dbg, LEVEL_2, "\taddresses not equal, not using dest_mode"));
1473                         dest_possible = 0;
1474                 }
1475         }
1476
1477         if (dest_possible) {
1478                 ir_mode *lsmode = get_ia32_ls_mode(load);
1479                 if(get_mode_size_bits(lsmode) != 32) {
1480                         dest_possible = 0;
1481                 }
1482         }
1483
1484         if (dest_possible) {
1485                 /* all conditions fullfilled, do the transformation */
1486                 assert(cand & IA32_AM_CAND_LEFT);
1487
1488                 /* set new base, index and attributes */
1489                 set_irn_n(irn, 0, addr_b);
1490                 set_irn_n(irn, 1, addr_i);
1491                 add_ia32_am_offs_int(irn, get_ia32_am_offs_int(load));
1492                 set_ia32_am_scale(irn, get_ia32_am_scale(load));
1493                 set_ia32_am_flavour(irn, get_ia32_am_flavour(load));
1494                 set_ia32_op_type(irn, ia32_AddrModeD);
1495                 set_ia32_frame_ent(irn, get_ia32_frame_ent(load));
1496                 set_ia32_ls_mode(irn, get_ia32_ls_mode(load));
1497
1498                 set_ia32_am_sc(irn, get_ia32_am_sc(load));
1499                 if (is_ia32_am_sc_sign(load))
1500                         set_ia32_am_sc_sign(irn);
1501
1502                 /* connect to Load memory and disconnect Load */
1503                 if (am_arity == ia32_am_binary) {
1504                         /* binary AMop */
1505                         set_irn_n(irn, 4, get_irn_n(load, 2));
1506                         set_irn_n(irn, 2, ia32_get_admissible_noreg(cg, irn, 2));
1507                 } else {
1508                         /* unary AMop */
1509                         set_irn_n(irn, 3, get_irn_n(load, 2));
1510                         set_irn_n(irn, 2, ia32_get_admissible_noreg(cg, irn, 2));
1511                 }
1512
1513                 /* change node mode and out register requirements */
1514                 set_irn_mode(irn, mode_M);
1515                 set_ia32_out_req_all(irn, dest_am_out_reqs);
1516
1517                 /* connect the memory Proj of the Store to the op */
1518                 edges_reroute(store, irn, irg);
1519
1520                 /* clear remat flag */
1521                 set_ia32_flags(irn, get_ia32_flags(irn) & ~arch_irn_flags_rematerializable);
1522
1523                 try_remove_from_sched(store);
1524                 try_remove_from_sched(load);
1525                 DBG_OPT_AM_D(load, store, irn);
1526
1527                 DB((dbg, LEVEL_1, "merged with %+F and %+F into dest AM\n", load, store));
1528                 need_exchange_on_fail = 0;
1529                 source_possible = 0;
1530         }
1531
1532         if (source_possible) {
1533                 /* normalize ops, we need the load on the right */
1534                 if(cand == IA32_AM_CAND_LEFT) {
1535                         if(node_is_ia32_comm(irn)) {
1536                                 exchange_left_right(irn, &left, &right, 3, 2);
1537                                 need_exchange_on_fail ^= 1;
1538                                 cand = IA32_AM_CAND_RIGHT;
1539                         } else {
1540                                 source_possible = 0;
1541                         }
1542                 }
1543         }
1544
1545         if (source_possible) {
1546                 /* all conditions fullfilled, do transform */
1547                 assert(cand & IA32_AM_CAND_RIGHT);
1548                 load = get_Proj_pred(right);
1549
1550                 if(get_irn_n_edges(load) > 1) {
1551                         source_possible = 0;
1552                 }
1553         }
1554
1555         if (source_possible) {
1556                 ir_mode *ls_mode = get_ia32_ls_mode(load);
1557                 if(get_mode_size_bits(ls_mode) != 32)
1558                         source_possible = 0;
1559
1560         }
1561
1562         if (source_possible) {
1563                 addr_b = get_irn_n(load, 0);
1564                 addr_i = get_irn_n(load, 1);
1565
1566                 /* set new base, index and attributes */
1567                 set_irn_n(irn, 0, addr_b);
1568                 set_irn_n(irn, 1, addr_i);
1569                 add_ia32_am_offs_int(irn, get_ia32_am_offs_int(load));
1570                 set_ia32_am_scale(irn, get_ia32_am_scale(load));
1571                 set_ia32_am_flavour(irn, get_ia32_am_flavour(load));
1572                 set_ia32_op_type(irn, ia32_AddrModeS);
1573                 set_ia32_frame_ent(irn, get_ia32_frame_ent(load));
1574                 set_ia32_ls_mode(irn, get_ia32_ls_mode(load));
1575
1576                 set_ia32_am_sc(irn, get_ia32_am_sc(load));
1577                 if (is_ia32_am_sc_sign(load))
1578                         set_ia32_am_sc_sign(irn);
1579
1580                 /* clear remat flag */
1581                 set_ia32_flags(irn, get_ia32_flags(irn) & ~arch_irn_flags_rematerializable);
1582
1583                 if (is_ia32_use_frame(load)) {
1584                         if(get_ia32_frame_ent(load) == NULL) {
1585                                 set_ia32_need_stackent(irn);
1586                         }
1587                         set_ia32_use_frame(irn);
1588                 }
1589
1590                 /* connect to Load memory and disconnect Load */
1591                 if (am_arity == ia32_am_binary) {
1592                         /* binary AMop */
1593                         set_irn_n(irn, 3, ia32_get_admissible_noreg(cg, irn, 3));
1594                         set_irn_n(irn, 4, get_irn_n(load, 2));
1595                 } else {
1596                         /* unary AMop */
1597                         set_irn_n(irn, 2, ia32_get_admissible_noreg(cg, irn, 2));
1598                         set_irn_n(irn, 3, get_irn_n(load, 2));
1599                 }
1600
1601                 DBG_OPT_AM_S(load, irn);
1602
1603                 /* If Load has a memory Proj, connect it to the op */
1604                 mem_proj = ia32_get_proj_for_mode(load, mode_M);
1605                 if (mem_proj != NULL) {
1606                         ir_node *res_proj;
1607                         ir_mode *mode = get_irn_mode(irn);
1608
1609                         res_proj = new_rd_Proj(get_irn_dbg_info(irn), irg,
1610                                                get_nodes_block(irn), new_Unknown(mode_T),
1611                                                mode, 0);
1612                         set_irn_mode(irn, mode_T);
1613                         edges_reroute(irn, res_proj, irg);
1614                         set_Proj_pred(res_proj, irn);
1615
1616                         set_Proj_pred(mem_proj, irn);
1617                         set_Proj_proj(mem_proj, 1);
1618
1619                         if(sched_is_scheduled(irn)) {
1620                                 sched_add_after(irn, res_proj);
1621                                 sched_add_after(irn, mem_proj);
1622                         }
1623                 }
1624
1625                 if(get_irn_n_edges(load) == 0) {
1626                         try_remove_from_sched(load);
1627                 }
1628                 need_exchange_on_fail = 0;
1629
1630                 /* immediate are only allowed on the right side */
1631                 if(is_ia32_Immediate(left)) {
1632                         exchange_left_right(irn, &left, &right, 3, 2);
1633                 }
1634
1635                 DB((dbg, LEVEL_1, "merged with %+F into source AM\n", load));
1636         }
1637
1638         /* was exchanged but optimize failed: exchange back */
1639         if (need_exchange_on_fail) {
1640                 exchange_left_right(irn, &left, &right, 3, 2);
1641         }
1642 }
1643
1644 /**
1645  * Performs conv and address mode optimization.
1646  */
1647 void ia32_optimize_graph(ia32_code_gen_t *cg) {
1648         /* if we are supposed to do AM or LEA optimization: recalculate edges */
1649         if (! (cg->opt & (IA32_OPT_DOAM | IA32_OPT_LEA))) {
1650                 /* no optimizations at all */
1651                 return;
1652         }
1653
1654         /* beware: we cannot optimize LEA and AM in one run because */
1655         /*         LEA optimization adds new nodes to the irg which */
1656         /*         invalidates the phase data                       */
1657
1658         if (cg->opt & IA32_OPT_LEA) {
1659                 irg_walk_blkwise_graph(cg->irg, NULL, optimize_node, cg);
1660         }
1661
1662         if (cg->dump)
1663                 be_dump(cg->irg, "-lea", dump_ir_block_graph_sched);
1664
1665         /* hack for now, so these don't get created during optimize, because then
1666          * they will be unknown to the heights module
1667          */
1668         ia32_new_NoReg_gp(cg);
1669         ia32_new_NoReg_fp(cg);
1670         ia32_new_NoReg_vfp(cg);
1671
1672         if (cg->opt & IA32_OPT_DOAM) {
1673                 /* we need height information for am optimization */
1674                 heights_t *h = heights_new(cg->irg);
1675                 ia32_am_opt_env_t env;
1676
1677                 env.cg = cg;
1678                 env.h  = h;
1679
1680                 irg_walk_blkwise_graph(cg->irg, NULL, optimize_am, &env);
1681
1682                 heights_free(h);
1683         }
1684 }
1685
1686 void ia32_init_optimize(void)
1687 {
1688         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.optimize");
1689 }